From deb8f2a38b08bfe410d127d4779ced5433f67876 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 10 Sep 2010 09:10:53 -0400 Subject: [PATCH 001/310] make our own twitter links if Twitter doesn't give us entities --- .../daemons/twitterstatusfetcher.php | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index f1305696b3..b2bcc22bcc 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -713,6 +713,10 @@ class TwitterStatusFetcher extends ParallelizingDaemon $text = $status->text; if (empty($status->entities)) { + common_log(LOG_WARNING, "No entities data for {$status->id}; trying to fake up links ourselves."); + $text = common_replace_urls_callback($text, 'common_linkify'); + $text = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.TwitterStatusFetcher::tagLink('\\2')", $text); + $text = preg_replace('/(?:^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); return $text; } @@ -771,12 +775,26 @@ class TwitterStatusFetcher extends ParallelizingDaemon function makeHashtagLink($object) { - return "#{$object->text}"; + return "#" . self::tagLink($object->text); } function makeMentionLink($object) { - return "@{$object->screen_name}"; + return "@".self::atLink($object->screen_name, $object->name); + } + + static function tagLink($tag) + { + return "{$tag}"; + } + + static function atLink($screenName, $fullName=null) + { + if (!empty($fullName)) { + return "{$screenName}"; + } else { + return "{$screenName}"; + } } function saveStatusMentions($notice, $status) From 398df867de63febdc4c9ea68ad90e611d765b54d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 10 Sep 2010 09:21:01 -0400 Subject: [PATCH 002/310] use capturing parens for matching at-mentions in twitterstatusfetcher --- plugins/TwitterBridge/daemons/twitterstatusfetcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index b2bcc22bcc..181be3dcf3 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -716,7 +716,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon common_log(LOG_WARNING, "No entities data for {$status->id}; trying to fake up links ourselves."); $text = common_replace_urls_callback($text, 'common_linkify'); $text = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.TwitterStatusFetcher::tagLink('\\2')", $text); - $text = preg_replace('/(?:^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); + $text = preg_replace('/(^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); return $text; } From 262eb7120f08a4a7c021c7c1df6a67e1b3c1d27d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 10 Sep 2010 09:10:53 -0400 Subject: [PATCH 003/310] make our own twitter links if Twitter doesn't give us entities --- .../daemons/twitterstatusfetcher.php | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index f1305696b3..b2bcc22bcc 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -713,6 +713,10 @@ class TwitterStatusFetcher extends ParallelizingDaemon $text = $status->text; if (empty($status->entities)) { + common_log(LOG_WARNING, "No entities data for {$status->id}; trying to fake up links ourselves."); + $text = common_replace_urls_callback($text, 'common_linkify'); + $text = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.TwitterStatusFetcher::tagLink('\\2')", $text); + $text = preg_replace('/(?:^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); return $text; } @@ -771,12 +775,26 @@ class TwitterStatusFetcher extends ParallelizingDaemon function makeHashtagLink($object) { - return "#{$object->text}"; + return "#" . self::tagLink($object->text); } function makeMentionLink($object) { - return "@{$object->screen_name}"; + return "@".self::atLink($object->screen_name, $object->name); + } + + static function tagLink($tag) + { + return "{$tag}"; + } + + static function atLink($screenName, $fullName=null) + { + if (!empty($fullName)) { + return "{$screenName}"; + } else { + return "{$screenName}"; + } } function saveStatusMentions($notice, $status) From cfcb8603171cf9dd30fe54ee682a3666c0b21d7e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 10 Sep 2010 09:21:01 -0400 Subject: [PATCH 004/310] use capturing parens for matching at-mentions in twitterstatusfetcher --- plugins/TwitterBridge/daemons/twitterstatusfetcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index b2bcc22bcc..181be3dcf3 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -716,7 +716,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon common_log(LOG_WARNING, "No entities data for {$status->id}; trying to fake up links ourselves."); $text = common_replace_urls_callback($text, 'common_linkify'); $text = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.TwitterStatusFetcher::tagLink('\\2')", $text); - $text = preg_replace('/(?:^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); + $text = preg_replace('/(^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text); return $text; } From f17512cfe603b8f00576cdff10f3a3d71924c000 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 10 Sep 2010 11:50:19 -0700 Subject: [PATCH 005/310] Catch exceptions during SubMirror mirror attempt; log & skip that one if found. Should avoid things like RequireValidatedEmailPlugin causing infinite retry loops if the mirror-er isn't validated yet. --- plugins/SubMirror/lib/mirrorqueuehandler.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/SubMirror/lib/mirrorqueuehandler.php b/plugins/SubMirror/lib/mirrorqueuehandler.php index 92b36b5ebf..c1a6f65e38 100644 --- a/plugins/SubMirror/lib/mirrorqueuehandler.php +++ b/plugins/SubMirror/lib/mirrorqueuehandler.php @@ -37,7 +37,13 @@ class MirrorQueueHandler extends QueueHandler $mirror->subscribed = $notice->profile_id; if ($mirror->find()) { while ($mirror->fetch()) { - $mirror->mirrorNotice($notice); + try { + $mirror->mirrorNotice($notice); + } catch (Exception $e) { + common_log(LOG_ERR, "Exception trying to mirror notice $notice->id " . + "for subscriber $mirror->subscriber ($mirror->style): " . + $e->getMessage()); + } } } return true; From a9fad9a7ac85270e2a45cfad28c6017b200496eb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:08:49 +0200 Subject: [PATCH 006/310] Add translator hint. --- actions/apiaccountupdatedeliverydevice.php | 1 + actions/apiaccountupdateprofile.php | 1 + actions/apiaccountupdateprofilebackgroundimage.php | 1 + actions/apiaccountupdateprofilecolors.php | 1 + actions/apiaccountupdateprofileimage.php | 1 + actions/apiblockcreate.php | 1 + actions/apiblockdestroy.php | 1 + actions/apidirectmessagenew.php | 1 + actions/apifavoritecreate.php | 1 + actions/apifavoritedestroy.php | 1 + actions/apifriendshipscreate.php | 1 + actions/apifriendshipsdestroy.php | 1 + actions/apigroupcreate.php | 1 + actions/apigroupjoin.php | 1 + actions/apigroupleave.php | 1 + actions/apimediaupload.php | 1 + actions/apistatusesretweet.php | 1 + actions/apistatusesupdate.php | 1 + plugins/OStatus/lib/salmonaction.php | 1 + 19 files changed, 19 insertions(+) diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index 295378aa67..2d903cb460 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -83,6 +83,7 @@ class ApiAccountUpdateDeliveryDeviceAction 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 ); diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php index 9b371ea957..92d0f6b771 100644 --- a/actions/apiaccountupdateprofile.php +++ b/actions/apiaccountupdateprofile.php @@ -86,6 +86,7 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); diff --git a/actions/apiaccountupdateprofilebackgroundimage.php b/actions/apiaccountupdateprofilebackgroundimage.php index 3537b9f979..923fb1d114 100644 --- a/actions/apiaccountupdateprofilebackgroundimage.php +++ b/actions/apiaccountupdateprofilebackgroundimage.php @@ -83,6 +83,7 @@ class ApiAccountUpdateProfileBackgroundImageAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); diff --git a/actions/apiaccountupdateprofilecolors.php b/actions/apiaccountupdateprofilecolors.php index c666f9d759..9e07d80de3 100644 --- a/actions/apiaccountupdateprofilecolors.php +++ b/actions/apiaccountupdateprofilecolors.php @@ -107,6 +107,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php index 153ef7818e..7f868a6eb3 100644 --- a/actions/apiaccountupdateprofileimage.php +++ b/actions/apiaccountupdateprofileimage.php @@ -81,6 +81,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php index b355cd1c7e..53844cd2f2 100644 --- a/actions/apiblockcreate.php +++ b/actions/apiblockcreate.php @@ -86,6 +86,7 @@ class ApiBlockCreateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apiblockdestroy.php b/actions/apiblockdestroy.php index 7ea201677e..871ce66c73 100644 --- a/actions/apiblockdestroy.php +++ b/actions/apiblockdestroy.php @@ -85,6 +85,7 @@ class ApiBlockDestroyAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php index 65d065648f..44e205ebb0 100644 --- a/actions/apidirectmessagenew.php +++ b/actions/apidirectmessagenew.php @@ -106,6 +106,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index 0447a92ba2..15da010138 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -88,6 +88,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index 9f2efdd003..c2e1ebafc7 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -89,6 +89,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php index a7ec5b28a4..64c857c70c 100644 --- a/actions/apifriendshipscreate.php +++ b/actions/apifriendshipscreate.php @@ -88,6 +88,7 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php index 551d016823..21da23ef7c 100644 --- a/actions/apifriendshipsdestroy.php +++ b/actions/apifriendshipsdestroy.php @@ -88,6 +88,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index d216c15cd4..fa443573d6 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -102,6 +102,7 @@ class ApiGroupCreateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 5265ec629e..a0c069974b 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -89,6 +89,7 @@ class ApiGroupJoinAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 8c100d58a8..c838f6c878 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -89,6 +89,7 @@ class ApiGroupLeaveAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/actions/apimediaupload.php b/actions/apimediaupload.php index 7aa88c186b..54d7fda68f 100644 --- a/actions/apimediaupload.php +++ b/actions/apimediaupload.php @@ -64,6 +64,7 @@ class ApiMediaUploadAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); diff --git a/actions/apistatusesretweet.php b/actions/apistatusesretweet.php index 9aa3374854..aae98f6378 100644 --- a/actions/apistatusesretweet.php +++ b/actions/apistatusesretweet.php @@ -62,6 +62,7 @@ class ApiStatusesRetweetAction extends ApiAuthAction parent::prepare($args); if ($_SERVER['REQUEST_METHOD'] != 'POST') { + // TRANS: Client error. POST is a HTTP command. It should not be translated. $this->clientError(_('This method requires a POST.'), 400, $this->format); return false; diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index fa3f611c0a..4715f70027 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -195,6 +195,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format diff --git a/plugins/OStatus/lib/salmonaction.php b/plugins/OStatus/lib/salmonaction.php index 5fdb11abe4..f97c67edd0 100644 --- a/plugins/OStatus/lib/salmonaction.php +++ b/plugins/OStatus/lib/salmonaction.php @@ -38,6 +38,7 @@ class SalmonAction extends Action parent::prepare($args); if ($_SERVER['REQUEST_METHOD'] != 'POST') { + // TRANS: POST is a HTTP command. It should not be translated. $this->clientError(_m('This method requires a POST.')); } From 9bc4aaeca34a711e482c3f2c064bb18e65eda0be Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:17:43 +0200 Subject: [PATCH 007/310] Update incomplete documentation. --- lib/htmloutputter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 5dc2b38dab..44b0296046 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -325,6 +325,7 @@ class HTMLOutputter extends XMLOutputter * @param string $label text of the button * @param string $cls class of the button, default 'submit' * @param string $name name, if different than ID + * @param string $title title text for the submit button * * @return void * From 6b010ac79c75978f6782c3058d4453e4230ec2b6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:27:38 +0200 Subject: [PATCH 008/310] Update/add translator documentation. --- actions/emailsettings.php | 6 +++++- actions/groupmembers.php | 22 ++++++++++++++++++++-- lib/blockform.php | 2 ++ lib/unblockform.php | 2 ++ 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 6138a88f90..9c250fc8a9 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -131,7 +131,11 @@ class EmailsettingsAction extends AccountSettingsAction // TRANS: Field label for e-mail address input in e-mail settings form. $this->input('email', _('Email address'), ($this->arg('email')) ? $this->arg('email') : null, - // TRANS: Instructions for e-mail address input form. + // TRANS: Instructions for e-mail address input form. Do not translate + // TRANS: "example.org". It is one of the domain names reserved for + // TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. + // TRANS: Any other domain may be owned by a legitimate person or + // TRANS: organization. _('Email address, like "UserName@example.org"')); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/actions/groupmembers.php b/actions/groupmembers.php index 54f1d8dcda..038d1db68a 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -97,9 +97,13 @@ class GroupmembersAction extends GroupDesignAction function title() { if ($this->page == 1) { + // TRANS: Title of the page showing group members. + // TRANS: %s is the name of the group. return sprintf(_('%s group members'), $this->group->nickname); } else { + // TRANS: Title of the page showing group members. + // TRANS: %1$s is the name of the group, %2$d is the page number of the members list. return sprintf(_('%1$s group members, page %2$d'), $this->group->nickname, $this->page); @@ -389,7 +393,14 @@ class GroupBlockForm extends Form function formActions() { - $this->out->submit('submit', _('Block'), 'submit', null, _('Block this user')); + $this->out->submit( + 'submit', + // TRANS: Button text for the form that will block a user from a group. + _m('BUTTON','Block'), + 'submit', + null, + // TRANS: Submit button title. + _m('TOOLTIP',_('Block this user')); } } @@ -516,6 +527,13 @@ class MakeAdminForm extends Form function formActions() { - $this->out->submit('submit', _('Make Admin'), 'submit', null, _('Make this user an admin')); + $this->out->submit( + 'submit', + // TRANS: Button text for the form that will make a user administrator. + _m('BUTTON','Make Admin'), + 'submit', + null, + // TRANS: Submit button title. + _m('TOOLTIP','Make this user an admin')); } } diff --git a/lib/blockform.php b/lib/blockform.php index b6652b1f69..54552b3e57 100644 --- a/lib/blockform.php +++ b/lib/blockform.php @@ -66,6 +66,7 @@ class BlockForm extends ProfileActionForm function title() { + // TRANS: Title for the form to block a user. return _('Block'); } @@ -77,6 +78,7 @@ class BlockForm extends ProfileActionForm function description() { + // TRANS: Description of the form to block a user. return _('Block this user'); } } diff --git a/lib/unblockform.php b/lib/unblockform.php index 2a444f7cd0..b89d7ff78d 100644 --- a/lib/unblockform.php +++ b/lib/unblockform.php @@ -66,6 +66,7 @@ class UnblockForm extends ProfileActionForm function title() { + // TRANS: Title for the form to unblock a user. return _('Unblock'); } @@ -77,6 +78,7 @@ class UnblockForm extends ProfileActionForm function description() { + // TRANS: Description of the form to unblock a user. return _('Unblock this user'); } } From bb2a4e7aacfd4e3308ad71c21b19be47ba879735 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:43:43 +0200 Subject: [PATCH 009/310] Update translator documentation. --- actions/imsettings.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actions/imsettings.php b/actions/imsettings.php index 6691c8dad7..29cbeb82e3 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -137,6 +137,9 @@ class ImsettingsAction extends ConnectSettingsAction ($this->arg('jabber')) ? $this->arg('jabber') : null, // TRANS: IM address input field instructions in IM settings form. // TRANS: %s is the IM address set for the site. + // TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by + // TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate + // TRANS: person or organization. sprintf(_('Jabber or GTalk address, '. 'like "UserName@example.org". '. 'First, make sure to add %s to your '. From 99f6a709378b9ae5e61ddec8212922bf5a7921c2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:44:28 +0200 Subject: [PATCH 010/310] * add two FIXMEs for gettext messages not being processed. * update translator documentation. --- lib/searchaction.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/searchaction.php b/lib/searchaction.php index bb71a2ba15..14c3ed016d 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -117,14 +117,17 @@ class SearchAction extends Action 'class' => 'form_settings', 'action' => common_local_url($this->trimmed('action')))); $this->elementStart('fieldset'); + // TRANS: Fieldset legend for the search form. $this->element('legend', null, _('Search site')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); if (!common_config('site', 'fancy')) { $this->hidden('action', $this->trimmed('action')); } + // TRANS: Used as a field label for the field where one or more keywords + // TRANS: for searching can be entered. $this->input('q', _('Keyword(s)'), $q); - $this->submit('search', _('Search')); + $this->submit('search', _m('BUTTON','Search')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('fieldset'); @@ -135,6 +138,8 @@ class SearchAction extends Action } function searchSuggestions($q) { + // @todo FIXME: 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('dl', array('id' => 'help_search', 'class' => 'help')); + // TRANS: Definition list item with instructions on how to get (better) search results. $this->element('dt', null, _('Search help')); $this->elementStart('dd', 'instructions'); $this->raw(common_markup_to_html($message)); @@ -166,4 +174,3 @@ E_O_T $this->elementEnd('div'); } } - From 8adef3127c46dfb98b57f1b1b7cdf359e9ae5e2d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 17:49:56 +0200 Subject: [PATCH 011/310] Update translator documentation. --- lib/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugin.php b/lib/plugin.php index f63bdf3093..ee57f59043 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -112,9 +112,9 @@ class Plugin $name = mb_substr($cls, 0, -6); $versions[] = array('name' => $name, + // TRANS: Displayed as version information for a plugin if no version information was found. 'version' => _('Unknown')); return true; } } - From e88ee4ec46da3519c888d0af758f3d6b349207c0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 18:11:28 +0200 Subject: [PATCH 012/310] Fix i18n issue and add translator documentation. --- lib/mediafile.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/lib/mediafile.php b/lib/mediafile.php index c96c78ab5d..5946363207 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -315,12 +315,17 @@ class MediaFile } $media = MIME_Type::getMedia($filetype); if ('application' !== $media) { - $hint = sprintf(_(' Try using another %s format.'), $media); + // TRANS: Client exception thrown trying to upload a forbidden MIME type. + // TRANS: %1$s is the file type that was denied, %2$s is the application part of + // TRANS: the MIME type that was denied. + $hint = sprintf(_('"%1$s" is not a supported file type on this server. ' . + 'Try using another %2$s format.'), $filetype, $media); } else { - $hint = ''; + // TRANS: Client exception thrown trying to upload a forbidden MIME type. + // TRANS: %s is the file type that was denied. + $hint = sprintf(_('"%s" is not a supported file type on this server.'), $filetype); } - throw new ClientException(sprintf( - _('%s is not a supported file type on this server.'), $filetype) . $hint); + throw new ClientException($hint); } static function respectsQuota($user, $filesize) From 128607a270d9aa8c6d2fac2bb07bbcb78b2abff4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 18:24:44 +0200 Subject: [PATCH 013/310] Update translator documentation and add punctuation where missing to exception messages. --- lib/mediafile.php | 19 +++++++++++++++++++ lib/oauthstore.php | 11 ++++++----- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/lib/mediafile.php b/lib/mediafile.php index 5946363207..23338cc0e1 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -95,6 +95,7 @@ class MediaFile if (!$file_id) { common_log_db_error($file, "INSERT", __FILE__); + // TRANS: Client exception thrown when a database error was thrown during a file upload operation. throw new ClientException(_('There was a database error while saving your file. Please try again.')); } @@ -120,6 +121,7 @@ class MediaFile if (!$result) { common_log_db_error($file_redir, "INSERT", __FILE__); + // TRANS: Client exception thrown when a database error was thrown during a file upload operation. throw new ClientException(_('There was a database error while saving your file. Please try again.')); } } @@ -139,16 +141,19 @@ class MediaFile case UPLOAD_ERR_OK: // success, jump out break; case UPLOAD_ERR_INI_SIZE: + // TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. throw new ClientException(_('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' . ' that was specified in the HTML form.')); return; case UPLOAD_ERR_PARTIAL: @unlink($_FILES[$param]['tmp_name']); + // TRANS: Client exception. throw new ClientException(_('The uploaded file was only' . ' partially uploaded.')); return; @@ -156,17 +161,21 @@ class MediaFile // No file; probably just a non-AJAX submission. return; case UPLOAD_ERR_NO_TMP_DIR: + // TRANS: Client exception thrown when a temporary folder is not present to store a file upload. throw new ClientException(_('Missing a temporary folder.')); return; case UPLOAD_ERR_CANT_WRITE: + // TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. throw new ClientException(_('Failed to write file to disk.')); return; case UPLOAD_ERR_EXTENSION: + // TRANS: Client exception thrown when a file upload operation has been stopped by an extension. throw new ClientException(_('File upload stopped by extension.')); return; default: common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . $_FILES[$param]['error']); + // TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. throw new ClientException(_('System error uploading file.')); return; } @@ -176,6 +185,7 @@ class MediaFile // Should never actually get here @unlink($_FILES[$param]['tmp_name']); + // TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. throw new ClientException(_('File exceeds user\'s quota.')); return; } @@ -194,11 +204,15 @@ class MediaFile $result = move_uploaded_file($_FILES[$param]['tmp_name'], $filepath); if (!$result) { + // TRANS: Client exception thrown when a file upload operation fails because the file could + // TRANS: not be moved from the temporary folder to the permanent file location. throw new ClientException(_('File could not be moved to destination directory.')); return; } } else { + // TRANS: Client exception thrown when a file upload operation has been stopped because the MIME + // TRANS: type of the uploaded file could not be determined. throw new ClientException(_('Could not determine file\'s MIME type.')); return; } @@ -214,6 +228,7 @@ class MediaFile // Should never actually get here + // TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. throw new ClientException(_('File exceeds user\'s quota.')); return; } @@ -231,10 +246,14 @@ class MediaFile $result = copy($stream['uri'], $filepath) && chmod($filepath, 0664); if (!$result) { + // TRANS: Client exception thrown when a file upload operation fails because the file could + // TRANS: not be moved from the temporary folder to the permanent file location. throw new ClientException(_('File could not be moved to destination directory.' . $stream['uri'] . ' ' . $filepath)); } } else { + // TRANS: Client exception thrown when a file upload operation has been stopped because the MIME + // TRANS: type of the uploaded file could not be determined. throw new ClientException(_('Could not determine file\'s MIME type.')); return; } diff --git a/lib/oauthstore.php b/lib/oauthstore.php index a6a6de7505..f3ee629fd7 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -280,7 +280,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $profile->created = DB_DataObject_Cast::dateTime(); # current time $id = $profile->insert(); if (!$id) { - throw new Exception(_('Error inserting new profile')); + throw new Exception(_('Error inserting new profile.')); } $remote->id = $id; } @@ -288,7 +288,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $avatar_url = $omb_profile->getAvatarURL(); if ($avatar_url) { if (!$this->add_avatar($profile, $avatar_url)) { - throw new Exception(_('Error inserting avatar')); + throw new Exception(_('Error inserting avatar.')); } } else { $avatar = $profile->getOriginalAvatar(); @@ -303,12 +303,12 @@ class StatusNetOAuthDataStore extends OAuthDataStore if ($exists) { if (!$remote->update($orig_remote)) { - throw new Exception(_('Error updating remote profile')); + throw new Exception(_('Error updating remote profile.')); } } else { $remote->created = DB_DataObject_Cast::dateTime(); # current time if (!$remote->insert()) { - throw new Exception(_('Error inserting remote profile')); + throw new Exception(_('Error inserting remote profile.')); } } } @@ -342,7 +342,8 @@ class StatusNetOAuthDataStore extends OAuthDataStore **/ public function saveNotice(&$omb_notice) { if (Notice::staticGet('uri', $omb_notice->getIdentifierURI())) { - throw new Exception(_('Duplicate notice')); + // TRANS: Exception thrown when a notice is denied because it has been sent before. + throw new Exception(_('Duplicate notice.')); } $author_uri = $omb_notice->getAuthor()->getIdentifierURI(); common_log(LOG_DEBUG, $author_uri, __FILE__); From 0d1b60b11df70ea97984d857bcab8dd0b694334e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 12 Sep 2010 18:34:33 +0200 Subject: [PATCH 014/310] Update translator documentation. --- lib/groupnav.php | 42 ++++++++++++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 12 deletions(-) diff --git a/lib/groupnav.php b/lib/groupnav.php index 131b38fa27..ee988d0a98 100644 --- a/lib/groupnav.php +++ b/lib/groupnav.php @@ -82,14 +82,20 @@ class GroupNav extends Widget if (Event::handle('StartGroupGroupNav', array($this))) { $this->out->menuItem(common_local_url('showgroup', array('nickname' => $nickname)), - _('Group'), - sprintf(_('%s group'), $nickname), + // TRANS: Menu item in the group navigation page. + _m('MENU','Group'), + // TRANS: Tooltip for menu item in the group navigation page. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','%s group'), $nickname), $action_name == 'showgroup', 'nav_group_group'); $this->out->menuItem(common_local_url('groupmembers', array('nickname' => $nickname)), - _('Members'), - sprintf(_('%s group members'), $nickname), + // TRANS: Menu item in the group navigation page. + _m('MENU','Members'), + // TRANS: Tooltip for menu item in the group navigation page. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','%s group members'), $nickname), $action_name == 'groupmembers', 'nav_group_members'); @@ -98,26 +104,38 @@ class GroupNav extends Widget if ($cur && $cur->isAdmin($this->group)) { $this->out->menuItem(common_local_url('blockedfromgroup', array('nickname' => $nickname)), - _('Blocked'), - sprintf(_('%s blocked users'), $nickname), + // TRANS: Menu item in the group navigation page. Only shown for group administrators. + _m('MENU','Blocked'), + // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','%s blocked users'), $nickname), $action_name == 'blockedfromgroup', 'nav_group_blocked'); $this->out->menuItem(common_local_url('editgroup', array('nickname' => $nickname)), - _('Admin'), - sprintf(_('Edit %s group properties'), $nickname), + // TRANS: Menu item in the group navigation page. Only shown for group administrators. + _m('MENU','Admin'), + // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Edit %s group properties'), $nickname), $action_name == 'editgroup', 'nav_group_admin'); $this->out->menuItem(common_local_url('grouplogo', array('nickname' => $nickname)), - _('Logo'), - sprintf(_('Add or edit %s logo'), $nickname), + // TRANS: Menu item in the group navigation page. Only shown for group administrators. + _m('MENU','Logo'), + // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Add or edit %s logo'), $nickname), $action_name == 'grouplogo', 'nav_group_logo'); $this->out->menuItem(common_local_url('groupdesignsettings', array('nickname' => $nickname)), - _('Design'), - sprintf(_('Add or edit %s design'), $nickname), + // TRANS: Menu item in the group navigation page. Only shown for group administrators. + _m('MENU','Design'), + // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Add or edit %s design'), $nickname), $action_name == 'groupdesignsettings', 'nav_group_design'); } From d9b959fc64e4e36b0957afd33482f480b24868f9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 4 Aug 2010 12:07:49 -0700 Subject: [PATCH 015/310] move code for making activities from OStatus plugin to Subscription and Fave classes --- classes/Fave.php | 25 ++++++++++++++++++ classes/Subscription.php | 26 ++++++++++++++++++ plugins/OStatus/OStatusPlugin.php | 44 +++++++------------------------ 3 files changed, 61 insertions(+), 34 deletions(-) diff --git a/classes/Fave.php b/classes/Fave.php index ed4f56aeef..9d0b0aa029 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -129,4 +129,29 @@ class Fave extends Memcached_DataObject return $ids; } + + function asActivity() + { + $notice = Notice::staticGet('id', $this->notice_id); + $profile = Profile::staticGet('id', $this->user_id); + + $act = new Activity(); + + $act->verb = ActivityVerb::FAVORITE; + $act->id = TagURI::mint('favor:%d:%d:%s', + $profile->id, + $notice->id, + common_date_iso8601($this->created)); + + $act->time = $this->created; + $act->title = _("Favor"); + $act->content = sprintf(_("%s marked notice %s as a favorite."), + $profile->getBestName(), + $notice->uri); + + $act->actor = ActivityObject::fromProfile($profile); + $act->object = ActivityObject::fromNotice($notice); + + return $act; + } } diff --git a/classes/Subscription.php b/classes/Subscription.php index 0225ed4df9..0044699a36 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -235,4 +235,30 @@ class Subscription extends Memcached_DataObject 'subscribed' => $other->id)); return (empty($sub)) ? false : true; } + + function asActivity() + { + $subscriber = Profile::staticGet('id', $this->subscriber); + $subscribed = Profile::staticGet('id', $this->subscribed); + + $act = new Activity(); + + $act->verb = ActivityVerb::FOLLOW; + + $act->id = TagURI::mint('follow:%d:%d:%s', + $subscriber->id, + $subscribed->id, + common_date_iso8601($this->created)); + + $act->time = strtotime($this->created); + $act->title = _("Follow"); + $act->content = sprintf(_("%s is now following %s."), + $subscriber->getBestName(), + $subscribed->getBestName()); + + $act->actor = ActivityObject::fromProfile($subscriber); + $act->object = ActivityObject::fromProfile($subscribed); + + return $act; + } } diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 77bc9872b4..b182438dc3 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -553,25 +553,10 @@ class OStatusPlugin extends Plugin return true; } - $act = new Activity(); + $sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id, + 'subscribed' => $other->id)); - $act->verb = ActivityVerb::FOLLOW; - - $act->id = TagURI::mint('follow:%d:%d:%s', - $subscriber->id, - $other->id, - common_date_iso8601(time())); - - $act->time = time(); - $act->title = _("Follow"); - // TRANS: Success message for subscribe to user attempt through OStatus. - // TRANS: %1$s is the subscriber name, %2$s is the subscribed user's name. - $act->content = sprintf(_("%1$s is now following %2$s."), - $subscriber->getBestName(), - $other->getBestName()); - - $act->actor = ActivityObject::fromProfile($subscriber); - $act->object = ActivityObject::fromProfile($other); + $act = $sub->asActivity(); $oprofile->notifyActivity($act, $subscriber); @@ -744,24 +729,15 @@ class OStatusPlugin extends Plugin return true; } - $act = new Activity(); + $fav = Fave::pkeyGet(array('user_id' => $user->id, + 'notice_id' => $notice->id)); - $act->verb = ActivityVerb::FAVORITE; - $act->id = TagURI::mint('favor:%d:%d:%s', - $profile->id, - $notice->id, - common_date_iso8601(time())); + if (empty($fav)) { + // That's weird. + return true; + } - $act->time = time(); - $act->title = _("Favor"); - // TRANS: Success message for adding a favorite notice through OStatus. - // TRANS: %1$s is the favoring user's name, %2$s is URI to the favored notice. - $act->content = sprintf(_("%1$s marked notice %2$s as a favorite."), - $profile->getBestName(), - $notice->uri); - - $act->actor = ActivityObject::fromProfile($profile); - $act->object = ActivityObject::fromNotice($notice); + $act = $fav->asActivity(); $oprofile->notifyActivity($act, $profile); From d634f9cf17f683c38150d64d29b47975b5aeac70 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 10 Aug 2010 17:03:47 -0700 Subject: [PATCH 016/310] Notice::asActivity --- classes/Notice.php | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/classes/Notice.php b/classes/Notice.php index f1b012465b..9a6f180e56 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1212,6 +1212,64 @@ class Notice extends Memcached_DataObject return $groups; } + function asActivity() + { + $profile = $this->getProfile(); + + $act = new Activity(); + + $act->actor = Activity::fromProfile($profile); + $act->verb = ActivityVerb::POST; + $act->objects[] = ActivityObject::fromNotice($this); + + $act->time = strtotime($this->created); + $act->link = $this->bestUrl(); + + $act->content = common_xml_safe_string($this->rendered); + $act->id = $this->uri; + $act->title = common_xml_safe_string($this->content); + + $ctx = new ActivityContext(); + + if (!empty($this->reply_to)) { + $reply = Notice::staticGet('id', $this->reply_to); + if (!empty($reply)) { + $ctx->replyToID = $reply->uri; + $ctx->replyToUrl = $reply->bestUrl(); + } + } + + $ctx->location = $this->getLocation(); + + $conv = null; + + if (!empty($this->conversation)) { + $conv = Conversation::staticGet('id', $this->conversation); + if (!empty($conv)) { + $ctx->conversation = $conv->uri; + } + } + + $reply_ids = $this->getReplies(); + + foreach ($reply_ids as $id) { + $profile = Profile::staticGet('id', $id); + if (!empty($profile)) { + $ctx->attention[] = $profile->uri; + } + } + + $groups = $this->getGroups(); + + foreach ($groups as $group) { + $ctx->attention[] = $group->uri; + } + + $act->context = $ctx; + + return $act; + } + // This has gotten way too long. Needs to be sliced up into functional bits // or ideally exported to a utility class. From 0021c16bd11be5c9e9f0196154b037e604d6bf37 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 13 Sep 2010 12:06:10 -0700 Subject: [PATCH 017/310] Declare public options on DisqusPlugin to avoid notice warnings on access if not set. --- plugins/DisqusPlugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/DisqusPlugin.php b/plugins/DisqusPlugin.php index c07eaaabdd..eef40616ee 100644 --- a/plugins/DisqusPlugin.php +++ b/plugins/DisqusPlugin.php @@ -71,6 +71,9 @@ if (!defined('STATUSNET')) { class DisqusPlugin extends Plugin { + public $shortname; // Required 'shortname' for actually triggering Disqus. + public $div_style; // Optional CSS chunk for the main
+ function onEndShowContentBlock($action) { if (get_class($action) == 'ShownoticeAction') { From b27882c9166191de4aaea298ba1b1a524cfe9ac7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:07:43 +0200 Subject: [PATCH 018/310] Add plural support for minutes/hours/days/months ago. --- lib/util.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/util.php b/lib/util.php index f63e152e33..f547f166cc 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1104,30 +1104,26 @@ function common_date_string($dt) // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a minute ago'); } else if ($diff < 3300) { - // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d minutes ago'), round($diff/60)); + return sprintf( ngettext('about one minute ago', 'about %d minutes ago'), round($diff/60)); } else if ($diff < 5400) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about an hour ago'); } else if ($diff < 22 * 3600) { - // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d hours ago'), round($diff/3600)); + return sprintf( ngettext('about one hour ago', 'about %d hours ago'), round($diff/3600)); } else if ($diff < 37 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a day ago'); } else if ($diff < 24 * 24 * 3600) { - // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d days ago'), round($diff/(24*3600))); + return sprintf( ngettext('about one day ago', 'about %d days ago'), round($diff/(24*3600))); } else if ($diff < 46 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a month ago'); } else if ($diff < 330 * 24 * 3600) { - // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d months ago'), round($diff/(30*24*3600))); + return sprintf( ngettext('about one month ago', 'about %d months ago'), round($diff/(30*24*3600))); } else if ($diff < 480 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a year ago'); From 6817420e6c95079a0d1551e525d74d80c01e416b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:14:36 +0200 Subject: [PATCH 019/310] Remove trailing whitespace and update comment consistency on methods. --- lib/util.php | 89 +++++++++++++++++++++++++++------------------------- 1 file changed, 46 insertions(+), 43 deletions(-) diff --git a/lib/util.php b/lib/util.php index f547f166cc..0b90cb01d7 100644 --- a/lib/util.php +++ b/lib/util.php @@ -19,15 +19,18 @@ /* XXX: break up into separate modules (HTTP, user, files) */ -// Show a server error - +/** + * Show a server error. + */ function common_server_error($msg, $code=500) { $err = new ServerErrorAction($msg, $code); $err->showPage(); } -// Show a user error +/** + * Show a user error. + */ function common_user_error($msg, $code=400) { $err = new ClientErrorAction($msg, $code); @@ -37,7 +40,7 @@ function common_user_error($msg, $code=400) /** * This should only be used at setup; processes switching languages * to send text to other users should use common_switch_locale(). - * + * * @param string $language Locale language code (optional; empty uses * current user's preference or site default) * @return mixed success @@ -61,10 +64,10 @@ function common_init_locale($language=null) /** * Initialize locale and charset settings and gettext with our message catalog, * using the current user's language preference or the site default. - * + * * This should generally only be run at framework initialization; code switching * languages at runtime should call common_switch_language(). - * + * * @access private */ function common_init_language() @@ -157,7 +160,6 @@ function common_timezone() function common_language() { - // If there is a user logged in and they've set a language preference // then return that one... if (_have_config() && common_logged_in()) { @@ -189,8 +191,10 @@ function common_language() // Finally, if none of the above worked, use the site's default... return common_config('site', 'language'); } -// salted, hashed passwords are stored in the DB +/** + * Salted, hashed passwords are stored in the DB. + */ function common_munge_password($password, $id) { if (is_object($id) || is_object($password)) { @@ -201,8 +205,9 @@ function common_munge_password($password, $id) return md5($password . $id); } -// check if a username exists and has matching password - +/** + * Check if a username exists and has matching password. + */ function common_check_user($nickname, $password) { // empty nickname always unacceptable @@ -229,7 +234,9 @@ function common_check_user($nickname, $password) return $authenticatedUser; } -// is the current user logged in? +/** + * Is the current user logged in? + */ function common_logged_in() { return (!is_null(common_current_user())); @@ -275,12 +282,10 @@ function common_ensure_session() // 3) null to clear // Initialize to false; set to null if none found - $_cur = false; function common_set_user($user) { - global $_cur; if (is_null($user) && common_have_session()) { @@ -366,7 +371,6 @@ function common_rememberme($user=null) function common_remembered_user() { - $user = null; $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null; @@ -428,14 +432,17 @@ function common_remembered_user() return $user; } -// must be called with a valid user! - +/** + * must be called with a valid user! + */ function common_forgetme() { common_set_cookie(REMEMBERME, '', 0); } -// who is the current user? +/** + * Who is the current user? + */ function common_current_user() { global $_cur; @@ -471,10 +478,11 @@ function common_current_user() return $_cur; } -// Logins that are 'remembered' aren't 'real' -- they're subject to -// cookie-stealing. So, we don't let them do certain things. New reg, -// OpenID, and password logins _are_ real. - +/** + * Logins that are 'remembered' aren't 'real' -- they're subject to + * cookie-stealing. So, we don't let them do certain things. New reg, + * OpenID, and password logins _are_ real. + */ function common_real_login($real=true) { common_ensure_session(); @@ -577,9 +585,7 @@ function common_find_mentions($text, $notice) } if (Event::handle('StartFindMentions', array($sender, $text, &$mentions))) { - // Get the context of the original notice, if any - $originalAuthor = null; $originalNotice = null; $originalMentions = array(); @@ -615,7 +621,6 @@ function common_find_mentions($text, $notice) $matches = array_merge($tmatches[1], $atmatches[1]); foreach ($matches as $match) { - $nickname = common_canonical_nickname($match[0]); // Try to get a profile for this nickname. @@ -623,19 +628,15 @@ function common_find_mentions($text, $notice) // sender context. if (!empty($originalAuthor) && $originalAuthor->nickname == $nickname) { - $mentioned = $originalAuthor; - } else if (!empty($originalMentions) && array_key_exists($nickname, $originalMentions)) { - $mentioned = $originalMentions[$nickname]; } else { $mentioned = common_relative_profile($sender, $nickname); } if (!empty($mentioned)) { - $user = User::staticGet('id', $mentioned->id); if ($user) { @@ -1226,8 +1227,9 @@ function common_broadcast_notice($notice, $remote=false) // DO NOTHING! } -// Stick the notice on the queue - +/** + * Stick the notice on the queue. + */ function common_enqueue_notice($notice) { static $localTransports = array('omb', @@ -1289,8 +1291,9 @@ function common_profile_url($nickname) null, null, false); } -// Should make up a reasonable root URL - +/** + * Should make up a reasonable root URL + */ function common_root_url($ssl=false) { $url = common_path('', $ssl, false); @@ -1301,9 +1304,10 @@ function common_root_url($ssl=false) return $url; } -// returns $bytes bytes of random data as a hexadecimal string -// "good" here is a goal and not a guarantee - +/** + * returns $bytes bytes of random data as a hexadecimal string + * "good" here is a goal and not a guarantee + */ function common_good_rand($bytes) { // XXX: use random.org...? @@ -1339,13 +1343,13 @@ function common_mtrand($bytes) /** * Record the given URL as the return destination for a future * form submission, to be read by common_get_returnto(). - * + * * @param string $url - * + * * @fixme as a session-global setting, this can allow multiple forms * to conflict and overwrite each others' returnto destinations if * the user has multiple tabs or windows open. - * + * * Should refactor to index with a token or otherwise only pass the * data along its intended path. */ @@ -1358,13 +1362,13 @@ function common_set_returnto($url) /** * Fetch a return-destination URL previously recorded by * common_set_returnto(). - * + * * @return mixed URL string or null - * + * * @fixme as a session-global setting, this can allow multiple forms * to conflict and overwrite each others' returnto destinations if * the user has multiple tabs or windows open. - * + * * Should refactor to index with a token or otherwise only pass the * data along its intended path. */ @@ -1491,7 +1495,7 @@ function common_valid_tag($tag) * Determine if given domain or address literal is valid * eg for use in JIDs and URLs. Does not check if the domain * exists! - * + * * @param string $domain * @return boolean valid or not */ @@ -1822,7 +1826,6 @@ function common_compatible_license($from, $to) */ function common_database_tablename($tablename) { - if(common_config('db','quote_identifiers')) { $tablename = '"'. $tablename .'"'; } From a590f2cb0f7c0059143bf6680033bcf9b2f9b33d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:16:00 +0200 Subject: [PATCH 020/310] Fix typos in translator comments. --- lib/command.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/command.php b/lib/command.php index 2b61a0c808..0251dfc7f6 100644 --- a/lib/command.php +++ b/lib/command.php @@ -831,7 +831,7 @@ class SubscriptionsCommand extends Command $out=_('You are not subscribed to anyone.'); }else{ // TRANS: Text shown after requesting other users a user is subscribed to. - // TRANS: This message support plural forms. This message is followed by a + // 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:', 'You are subscribed to these people:', @@ -858,7 +858,7 @@ class SubscribersCommand extends Command $out=_('No one is subscribed to you.'); }else{ // TRANS: Text shown after requesting other users that are subscribed to a user (followers). - // TRANS: This message support plural forms. This message is followed by a + // 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:', 'These people are subscribed to you:', @@ -885,7 +885,7 @@ class GroupsCommand extends Command $out=_('You are not a member of any groups.'); }else{ // TRANS: Text shown after requesting groups a user is subscribed to. - // TRANS: This message support plural forms. This message is followed by a + // 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:', 'You are a member of these groups:', From d6be5be54816a14ee765b4ba666a41bfda356503 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:21:45 +0200 Subject: [PATCH 021/310] Move translator hint to where gettext will actually see it and replace tab by spaces. --- lib/command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/command.php b/lib/command.php index 0251dfc7f6..4887cac452 100644 --- a/lib/command.php +++ b/lib/command.php @@ -900,8 +900,8 @@ class HelpCommand extends Command { function handle($channel) { - // TRANS: Help text for commands. $channel->output($this->user, + // TRANS: Help text for commands. _("Commands:\n". "on - turn on notifications\n". "off - turn off notifications\n". From 8c94ebf5375fe8ab9cb450525436396404d3fd33 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:49:42 +0200 Subject: [PATCH 022/310] * update/add translator documentation * remove superfluous whitespace --- lib/action.php | 10 +++++++++- lib/activity.php | 1 - lib/activitycontext.php | 1 - lib/activityobject.php | 2 -- lib/activityutils.php | 9 +++------ lib/activityverb.php | 1 - lib/adminform.php | 3 --- lib/adminpanelaction.php | 14 ------------- lib/apiaction.php | 12 ----------- lib/apiauth.php | 33 ++++++++++--------------------- lib/attachmentnoticesection.php | 1 + lib/attachmenttagcloudsection.php | 1 + 12 files changed, 24 insertions(+), 64 deletions(-) diff --git a/lib/action.php b/lib/action.php index e503975147..5c4b4a7b7d 100644 --- a/lib/action.php +++ b/lib/action.php @@ -840,6 +840,9 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('dd', null); if (common_config('site', 'broughtby')) { // 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 $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%).'); } else { // TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. @@ -847,6 +850,9 @@ class Action extends HTMLOutputter // lawsuit } $instr .= ' '; // TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. + // TRANS: Make sure there is no whitespace between "]" and "(". + // TRANS: Text between [] is a link description, text between () is the link itself. + // TRANS: %s is the version of StatusNet that is being used. $instr .= sprintf(_('It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), STATUSNET_VERSION); $output = common_markup_to_html($instr); $this->raw($output); @@ -893,7 +899,8 @@ class Action extends HTMLOutputter // lawsuit 'width' => '80', 'height' => '15')); $this->text(' '); - // TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. + // 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. $notice = _('All %1$s content and data are available under the %2$s license.'); $link = "trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error text when there is a problem with the session token. $this->clientError(_('There was a problem with your session token.')); } } diff --git a/lib/activity.php b/lib/activity.php index 8e2da99bb3..09a4daee82 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -387,4 +387,3 @@ class Activity return ActivityUtils::child($element, $tag, $namespace); } } - diff --git a/lib/activitycontext.php b/lib/activitycontext.php index 09a4579249..cc02a01955 100644 --- a/lib/activitycontext.php +++ b/lib/activitycontext.php @@ -73,7 +73,6 @@ class ActivityContext $attention = array(); for ($i = 0; $i < $links->length; $i++) { - $link = $links->item($i); $linkRel = $link->getAttribute(ActivityUtils::REL); diff --git a/lib/activityobject.php b/lib/activityobject.php index 677a48197f..0fc06948bb 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -168,7 +168,6 @@ class ActivityObject ActivityObject::MEDIA_DESCRIPTION, Activity::MEDIA ); - } } @@ -418,7 +417,6 @@ class ActivityObject ); foreach ($sizes as $size) { - $alink = null; $avatar = $profile->getAvatar($size); diff --git a/lib/activityutils.php b/lib/activityutils.php index dd38d4e142..b975a6382b 100644 --- a/lib/activityutils.php +++ b/lib/activityutils.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class ActivityUtils { const ATOM = 'http://www.w3.org/2005/Atom'; @@ -66,7 +65,6 @@ class ActivityUtils * * @return string related link, if any */ - static function getPermalink($element) { return self::getLink($element, 'alternate', 'text/html'); @@ -79,7 +77,6 @@ class ActivityUtils * * @return string related link, if any */ - static function getLink(DOMNode $element, $rel, $type=null) { $els = $element->childNodes; @@ -135,7 +132,6 @@ class ActivityUtils * * @return DOMElement found element or null */ - static function child(DOMNode $element, $tag, $namespace=self::ATOM) { $els = $element->childNodes; @@ -160,7 +156,6 @@ class ActivityUtils * * @return string content of the child */ - static function childContent(DOMNode $element, $tag, $namespace=self::ATOM) { $el = self::child($element, $tag, $namespace); @@ -194,7 +189,6 @@ class ActivityUtils * @todo handle embedded XML mime types * @todo handle base64-encoded non-XML and non-text mime types */ - static function getContent($element) { return self::childHtmlContent($element, self::CONTENT, self::ATOM); @@ -205,6 +199,7 @@ class ActivityUtils $src = $el->getAttribute(self::SRC); if (!empty($src)) { + // TRANS: Client exception thrown when there is no source attribute. throw new ClientException(_("Can't handle remote content yet.")); } @@ -241,10 +236,12 @@ class ActivityUtils return trim($text); } else if (in_array($type, array('text/xml', 'application/xml')) || preg_match('#(+|/)xml$#', $type)) { + // TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. throw new ClientException(_("Can't handle embedded XML content yet.")); } else if (strncasecmp($type, 'text/', 5)) { return $el->textContent; } else { + // TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. throw new ClientException(_("Can't handle embedded Base64 content yet.")); } } diff --git a/lib/activityverb.php b/lib/activityverb.php index 76f2b84e9c..264351308b 100644 --- a/lib/activityverb.php +++ b/lib/activityverb.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class ActivityVerb { const POST = 'http://activitystrea.ms/schema/1.0/post'; diff --git a/lib/adminform.php b/lib/adminform.php index 3934f63515..9b0e45f8a6 100644 --- a/lib/adminform.php +++ b/lib/adminform.php @@ -45,7 +45,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * * @see Form */ - class AdminForm extends Form { /** @@ -59,7 +58,6 @@ class AdminForm extends Form * * @return void */ - function input($setting, $title, $instructions, $section='site') { $this->out->input($setting, $title, $this->value($setting, $section), $instructions); @@ -73,7 +71,6 @@ class AdminForm extends Form * * @return string param value if posted, or current config value */ - function value($setting, $main='site') { $value = $this->out->trimmed($setting); diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 41cfe5851b..5c414bbd7b 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * * @todo Find some commonalities with SettingsAction and combine */ - class AdminPanelAction extends Action { var $success = true; @@ -61,7 +60,6 @@ class AdminPanelAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -124,7 +122,6 @@ class AdminPanelAction extends Action * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -155,7 +152,6 @@ class AdminPanelAction extends Action * @return void * @see AdminPanelNav */ - function showLocalNav() { $nav = new AdminPanelNav($this); @@ -169,7 +165,6 @@ class AdminPanelAction extends Action * * @return void. */ - function showContent() { $this->showForm(); @@ -199,7 +194,6 @@ class AdminPanelAction extends Action * * @return void */ - function showPageNotice() { if ($this->msg) { @@ -222,7 +216,6 @@ class AdminPanelAction extends Action * * @return void */ - function showForm() { // TRANS: Client error message. @@ -239,7 +232,6 @@ class AdminPanelAction extends Action * * @return void */ - function getInstructions() { return ''; @@ -252,7 +244,6 @@ class AdminPanelAction extends Action * * @return void */ - function saveSettings() { // TRANS: Client error message @@ -267,7 +258,6 @@ class AdminPanelAction extends Action * * @return mixed $result false if something didn't work */ - function deleteSetting($section, $setting) { $config = new Config(); @@ -314,7 +304,6 @@ class AdminPanelAction extends Action * * @see Widget */ - class AdminPanelNav extends Widget { var $action = null; @@ -324,7 +313,6 @@ class AdminPanelNav extends Widget * * @param Action $action current action, used for output */ - function __construct($action=null) { parent::__construct($action); @@ -336,7 +324,6 @@ class AdminPanelNav extends Widget * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -413,5 +400,4 @@ class AdminPanelNav extends Widget } $this->action->elementEnd('ul'); } - } diff --git a/lib/apiaction.php b/lib/apiaction.php index 5e0cd55187..0074b7dc53 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -112,7 +112,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAction extends Action { const READ_ONLY = 1; @@ -139,7 +138,6 @@ class ApiAction extends Action * * @return boolean false if user doesn't exist */ - function prepare($args) { StatusNet::setApi(true); // reduce exception reports to aid in debugging @@ -172,7 +170,6 @@ class ApiAction extends Action * * @return void */ - function handle($args) { header('Access-Control-Allow-Origin: *'); @@ -862,7 +859,6 @@ class ApiAction extends Action } $this->endDocument('atom'); - } function showRssGroups($group, $title, $link, $subtitle) @@ -1015,7 +1011,6 @@ class ApiAction extends Action function showAtomGroups($group, $title, $id, $link, $subtitle=null, $selfuri=null) { - $this->initDocument('atom'); $this->element('title', null, common_xml_safe_str($title)); @@ -1046,7 +1041,6 @@ class ApiAction extends Action function showJsonTimeline($notice) { - $this->initDocument('json'); $statuses = array(); @@ -1072,7 +1066,6 @@ class ApiAction extends Action function showJsonGroups($group) { - $this->initDocument('json'); $groups = array(); @@ -1118,7 +1111,6 @@ class ApiAction extends Action function showTwitterXmlUsers($user) { - $this->initDocument('xml'); $this->elementStart('users', array('type' => 'array', 'xmlns:statusnet' => 'http://status.net/schema/api/1/')); @@ -1141,7 +1133,6 @@ class ApiAction extends Action function showJsonUsers($user) { - $this->initDocument('json'); $users = array(); @@ -1226,7 +1217,6 @@ class ApiAction extends Action $this->endXML(); break; case 'json': - // Check for JSONP callback if (isset($this->callback)) { print ')'; @@ -1483,7 +1473,6 @@ class ApiAction extends Action */ function arg($key, $def=null) { - // XXX: Do even more input validation/scrubbing? if (array_key_exists($key, $this->args)) { @@ -1550,5 +1539,4 @@ class ApiAction extends Action return $uri; } - } diff --git a/lib/apiauth.php b/lib/apiauth.php index cf7a2692ca..8b0a3da17b 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -68,7 +68,6 @@ require_once INSTALLDIR . '/lib/apioauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiAuthAction extends ApiAction { var $auth_user_nickname = null; @@ -83,7 +82,6 @@ class ApiAuthAction extends ApiAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -126,7 +124,6 @@ class ApiAuthAction extends ApiAction * * @return mixed the OAuthRequest or false */ - function getOAuthRequest() { ApiOauthAction::cleanRequest(); @@ -154,7 +151,6 @@ class ApiAuthAction extends ApiAction * * @return nothing */ - function checkOAuthRequest($request) { $datastore = new ApiStatusNetOAuthDataStore(); @@ -164,7 +160,6 @@ class ApiAuthAction extends ApiAction $server->add_signature_method($hmac_method); try { - $server->verify_request($request); $consumer = $request->get_parameter('oauth_consumer_key'); @@ -176,7 +171,8 @@ class ApiAuthAction extends ApiAction common_log(LOG_WARNING, 'Couldn\'t find the OAuth app for consumer key: ' . $consumer); - throw new OAuthException('No application for that consumer key.'); + // TRANS: OAuth exception thrown when no application is found for a given consumer key. + throw new OAuthException(_('No application for that consumer key.')); } // set the source attr @@ -186,19 +182,15 @@ class ApiAuthAction extends ApiAction $appUser = Oauth_application_user::staticGet('token', $access_token); if (!empty($appUser)) { - // If access_type == 0 we have either a request token // or a bad / revoked access token if ($appUser->access_type != 0) { - // Set the access level for the api call - $this->access = ($appUser->access_type & Oauth_application::$writeAccess) ? self::READ_WRITE : self::READ_ONLY; // Set the auth user - if (Event::handle('StartSetApiUser', array(&$user))) { $this->auth_user = User::staticGet('id', $appUser->profile_id); Event::handle('EndSetApiUser', array($user)); @@ -216,13 +208,13 @@ class ApiAuthAction extends ApiAction 'read-write' : 'read-only' )); } else { - throw new OAuthException('Bad access token.'); + // TRANS: OAuth exception given when an incorrect access token was given for a user. + throw new OAuthException(_('Bad access token.')); } } else { - // Also should not happen - - throw new OAuthException('No user for that token.'); + // 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.')); } } catch (OAuthException $e) { @@ -237,7 +229,6 @@ class ApiAuthAction extends ApiAction * * @return boolean true */ - function requiresAuth() { return true; @@ -249,7 +240,6 @@ class ApiAuthAction extends ApiAction * * @return boolean true or false */ - function checkBasicAuthUser($required = true) { $this->basicAuthProcessHeader(); @@ -264,8 +254,8 @@ class ApiAuthAction extends ApiAction header('WWW-Authenticate: Basic realm="' . $realm . '"'); // show error if the user clicks 'cancel' - - $this->clientError("Could not authenticate you.", 401, $this->format); + // TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". + $this->clientError(_("Could not authenticate you."), 401, $this->format); exit; } else { @@ -283,13 +273,11 @@ class ApiAuthAction extends ApiAction } // By default, basic auth users have rw access - $this->access = self::READ_WRITE; if (empty($this->auth_user) && ($required || isset($_SERVER['PHP_AUTH_USER']))) { // basic authentication failed - list($proxy, $ip) = common_client_ip(); $msg = sprintf( 'Failed API auth attempt, nickname = %1$s, ' . @@ -298,7 +286,8 @@ class ApiAuthAction extends ApiAction $proxy, $ip); common_log(LOG_WARNING, $msg); - $this->clientError("Could not authenticate you.", 401, $this->format); + // TRANS: Client error thrown when authentication fails. + $this->clientError(_("Could not authenticate you."), 401, $this->format); exit; } } @@ -310,7 +299,6 @@ class ApiAuthAction extends ApiAction * * @return void */ - function basicAuthProcessHeader() { $authHeaders = array('AUTHORIZATION', @@ -332,7 +320,6 @@ class ApiAuthAction extends ApiAction // Decode the HTTP_AUTHORIZATION header on php-cgi server self // on fcgid server the header name is AUTHORIZATION - $auth_hash = base64_decode(substr($authorization_header, 6)); list($this->auth_user_nickname, $this->auth_user_password) = explode(':', $auth_hash); diff --git a/lib/attachmentnoticesection.php b/lib/attachmentnoticesection.php index 578c171ff5..53a3b63c1c 100644 --- a/lib/attachmentnoticesection.php +++ b/lib/attachmentnoticesection.php @@ -64,6 +64,7 @@ class AttachmentNoticeSection extends NoticeSection function title() { + // TRANS: Title. return _('Notices where this attachment appears'); } diff --git a/lib/attachmenttagcloudsection.php b/lib/attachmenttagcloudsection.php index e2f85ae025..15aa6dedc3 100644 --- a/lib/attachmenttagcloudsection.php +++ b/lib/attachmenttagcloudsection.php @@ -45,6 +45,7 @@ class AttachmentTagCloudSection extends TagCloudSection { function title() { + // TRANS: Title. return _('Tags for this attachment'); } From 39802077a861c2d4e15bae5f04c9f7dbf94151b8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 13 Sep 2010 00:57:35 +0200 Subject: [PATCH 023/310] * update/add translator documentation * remove superfluous whitespace --- lib/apibareauth.php | 8 +------- lib/apioauth.php | 6 ------ lib/apioauthstore.php | 13 ++++--------- lib/apiprivateauth.php | 7 +------ lib/applicationeditform.php | 18 ++++-------------- lib/applicationlist.php | 3 --- 6 files changed, 10 insertions(+), 45 deletions(-) diff --git a/lib/apibareauth.php b/lib/apibareauth.php index da7af12614..00e0f205ba 100644 --- a/lib/apibareauth.php +++ b/lib/apibareauth.php @@ -30,7 +30,7 @@ * @author Evan Prodromou * @author mEDI * @author Sarven Capadisli - * @author Zach Copley + * @author Zach Copley * @copyright 2009 StatusNet, Inc. * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 @@ -60,7 +60,6 @@ require_once INSTALLDIR.'/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiBareAuthAction extends ApiAuthAction { @@ -72,7 +71,6 @@ class ApiBareAuthAction extends ApiAuthAction * @return boolean success flag * */ - function prepare($args) { parent::prepare($args); @@ -84,18 +82,15 @@ class ApiBareAuthAction extends ApiAuthAction * * @return boolean true or false */ - function requiresAuth() { // If the site is "private", all API methods except statusnet/config // need authentication - if (common_config('site', 'private')) { return true; } // check whether a user has been specified somehow - $id = $this->arg('id'); $user_id = $this->arg('user_id'); $screen_name = $this->arg('screen_name'); @@ -106,5 +101,4 @@ class ApiBareAuthAction extends ApiAuthAction return false; } - } diff --git a/lib/apioauth.php b/lib/apioauth.php index 4cb8a67754..1c87e42324 100644 --- a/lib/apioauth.php +++ b/lib/apioauth.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/lib/apioauthstore.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 ApiOauthAction extends Action { /** @@ -52,7 +51,6 @@ class ApiOauthAction extends Action * * @return boolean false */ - function isReadOnly($args) { return false; @@ -73,7 +71,6 @@ class ApiOauthAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -83,7 +80,6 @@ class ApiOauthAction extends Action static function cleanRequest() { // kill evil effects of magical slashing - if (get_magic_quotes_gpc() == 1) { $_POST = array_map('stripslashes', $_POST); $_GET = array_map('stripslashes', $_GET); @@ -93,7 +89,6 @@ class ApiOauthAction extends Action // XXX: should we strip anything else? Or alternatively // only allow a known list of params? - unset($_GET['p']); unset($_POST['p']); } @@ -118,5 +113,4 @@ class ApiOauthAction extends Action return ($url . '&' . $k . '=' . $v); } } - } diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 1bb11cbca5..84c4c78e53 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -23,7 +23,6 @@ require_once INSTALLDIR . '/lib/oauthstore.php'; class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore { - function lookup_consumer($consumer_key) { $con = Consumer::staticGet('consumer_key', $consumer_key); @@ -39,7 +38,6 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore function getAppByRequestToken($token_key) { // Look up the full req tokenx - $req_token = $this->lookup_token(null, 'request', $token_key); @@ -50,7 +48,6 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore } // Look up the full Token - $token = new Token(); $token->tok = $req_token->key; $result = $token->find(true); @@ -150,7 +147,6 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore } // Okay, good - return new OAuthToken($at->tok, $at->secret); } @@ -172,19 +168,18 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore * * @return void */ - public function revoke_token($token_key, $type = 0) { $rt = new Token(); $rt->tok = $token_key; $rt->type = $type; $rt->state = 0; if (!$rt->find(true)) { - throw new Exception('Tried to revoke unknown token'); + // TRANS: Exception thrown when an attempt is made to revoke an unknown token. + throw new Exception(_('Tried to revoke unknown token')); } if (!$rt->delete()) { - throw new Exception('Failed to delete revoked token'); + // TRANS: Exception thrown when an attempt is made to remove a revoked token. + throw new Exception(_('Failed to delete revoked token')); } } - } - diff --git a/lib/apiprivateauth.php b/lib/apiprivateauth.php index 5e78c65a19..df401c382e 100644 --- a/lib/apiprivateauth.php +++ b/lib/apiprivateauth.php @@ -29,7 +29,7 @@ * @author Evan Prodromou * @author mEDI * @author Sarven Capadisli - * @author Zach Copley + * @author Zach Copley * @copyright 2009 StatusNet, Inc. * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 @@ -58,26 +58,21 @@ require_once INSTALLDIR.'/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiPrivateAuthAction extends ApiAuthAction { - /** * Does this API resource require authentication? * * @return boolean true or false */ - function requiresAuth() { // If the site is "private", all API methods except statusnet/config // need authentication - if (common_config('site', 'private')) { return true; } return false; } - } diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index 81c8fb0181..f126b84ae3 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -43,13 +43,11 @@ require_once INSTALLDIR . '/lib/form.php'; * @link http://status.net/ * */ - class ApplicationEditForm extends Form { /** * group for user to join */ - var $application = null; /** @@ -58,7 +56,6 @@ class ApplicationEditForm extends Form * @param Action $out output channel * @param User_group $group group to join */ - function __construct($out=null, $application=null) { parent::__construct($out); @@ -71,7 +68,6 @@ class ApplicationEditForm extends Form * * @return string ID of the form */ - function id() { if ($this->application) { @@ -89,7 +85,6 @@ class ApplicationEditForm extends Form * * @return string the method to use for submitting */ - function method() { $this->enctype = 'multipart/form-data'; @@ -101,7 +96,6 @@ class ApplicationEditForm extends Form * * @return string of the form class */ - function formClass() { return 'form_settings'; @@ -112,7 +106,6 @@ class ApplicationEditForm extends Form * * @return string URL of the action */ - function action() { $cur = common_current_user(); @@ -130,7 +123,6 @@ class ApplicationEditForm extends Form * * @return void */ - function formLegend() { // TRANS: Form legend. @@ -142,7 +134,6 @@ class ApplicationEditForm extends Form * * @return void */ - function formData() { if ($this->application) { @@ -350,16 +341,15 @@ class ApplicationEditForm extends Form * * @return void */ - function formActions() { - // TRANS: Button label + // TRANS: Button label in the "Edit application" form. $this->out->submit('cancel', _m('BUTTON','Cancel'), 'submit form_action-primary', - // TRANS: Submit button title + // TRANS: Submit button title. 'cancel', _('Cancel')); - // TRANS: Button label + // TRANS: Button label in the "Edit application" form. $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', - // TRANS: Submit button title + // TRANS: Submit button title. 'save', _('Save')); } } diff --git a/lib/applicationlist.php b/lib/applicationlist.php index 904f8981d1..1974d2103b 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -45,7 +45,6 @@ define('APPS_PER_PAGE', 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 ApplicationList extends Widget { /** Current application, application query */ @@ -164,10 +163,8 @@ class ApplicationList extends Widget } /* Override this in subclasses. */ - function showOwnerControls() { return; } - } From 4338bc1ee71c79a6ae55e30157e9bba078acca5d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 16:22:27 -0400 Subject: [PATCH 024/310] bug in time and object handling in Fave::asActivity --- classes/Fave.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/Fave.php b/classes/Fave.php index 9d0b0aa029..f21f1b5297 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -141,16 +141,16 @@ class Fave extends Memcached_DataObject $act->id = TagURI::mint('favor:%d:%d:%s', $profile->id, $notice->id, - common_date_iso8601($this->created)); + common_date_iso8601($this->modified)); - $act->time = $this->created; + $act->time = strtotime($this->modified); $act->title = _("Favor"); $act->content = sprintf(_("%s marked notice %s as a favorite."), $profile->getBestName(), $notice->uri); - $act->actor = ActivityObject::fromProfile($profile); - $act->object = ActivityObject::fromNotice($notice); + $act->actor = ActivityObject::fromProfile($profile); + $act->objects[] = ActivityObject::fromNotice($notice); return $act; } From 9771a7193ff14a23bcf4d34523441416c8ebfad7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 16:22:42 -0400 Subject: [PATCH 025/310] bug in time and object handling in Subscription::asActivity --- classes/Subscription.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Subscription.php b/classes/Subscription.php index 0044699a36..1287499fad 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -256,8 +256,8 @@ class Subscription extends Memcached_DataObject $subscriber->getBestName(), $subscribed->getBestName()); - $act->actor = ActivityObject::fromProfile($subscriber); - $act->object = ActivityObject::fromProfile($subscribed); + $act->actor = ActivityObject::fromProfile($subscriber); + $act->objects[] = ActivityObject::fromProfile($subscribed); return $act; } From d207f19d227c675329db3f339d865c9b45219af2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 16:23:10 -0400 Subject: [PATCH 026/310] accept null constructor for ActivityContext --- lib/activitycontext.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/activitycontext.php b/lib/activitycontext.php index 09a4579249..f568c791ff 100644 --- a/lib/activitycontext.php +++ b/lib/activitycontext.php @@ -54,8 +54,12 @@ class ActivityContext const MENTIONED = 'mentioned'; const CONVERSATION = 'ostatus:conversation'; - function __construct($element) + function __construct($element = null) { + if (empty($element)) { + return; + } + $replyToEl = ActivityUtils::child($element, self::INREPLYTO, self::THR); if (!empty($replyToEl)) { From 9f4891568f458a8135d59820b47b91e3f89ab93b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 16:27:02 -0400 Subject: [PATCH 027/310] bugs in function calls in Notice::asActivity --- classes/Notice.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 9a6f180e56..0539ca3b1d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1218,16 +1218,16 @@ class Notice extends Memcached_DataObject $act = new Activity(); - $act->actor = Activity::fromProfile($profile); + $act->actor = ActivityObject::fromProfile($profile); $act->verb = ActivityVerb::POST; $act->objects[] = ActivityObject::fromNotice($this); $act->time = strtotime($this->created); $act->link = $this->bestUrl(); - $act->content = common_xml_safe_string($this->rendered); + $act->content = common_xml_safe_str($this->rendered); $act->id = $this->uri; - $act->title = common_xml_safe_string($this->content); + $act->title = common_xml_safe_str($this->content); $ctx = new ActivityContext(); From ead2f3375ad8f623b6b15aa4c7194224575b3c41 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 13 Sep 2010 13:37:13 -0700 Subject: [PATCH 028/310] Ticket #2701: old color settings now get reset when changing themes, so you don't end up with the previous theme's colors. --- actions/designadminpanel.php | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 763737175b..e3d772f7d1 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -154,9 +154,22 @@ class DesignadminpanelAction extends AdminPanelAction $config->query('BEGIN'); - // Only update colors if the theme has not changed. + if ($themeChanged) { + // If the theme has changed, reset custom colors and let them pick + // up the new theme's defaults. + $colors = array('background', 'content', 'sidebar', 'text', 'link'); + foreach ($colors as $colorKey) { + // Clear from global config so we see defaults on this page... + $GLOBALS['config']['design'][$colorKey . 'color'] = false; - if (!$themeChanged) { + // And remove old settings from DB... + $this->deleteSetting('design', $colorKey . 'color'); + } + } else { + // Only save colors from the form if the theme has not changed. + // + // @fixme a future more ajaxy form should allow theme switch + // and color customization in one step. $bgcolor = new WebColor($this->trimmed('design_background')); $ccolor = new WebColor($this->trimmed('design_content')); From a2fe29388dd1a32a53e01d235471d18e3c4db58b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 17:05:02 -0400 Subject: [PATCH 029/310] Activity::asString() should format numerical not string time --- lib/activity.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/activity.php b/lib/activity.php index 8e2da99bb3..606c614320 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -338,7 +338,7 @@ class Activity $xs->element('id', null, $this->id); $xs->element('title', null, $this->title); - $xs->element('published', null, common_date_iso8601($this->time)); + $xs->element('published', null, self::iso8601Date($this->time)); $xs->element('content', array('type' => 'html'), $this->content); if (!empty($this->summary)) { @@ -386,5 +386,13 @@ class Activity { return ActivityUtils::child($element, $tag, $namespace); } + + 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'); + } } From eec540723efd33d857ae9d0bd4035e8d9840cf2f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 13 Sep 2010 17:24:19 -0400 Subject: [PATCH 030/310] export user data as an activity stream --- scripts/exportactivitystream.php | 172 +++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 scripts/exportactivitystream.php diff --git a/scripts/exportactivitystream.php b/scripts/exportactivitystream.php new file mode 100644 index 0000000000..85001f7b42 --- /dev/null +++ b/scripts/exportactivitystream.php @@ -0,0 +1,172 @@ +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:f:'; +$longoptions = array('id=', 'nickname=', 'file='); + +$helptext = <<getSubscriptions(); + $subscribers = $this->getSubscribers(); + $faves = $this->getFaves(); + $notices = $this->getNotices(); + + $objs = array_merge($subscriptions, $subscribers, $faves, $notices); + + // Sort by create date + + usort($objs, 'UserActivityStream::compareObject'); + + foreach ($objs as $obj) { + $act = $obj->asActivity(); + $this->addEntryRaw($act->asString(false)); + } + } + + function compareObject($a, $b) + { + $ac = strtotime((empty($a->created)) ? $a->modified : $a->created); + $bc = strtotime((empty($b->created)) ? $b->modified : $b->created); + + return (($ac == $bc) ? 0 : (($ac < $bc) ? 1 : -1)); + } + + function getSubscriptions() + { + $subs = array(); + + $sub = new Subscription(); + + $sub->subscriber = $this->user->id; + + if ($sub->find()) { + while ($sub->fetch()) { + if ($sub->subscribed != $this->user->id) { + $subs[] = clone($sub); + } + } + } + + return $subs; + } + + function getSubscribers() + { + $subs = array(); + + $sub = new Subscription(); + + $sub->subscribed = $this->user->id; + + if ($sub->find()) { + while ($sub->fetch()) { + if ($sub->subscriber != $this->user->id) { + $subs[] = clone($sub); + } + } + } + + return $subs; + } + + function getFaves() + { + $faves = array(); + + $fave = new Fave(); + + $fave->user_id = $this->user->id; + + if ($fave->find()) { + while ($fave->fetch()) { + $faves[] = clone($fave); + } + } + + return $faves; + } + + function getNotices() + { + $notices = array(); + + $notice = new Notice(); + + $notice->profile_id = $this->user->id; + + if ($notice->find()) { + while ($notice->fetch()) { + $notices[] = clone($notice); + } + } + + return $notices; + } +} + +function getUser() +{ + $user = null; + + if (have_option('i', 'id')) { + $id = get_option_value('i', 'id'); + $user = User::staticGet('id', $id); + if (empty($user)) { + throw new Exception("Can't find user with id '$id'."); + } + } else if (have_option('n', 'nickname')) { + $nickname = get_option_value('n', 'nickname'); + $user = User::staticGet('nickname', $nickname); + if (empty($user)) { + throw new Exception("Can't find user with nickname '$nickname'"); + } + } else { + show_help(); + exit(1); + } + + return $user; +} + +try { + $user = getUser(); + $actstr = new UserActivityStream($user); + print $actstr->getString(); +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} From 00c4662ee49cd97686592e5b94fe6734225561db Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 14 Sep 2010 10:41:35 -0400 Subject: [PATCH 031/310] add a link to cometd.org in Comet plugin README --- plugins/Comet/README | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/Comet/README b/plugins/Comet/README index 4abd40af7a..f6e840b6af 100644 --- a/plugins/Comet/README +++ b/plugins/Comet/README @@ -6,7 +6,10 @@ NOTE: this is an insecure version; don't roll it out on a production server. It requires a cometd server. I've only had the cometd-java server work -correctly; something's wiggy with the Twisted-based server. +correctly; something's wiggy with the Twisted-based server. See here +for help setting up a comet server: + + http://cometd.org/ After you have a cometd server installed, just add this code to your config.php: From 43ad609600f8374e923579c5f3dc6b28a92b1c7c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 14 Sep 2010 11:01:29 -0400 Subject: [PATCH 032/310] Add Group_member::asActivity() to record group joins --- classes/Group_member.php | 50 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/classes/Group_member.php b/classes/Group_member.php index 2239461beb..c6ff24fed3 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -65,4 +65,54 @@ class Group_member extends Memcached_DataObject return true; } + + function getMember() + { + $member = Profile::staticGet('id', $this->profile_id); + + if (empty($member)) { + throw new Exception("Profile ID {$this->profile_id} invalid."); + } + + return $member; + } + + function getGroup() + { + $group = User_group::staticGet('id', $this->group_id); + + if (empty($group)) { + throw new Exception("Group ID {$this->group_id} invalid."); + } + + return $group; + } + + function asActivity() + { + $member = $this->getMember(); + $group = $this->getGroup(); + + $act = new Activity(); + + $act->id = TagURI::mint('join:%d:%d:%s', + $member->id, + $group->id, + common_date_iso8601($this->created)); + + $act->actor = ActivityObject::fromProfile($member); + $act->verb = ActivityVerb::JOIN; + $act->object = ActivityObject::fromGroup($group); + + $act->time = strtotime($this->created); + $act->title = _m("Join"); + + // 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. + $act->content = sprintf(_m("%1$s has joined group %2$s."), + $member->getBestName(), + $group->getBestName()); + + return $act; + } } From a881ce23e7e6b931e4fae83e0f5e56408d4e424b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 14 Sep 2010 11:02:54 -0400 Subject: [PATCH 033/310] note on why we don't use Group_member::asActivity() in OStatusPlugin --- plugins/OStatus/OStatusPlugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index b182438dc3..98f18f8338 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -632,6 +632,9 @@ class OStatusPlugin extends Plugin throw new Exception(_m('Could not set up remote group membership.')); } + // NOTE: we don't use Group_member::asActivity() since that record + // has not yet been created. + $member = Profile::staticGet($user->id); $act = new Activity(); From 04b7af4620d6d3310676ce1f89365fd5c5ef8caf Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 14 Sep 2010 21:33:57 +0200 Subject: [PATCH 034/310] * i18n/L10n updates * superfluous whitespace removed --- plugins/Adsense/AdsensePlugin.php | 13 ++----- plugins/Adsense/adsenseadminpanel.php | 43 +++++++-------------- plugins/Autocomplete/AutocompletePlugin.php | 2 - plugins/Autocomplete/autocomplete.php | 1 - 4 files changed, 18 insertions(+), 41 deletions(-) diff --git a/plugins/Adsense/AdsensePlugin.php b/plugins/Adsense/AdsensePlugin.php index cd6fc3503c..c02430a583 100644 --- a/plugins/Adsense/AdsensePlugin.php +++ b/plugins/Adsense/AdsensePlugin.php @@ -77,7 +77,6 @@ if (!defined('STATUSNET')) { * * @seeAlso UAPPlugin */ - class AdsensePlugin extends UAPPlugin { public $adScript = 'http://pagead2.googlesyndication.com/pagead/show_ads.js'; @@ -89,7 +88,6 @@ class AdsensePlugin extends UAPPlugin // A little bit of chicanery so we avoid overwriting values that // are passed in with the constructor - foreach (array('mediumRectangle', 'rectangle', 'leaderboard', 'wideSkyscraper', 'adScript', 'client') as $setting) { $value = common_config('adsense', strtolower($setting)); if (!empty($value)) { // not found @@ -105,7 +103,6 @@ class AdsensePlugin extends UAPPlugin * * @return void */ - protected function showMediumRectangle($action) { $this->showAdsenseCode($action, 300, 250, $this->mediumRectangle); @@ -118,7 +115,6 @@ class AdsensePlugin extends UAPPlugin * * @return void */ - protected function showRectangle($action) { $this->showAdsenseCode($action, 180, 150, $this->rectangle); @@ -131,7 +127,6 @@ class AdsensePlugin extends UAPPlugin * * @return void */ - protected function showWideSkyscraper($action) { $this->showAdsenseCode($action, 160, 600, $this->wideSkyscraper); @@ -144,7 +139,6 @@ class AdsensePlugin extends UAPPlugin * * @return void */ - protected function showLeaderboard($action) { $this->showAdsenseCode($action, 728, 90, $this->leaderboard); @@ -160,7 +154,6 @@ class AdsensePlugin extends UAPPlugin * * @return void */ - protected function showAdsenseCode($action, $width, $height, $slot) { $code = 'google_ad_client = "'.$this->client.'"; '; @@ -198,11 +191,11 @@ class AdsensePlugin extends UAPPlugin function onEndAdminPanelNav($menu) { if (AdminPanelAction::canAdmin('adsense')) { // TRANS: Menu item title/tooltip - $menu_title = _('Adsense configuration'); + $menu_title = _m('AdSense configuration'); // TRANS: Menu item for site administration - $menu->out->menuItem(common_local_url('adsenseadminpanel'), _('Adsense'), + $menu->out->menuItem(common_local_url('adsenseadminpanel'), _m('AdSense'), $menu_title, $action_name == 'adsenseadminpanel', 'nav_adsense_admin_panel'); } return true; } -} \ No newline at end of file +} diff --git a/plugins/Adsense/adsenseadminpanel.php b/plugins/Adsense/adsenseadminpanel.php index 7b99cf8051..110cc9e2b7 100644 --- a/plugins/Adsense/adsenseadminpanel.php +++ b/plugins/Adsense/adsenseadminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AdsenseadminpanelAction extends AdminPanelAction { /** @@ -48,10 +47,9 @@ class AdsenseadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { - return _('Adsense'); + return _m('TITLE', 'AdSense'); } /** @@ -59,10 +57,9 @@ class AdsenseadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { - return _('Adsense settings for this StatusNet site'); + return _m('AdSense settings for this StatusNet site'); } /** @@ -70,7 +67,6 @@ class AdsenseadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new AdsenseAdminPanelForm($this); @@ -83,7 +79,6 @@ class AdsenseadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array('adsense' => array('adScript', 'client', 'mediumRectangle', 'rectangle', 'leaderboard', 'wideSkyscraper')); @@ -97,11 +92,9 @@ class AdsenseadminpanelAction extends AdminPanelAction } // This throws an exception on validation errors - $this->validate($values); // assert(all values are valid); - $config = new Config(); $config->query('BEGIN'); @@ -125,7 +118,6 @@ class AdsenseadminpanelAction extends AdminPanelAction /** * Form for the adsense admin panel */ - class AdsenseAdminPanelForm extends AdminForm { /** @@ -133,7 +125,6 @@ class AdsenseAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'form_adsense_admin_panel'; @@ -144,7 +135,6 @@ class AdsenseAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_adsense'; @@ -155,7 +145,6 @@ class AdsenseAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('adsenseadminpanel'); @@ -166,45 +155,44 @@ class AdsenseAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart('fieldset', array('id' => 'adsense_admin')); $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('client', - _('Client ID'), - _('Google client ID'), + _m('Client ID'), + _m('Google client ID'), 'adsense'); $this->unli(); $this->li(); $this->input('adScript', - _('Ad Script URL'), - _('Script URL (advanced)'), + _m('Ad script URL'), + _m('Script URL (advanced)'), 'adsense'); $this->unli(); $this->li(); $this->input('mediumRectangle', - _('Medium rectangle'), - _('Medium rectangle slot code'), + _m('Medium rectangle'), + _m('Medium rectangle slot code'), 'adsense'); $this->unli(); $this->li(); $this->input('rectangle', - _('Rectangle'), - _('Rectangle slot code'), + _m('Rectangle'), + _m('Rectangle slot code'), 'adsense'); $this->unli(); $this->li(); $this->input('leaderboard', - _('Leaderboard'), - _('Leaderboard slot code'), + _m('Leaderboard'), + _m('Leaderboard slot code'), 'adsense'); $this->unli(); $this->li(); $this->input('wideSkyscraper', - _('Skyscraper'), - _('Wide skyscraper slot code'), + _m('Skyscraper'), + _m('Wide skyscraper slot code'), 'adsense'); $this->unli(); $this->out->elementEnd('ul'); @@ -215,9 +203,8 @@ class AdsenseAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save AdSense settings')); + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save AdSense settings')); } } diff --git a/plugins/Autocomplete/AutocompletePlugin.php b/plugins/Autocomplete/AutocompletePlugin.php index b2be365dd6..620b5e7b06 100644 --- a/plugins/Autocomplete/AutocompletePlugin.php +++ b/plugins/Autocomplete/AutocompletePlugin.php @@ -80,6 +80,4 @@ class AutocompletePlugin extends Plugin _m('The autocomplete plugin allows users to autocomplete screen names in @ replies. When an "@" is typed into the notice text area, an autocomplete box is displayed populated with the user\'s friend\' screen names.')); return true; } - } -?> diff --git a/plugins/Autocomplete/autocomplete.php b/plugins/Autocomplete/autocomplete.php index 9a30ba01d9..5a010572f6 100644 --- a/plugins/Autocomplete/autocomplete.php +++ b/plugins/Autocomplete/autocomplete.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 AutocompleteAction extends Action { private $result; From 987651c8a43571ac2db9abd4c8f554e881f0b1fc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 14 Sep 2010 21:45:13 +0200 Subject: [PATCH 035/310] * i18n/L10n updates * superfluous whitespace removed --- plugins/AutoSandbox/AutoSandboxPlugin.php | 12 ++++---- plugins/BitlyUrl/BitlyUrlPlugin.php | 3 +- plugins/Blacklist/BlacklistPlugin.php | 34 +++++++---------------- plugins/Blacklist/Homepage_blacklist.php | 9 ------ plugins/Blacklist/Nickname_blacklist.php | 9 ------ plugins/Blacklist/blacklistadminpanel.php | 24 ++++------------ 6 files changed, 23 insertions(+), 68 deletions(-) diff --git a/plugins/AutoSandbox/AutoSandboxPlugin.php b/plugins/AutoSandbox/AutoSandboxPlugin.php index ffd8bf455e..870eda86f2 100644 --- a/plugins/AutoSandbox/AutoSandboxPlugin.php +++ b/plugins/AutoSandbox/AutoSandboxPlugin.php @@ -41,7 +41,7 @@ class AutoSandboxPlugin extends Plugin var $contact; var $debug; - function onInitializePlugin() + function onInitializePlugin() { if(!isset($this->debug)) { @@ -53,7 +53,7 @@ class AutoSandboxPlugin extends Plugin if (!empty($default)) { $this->contact = $default; } - } + } } function onPluginVersion(&$versions) @@ -69,16 +69,16 @@ class AutoSandboxPlugin extends Plugin function onStartRegistrationFormData($action) { - - $instr = 'Note you will initially be "sandboxed" so your posts will not appear in the public timeline.'; + $instr = _m('Note you will initially be "sandboxed" so your posts will not appear in the public timeline.'); if (isset($this->contact)) { $contactuser = User::staticGet('nickname', $this->contact); if (!empty($contactuser)) { $contactlink = "@uri\">$contactuser->nickname"; - $instr = $instr . " Send a message to $contactlink to speed up the unsandboxing process."; + $instr = _m("Note you will initially be \"sandboxed\" so your posts will not appear in the public timeline. ". + 'Send a message to $contactlink to speed up the unsandboxing process.'); } - } + } $output = common_markup_to_html($instr); $action->elementStart('div', 'instructions'); diff --git a/plugins/BitlyUrl/BitlyUrlPlugin.php b/plugins/BitlyUrl/BitlyUrlPlugin.php index 11e3c0b84b..10d99b3588 100644 --- a/plugins/BitlyUrl/BitlyUrlPlugin.php +++ b/plugins/BitlyUrl/BitlyUrlPlugin.php @@ -40,7 +40,7 @@ class BitlyUrlPlugin extends UrlShortenerPlugin function onInitializePlugin(){ parent::onInitializePlugin(); if(!isset($this->serviceUrl)){ - throw new Exception("must specify a serviceUrl"); + throw new Exception(_m("You must specify a serviceUrl.")); } } @@ -63,4 +63,3 @@ class BitlyUrlPlugin extends UrlShortenerPlugin return true; } } - diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 63bffe2c6f..0008348389 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class BlacklistPlugin extends Plugin { const VERSION = STATUSNET_VERSION; @@ -76,13 +75,11 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onCheckSchema() { $schema = Schema::get(); // For storing blacklist patterns for nicknames - $schema->ensureTable('nickname_blacklist', array(new ColumnDef('pattern', 'varchar', @@ -118,7 +115,6 @@ class BlacklistPlugin extends Plugin * * @return array configuration values */ - function _configArray($section, $setting) { $config = common_config($section, $setting); @@ -143,14 +139,13 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onStartRegistrationTry($action) { $homepage = strtolower($action->trimmed('homepage')); if (!empty($homepage)) { if (!$this->_checkUrl($homepage)) { - $msg = sprintf(_m("You may not register with homepage '%s'"), + $msg = sprintf(_m("You may not register with homepage '%s'."), $homepage); throw new ClientException($msg); } @@ -160,7 +155,7 @@ class BlacklistPlugin extends Plugin if (!empty($nickname)) { if (!$this->_checkNickname($nickname)) { - $msg = sprintf(_m("You may not register with nickname '%s'"), + $msg = sprintf(_m("You may not register with nickname '%s'."), $nickname); throw new ClientException($msg); } @@ -178,14 +173,13 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onStartProfileSaveForm($action) { $homepage = strtolower($action->trimmed('homepage')); if (!empty($homepage)) { if (!$this->_checkUrl($homepage)) { - $msg = sprintf(_m("You may not use homepage '%s'"), + $msg = sprintf(_m("You may not use homepage '%s'."), $homepage); throw new ClientException($msg); } @@ -195,7 +189,7 @@ class BlacklistPlugin extends Plugin if (!empty($nickname)) { if (!$this->_checkNickname($nickname)) { - $msg = sprintf(_m("You may not use nickname '%s'"), + $msg = sprintf(_m("You may not use nickname '%s'."), $nickname); throw new ClientException($msg); } @@ -213,7 +207,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onStartNoticeSave(&$notice) { common_replace_urls_callback($notice->content, @@ -230,7 +223,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function checkNoticeUrl($url) { // It comes in special'd, so we unspecial it @@ -239,7 +231,7 @@ class BlacklistPlugin extends Plugin $url = htmlspecialchars_decode($url); if (!$this->_checkUrl($url)) { - $msg = sprintf(_m("You may not use url '%s' in notices"), + $msg = sprintf(_m("You may not use UTL \"%s\" in notices."), $url); throw new ClientException($msg); } @@ -256,7 +248,6 @@ class BlacklistPlugin extends Plugin * * @return boolean true means it's OK, false means it's bad */ - private function _checkUrl($url) { $patterns = $this->_getUrlPatterns(); @@ -279,7 +270,6 @@ class BlacklistPlugin extends Plugin * * @return boolean true means it's OK, false means it's bad */ - private function _checkNickname($nickname) { $patterns = $this->_getNicknamePatterns(); @@ -300,7 +290,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook return */ - function onRouterInitialized($m) { $m->connect('admin/blacklist', array('action' => 'blacklistadminpanel')); @@ -314,7 +303,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook return */ - function onAutoload($cls) { switch (strtolower($cls)) @@ -339,7 +327,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onPluginVersion(&$versions) { $versions[] = array('name' => 'Blacklist', @@ -348,7 +335,7 @@ class BlacklistPlugin extends Plugin 'homepage' => 'http://status.net/wiki/Plugin:Blacklist', 'description' => - _m('Keep a blacklist of forbidden nickname '. + _m('Keeps a blacklist of forbidden nickname '. 'and URL patterns.')); return true; } @@ -379,7 +366,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onEndAdminPanelNav($nav) { if (AdminPanelAction::canAdmin('blacklist')) { @@ -387,8 +373,8 @@ class BlacklistPlugin extends Plugin $action_name = $nav->action->trimmed('action'); $nav->out->menuItem(common_local_url('blacklistadminpanel'), - _('Blacklist'), - _('Blacklist configuration'), + _m('Blacklist'), + _m('Blacklist configuration'), $action_name == 'blacklistadminpanel', 'nav_blacklist_admin_panel'); } @@ -414,7 +400,7 @@ class BlacklistPlugin extends Plugin $action->elementStart('li'); $this->checkboxAndText($action, 'blacklistnickname', - _('Add this nickname pattern to blacklist'), + _m('Add this nickname pattern to blacklist'), 'blacklistnicknamepattern', $this->patternizeNickname($user->nickname)); $action->elementEnd('li'); @@ -423,7 +409,7 @@ class BlacklistPlugin extends Plugin $action->elementStart('li'); $this->checkboxAndText($action, 'blacklisthomepage', - _('Add this homepage pattern to blacklist'), + _m('Add this homepage pattern to blacklist'), 'blacklisthomepagepattern', $this->patternizeHomepage($profile->homepage)); $action->elementEnd('li'); diff --git a/plugins/Blacklist/Homepage_blacklist.php b/plugins/Blacklist/Homepage_blacklist.php index ec89ee4bd8..2820294fa2 100644 --- a/plugins/Blacklist/Homepage_blacklist.php +++ b/plugins/Blacklist/Homepage_blacklist.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Homepage_blacklist extends Memcached_DataObject { public $__table = 'homepage_blacklist'; // table name @@ -62,7 +61,6 @@ class Homepage_blacklist extends Memcached_DataObject * @return Homepage_blacklist object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Homepage_blacklist', $k, $v); @@ -76,7 +74,6 @@ class Homepage_blacklist extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('pattern' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, @@ -91,7 +88,6 @@ class Homepage_blacklist extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array_keys($this->keyTypes()); @@ -105,7 +101,6 @@ class Homepage_blacklist extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('pattern' => 'K'); @@ -116,7 +111,6 @@ class Homepage_blacklist extends Memcached_DataObject * * @return array string patterns to check */ - static function getPatterns() { $patterns = self::cacheGet('homepage_blacklist:patterns'); @@ -144,17 +138,14 @@ class Homepage_blacklist extends Memcached_DataObject * * @return array of patterns to check */ - static function saveNew($newPatterns) { $oldPatterns = self::getPatterns(); // Delete stuff that's old that not in new - $toDelete = array_diff($oldPatterns, $newPatterns); // Insert stuff that's in new and not in old - $toInsert = array_diff($newPatterns, $oldPatterns); foreach ($toDelete as $pattern) { diff --git a/plugins/Blacklist/Nickname_blacklist.php b/plugins/Blacklist/Nickname_blacklist.php index e8545292d1..d5d46a9490 100644 --- a/plugins/Blacklist/Nickname_blacklist.php +++ b/plugins/Blacklist/Nickname_blacklist.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Nickname_blacklist extends Memcached_DataObject { public $__table = 'nickname_blacklist'; // table name @@ -62,7 +61,6 @@ class Nickname_blacklist extends Memcached_DataObject * @return Nickname_blacklist object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Nickname_blacklist', $k, $v); @@ -73,7 +71,6 @@ class Nickname_blacklist extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('pattern' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, @@ -85,7 +82,6 @@ class Nickname_blacklist extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array_keys($this->keyTypes()); @@ -96,7 +92,6 @@ class Nickname_blacklist extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('pattern' => 'K'); @@ -107,7 +102,6 @@ class Nickname_blacklist extends Memcached_DataObject * * @return array string patterns to check */ - static function getPatterns() { $patterns = self::cacheGet('nickname_blacklist:patterns'); @@ -135,17 +129,14 @@ class Nickname_blacklist extends Memcached_DataObject * * @return array of patterns to check */ - static function saveNew($newPatterns) { $oldPatterns = self::getPatterns(); // Delete stuff that's old that not in new - $toDelete = array_diff($oldPatterns, $newPatterns); // Insert stuff that's in new and not in old - $toInsert = array_diff($newPatterns, $oldPatterns); foreach ($toDelete as $pattern) { diff --git a/plugins/Blacklist/blacklistadminpanel.php b/plugins/Blacklist/blacklistadminpanel.php index 4289dec1ba..9019bb9ad2 100644 --- a/plugins/Blacklist/blacklistadminpanel.php +++ b/plugins/Blacklist/blacklistadminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class BlacklistadminpanelAction extends AdminPanelAction { /** @@ -48,10 +47,9 @@ class BlacklistadminpanelAction extends AdminPanelAction * * @return string title */ - function title() { - return _('Blacklist'); + return _m('Blacklist'); } /** @@ -59,10 +57,9 @@ class BlacklistadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { - return _('Blacklisted URLs and nicknames'); + return _m('Blacklisted URLs and nicknames'); } /** @@ -72,7 +69,6 @@ class BlacklistadminpanelAction extends AdminPanelAction * * @see BlacklistAdminPanelForm */ - function showForm() { $form = new BlacklistAdminPanelForm($this); @@ -85,7 +81,6 @@ class BlacklistadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { $nickPatterns = $this->splitPatterns($this->trimmed('blacklist-nicknames')); @@ -116,7 +111,6 @@ class BlacklistadminpanelAction extends AdminPanelAction * * @return boolean success flag */ - function validate(&$values) { return true; @@ -132,7 +126,6 @@ class BlacklistadminpanelAction extends AdminPanelAction * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class BlacklistAdminPanelForm extends Form { /** @@ -140,7 +133,6 @@ class BlacklistAdminPanelForm extends Form * * @return string ID */ - function id() { return 'blacklistadminpanel'; @@ -151,7 +143,6 @@ class BlacklistAdminPanelForm extends Form * * @return string class */ - function formClass() { return 'form_settings'; @@ -162,7 +153,6 @@ class BlacklistAdminPanelForm extends Form * * @return string action URL */ - function action() { return common_local_url('blacklistadminpanel'); @@ -173,7 +163,6 @@ class BlacklistAdminPanelForm extends Form * * @return void */ - function formData() { $this->out->elementStart('ul', 'form_data'); @@ -184,7 +173,7 @@ class BlacklistAdminPanelForm extends Form $this->out->textarea('blacklist-nicknames', _m('Nicknames'), implode("\r\n", $nickPatterns), - _('Patterns of nicknames to block, one per line')); + _m('Patterns of nicknames to block, one per line')); $this->out->elementEnd('li'); $urlPatterns = Homepage_blacklist::getPatterns(); @@ -192,7 +181,7 @@ class BlacklistAdminPanelForm extends Form $this->out->elementStart('li'); $this->out->textarea('blacklist-urls', _m('URLs'), implode("\r\n", $urlPatterns), - _('Patterns of URLs to block, one per line')); + _m('Patterns of URLs to block, one per line')); $this->out->elementEnd('li'); $this->out->elementEnd('ul'); @@ -203,13 +192,12 @@ class BlacklistAdminPanelForm extends Form * * @return void */ - function formActions() { $this->out->submit('submit', - _('Save'), + _m('Save'), 'submit', null, - _('Save site settings')); + _m('Save site settings')); } } From 503afc4422636b03545007485bd64a2d33e92d3e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 14 Sep 2010 22:01:27 +0200 Subject: [PATCH 036/310] Localisation updates from http://translatewiki.net --- locale/af/LC_MESSAGES/statusnet.po | 675 ++++++------ locale/ar/LC_MESSAGES/statusnet.po | 710 ++++++------ locale/arz/LC_MESSAGES/statusnet.po | 720 ++++++------ locale/bg/LC_MESSAGES/statusnet.po | 824 +++++++------- locale/br/LC_MESSAGES/statusnet.po | 771 +++++++------ locale/ca/LC_MESSAGES/statusnet.po | 718 ++++++------ locale/cs/LC_MESSAGES/statusnet.po | 721 ++++++------ locale/da/LC_MESSAGES/statusnet.po | 933 +++++++++++----- locale/de/LC_MESSAGES/statusnet.po | 732 ++++++------- locale/el/LC_MESSAGES/statusnet.po | 1092 ++++++++++--------- locale/en_GB/LC_MESSAGES/statusnet.po | 772 ++++++------- locale/eo/LC_MESSAGES/statusnet.po | 872 ++++++++++----- locale/es/LC_MESSAGES/statusnet.po | 726 ++++++------- locale/fa/LC_MESSAGES/statusnet.po | 740 ++++++------- locale/fi/LC_MESSAGES/statusnet.po | 1024 ++++++++--------- locale/fr/LC_MESSAGES/statusnet.po | 732 ++++++------- locale/ga/LC_MESSAGES/statusnet.po | 1185 +++++++------------- locale/gl/LC_MESSAGES/statusnet.po | 714 ++++++------ locale/he/LC_MESSAGES/statusnet.po | 1317 ++++++++-------------- locale/hsb/LC_MESSAGES/statusnet.po | 738 +++++++------ locale/ia/LC_MESSAGES/statusnet.po | 712 ++++++------ locale/is/LC_MESSAGES/statusnet.po | 971 +++++++---------- locale/it/LC_MESSAGES/statusnet.po | 774 +++++++------ locale/ja/LC_MESSAGES/statusnet.po | 956 ++++++---------- locale/ka/LC_MESSAGES/statusnet.po | 1446 ++++++++++++++++++------- locale/ko/LC_MESSAGES/statusnet.po | 945 +++++++--------- locale/mk/LC_MESSAGES/statusnet.po | 716 ++++++------ locale/nb/LC_MESSAGES/statusnet.po | 756 +++++++------ locale/nl/LC_MESSAGES/statusnet.po | 720 ++++++------ locale/nn/LC_MESSAGES/statusnet.po | 1004 +++++++---------- locale/pl/LC_MESSAGES/statusnet.po | 723 ++++++------- locale/pt/LC_MESSAGES/statusnet.po | 720 ++++++------ locale/pt_BR/LC_MESSAGES/statusnet.po | 727 ++++++------- locale/ru/LC_MESSAGES/statusnet.po | 726 ++++++------- locale/statusnet.pot | 743 ++++++++----- locale/sv/LC_MESSAGES/statusnet.po | 859 ++++++++------- locale/te/LC_MESSAGES/statusnet.po | 733 +++++++------ locale/tr/LC_MESSAGES/statusnet.po | 1254 ++++++++------------- locale/uk/LC_MESSAGES/statusnet.po | 722 ++++++------ locale/vi/LC_MESSAGES/statusnet.po | 1223 +++++++-------------- locale/zh_CN/LC_MESSAGES/statusnet.po | 727 ++++++------- locale/zh_TW/LC_MESSAGES/statusnet.po | 1220 +++++++++------------ 42 files changed, 17447 insertions(+), 18646 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 9824826018..aee41ce2ba 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ -# Translation of StatusNet to Afrikaans +# Translation of StatusNet to Afrikaans (Afrikaans) +# Expored from translatewiki.net # -# Author@translatewiki.net: Naudefj +# Author: Naudefj # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,20 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:04+0000\n" -"Language-Team: Afrikaans\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:37+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Toegang" @@ -74,10 +76,10 @@ msgstr "Stoor toegangsinstellings" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -90,15 +92,15 @@ msgstr "Hierdie bladsy bestaan nie." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -192,16 +194,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Opdaterings van %1$s en vriende op %2$s." #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -216,47 +218,49 @@ msgstr "Opdaterings van %1$s en vriende op %2$s." msgid "API method not found." msgstr "Die API-funksie is nie gevind nie." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Hierdie metode benodig 'n POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Kon nie die gebruiker opdateer nie." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Hierdie gebruiker het nie 'n profiel nie." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Kon nie die profiel stoor nie." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -266,30 +270,30 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Dit was nie moontlik om u ontwerp by te werk nie." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "U kan nie uself blokkeer nie!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Die blokkering van die gebruiker het gefaal." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Die deblokkering van die gebruiker het gefaal." @@ -313,64 +317,64 @@ msgstr "Direkte boodskappe aan %s" msgid "All the direct messages sent to %s" msgstr "Alle direkte boodskappe gestuur aan %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Die boodskap bevat geen inhoud nie!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Die ontvanger kon gevind word nie." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "U kan nie direkte boodskappe aan gebruikers wat nie op u viendelys is stuur " "nie." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Geen status met die ID gevind nie." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Hierdie status is reeds 'n gunsteling." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Hierdie status is nie 'n gunsteling nie." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" "Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "U kan nie die gebruiker volg nie: die gebruiker bestaan nie." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "U kan nie die gebruiker volg nie: %1 is alreeds op u lys." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "U kan nie die gebruiker van u volglys verwyder nie: die gebruiker bestaan " "nie." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "U kan nie ophou om uself te volg nie." @@ -378,7 +382,7 @@ msgstr "U kan nie ophou om uself te volg nie." msgid "Two valid IDs or screen_names must be supplied." msgstr "" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -386,77 +390,77 @@ msgstr "" "Die gebruikersnaam mag slegs uit kleinletters en syfers bestaan en mag geen " "spasies bevat nie." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Nie 'n geldige gebruikersnaam nie." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Tuisblad is nie 'n geldige URL nie." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Volledige naam is te lang (maksimum 255 karakters)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Ligging is te lank is (maksimum 255 karakters)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Te veel aliasse! Die maksimum aantal is %d." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Nie gevind nie." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "U is reeds 'n lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "U is nie 'n lid van die groep nie." @@ -494,9 +498,9 @@ msgstr "Ongeldige token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -535,8 +539,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -597,18 +601,18 @@ msgstr "Hierdie metode vereis 'n POST of DELETE." msgid "You may not delete another user's status." msgstr "U mag nie 'n ander gebruiker se status verwyder nie." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Die kennisgewing bestaan nie." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." @@ -620,21 +624,21 @@ msgstr "Die status is verwyder." msgid "No status with that ID found." msgstr "Geen status met die ID gevind nie." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Nie gevind nie." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -796,7 +800,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -824,11 +830,13 @@ msgstr "Die groep bestaan nie." msgid "Unblock user from group" msgstr "Gee gebruiker weer toegang tot die groep" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Deblokkeer" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Deblokkeer hierdie gebruiker" @@ -854,9 +862,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -864,7 +872,7 @@ msgstr "Kon nie gebruiker opdateer nie." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kon nie e-posbevestiging verwyder nie." @@ -900,9 +908,10 @@ msgstr "Die applikasie is nie gevind nie." msgid "You are not the owner of this application." msgstr "U is nie die eienaar van hierdie applikasie nie." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -933,7 +942,7 @@ msgstr "Skrap hierdie applikasie" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nie aangeteken nie." @@ -992,7 +1001,6 @@ msgstr "Verwyder die gebruiker" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Ontwerp" @@ -1095,13 +1103,13 @@ msgstr "Gebruik verstekwaardes" msgid "Reset back to default" msgstr "Stel terug na standaard" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" @@ -1257,7 +1265,7 @@ msgstr "Huidige bevestigde e-posadres." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1273,22 +1281,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Kanselleer" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-posadres, soos \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1296,129 +1308,129 @@ msgstr "Voeg by" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkomende e-pos" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nuut" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-posadresse" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "E-posadresse" #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Geen e-posadres." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Nie 'n geldige e-posadres nie." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Dit is al reeds u e-posadres." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kon nie e-posbevestiging verwyder nie." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Geen bevestigingskode." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Dit is nie u e-posadres nie." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Inkomende e-posadres is verwyder." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Geen inkomende e-posadres." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kon nie gebruikersdata opdateer nie." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkomende e-posadres is verwyder." @@ -1547,7 +1559,7 @@ msgstr "Geen groep verskaf nie." msgid "Only an admin can block group members." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blok gebruiker toegang tot die groep" @@ -1596,27 +1608,17 @@ msgstr "Logo opgedateer." msgid "Failed updating logo." msgstr "Die opdatering van die logo het gefaal." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "lede van die groep %s" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrateur" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokkeer" - -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Maak Admin" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Maak hierdie gebruiker 'n administrateur" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1721,7 +1723,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1729,63 +1734,63 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Voorkeure is gestoor." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Voorkeure is gestoor." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Geen Jabber-ID nie." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Dit was nie moontlik om die Jabber-ID te normaliseer nie" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Nie 'n geldige Jabber-ID nie" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Dit is al reeds u Jabber-ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Die Jabber-ID word reeds deur 'n ander gebruiker gebruik." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1793,28 +1798,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Dit is die verkeerde IM-adres." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Kon nie e-posbevestiging verwyder nie." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Geen bevestigingskode." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Dit is nie u Jabber-ID nie." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Inkomende e-posadres is verwyder." @@ -2236,7 +2241,7 @@ msgid "Password saved." msgstr "Wagwoord gestoor." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Paaie" @@ -2413,7 +2418,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Tuisblad" @@ -2491,7 +2496,7 @@ msgid "Invalid tag: \"%s\"" msgstr "Ongeldige etiket: \"$s\"" #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Voorkeure is gestoor." @@ -2811,7 +2816,7 @@ msgstr "StatusNet" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessies" @@ -2832,24 +2837,24 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikoon" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisasie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrywing" @@ -2914,7 +2919,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s groep" @@ -2951,7 +2956,7 @@ msgstr "Groepsaksies" msgid "FOAF for %s group" msgstr "Vriend van 'n vriend vir die groep %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Lede" @@ -3238,7 +3243,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3730,7 +3735,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3832,7 +3837,8 @@ msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" @@ -3947,7 +3953,10 @@ msgid "StatusNet software license" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3955,13 +3964,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3970,44 +3982,45 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 msgid "After" msgstr "Na" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Voor" @@ -4016,109 +4029,138 @@ msgstr "Voor" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Webtuiste" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Ontwerp" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Webblaaier" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Lees-alleen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lees-skryf" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Kanselleer" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Verwyder" @@ -4138,7 +4180,8 @@ msgstr "Outeur" msgid "Provider" msgstr "Verskaffer" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etikette vir hierdie aanhangsel" @@ -4150,6 +4193,11 @@ msgstr "Wagwoord wysiging het misluk" msgid "Password changing is not allowed" msgstr "Wagwoord verandering word nie toegelaat nie" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokkeer" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Opdragresultate" @@ -4163,6 +4211,12 @@ msgstr "Opdrag voltooi" msgid "Notice with that id does not exist." msgstr "" +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "" + #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #: lib/command.php:130 @@ -4187,6 +4241,13 @@ msgstr "" msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4204,6 +4265,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4252,6 +4327,20 @@ msgstr "" msgid "Error sending direct message." msgstr "" +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "" + +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + #. 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:603 @@ -4282,6 +4371,13 @@ msgstr "" 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." @@ -4307,7 +4403,7 @@ msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4316,7 +4412,7 @@ msgstr[0] "U volg hierdie gebruiker:" msgstr[1] "U volg hierdie gebruikers:" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4331,7 +4427,7 @@ msgid "You are not a member of any groups." msgstr "U is nie 'n lid van enige groep nie." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4339,6 +4435,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "U is 'n lid van hierdie groep:" msgstr[1] "U is 'n lid van hierdie groepe:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4490,30 +4587,19 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Groep" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Geblokkeer" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s geblokkeerde gebruikers" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4531,7 +4617,8 @@ msgstr "Etikette in groepsaankondigings van %s" msgid "This page is not available in a media type you accept" msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -4795,52 +4882,69 @@ msgstr "Jammer, dit is nie u inkomende e-posadres nie." msgid "Sorry, no incoming email allowed." msgstr "Jammer, inkomende e-pos word nie toegelaat nie." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 @@ -4928,18 +5032,6 @@ msgstr "Antwoord" msgid "Nudge" msgstr "Aanpor" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoonlik" @@ -4969,7 +5061,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "Etikette in die aankondigings van %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Onbekend" @@ -5030,14 +5123,12 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Term(e)" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Soek" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Gebruikers" @@ -5130,10 +5221,6 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" -#: lib/themeuploader.php:259 -msgid "Error opening theme archive." -msgstr "" - #: lib/topposterssection.php:74 msgid "Top posters" msgstr "Mees aktiewe gebruikers" @@ -5193,56 +5280,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "ongeveer %d minute gelede" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "ongeveer %d uur gelede" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "ongeveer een dag gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "ongeveer %d dae gelede" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "ongeveer een maand gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "ongeveer %d maande gelede" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "ongeveer een jaar gelede" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 36fb17ce4b..056cfb15e4 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Arabic +# Translation of StatusNet to Arabic (العربية) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Meno25 -# Author@translatewiki.net: OsamaK +# Author: Brion +# Author: Meno25 +# Author: OsamaK # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,21 +11,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:10+0000\n" -"Language-Team: Arabic\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:38+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" -"X-Message-Group: out-statusnet\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-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "نفاذ" @@ -77,10 +80,10 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -93,15 +96,15 @@ msgstr "لا صفحة كهذه." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -172,29 +175,22 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to them." -msgstr "" - #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" msgstr "أنت والأصدقاء" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -209,47 +205,49 @@ msgstr "أنت والأصدقاء" msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقة POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "تعذّر تحديث المستخدم." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصي." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "لم يمكن حفظ الملف." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -259,20 +257,20 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "لا يمكنك منع نفسك!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "فشل منع المستخدم." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "فشل إلغاء منع المستخدم." @@ -296,36 +294,36 @@ msgstr "رسالة مباشرة %s" msgid "All the direct messages sent to %s" msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "لا نص في الرسالة!" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "لم يُعثر على المستخدم المستلم." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "هذه الحالة مفضلة بالفعل." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "تلك الحالة ليست مفضلة." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضلة." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "لا يمكنك عدم متابعة نفسك." @@ -341,67 +339,67 @@ msgstr "تعذّر تحديد المستخدم المصدر." msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "كنيات كيرة! العدد الأقصى هو %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "كنية غير صالحة: \"%s\"." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "المجموعة غير موجودة." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "لست عضوًا في هذه المجموعة" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -437,9 +435,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -482,8 +480,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -536,18 +534,18 @@ msgstr "اسمح" msgid "Allow or deny access to your account information." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "لا يمكنك تكرار ملحوظتك الخاصة." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "كرر بالفعل هذه الملاحظة." @@ -559,21 +557,21 @@ msgstr "حُذِفت الحالة." msgid "No status with that ID found." msgstr "لا حالة وُجدت بهذه الهوية." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "لم يوجد." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -742,7 +740,9 @@ msgid "Yes" msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -775,11 +775,13 @@ msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "ألغِ المنع" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" @@ -813,9 +815,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -823,7 +825,7 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكتروني." @@ -859,9 +861,10 @@ msgstr "لم يوجد التطبيق." msgid "You are not the owner of this application." msgstr "أنت لست مالك هذا التطبيق." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -892,7 +895,7 @@ msgstr "احذف هذا التطبيق" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "لست والجًا." @@ -951,7 +954,6 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" @@ -1062,13 +1064,13 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1207,7 +1209,7 @@ msgstr "عنوان البريد الإلكتروني المُؤكد الحالي #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1223,22 +1225,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "عنوان البريد الإلكتروني، مثل \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1246,138 +1252,138 @@ msgstr "أضف" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "البريد الإلكتروني الوارد" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديدة." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكتروني لترسل إليه؛ ألغِ القديم." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "جديد" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "تفضيلات البريد الإلكتروني" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "أرسل لي بريدًا إلكرتونيًا عندما يضيف أحدهم إشعاري مفضلة." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد رسالة خاصة." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد \"@-رد\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "اسمح لأصدقائي بتنبيهي ومراسلتي عبر البريد الإلكتروني." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكتروني." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "حُفظت تفضيلات البريد الإلكرتوني." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "لا عنوان بريد إلكتروني." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "هذا هو عنوان بريدك الإكتروني سابقًا." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "هذا عنوان بريد إلكتروني خطأ." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "أُلغي تأكيد البريد الإلكتروني." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "هذا ليس عنوان بريدك الإلكتروني." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "أزيل عنوان البريد الإلكتروني." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "لا عنوان بريد إلكتروني وارد." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "تعذّر تحديث سجل المستخدم." @@ -1487,7 +1493,7 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." @@ -1536,7 +1542,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1605,40 +1611,32 @@ msgstr "حُدّث الشعار." msgid "Failed updating logo." msgstr "فشل رفع الشعار." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "أعضاء مجموعة %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "قائمة بمستخدمي هذه المجموعة." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "امنع" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "اجعله إداريًا" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "اجعل هذا المستخدم إداريًا" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1761,7 +1759,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1769,38 +1770,38 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "تفضيلات المحادثة الفورية" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "لا هوية جابر." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "ليست هوية جابر صالحة" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1808,28 +1809,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "هذا عنوان محادثة فورية خاطئ." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "تعذّر حذف تأكيد البريد المراسلة الفورية." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "أُلغي تأكيد المراسلة الفورية." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك في جابر." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "أزيل عنوان المراسلة الفورية هذا." @@ -2192,12 +2193,6 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "حالة %1$s في يوم %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2205,8 +2200,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2342,7 +2337,7 @@ msgid "Password saved." msgstr "حُفظت كلمة السر." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "المسارات" @@ -2543,7 +2538,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحة الرئيسية" @@ -2634,7 +2629,7 @@ msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "حُفظت الإعدادات." @@ -3076,7 +3071,7 @@ msgstr "ستاتس نت" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "الجلسات" @@ -3106,24 +3101,24 @@ msgid "You must be logged in to view an application." msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "أيقونة" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "المنظمة" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -3201,26 +3196,11 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:208 -#, php-format -msgid "" -"%s hasn't added any favorite notices yet. Post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:212 -#, 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 "" - #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركة ما تحب." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "مجموعة %s" @@ -3263,7 +3243,7 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "الأعضاء" @@ -3645,7 +3625,7 @@ msgstr "لم تدخل رمزًا" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4225,7 +4205,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -4368,7 +4348,8 @@ msgid "Change site configuration" msgstr "غيّر ضبط الموقع" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "إداري" @@ -4445,7 +4426,7 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" @@ -4503,22 +4484,17 @@ msgstr "الجسر" msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4530,44 +4506,45 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "رخصة محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "قبل" @@ -4576,174 +4553,198 @@ msgstr "قبل" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "لا يمكنك إجراء تغييرات على هذا الموقع." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوحة غير مسموح بها." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "ضبط المستخدم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "ضبط الحساب" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "ضبط المسارات" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "ضبط الجلسات" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "عدّل إشعار الموقع" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "عدّل التطبيق" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "أيقونة لهذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "صف تطبيقك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "مسار صفحة هذا التطبيق" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "مسار المصدر" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "متصفح" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "أزل" @@ -4763,7 +4764,8 @@ msgstr "المؤلف" msgid "Provider" msgstr "المزود" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" @@ -4775,6 +4777,11 @@ msgstr "تغيير كلمة السر فشل" msgid "Password changing is not allowed" msgstr "تغيير كلمة السر غير مسموح به" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "امنع" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "نتائج الأمر" @@ -4787,6 +4794,13 @@ msgstr "اكتمل الأمر" msgid "Command failed" msgstr "فشل الأمر" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Command exception text shown when a user tries to nudge themselves. #: lib/command.php:231 msgid "It does not make a lot of sense to nudge yourself!" @@ -4807,6 +4821,20 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4875,12 +4903,26 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 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:705 +#, 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:724 lib/command.php:750 @@ -4919,13 +4961,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأي أحد." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4944,7 +4993,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4963,7 +5012,7 @@ msgid "You are not a member of any groups." msgstr "لست عضوًا في أي مجموعة." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4975,6 +5024,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:" msgstr[4] "" msgstr[5] "" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5170,33 +5220,6 @@ msgstr "صِف المجموعة أو الموضوع" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "مجموعات" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "ممنوع" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "عدّل خصائص مجموعة %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "الشعار" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "أضف أو عدّل شعار %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "أضف أو عدل تصميم %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "المجموعات الأكثر أعضاءً" @@ -5220,7 +5243,8 @@ msgstr "" msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -5525,56 +5549,75 @@ msgstr "ليس مستخدمًا مسجلًا." msgid "Unsupported message type: %s" msgstr "نوع رسالة غير مدعوم: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "فشل في كتابة الملف إلى القرص." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "أوقفت إضافة رفع الملف." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "لم يمكن تحديد نوع MIME للملف." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5686,27 +5729,7 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "خطأ أثناء إدراج الملف الشخصي الجديد" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "خطأ في إدراج الأفتار" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "خطأ أثناء تحديث الملف الشخصي البعيد" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "خطأ أثناء إدراج الملف الشخصي البعيد" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "ضاعف الإشعار" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5743,7 +5766,8 @@ msgstr "رسائلك المُرسلة" msgid "Tags in %s's notices" msgstr "وسوم في إشعارات %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "غير معروفة" @@ -5832,19 +5856,19 @@ msgstr "" msgid "Sandbox this user" msgstr "أضف هذا المستخدم إلى صندوق الرمل" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "ابحث في الموقع" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "الكلمات المفتاحية" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "ابحث" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "ابحث في المساعدة" @@ -6024,12 +6048,12 @@ msgid "Moderator" msgstr "مراقب" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" @@ -6039,17 +6063,17 @@ msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 415c703931..e549610ab1 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Egyptian Spoken Arabic +# Translation of StatusNet to Egyptian Spoken Arabic (مصرى) +# Expored from translatewiki.net # -# Author@translatewiki.net: Dudi -# Author@translatewiki.net: Ghaly -# Author@translatewiki.net: Meno25 +# Author: Dudi +# Author: Ghaly +# Author: Meno25 # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,21 +11,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:16+0000\n" -"Language-Team: Egyptian Spoken Arabic\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:40+0000\n" +"Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "نفاذ" @@ -67,15 +70,15 @@ msgstr "لا وسم كهذا." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -146,29 +149,22 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to them." -msgstr "" - #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" msgstr "أنت والأصدقاء" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -183,47 +179,49 @@ msgstr "أنت والأصدقاء" msgid "API method not found." msgstr "الـ API method مش موجوده." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "تتطلب هذه الطريقه POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "تعذّر تحديث المستخدم." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصى." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "لم يمكن حفظ الملف." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -233,20 +231,20 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "ما ينفعش تمنع نفسك!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "فشل منع المستخدم." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "فشل إلغاء منع المستخدم." @@ -260,36 +258,36 @@ msgstr "رسائل مباشره من %s" msgid "Direct messages to %s" msgstr "رساله مباشره %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "لا نص فى الرسالة!" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "لم يُعثر على المستخدم المستلم." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "الحاله دى موجوده فعلا فى التفضيلات." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "الحاله دى مش محطوطه فى التفضيلات." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضله." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "ما ينفعش عدم متابعة نفسك." @@ -301,70 +299,70 @@ msgstr "" msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "لم يوجد." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -394,9 +392,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -431,8 +429,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -485,18 +483,18 @@ msgstr "اسمح" msgid "Allow or deny access to your account information." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "الملاحظه اتكررت فعلا." @@ -504,15 +502,15 @@ msgstr "الملاحظه اتكررت فعلا." msgid "Status deleted." msgstr "حُذِفت الحاله." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "لم يوجد." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -670,7 +668,9 @@ msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -703,11 +703,13 @@ msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "ألغِ المنع" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" @@ -735,9 +737,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -745,7 +747,7 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." @@ -777,9 +779,10 @@ msgstr "لازم يكون متسجل دخولك علشان تعدّل applicatio msgid "You are not the owner of this application." msgstr "انت مش بتملك الapplication دى." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -800,7 +803,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "لست والجًا." @@ -859,7 +862,6 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "التصميم" @@ -963,13 +965,13 @@ msgstr "استعد التصميمات المبدئية" msgid "Reset back to default" msgstr "ارجع إلى المبدئي" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1104,7 +1106,7 @@ msgstr "عنوان البريد الإلكترونى المُؤكد الحالى #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1117,124 +1119,112 @@ msgid "" "a message with further instructions." msgstr "" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "عنوان البريد الإلكترونى، مثل \"UserName@example.org\"" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "البريد الإلكترونى الوارد" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديده." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم." -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "عناوين البريد الإلكتروني" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "أرسل لى بريدًا إلكترونيًا عندما يرسل لى أحدهم \"@-رد\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكترونى." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "لا عنوان بريد إلكترونى." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالح." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "هذا هو عنوان بريدك الإكترونى سابقًا." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "تعذّر إدراج رمز التأكيد." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "لا رمز تأكيد." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "هذا ليس عنوان بريدك الإلكترونى." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "لا عنوان بريد إلكترونى." @@ -1371,7 +1361,7 @@ msgstr "" msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "امنع المستخدم من المجموعة" @@ -1436,32 +1426,28 @@ msgstr "حُدّث الشعار." msgid "Failed updating logo." msgstr "فشل رفع الشعار." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "أعضاء مجموعه %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s اعضاء الجروپ, صفحه %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "قائمه بمستخدمى هذه المجموعه." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "إداري" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "امنع" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "اجعل هذا المستخدم إداريًا" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1580,7 +1566,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1588,43 +1577,43 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "حُفِظت التفضيلات." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "لا هويه جابر." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "ليست هويه جابر صالحة" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1632,21 +1621,26 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "هذا عنوان محادثه فوريه خاطئ." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "لا رمز تأكيد." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك فى جابر." +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1712,12 +1706,6 @@ msgstr "رساله شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1987,12 +1975,6 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2000,8 +1982,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2061,6 +2043,11 @@ msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده msgid "Login token expired." msgstr "تاريخ صلاحية الاماره خلص." +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -2123,7 +2110,7 @@ msgid "Password saved." msgstr "حُفظت كلمه السر." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "المسارات" @@ -2321,7 +2308,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحه الرئيسية" @@ -2401,15 +2388,10 @@ msgid "Couldn't save tags." msgstr "تعذّر حفظ الوسوم." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "حُفظت الإعدادات." -#: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)." -msgstr "" - #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" @@ -2830,14 +2812,10 @@ msgstr "StatusNet" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "الجلسات" -#: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "" - #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." msgstr "" @@ -2859,25 +2837,29 @@ msgstr "اذف إعدادت الموقع" msgid "You must be logged in to view an application." msgstr "لازم تكون مسجل دخولك علشان تشوف اى application." +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "المنظمه" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -2942,26 +2924,11 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:208 -#, php-format -msgid "" -"%s hasn't added any favorite notices yet. Post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:212 -#, 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 "" - #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركه ما تحب." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "مجموعه %s" @@ -3004,7 +2971,7 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "الأعضاء" @@ -3099,10 +3066,6 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." -#: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site" -msgstr "" - #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." @@ -3116,10 +3079,6 @@ msgstr "لازم يكون عندك عنوان ايميل صالح." msgid "Unknown language \"%s\"." msgstr "لغه مش معروفه \"%s\"." -#: actions/siteadminpanel.php:165 -msgid "Minimum text limit is 0 (unlimited)." -msgstr "" - #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." msgstr "" @@ -3288,7 +3247,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3296,6 +3255,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "ضبط التصميم" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3852,7 +3815,7 @@ msgid "Unable to save tag." msgstr "تعذّر حفظ الوسوم." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3954,12 +3917,6 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صفحه غير مُعنونة" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -4002,15 +3959,9 @@ msgctxt "TOOLTIP" msgid "Help me!" msgstr "مساعدة" -#. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 -msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "" - #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" @@ -4059,22 +4010,17 @@ msgstr "المصدر" msgid "Contact" msgstr "اتصل" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4086,44 +4032,45 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "رخصه محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "قبل" @@ -4132,132 +4079,155 @@ msgstr "قبل" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "التغييرات مش مسموحه للـ لوحه دى." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "ضبط المسارات" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "اوصف الapplication بتاعتك" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "استرجع" @@ -4277,7 +4247,8 @@ msgstr "المؤلف" msgid "Provider" msgstr "المزود" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" @@ -4289,6 +4260,11 @@ msgstr "تغيير الپاسوورد فشل" msgid "Password changing is not allowed" msgstr "تغيير الپاسوورد مش مسموح" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "امنع" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "نتائج الأمر" @@ -4301,6 +4277,13 @@ msgstr "اكتمل الأمر" msgid "Command failed" msgstr "فشل الأمر" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4326,6 +4309,20 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4394,12 +4391,26 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." @@ -4417,13 +4428,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "لست مُشتركًا بأى أحد." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4442,7 +4460,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4461,7 +4479,7 @@ msgid "You are not a member of any groups." msgstr "لست عضوًا فى أى مجموعه." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4473,6 +4491,7 @@ msgstr[3] "أنت عضو فى هذه المجموعات:" msgstr[4] "" msgstr[5] "" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4640,28 +4659,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "مجموعات" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "ممنوع" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "عدّل خصائص مجموعه %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "الشعار" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "أضف أو عدّل شعار %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "المجموعات الأكثر أعضاءً" @@ -4680,7 +4677,8 @@ msgstr "" msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -4940,56 +4938,75 @@ msgstr "" msgid "Unsupported message type: %s" msgstr "نوع رساله مش مدعوم: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "فشل فى كتابه الملف إلى القرص." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "مش نافع يتحدد نوع الـMIME بتاع الفايل." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5004,11 +5021,6 @@ msgstr "إلى" msgid "Available characters" msgstr "المحارف المتوفرة" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "أرسل إشعارًا" @@ -5101,27 +5113,7 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "خطأ أثناء إدراج الملف الشخصى الجديد" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "خطأ فى إدراج الأفتار" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "خطأ أثناء تحديث الملف الشخصى البعيد" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "خطأ أثناء إدراج الملف الشخصى البعيد" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "ضاعف الإشعار" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5153,12 +5145,8 @@ msgstr "صندوق الصادر" msgid "Your sent messages" msgstr "رسائلك المُرسلة" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "مش معروف" @@ -5243,19 +5231,19 @@ msgstr "" msgid "Sandbox this user" msgstr "أضف هذا المستخدم إلى صندوق الرمل" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "ابحث فى الموقع" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "الكلمات المفتاحية" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "ابحث" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "ابحث فى المساعدة" @@ -5431,12 +5419,12 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" @@ -5446,17 +5434,17 @@ msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index d4eb9fe7f9..02f1172d0f 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Bulgarian +# Translation of StatusNet to Bulgarian (Български) +# Expored from translatewiki.net # -# Author@translatewiki.net: DCLXVI -# Author@translatewiki.net: Turin +# Author: DCLXVI +# Author: Turin # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:22+0000\n" -"Language-Team: Bulgarian\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:41+0000\n" +"Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Достъп" @@ -75,10 +77,10 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -91,15 +93,15 @@ msgstr "Няма такака страница." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -191,16 +193,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -215,47 +217,49 @@ msgstr "Бележки от %1$s и приятели в %2$s." msgid "API method not found." msgstr "Не е открит методът в API." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Този метод изисква заявка POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Грешка при обновяване на потребителя." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Потребителят няма профил." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Грешка при запазване на профила." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -265,15 +269,15 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Не можете да блокирате себе си!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Грешка при блокиране на потребителя." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Грешка при разблокиране на потребителя." @@ -297,68 +301,64 @@ msgstr "Преки съобщения до %s" msgid "All the direct messages sent to %s" msgstr "Всички преки съобщения, изпратени до %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Липсва текст на съобщението" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Твърде дълго. Може да е най-много %d знака." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Получателят не е открит" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не може да изпращате преки съобщения до хора, които не са в списъка ви с " "приятели." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Не е открита бележка с такъв идентификатор." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Тази бележка вече е отбелязана като любима." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Тази бележка не е отбелязана като любима." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Грешка при изтриване на любима бележка." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Грешка при спиране на проследяването — потребителят не е намерен." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Грешка при спиране на проследяването — потребителят не е намерен." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Не можете да спрете да следите себе си." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Целевият потребител не беше открит." @@ -367,7 +367,7 @@ msgstr "Целевият потребител не беше открит." msgid "Could not find target user." msgstr "Целевият потребител не беше открит." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -375,90 +375,90 @@ msgstr "" "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " "между тях." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описанието е твърде дълго (до %d символа)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Неправилен псевдоним: \"%s\"" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Групата не е открита." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Вече членувате в тази група." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Грешка при обновяване на групата." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Не членувате в тази група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -488,9 +488,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -529,8 +529,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -591,18 +591,18 @@ msgstr "Този метод изисква заявка POST или DELETE." msgid "You may not delete another user's status." msgstr "Не може да изтривате бележки на друг потребител." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Няма такава бележка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Не можете да повтаряте собствени бележки." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Вече сте повторили тази бележка." @@ -614,21 +614,21 @@ msgstr "Бележката е изтрита." msgid "No status with that ID found." msgstr "Не е открита бележка с такъв идентификатор." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Твърде дълго. Може да е най-много %d знака." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Не е открито." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -759,6 +759,10 @@ msgstr "Няма качен файл." msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:370 msgid "Avatar updated." msgstr "Аватарът е обновен." @@ -817,7 +821,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -855,11 +861,13 @@ msgstr "%1$s и приятели, страница %2$d" msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Разблокиране" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Разблокиране на този потребител" @@ -881,12 +889,6 @@ msgstr "Кодът за потвърждение не е открит." msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -898,9 +900,9 @@ msgstr "Този адрес е вече потвърден." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -908,7 +910,7 @@ msgstr "Грешка при обновяване на потребителя." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." @@ -944,9 +946,10 @@ msgstr "Приложението не е открито." msgid "You are not the owner of this application." msgstr "Не сте собственик на това приложение." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -977,7 +980,7 @@ msgstr "Изтриване на това приложение" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не сте влезли в системата." @@ -1033,11 +1036,6 @@ msgstr "" msgid "Delete this user" msgstr "Изтриване на този потребител" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "Смяна на логото" @@ -1122,13 +1120,13 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1243,7 +1241,7 @@ msgstr "Текущ потвърден адрес на е-поща." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1261,22 +1259,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Отказ" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Адрес на е-поща, като \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1284,105 +1286,98 @@ msgstr "Добавяне" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Входяща поща" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Изпратете писмо до този адрес за публикуване като бележка." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Настройки на е-поща" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Изпращане на уведомления за нови абонаменти по пощата." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Изпращане на писмо при ново лично съобщение." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Искам да изпращам бележки по пощата." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Публикуване на MicroID за адреса на е-пощата." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Настройките на е-поща са запазени." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Не е въведена е-поща." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Това и сега е адресът на е-пощата ви." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Тази е-поща вече се използва от друг потребител." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не може да се вмъкне код за потвърждение." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1394,45 +1389,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Няма потвърждения, очакващи да бъдат отказани." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Това не е вашият адрес на е-поща." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Входящият адрес на е-поща е премахнат." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Няма входящ адрес на е-поща." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Грешка при обновяване записа на потребител." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Входящият адрес на е-поща е премахнат." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." @@ -1516,10 +1511,6 @@ msgstr "Няма прикачени файлове." msgid "Not expecting this response!" msgstr "Неочакван отговор." -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Можете да ползвате локален абонамент!" @@ -1532,14 +1523,6 @@ msgstr "Потребителят е забранил да се абонират msgid "You are not authorized." msgstr "Не сте абонирани за никого." -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:79 msgid "No such file." msgstr "Няма такъв файл." @@ -1585,7 +1568,7 @@ msgstr "Потребителят вече е блокиран за групат msgid "User is not a member of group." msgstr "Потребителят не членува в групата." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Разблокиране на потребителя от групата" @@ -1644,32 +1627,28 @@ msgstr "Лотого е обновено." msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Членове на групата %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Абонати на %1$s, страница %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Блокиране" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1751,11 +1730,6 @@ msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1779,7 +1753,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1789,63 +1766,63 @@ msgstr "" "сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Настройки на е-поща" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Изпращане на бележките по Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Изпращане по Jabber/GTalk на отговори от хора, " #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Настройките са запазени." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Няма Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Грешка при нормализация на този Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Неправилен Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Това вече е вашият Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Този Jabber ID принадлежи на друг потребител." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1855,23 +1832,23 @@ msgstr "" "от %s, трябва да го одобрите." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Грешен IM адрес." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Няма код за потвърждение." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Това не е вашият Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Входящият адрес на е-поща е премахнат." @@ -1962,12 +1939,6 @@ msgstr "Лично съобщение" msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -2091,17 +2062,6 @@ msgstr "" "За по-голяма сигурност, моля въведете отново потребителското си име и парола " "при промяна на настройките." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - #: actions/newapplication.php:52 msgid "New Application" msgstr "Ново приложение" @@ -2259,12 +2219,6 @@ msgstr "Потребителят няма профил." msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2272,8 +2226,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -2309,6 +2263,10 @@ msgstr "Услуга за автоматично съкращаване, коя msgid "View profile designs" msgstr "Редактиране на профила" +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." @@ -2397,7 +2355,7 @@ msgid "Password saved." msgstr "Паролата е записана." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Пътища" @@ -2574,7 +2532,7 @@ msgstr "Пълно име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Лична страница" @@ -2671,7 +2629,7 @@ msgid "Couldn't save tags." msgstr "Грешка при запазване етикетите." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Настройките са запазени." @@ -2963,14 +2921,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - #: actions/register.php:583 #, php-format msgid "" @@ -3066,10 +3016,6 @@ msgstr "" msgid "That’s a local profile! Login to subscribe." msgstr "Това е локален профил! Влезте, за да се абонирате." -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "Само влезли потребители могат да повтарят бележки." @@ -3155,7 +3101,7 @@ msgstr "Потребителят вече е заглушен." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Сесии" @@ -3193,24 +3139,24 @@ msgid "Application profile" msgstr "Профил на приложението" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Икона" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -3303,7 +3249,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Така можете да споделите какво харесвате." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Група %s" @@ -3351,7 +3297,7 @@ msgstr "Емисия с бележки на %s (Atom)" msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Членове" @@ -3509,10 +3455,6 @@ msgstr "Неправилен адрес на е-поща." msgid "Unknown language \"%s\"." msgstr "Непознат език \"%s\"." -#: actions/siteadminpanel.php:165 -msgid "Minimum text limit is 0 (unlimited)." -msgstr "" - #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." msgstr "" @@ -3617,11 +3559,6 @@ msgstr "Настройки за SMS" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3745,10 +3682,14 @@ msgstr "Не е въведен код." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -4016,13 +3957,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Одобряване на абонамента" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "Лиценз" @@ -4048,24 +3982,10 @@ msgstr "Няма заявка за одобрение." msgid "Subscription authorized" msgstr "Абонаментът е одобрен" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Абонаментът е отказан" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -4091,16 +4011,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -4546,22 +4456,17 @@ msgstr "Табелка" msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е услуга за микроблогване." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4573,49 +4478,50 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Лиценз на съдържанието" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Страниране" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Преди" @@ -4624,121 +4530,144 @@ msgstr "Преди" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Не можете да променяте този сайт." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Основна настройка на сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Настройка на оформлението" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Настройка на пътищата" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Изтриване на бележката" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Изтриване на приложението" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "Не сте собственик на това приложение." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Отказ" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" @@ -4753,13 +4682,15 @@ msgstr "Автор" msgid "Provider" msgstr "Доставчик" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" -msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Блокиране" #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" @@ -4773,6 +4704,13 @@ msgstr "Командата е изпълнена" msgid "Command failed" msgstr "Грешка при изпълнение на командата" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4803,6 +4741,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4861,15 +4813,18 @@ msgstr "Грешка при повтаряне на бележката." msgid "Error saving notice." msgstr "Грешка при записване на бележката." -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." +#. 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:672 +#, 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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -4910,13 +4865,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "Не сте абонирани за никого." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4931,7 +4893,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4946,7 +4908,7 @@ msgid "You are not a member of any groups." msgstr "Не членувате в нито една група." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4954,6 +4916,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5035,6 +4998,10 @@ msgstr "" "Можете да качите лично изображение за фон. Максималната големина на файла е " "2MB." +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "" + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Отбелязване като любимо" @@ -5120,33 +5087,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Група" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Блокирани" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s блокирани потребителя" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Редактиране настройките на групата %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Лого" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Добавяне или редактиране логото на %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи с най-много членове" @@ -5173,7 +5113,8 @@ msgstr "Форматът на файла с изображението не се msgid "Partial upload." msgstr "Частично качване на файла." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системна грешка при качване на файл." @@ -5466,56 +5407,75 @@ msgstr "Това не е вашият входящ адрес." msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Липсва временна папка." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Грешка при записване файла на диска." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Грешка при изтриване на любима бележка." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5530,11 +5490,6 @@ msgstr "До" msgid "Available characters" msgstr "Налични знаци" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Изпращане на бележка" @@ -5627,23 +5582,7 @@ msgstr "Побутване" msgid "Send a nudge to this user" msgstr "Побутване на този потребител" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Грешка при вмъкване на нов профил" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Грешка при вмъкване на аватар" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Грешка при обновяване на отдалечен профил" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Грешка при вмъкване на отдалечен профил" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." @@ -5680,7 +5619,8 @@ msgstr "Изпратените от вас съобщения" msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Непознато" @@ -5757,19 +5697,19 @@ msgstr "Повтаряне на тази бележка" msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Търсене в сайта" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Ключови думи" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Търсене" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Помощ за търсенето" @@ -5946,56 +5886,32 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "преди няколко секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "преди около минута" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "преди около %d минути" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "преди около час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "преди около %d часа" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "преди около ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "преди около %d дни" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "преди около месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "преди около %d месеца" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 82213ba432..4e5bdf2e04 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Breton +# Translation of StatusNet to Breton (Brezhoneg) +# Expored from translatewiki.net # -# Author@translatewiki.net: Fulup -# Author@translatewiki.net: Gwendal -# Author@translatewiki.net: Y-M D +# Author: Fulup +# Author: Gwendal +# Author: Y-M D # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,20 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:29+0000\n" -"Language-Team: Dutch\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:42+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Message-Group: #out-statusnet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Moned" @@ -76,10 +78,10 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -92,15 +94,15 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -187,16 +189,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -211,47 +213,49 @@ msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" msgid "API method not found." msgstr "N'eo ket bet kavet an hentenn API !" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Ezhomm en deus an argerzh-mañ eus ur POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Diposubl eo hizivaat an implijer." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "An implijer-mañ n'eus profil ebet dezhañ." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Diposubl eo enrollañ ar profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -261,30 +265,30 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Diposubl eo hizivat ho design." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "N'hallit ket en em stankañ hoc'h-unan !" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "N'eus ket bet tu da stankañ an implijer." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "N'eus ket bet tu da zistankañ an implijer." @@ -308,69 +312,65 @@ msgstr "Kemennadennoù war-eeun kaset da %s" msgid "All the direct messages sent to %s" msgstr "An holl gemennadennoù war-eeun kaset da %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Kemenadenn hep testenn !" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "N'eo ket bet kavet ar resever." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho " "mignoned." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "N'eo bet kavet statud ebet gant an ID-mañ." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Ur pennroll eo dija an ali-mañ." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Diposupl eo krouiñ ar pennroll-mañ." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "N'eo ket ar statud-mañ ur pennroll." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Diposupl eo dilemel ar pennroll-mañ." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Dibosupl eo heuliañ an implijer : n'eo ket bet kavet ar profil." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Diposubl eo heuliañ an implijer : war ho listenn emañ %s dija." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Diposupl eo paouez heuliañ an implijer : N'eo ket bet kavet an implijer." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Diposubl eo termeniñ an implijer mammenn." @@ -379,95 +379,95 @@ msgstr "Diposubl eo termeniñ an implijer mammenn." msgid "Could not find target user." msgstr "Diposubl eo kavout an implijer pal." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "N'eo ket ul lesanv mat." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Re a aliasoù ! %d d'ar muiañ." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias fall : \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "N'eo ket bet kavet ar strollad." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Un ezel eus ar strollad-mañ eo dija." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "N'oc'h ket ezel eus ar strollad-mañ." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -497,7 +497,7 @@ msgstr "Strolladoù %s" msgid "groups on %s" msgstr "strolladoù war %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Enporzhiadenn c'hwitet." @@ -511,9 +511,9 @@ msgstr "Fichenn direizh." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -552,8 +552,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -614,18 +614,18 @@ msgstr "Ezhomm en deus an argerzh-mañ ur POST pe un DELETE." msgid "You may not delete another user's status." msgstr "Ne c'helloc'h ket dilemel statud un implijer all." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "N'eus ket eus an ali-se." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Ne c'helloc'h ket adlavar ho alioù." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Adlavaret o peus dija an ali-mañ." @@ -637,21 +637,21 @@ msgstr "Statud diverket." msgid "No status with that ID found." msgstr "N'eo ket bet kavet a statud evit an ID-mañ" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "N'eo ket bet kavet." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -843,7 +843,9 @@ msgid "Yes" msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -886,11 +888,13 @@ msgstr "" msgid "Unblock user from group" msgstr "Distankañ implijer ar strollad" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Distankañ" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Distankañ an implijer-mañ" @@ -929,9 +933,9 @@ msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -939,7 +943,7 @@ msgstr "Diposubl eo hizivaat an implijer." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Diposubl eo dilemel ar postel kadarnadur." @@ -975,9 +979,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1008,7 +1013,7 @@ msgstr "Dilemel ar poelad-se" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nann-luget." @@ -1067,7 +1072,6 @@ msgstr "Diverkañ an implijer-mañ" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1186,13 +1190,13 @@ msgstr "Adlakaat an neuz dre ziouer." msgid "Reset back to default" msgstr "Adlakaat an arventennoù dre ziouer" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" @@ -1348,7 +1352,7 @@ msgstr "Chomlec'h postel gwiriekaet er mare-mañ." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1364,22 +1368,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Nullañ" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Chomlec'h postel, evel \"AnvImplijer@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1387,116 +1395,116 @@ msgstr "Ouzhpennañ" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Postel o tont" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nevez" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Penndibaboù ar posteloù" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Kas din ur postel pa gas unan bennak ur gemennadenn bersonel din." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Kas din ur postel pa gas unan bennak ur \"@-respont\" din." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "C'hoant am eus kas va alioù dre bostel." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Embann ur MicroID evit ma chomlec'h postel." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Enrollet eo bet an arventennoù postel." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Chomlec'h postel ebet." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "N'eo ket ur chomlec'h postel reizh." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Ho postel eo dija." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Dibosupl eo ensoc'hañ ar c'hod gwiriekaat." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "N'eo ket mat ar chomlec'h postelerezh prim." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Nullet eo bet kadarnadenn ar postel." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "N'eo ket ho postel." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Dilamet eo bet ar chomlec'h postel." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Chomlec'h postel ebet o tont." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Dibosupl eo hizivaat doser an implijer." @@ -1581,7 +1589,7 @@ msgstr "N'oc'h ket aotreet." msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Fazi en ur hizivaat ar profil a-bell." @@ -1638,7 +1646,7 @@ msgstr "An implijer-mañ a zo stanket dija eus ar strollad." msgid "User is not a member of group." msgstr "N'eo ket an implijer-mañ ezel eus ur strollad." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Stankañ an implijer-mañ eus ar strollad" @@ -1701,40 +1709,32 @@ msgstr "Logo hizivaet." msgid "Failed updating logo." msgstr "N'eo ket bet kaset da benn an hizivadenn." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Izili ar strollad %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Izili ar strollad %1$s, pajenn %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Roll an implijerien enrollet er strollad-mañ." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Merañ" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Stankañ" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Lakaat ur merour" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Lakaat an implijer-mañ da verour" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1845,7 +1845,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1853,53 +1856,53 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Penndibaboù ar bostelerezh prim" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Kas din an alioù dre Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Penndibaboù enrollet" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "ID Jabber ebet." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Diposubl eo implijout an ID Jabber-mañ" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "N'eo ket un ID Jabber reizh." #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Ho ID Jabber eo dija" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Implijet eo an Jabber ID-mañ gant un implijer all." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1907,23 +1910,23 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "N'eo ket mat ar chomlec'h postelerezh prim." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "N'eo ket ho ID Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Ar chomlec'h IM zo bet dilamet." @@ -2294,11 +2297,6 @@ msgstr "" msgid "You are not a user of that application." msgstr "N'oc'h ket un implijer eus ar poellad-mañ." -#: actions/oauthconnectionssettings.php:186 -#, php-format -msgid "Unable to revoke access for app: %s." -msgstr "" - #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" @@ -2312,12 +2310,6 @@ msgstr "N'en deus ket an ali a profil." msgid "%1$s's status on %2$s" msgstr "Statud %1$s war %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2436,7 +2428,7 @@ msgid "Password saved." msgstr "Ger-tremen enrollet." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Hentoù" @@ -2628,7 +2620,7 @@ msgstr "Anv klok" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pajenn degemer" @@ -2731,7 +2723,7 @@ msgid "Couldn't save tags." msgstr "Diposubl eo enrollañ ar balizennoù." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Enrollet eo bet an arventennoù." @@ -3212,7 +3204,7 @@ msgstr "Er poull-traezh emañ dija an implijer." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Dalc'hoù" @@ -3250,24 +3242,24 @@ msgid "Application profile" msgstr "Profil ar poellad" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Arlun" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Anv" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Aozadur" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Deskrivadur" @@ -3369,7 +3361,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Un doare eo evit kevranañ ar pezh a blij deoc'h." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "strollad %s" @@ -3421,7 +3413,7 @@ msgstr "Neudenn alioù ar strollad %s (Atom)" msgid "FOAF for %s group" msgstr "Mignon ur mignon evit ar strollad %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Izili" @@ -3791,7 +3783,7 @@ msgstr "N'eo bet lakaet kod ebet" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Prim" @@ -4367,7 +4359,7 @@ msgid "Unable to save tag." msgstr "Dibosupl eo enrollañ an tikedenn." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Nac'het ez eus bet deoc'h en em goumanantiñ." @@ -4510,7 +4502,8 @@ msgid "Change site configuration" msgstr "Kemmañ arventennoù al lec'hienn" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Merañ" @@ -4587,7 +4580,7 @@ msgstr "Klask" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Ali al lec'hienn" @@ -4646,7 +4639,10 @@ msgid "StatusNet software license" msgstr "Aotre-implijout ar meziant StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4654,13 +4650,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** a zo ur servij microblogging." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4669,42 +4668,43 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Aotre-implijout diwar-benn danvez al lec'hienn" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Pajennadur" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "War-lerc'h" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Kent" @@ -4713,194 +4713,218 @@ msgstr "Kent" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "N'eo ket aotreet kemmañ ar panell-se" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "N'eo ket bet emplementet showForm()." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "N'eo ket bet emplementet saveSettings()." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Dibosupl eo dilemel an arventennoù krouiñ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Arventennoù diazez al lec'hienn" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Lec'hienn" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Kefluniadur ar c'hrouiñ" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Kefluniadur an implijer" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Implijer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Kefluniadur ar moned" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Kefluniadur an hentoù" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Kefluniadur an dalc'hoù" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Kemmañ ali al lec'hienn" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Kefluniadur ar primoù" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Kemmañ an arload" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Arlun evit ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Diskrivit ho poellad gant %d arouezenn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Deskrivit ho poellad" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL pajenn degemer ar poellad-mañ" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Mammenn URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "An aozadur e karg eus ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL pajenn degemer an aozadur-se" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL davet pehini e o ret adkas goude bezañ kevreet" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Merdeer" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Burev" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Seurt ar poellad, merdeer pe burev" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Lenn hepken" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lenn-skrivañ" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Nullañ" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lenn-skrivañ" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "lenn hepken" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprouet d'an %1$s - moned \"%2$s\"." @@ -4920,7 +4944,8 @@ msgstr "Aozer" msgid "Provider" msgstr "Pourvezer" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -4932,6 +4957,11 @@ msgstr "N'eo ket aet betek penn kemmañ ar ger-tremen" msgid "Password changing is not allowed" msgstr "N'eo ket aotreet kemmañ ar ger-tremen" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Stankañ" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Disoc'hoù an urzhiad" @@ -4944,6 +4974,31 @@ msgstr "Urzhiad bet klokaet" msgid "Command failed" msgstr "C'hwitet en deus an urzhiad" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4955,6 +5010,13 @@ msgid "It does not make a lot of sense to nudge yourself!" msgstr "" "N'eus tamm talvoudegezh ebet ober ur blinkadenn deoc'h c'hwi oc'h unan !" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4975,6 +5037,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Ali bet ouzhpennet d'ar pennroll." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5023,6 +5099,27 @@ msgstr "" msgid "Error sending direct message." msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." +#. 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:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "" + +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + +#. 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:603 +#, php-format +msgid "Reply to %s sent." +msgstr "" + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -5033,12 +5130,26 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + #. TRANS: Text shown when issuing the command "off" successfully. #: lib/command.php:728 msgid "Notification off." @@ -5071,6 +5182,13 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." @@ -5088,6 +5206,7 @@ msgstr "Den n'eo koumanantet deoc'h." msgid "You are not a member of any groups." msgstr "N'oc'h ezel eus strollad ebet." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5237,28 +5356,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Strollad" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Stanket" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s implijer stanket" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Ouzhpennañ pe kemmañ logo %s" - #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" msgstr "" @@ -5273,7 +5370,8 @@ msgstr "" msgid "This page is not available in a media type you accept" msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -5521,52 +5619,69 @@ msgstr "eus" msgid "Not a registered user." msgstr "N'eo ket un implijer enrollet." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Mankout a ra un doser padennek." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." -msgstr "Klaskit implijout ur furmad %s all." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5678,18 +5793,6 @@ msgstr "Blinkadenn" msgid "Send a nudge to this user" msgstr "Kas ur blinkadenn d'an implijer-mañ" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Ur fazi 'zo bet en ur ensoc'hañ ar profil nevez" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Eilañ an ali" - #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Hiniennel" @@ -5718,12 +5821,8 @@ msgstr "Boest kas" msgid "Your sent messages" msgstr "Ar c'hemenadennoù kaset ganeoc'h" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Dianav" @@ -5800,19 +5899,19 @@ msgstr "" msgid "Sandbox" msgstr "Poull-traezh" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Klask el lec'hienn" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Ger(ioù) alc'hwez" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Klask" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Skoazell diwar-benn ar c'hlask" @@ -5962,56 +6061,32 @@ msgid "Moderator" msgstr "Habasker" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "%d munutenn zo well-wazh" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "%d eurvezh zo well-wazh" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "1 devezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "%d devezh zo well-wazh" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "miz zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "%d miz zo well-wazh" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "bloaz zo well-wazh" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 3233ac9a3d..914e8a189d 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -1,9 +1,10 @@ -# Translation of StatusNet to Catalan +# Translation of StatusNet to Catalan (Català) +# Expored from translatewiki.net # -# Author@translatewiki.net: Aleator -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Paucabot -# Author@translatewiki.net: Toniher +# Author: Aleator +# Author: McDutchie +# Author: Paucabot +# Author: Toniher # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,20 +12,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:34+0000\n" -"Language-Team: Catalan\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:43+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accés" @@ -79,10 +81,10 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -95,15 +97,15 @@ msgstr "No existeix la pàgina." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -203,16 +205,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -227,21 +229,23 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" msgid "API method not found." msgstr "No s'ha trobat el mètode API!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Aquest mètode requereix POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -249,27 +253,27 @@ msgstr "" "Heu d'especificar un paràmetre anomenat 'device' (dispositiu) amb un valor " "dels següents: sms, im, none (cap)" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "No s'ha pogut actualitzar l'usuari." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "L'usuari no té perfil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "No s'ha pogut desar el perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -281,30 +285,30 @@ msgstr "" "El servidor no ha pogut gestionar tantes dades POST (%s bytes) a causa de la " "configuració actual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "No s'han pogut desar els paràmetres de disseny." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "No s'ha pogut actualitzar el vostre disseny." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "No podeu bloquejar-vos a vosaltres mateixos!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Ha fallat el blocatge de l'usuari." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Ha fallat el desblocatge de l'usuari." @@ -328,61 +332,61 @@ msgstr "Missatges directes a %s" msgid "All the direct messages sent to %s" msgstr "Tots els missatges directes enviats a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "No hi ha text al missatge!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "És massa llarg. La mida màxima del missatge és %d caràcters." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "No s'ha trobat l'usuari destinatari." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "No es pot enviar missatges directes a usuaris que no siguin els vostres " "amics." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "No s'ha trobat cap estat amb aquest ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Aquest estat ja és un preferit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "No es pot crear el preferit." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "L'estat no és un preferit." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "No s'ha pogut eliminar el preferit." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "No es pot deixar de seguir l'usuari: no s'ha trobat l'usuari." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "No s'ha pogut seguir l'usuari: %s ja està a la vostra llista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "No es pot deixar de seguir l'usuari: no s'ha trobat l'usuari." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "No podeu deixar de seguir-vos a un mateix." @@ -398,7 +402,7 @@ msgstr "No s'ha pogut determinar l'usuari d'origen." msgid "Could not find target user." msgstr "No s'ha pogut trobar l'usuari de destinació." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -406,95 +410,95 @@ msgstr "" "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " "espais." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripció és massa llarga (màx. %d caràcters)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Hi ha massa àlies! Màxim %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "L'àlies no és vàlid: «%s»." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'àlies «%s» ja està en ús. Proveu-ne un altre." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L'àlies no pot ser el mateix que el sobrenom." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "No s'ha trobat el grup." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Ja sou membre del grup." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "No sou un membre del grup." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -524,7 +528,7 @@ msgstr "%s grups" msgid "groups on %s" msgstr "grups sobre %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "La pujada ha fallat." @@ -538,9 +542,9 @@ msgstr "El testimoni no és vàlid." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -587,8 +591,8 @@ msgstr "S'ha denegat i revocat el testimoni de sol·licitud %s." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -652,18 +656,18 @@ msgstr "Aquest mètode requereix POST o DELETE." msgid "You may not delete another user's status." msgstr "No podeu eliminar l'estat d'un altre usuari." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "No existeix aquest avís." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "No podeu repetir els vostres propis avisos." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Avís duplicat." @@ -675,21 +679,21 @@ msgstr "S'ha eliminat l'estat." msgid "No status with that ID found." msgstr "No s'ha trobat cap estatus amb la ID trobada." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "El client ha de proporcionar un paràmetre 'status' amb un valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Massa llarg. La longitud màxima és de %d caràcters." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "No s'ha trobat." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "La mida màxima de l'avís és %d caràcters, incloent l'URL de l'adjunt." @@ -892,7 +896,9 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloca aquest usuari" @@ -934,11 +940,13 @@ msgstr "Una llista d'usuaris que han estat blocats d'afegir-se a aquest grup." msgid "Unblock user from group" msgstr "Desbloca l'usuari del grup" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloca" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Desbloca l'usuari" @@ -977,9 +985,9 @@ msgstr "Aquesta adreça ja ha estat confirmada." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -987,7 +995,7 @@ msgstr "No s'ha pogut actualitzar l'usuari." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." @@ -1023,9 +1031,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1059,7 +1068,7 @@ msgstr "Elimina aquesta aplicació" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "No heu iniciat una sessió." @@ -1122,7 +1131,6 @@ msgstr "Elimina l'usuari" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Disseny" @@ -1242,13 +1250,13 @@ msgstr "Restaura els dissenys per defecte" msgid "Reset back to default" msgstr "Torna a restaurar al valor per defecte" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Desa" @@ -1404,7 +1412,7 @@ msgstr "Adreça electrònica confirmada actualment." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1422,22 +1430,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Adreça electrònica, com ara «nomusuari@example.org»" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1445,112 +1457,112 @@ msgstr "Afegeix" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correu electrònic entrant" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envia correu electrònic a aquesta adreça per publicar nous avisos." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Estableix una nova adreça electrònica d'enviament; cancel·la l'antiga." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nou" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferències del correu electrònic" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Envia'm avisos per correu electrònic quan algú nou se'm subscrigui." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envia'm un correu electrònic quan algú afegeixi un avís meu com a preferit." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envia'm un correu electrònic quan algú m'enviï una resposta amb @." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" "Permetre que els amics em cridin l'atenció i m'enviïn un correu electrònic." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Vull publicar avisos amb el correu electrònic." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publica una MicroID per al meu correu electrònic." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "S'han desat les preferències del correu electrònic." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "No hi ha cap adreça electrònica." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "No es pot normalitzar l'adreça electrònica." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Ja és la vostra adreça electrònica." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "L'adreça electrònica ja pertany a un altre usuari." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "No s'ha pogut inserir el codi de confirmació." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1562,50 +1574,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Cap confirmació pendent per cancel·lar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Aquesta l'adreça de correu electrònic incorrecta." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "S'ha cancel·lat la confirmació de correu electrònic." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Aquest no és el teu correu electrònic" #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "S'ha eliminat l'adreça de correu electrònic." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No hi ha cap direcció de correu electrònic entrant." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "No s'ha pogut actualitzar el registre de l'usuari." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Eliminat el correu electrònic entrant." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." @@ -1724,7 +1736,7 @@ msgstr "No s'ha pogut convertir el testimoni de sol·licitud a un d'accés." msgid "Remote service uses unknown version of OMB protocol." msgstr "El servei remot utilitza una versió desconeguda del protocol OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "S'ha produït un error en actualitzar el perfil remot." @@ -1781,7 +1793,7 @@ msgstr "L'usuari ja està blocat del grup." msgid "User is not a member of group." msgstr "L'usuari no és membre del grup." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloca l'usuari del grup" @@ -1862,40 +1874,32 @@ msgstr "Logo actualitzat." msgid "Failed updating logo." msgstr "Error en actualitzar logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s membre/s en el grup" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s membres del grup, pàgina %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloca" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Fes-lo administrador" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Fes l'usuari administrador" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2034,7 +2038,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2045,65 +2052,65 @@ msgstr "" "missatgeria instantània o al GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferències de MI" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Envia'm avisos per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Envia'm un avís quan el meu estat Jabber/GTalk canvii." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " "subscrita." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "S'han desat les preferències." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Cap Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Impossible normalitzar aquest Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Jabber ID no vàlid" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Aquest ja és el teu Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2113,28 +2120,28 @@ msgstr "" "heu afegit. Heu d'acceptar que %s us pugui enviar missatges." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Aquesta adreça de missatgeria instantània és incorrecta." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "No s'ha pogut eliminar la confirmació de MI." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "S'ha cancel·lat la confirmació de MI." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Aquest no és el teu Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "S'ha eliminat l'adreça de MI." @@ -2609,8 +2616,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Si us plau, només URL %s sobre HTTP pla." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2753,7 +2760,7 @@ msgid "Password saved." msgstr "Contrasenya guardada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Camins" @@ -2967,7 +2974,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pàgina personal" @@ -3074,7 +3081,7 @@ msgid "Couldn't save tags." msgstr "No s'han pogut desar les etiquetes." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "S'ha desat la configuració." @@ -3615,7 +3622,7 @@ msgstr "L'usuari ja es troba en un entorn de proves." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessions" @@ -3653,24 +3660,24 @@ msgid "Application profile" msgstr "Perfil de l'aplicació" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organització" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" @@ -3784,7 +3791,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "És una forma de compartir allò que us agrada." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s grup" @@ -3836,7 +3843,7 @@ msgstr "Canal d'avisos del grup %s (Atom)" msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membres" @@ -4294,7 +4301,7 @@ msgstr "No s'ha introduït cap codi" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Instantànies" @@ -5032,7 +5039,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. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Se us ha banejat la subscripció." @@ -5180,7 +5187,8 @@ msgid "Change site configuration" msgstr "Canvia la configuració del lloc" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -5257,7 +5265,7 @@ msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Avís del lloc" @@ -5321,7 +5329,10 @@ msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5331,13 +5342,16 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** és un servei de microblogging." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5349,34 +5363,35 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Llicència de contingut del lloc" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contingut i les dades de %1$s són privades i confidencials." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "El contingut i les dades són copyright de %1$s. Tots els drets reservats." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "El contingut i les dades són copyright dels col·laboradors. Tots els drets " "reservats." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5384,19 +5399,19 @@ msgstr "" "llicència %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginació" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Posteriors" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Anteriors" @@ -5407,208 +5422,227 @@ msgstr "" "S'esperava un element del canal arrel, però se n'ha obtingut tot un document " "XML sencer." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "No es pot gestionar el contingut remot encara." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "No es pot gestionar el contingut XML incrustat encara." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "No es pot gestionar el contingut Base64 incrustat encara." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "No podeu fer canvis al lloc." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "No es permeten canvis a aquell tauler." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "El showForm() no està implementat." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "El saveSettings() no està implementat." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "No s'ha pogut eliminar el paràmetre de disseny." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuració del disseny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuració de l'usuari" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuració de l'accés" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuració dels camins" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuració de les sessions" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Edita l'avís del lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuració de les instantànies" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "El recurs API requereix accés de lectura i d'escriptura, però només en teniu " "de lectura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Edita l'aplicació" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icona de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Descriviu la vostra aplicació en %d caràcters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Descriviu la vostra aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL de la pàgina d'inici de l'aplicació" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL d'origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organització responsable de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "L'URL de la pàgina d'inici de l'organització" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL on redirigir-hi després de l'autenticació." #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Escriptori" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipus d'aplicació, navegador o escriptori" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Només lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lectura i escriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancel·la" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "de lectura i d'escriptura" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "només de lectura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovat: %1$s - accés «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" @@ -5628,11 +5662,13 @@ msgstr "Autoria" msgid "Provider" msgstr "Proveïdor" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Avisos on apareix l'adjunt" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etiquetes de l'adjunció" @@ -5644,6 +5680,11 @@ msgstr "El canvi de contrasenya ha fallat" msgid "Password changing is not allowed" msgstr "No es permet el canvi de contrasenya" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloca" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultats de les comandes" @@ -5895,7 +5936,7 @@ msgid "You are not subscribed to anyone." msgstr "No esteu subscrit a ningú." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5910,7 +5951,7 @@ msgid "No one is subscribed to you." msgstr "Ningú no us ha subscrit." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5925,7 +5966,7 @@ msgid "You are not a member of any groups." msgstr "No sou membre de cap grup." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5933,6 +5974,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Sou un membre d'aquest grup:" msgstr[1] "Sou un membre d'aquests grups:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6153,38 +6195,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Sobrenoms addicionals del grup, separats amb comes o espais, màx. %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grup" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blocat" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s usuaris blocats" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Edita les propietats del grup %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Afegeix o edita el logo %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Afegeix o edita el disseny %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grups amb més membres" @@ -6216,7 +6226,8 @@ msgstr "La mida del fitxer és massa gran, La mida màxima és %s." msgid "Partial upload." msgstr "Càrrega parcial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." @@ -6618,19 +6629,22 @@ msgstr "Ho sentim, no s'hi permet correu d'entrada." msgid "Unsupported message type: %s" msgstr "Tipus de missatge no permès: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "S'ha produït un error a la base de dades mentre es desava el vostre fitxer. " "Torneu-ho a provar." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El fitxer pujat excedeix la mida de la directiva upload_max_filesize del php." "ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6638,44 +6652,43 @@ msgstr "" "El fitxer pujat excedeix la mida de la directiva MAX_FILE_SIZE especificada " "en el formulari HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "El fitxer pujat només s'ha pujat parcialment." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Manca una carpeta temporal." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "No s'ha pogut escriure el fitxer al disc." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "L'extensió ha aturat la càrrega del fitxer." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "El fitxer excedeix la quota de l'usuari." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "No s'ha pogut moure el fitxer al directori de destinació." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "No s'ha pogut determinar el tipus MIME del fitxer." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Proveu d'emprar un altre format %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s no és un tipus de fitxer permès al servidor." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envia un avís directe" @@ -6791,27 +6804,7 @@ msgstr "Crida l'atenció" msgid "Send a nudge to this user" msgstr "Crida l'atenció a l'usuari" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error en inserir el nou perfil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error en inserir avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error en actualitzar el perfil remot" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error en inserir perfil remot" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplica l'avís" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." @@ -6848,7 +6841,8 @@ msgstr "Els teus missatges enviats" msgid "Tags in %s's notices" msgstr "Etiquetes en els avisos de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Desconegut" @@ -6942,19 +6936,19 @@ msgstr "Entorn de proves" msgid "Sandbox this user" msgstr "Posa l'usuari a l'entorn de proves" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Cerca al lloc" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Paraules clau" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Cerca" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Ajuda de la cerca" @@ -7152,56 +7146,32 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "fa pocs segons" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "fa un minut" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "fa %d minuts" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fa una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "fa %d hores" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "fa un dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "fa %d dies" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "fa un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "fa %d mesos" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "fa un any" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index e5baa2ff50..f01a064290 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Czech +# Translation of StatusNet to Czech (Česky) +# Expored from translatewiki.net # -# Author@translatewiki.net: Koo6 -# Author@translatewiki.net: Kuvaly +# Author: Koo6 +# Author: Kuvaly # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-09 18:08:09+0000\n" -"Language-Team: Czech\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:45+0000\n" +"Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n< =4) ? 1 : 2 ;\n" +"X-Message-Group: #out-statusnet\n" +"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " +"2 );\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Přístup" @@ -75,10 +78,10 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Uložit" @@ -91,15 +94,15 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -188,7 +191,7 @@ msgstr "" #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" -msgstr "%s a přátelé" +msgstr "Vy a přátelé" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. @@ -199,16 +202,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Novinky od uživatele %1$s a přátel na %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -223,48 +226,50 @@ msgstr "Novinky od uživatele %1$s a přátel na %2$s!" msgid "API method not found." msgstr " API metoda nebyla nalezena." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Tato metoda vyžaduje POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Je nutné zadat parametr s názvem 'device' s jednou z hodnot: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Nepodařilo se aktualizovat nastavení uživatele" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Uživatel nemá profil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Nepodařilo se uložit profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -276,30 +281,30 @@ msgstr "" "Server nebyl schopen zpracovat tolik POST dat (%s bytů) vzhledem k jeho " "aktuální konfiguraci." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Nelze uložit vaše nastavení designu." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Nelze uložit design." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Nemůžete zablokovat sami sebe!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Zablokovat uživatele se nezdařilo." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Odblokovat uživatele se nezdařilo." @@ -323,59 +328,59 @@ msgstr "Přímé zprávy uživateli %s" msgid "All the direct messages sent to %s" msgstr "Všechny přímé zprávy odeslané uživateli %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "zpráva bez textu!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Je to příliš dlouhé. Maximální délka sdělení je %d znaků." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Příjemce nebyl nalezen." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Nelze odesílat zprávy uživatelům, kteří nejsou vašimi přáteli." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Hláška s tímto ID nenalezena." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Tuto hlášku již máte v oblíbených." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Nelze vytvořit oblíbenou položku." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Tato hláška není oblíbená." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Nelze smazat oblíbenou položku." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Nemůžu začít sledovat uživatele, profil nenalezen." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Nemohu začít sledovat uživatele: %s je již na vašem seznamu." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Nemohu přestat sledovat uživatele, uživatel nebyl nalezen." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Nemůžete přestat sledovat sami sebe." @@ -391,101 +396,101 @@ msgstr "Nelze určit zdrojového uživatele." msgid "Could not find target user." msgstr "Nepodařilo se najít cílového uživatele." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Přezdívka může obsahovat pouze malá písmena a čísla a žádné mezery." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Domovská stránka není platná URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Popis je příliš dlouhý (maximálně %d znaků)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Příliš mnoho aliasů! Maximálně %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Neplatný alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" se již používá. Zkuste jiný." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias nemůže být stejný jako přezdívka." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Skupina nebyla nalezena." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Jste již členem této skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Z této skupiny jste byl zablokován adminem." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Nejste členem této skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -515,7 +520,7 @@ msgstr "skupiny uživatele %s" msgid "groups on %s" msgstr "skupiny na %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Nahrání se nezdařilo." @@ -529,9 +534,9 @@ msgstr "Neplatný token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -575,8 +580,8 @@ msgstr "Token žádosti %s byl odepřen a zrušen." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -640,18 +645,18 @@ msgstr "Tato metoda vyžaduje POST nebo DELETE." msgid "You may not delete another user's status." msgstr "Nesmíte odstraňovat status jiného uživatele." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Žádné takové oznámení." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Nelze opakovat své vlastní oznámení." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Již jste zopakoval toto oznámení." @@ -663,21 +668,21 @@ msgstr "Status smazán." msgid "No status with that ID found." msgstr "Nenalezen status s tímto ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musí poskytnout 'status' parametr s hodnotou." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Je to příliš dlouhé. Maximální délka sdělení je %d znaků" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Nebyl nalezen." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maximální délka notice je %d znaků včetně přiložené URL." @@ -877,7 +882,9 @@ msgid "Yes" msgstr "Ano" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -919,11 +926,13 @@ msgstr "Seznam uživatelů blokovaných od připojení k této skupině." msgid "Unblock user from group" msgstr "Odblokovat uživatele ze skupiny" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Odblokovat" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Odblokovat tohoto uživatele" @@ -962,9 +971,9 @@ msgstr "Adresa již byla potvrzena" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -972,7 +981,7 @@ msgstr "Nelze aktualizovat uživatele" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" @@ -1008,9 +1017,10 @@ msgstr "Aplikace nebyla nalezena." msgid "You are not the owner of this application." msgstr "Nejste vlastníkem této aplikace." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1043,7 +1053,7 @@ msgstr "Odstranit tuto aplikaci" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nejste přihlášen(a)." @@ -1106,7 +1116,6 @@ msgstr "Odstranit tohoto uživatele" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Vzhled" @@ -1226,13 +1235,13 @@ msgstr "Obnovit výchozí vzhledy" msgid "Reset back to default" msgstr "Reset zpět do výchozího" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" @@ -1388,7 +1397,7 @@ msgstr "Aktuální potvrzená e-mailová adresa." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1406,22 +1415,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Zrušit" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mailová adresa, ve stylu \"UzivatelskeJmeno@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1429,110 +1442,110 @@ msgstr "Přidat" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Příchozí e-mail" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Pošlete e-mail na tuto adresu pro poslání nového oznámení." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Vytvoření nové e-mailové adresy pro zasílání, ruší starou." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nová" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Nastavení e-mailu" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Pošlete mi oznámení o nových přihlášeních e-mailem." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Pošlete mi e-mail, když někdo přidá moje oznámení mezi oblíbené." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Pošlete mi e-mail, když mi někdo pošle soukromou zprávu." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Pošlete mi e-mail, když mi někdo pošle \"@-odpověď\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Povolit přátelům mě pošťouchnout a poslat mi email." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Chci posílat oznámení e-mailem." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publikovat MicroID pro mou e-mailovou adresu." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Email nastavení uloženo." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Chybí e-mailová adresa." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Nepodařilo se normalizovat (kanonizovat) e-mailovou adresu." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "To je již vaší e-mailovou adresou." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Tato e-mailová adresa již patří jinému uživateli." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Nelze vložit potvrzující kód." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1544,50 +1557,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Žádné potvrzení ke zrušení." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Toto je špatná e-mailová adresa." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Potvrzení e-mailu zrušeno." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "To není vaše e-mailová adresa." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "E-mailová adresa byla odstraněna." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nemáte příchozí e-mailovou adresu." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Nelze aktualizovat záznam uživatele." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Příchozí e-mailová adresa odstraněna." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Přidána nová příchozí e-mailová adresa." @@ -1706,7 +1719,7 @@ msgstr "Nemohu převést žádost token na přístup token." msgid "Remote service uses unknown version of OMB protocol." msgstr "Vzdálená služba používá neznámou verzi protokolu OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Chyba při aktualizaci vzdáleného profilu." @@ -1763,7 +1776,7 @@ msgstr "Uživatel již je zablokován ze skupiny." msgid "User is not a member of group." msgstr "Uživatel není členem skupiny." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Zablokovat uživatele ze skupiny" @@ -1844,40 +1857,32 @@ msgstr "Logo aktualizováno." msgid "Failed updating logo." msgstr "Nepodařilo se aktualizovat logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "členové skupiny %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "členové skupiny %1$s, strana %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Seznam uživatelů v této skupině." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokovat" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uďelat uživatele adminem skupiny" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Udělat adminem" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Udělat tohoto uživatele adminem" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2015,7 +2020,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2026,64 +2034,64 @@ msgstr "" "nebo na GTalku." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Nastavení IM" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Pošlete mi odpovědi přes Jabber / GTalk od lidí, ke kterým nejsem přihlášen." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publikovat MicroID pro mou Jabber / GTalk adresu." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Nastavení uloženo" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Chybí Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat tento JabberID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Není platným Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber ID" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID již patří jinému uživateli" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2093,28 +2101,28 @@ msgstr "" "posílal zprávy." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Toto je špatná IM adresa" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Nelze smazat potvrzení IM" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM potvrzení zrušeno." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber ID" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM adresa byla odstraněna." @@ -2525,7 +2533,7 @@ msgstr "OAuth aplikace" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "Aplikace které jste se zaregistrovali" +msgstr "Aplikace které jste zaregistrovali" #: actions/oauthappssettings.php:135 #, php-format @@ -2579,8 +2587,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Only %s URLs over plain HTTP please." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Nepodporovaný formát dat." @@ -2722,7 +2730,7 @@ msgid "Password saved." msgstr "Heslo uloženo" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Cesty" @@ -2933,7 +2941,7 @@ msgstr "Celé jméno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Moje stránky" @@ -3038,7 +3046,7 @@ msgid "Couldn't save tags." msgstr "Nelze uložit tagy." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Nastavení uloženo" @@ -3569,7 +3577,7 @@ msgstr "Uživatel je již sandboxován." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessions" @@ -3607,24 +3615,24 @@ msgid "Application profile" msgstr "Profil aplikace" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikona" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Název" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organizace" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Popis" @@ -3738,7 +3746,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Toto je způsob, jak sdílet to, co se vám líbí." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "skupina %s" @@ -3790,7 +3798,7 @@ msgstr "Feed sdělení skupiny %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF pro skupinu %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Členové" @@ -4237,7 +4245,7 @@ msgstr "Nezadán kód" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Snímky (snapshoty)" @@ -4968,7 +4976,7 @@ msgid "Unable to save tag." msgstr "Nelze uložit tag." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Byl jste vykázán (banned) z přihlašování se." @@ -5116,7 +5124,8 @@ msgid "Change site configuration" msgstr "Změna konfigurace webu" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -5193,7 +5202,7 @@ msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Sdělení" @@ -5257,7 +5266,10 @@ msgid "StatusNet software license" msgstr "Licence softwaru StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5267,13 +5279,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** je služba mikroblogů." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5285,49 +5300,50 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licence k obsahu stránek" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Obsah a data z %1$S jsou soukromé a důvěrné." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Obsah a data copyright %1$s. Všechna práva vyhrazena." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "Obsah a data copyright přispěvatelů. Všechna práva vyhrazena." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Stránkování" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Před" @@ -5336,207 +5352,226 @@ msgstr "Před" msgid "Expecting a root feed element but got a whole XML document." msgstr "Očekávám kořenový element feedu, ale dostal jsem celý XML dokument." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Ještě neumí zpracovat vzdálený obsah." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Neumí zacházet s vloženým XML obsahem." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Neumí zacházet s vloženým Base64 obsahem." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Nemůžete provádět změny na této stránce." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Změny, tohoto panelu nejsou povoleny." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm () není implementována." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings () není implementována." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Nelze smazat nastavení vzhledu." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Základní konfigurace webu" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Stránky" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Nastavení vzhledu" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Vzhled" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Akce uživatele" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Uživatel" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Nastavení přístupu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Naastavení cest" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Nastavení sessions" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Upravit oznámení stránky" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Konfigurace snímků" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API droj vyžaduje přístup pro čtení a zápis, ale vy máte přístup pouze pro " "čtení." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Upravit aplikaci" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ikona pro tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Popište vaši aplikaci v %d znacích" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Popište vaši aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL domovské stránky této aplikace" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Zdrojové URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organizace odpovědná za tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL homepage organizace" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL pro přesměrování po autentikaci" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Prohlížeč" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Typ aplikace, prohlížeč nebo desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "pouze pro čtení" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "čtení a zápis" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Zrušit" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "číst-psát" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "pouze pro čtení" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Schváleno %1$s - přístup \"%2$s\"" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Obnovit" @@ -5556,11 +5591,13 @@ msgstr "Autor" msgid "Provider" msgstr "Poskytovatel" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notices where this attachment appears" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Označení této přílohy" @@ -5572,6 +5609,11 @@ msgstr "Změna hesla se nezdařila" msgid "Password changing is not allowed" msgstr "Změna hesla není povolena" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokovat" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Výsledky příkazu" @@ -5820,7 +5862,7 @@ msgid "You are not subscribed to anyone." msgstr "Nejste přihlášen k nikomu." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5836,7 +5878,7 @@ msgid "No one is subscribed to you." msgstr "Nikdo k vám není přihlášen." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5852,7 +5894,7 @@ msgid "You are not a member of any groups." msgstr "Nejste členem žádné skupiny." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5861,6 +5903,7 @@ msgstr[0] "Jste členem této skupiny:" msgstr[1] "Jste členem těchto skupin:" msgstr[2] "" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6082,38 +6125,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Další přezdívky pro skupinu, oddělené čárkou nebo mezerou, max %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Skupina" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Zablokován" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s blokovaní uživatelé" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Editovat vlastnosti skupiny %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Přidat nebo upravit logo %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Přidat nebo upravit vzhled %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Skupiny s nejvíce členy" @@ -6145,7 +6156,8 @@ msgstr "Ten soubor je příliš velký. Maximální velikost souboru je %s." msgid "Partial upload." msgstr "Částečné náhrání." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" @@ -6548,16 +6560,19 @@ msgstr "Je nám líto, žádný příchozí e-mail není dovolen." msgid "Unsupported message type: %s" msgstr "Nepodporovaný typ zprávy: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "Nastala chyba v databázi při ukládání souboru. Prosím zkuste to znovu." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Velkost uploadovaného souboru překračuje upload_max_filesize limit v php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6565,44 +6580,43 @@ msgstr "" "Velkost uploadovaného souboru překračuje MAX_FILE_SIZE limit, které bylo " "uvedeno v HTML formuláři." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Nahrávaný soubor byl nahrán pouze částečně." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Chybí dočasný adresář." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Nepodařilo se zapsat soubor na disk." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením PHP." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Soubor překračuje kvótu uživatele." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Soubor nemohl být přesunut do cílového adresáře." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Nelze určit typ MIME souboru." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Zkuste použít jiný formát %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s není typ souboru podporovan na tomto serveru." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Pošlete přímou zprávu" @@ -6718,27 +6732,7 @@ msgstr "Pošťouchnout" msgid "Send a nudge to this user" msgstr "Poslat pošťouchnutí tomuto uživateli" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Chyba při vkládání nového profilu" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Chyba při vkládání avataru" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Chyba při aktualizaci vzdáleného profilu" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Chyba při vkládaní vzdáleného profilu" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Odstranit toto oznámení" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" @@ -6775,7 +6769,8 @@ msgstr "Vaše odeslané zprávy" msgid "Tags in %s's notices" msgstr "Značky v oznámeních %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Neznámé" @@ -6869,19 +6864,19 @@ msgstr "Sandbox" msgid "Sandbox this user" msgstr "Sandboxovat tohoto uživatele" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Prohledat stránky" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Klíčová slova" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Hledat" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Nápověda k hledání" @@ -7079,56 +7074,32 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "před pár sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "asi před minutou" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "asi před %d minutami" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "asi před hodinou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "asi před %d hodinami" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "asi přede dnem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "před %d dny" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "asi před měsícem" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "asi před %d mesíci" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "asi před rokem" diff --git a/locale/da/LC_MESSAGES/statusnet.po b/locale/da/LC_MESSAGES/statusnet.po index 2deacb309d..915d860a51 100644 --- a/locale/da/LC_MESSAGES/statusnet.po +++ b/locale/da/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Danish +# Translation of StatusNet to Danish (Dansk) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Mstenbaek +# Author: Brion +# Author: Mstenbaek # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:39+0000\n" -"Language-Team: Danish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:46+0000\n" +"Language-Team: Danish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: da\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Adgang" @@ -75,10 +77,10 @@ msgstr "Gem adgangsindstillinger" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Gem" @@ -91,15 +93,15 @@ msgstr "Siden findes ikke" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -199,16 +201,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Opdateringer fra %1$s og venner på %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -223,21 +225,23 @@ msgstr "Opdateringer fra %1$s og venner på %2$s!" msgid "API method not found." msgstr "API metode ikke fundet." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Denne metode kræver en POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -245,27 +249,27 @@ msgstr "" "Du skal angive en parameter med navnet 'device', med værdien sat til en af " "følgende: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Kunne ikke opdatere brugeren." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brugeren har ingen profil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Kunne ikke gemme profilen." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -277,30 +281,30 @@ msgstr "" "Serveren var ikke i stand til at håndtere så meget POST data (%s bytes) på " "grund af sin nuværende konfiguration." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Kunne ikke gemme dine design indstillinger." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Kunne ikke opdatere dit design." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Du kan ikke blokere dig selv!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blokering af bruger mislykkedes" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Ophæv blokering af bruger mislykkedes." @@ -324,59 +328,59 @@ msgstr "Direkte beskeder til %s" msgid "All the direct messages sent to %s" msgstr "Alle direkte beskeder, sendt til %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Ingen besked tekst!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Det er for langt. Maksimal besked størrelse er %d tegn." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Modtager bruger ikke fundet" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan ikke sende direkte beskeder til brugere, som ikke din ven." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Ingen status fundet med dette ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Denne status er allerede en favorit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Kunne ikke oprette favorit." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Denne status er ikke en favorit." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikke slette favorit." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Kunne ikke følge bruger: bruger profil ikke fundet." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kunne ikke følge bruger: %s er allerede på din liste." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Kunne ikke stoppe følgeskab af bruger: Bruger ikke fundet." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kan ikke ophæve følgeskab til dig selv." @@ -392,101 +396,101 @@ msgstr "Kunne ikke finde kilde bruger" msgid "Could not find target user." msgstr "Kunne ikke finde mål bruger." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kaldenavn må kun have små bogstaver og tal og ingen mellemrum." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Kaldenavn allerede er i brug. Prøv med et andet." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ikke et gyldigt kaldenavn" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL adresse." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Fulde navn er for langt (max 255 tegn)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivelse er for lang (max %d tegn)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Placering er for lang (max 255 tegn)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Alt for mange aliaser! Maksimum %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ugyldigt alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" er allerede i brug. Prøv med et andet." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kan ikke være det samme som kaldenavn." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Gruppen blev ikke fundet." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Du er allerede medlem af denne gruppe." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Du er blevet blokeret fra denne gruppe af administratoren." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke tilslutte bruger %1$s til gruppe %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Du er ikke medlem af denne gruppe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -516,7 +520,7 @@ msgstr "%s's grupper" msgid "groups on %s" msgstr "grupper på %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Upload mislykkedes." @@ -530,9 +534,9 @@ msgstr "Ugyldigt token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -577,8 +581,8 @@ msgstr "Anmodnings-token %s er blevet afvist og trukket tilbage." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -642,18 +646,18 @@ msgstr "Denne metode kræver en POST eller DELETE." msgid "You may not delete another user's status." msgstr "Du kan ikke slette en anden brugers status." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen sådan meddelelse." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Kan ikke gentage din egen meddelelse." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Allerede gentaget denne medelelse." @@ -665,21 +669,21 @@ msgstr "Status slettet." msgid "No status with that ID found." msgstr "Ingen status med dette ID fundet." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Klienten programmet skal give en \"status\" parameter med en værdi." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt. Maksimal besked størrelse er %d tegn." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Ikke fundet." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Max meddelelse størrelse er %d tegn, inklusiv vedlagt URL." @@ -880,7 +884,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloker denne bruger" @@ -922,11 +928,13 @@ msgstr "En liste over brugere blokeret fra at deltage i denne gruppe." msgid "Unblock user from group" msgstr "Ophæv blokering af bruger fra gruppe" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Fjern blokering" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Fjern blokeringen af denne bruger" @@ -965,9 +973,9 @@ msgstr "Denne adresse er allerede blevet bekræftet." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -975,7 +983,7 @@ msgstr "Kunne ikke opdatere brugeren." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kunne ikke slette e-mail bekræftelse." @@ -1011,9 +1019,10 @@ msgstr "Program ikke fundet." msgid "You are not the owner of this application." msgstr "Du er ikke ejer af dette program." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Der var et problem med din session token." @@ -1046,7 +1055,7 @@ msgstr "Slet dette program" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ikke logget ind" @@ -1109,7 +1118,6 @@ msgstr "Slet denne bruger" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1230,13 +1238,13 @@ msgstr "Gendan standard indstillinger" msgid "Reset back to default" msgstr "Nulstil til standard værdier" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gem" @@ -1392,7 +1400,7 @@ msgstr "Nuværende bekræftet email-adresse." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1410,22 +1418,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Afbryd" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mail adresse, som \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1433,111 +1445,111 @@ msgstr "Tilføj" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Indgående e-mail" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send e-mail til denne adresse for at skrive nye bekendtgørelser." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Opret en ny e-mail adresse til postering af beskeder; annullerer den gamle." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Ny" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Email indstillinger" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Send mig meddelelser om nye abonnementer via e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send mig email, når nogen har tilføjet min meddelelse som en favorit." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Send mig email, når nogen sender mig en privat besked." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send mig email, når nogen sender mig et \"@-svar\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Tillad venner at puffe mig og at sende mig en e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Jeg ønsker at sende meddelelser via e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Udgiv et MicroID til min email adresse." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Email indstillinger gemt." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Ingen e-mail-adresse." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Kan ikke normalisere denne e-mail adresse" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikke en gyldig e-mail adresse." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Det er allerede din e-mail adresse." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Denne e-mail adresse tilhører allerede en anden bruger." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kunne ikke indsætte bekræftelseskode." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1549,50 +1561,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen afventende bekræftelse at annullere." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Det er den forkerte e-mail adresse." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Email bekræftelse aflyst." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Det er ikke din e-mail adresse." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "E-mail adressen blev fjernet." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen indkommende e-mail adresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kunne ikke opdatere bruger oplysninger." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Indgående e-mail adresse fjernet." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Ny indkommende e-mail adresse tilføjet." @@ -1711,7 +1723,7 @@ msgstr "Kunne ikke konvertere anmodnings-token til et adgangs-token." msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjerntjenesten bruger en ukendt version af 0MB protokol." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Fejl ved opdatering af fjernbetjeningsprofil." @@ -1768,7 +1780,7 @@ msgstr "Bruger er allerede blokeret fra gruppen." msgid "User is not a member of group." msgstr "Brugeren er ikke medlem af gruppen." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloker bruger fra gruppe" @@ -1850,40 +1862,32 @@ msgstr "Logo opdateret." msgid "Failed updating logo." msgstr "Mislykket ajourføring af logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s gruppe medlemmer" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s gruppe medlemmer, side %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "En liste over brugerne i denne gruppe." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloker" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gør bruger til administrator af gruppen" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Gør til administrator" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Gør denne bruger til administrator" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2022,7 +2026,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2032,63 +2039,63 @@ msgstr "" "sørge for at tilføje %s til din venneliste i din IM klient eller på GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Chat indstillinger" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Send mig meddelelser via Jabber / GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Send en note, når min Jabber / GTalk status ændringer." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send mig svar gennem Jabber / GTalk fra folk, jeg ikke abonnerer på." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Udgiv et MicroID for min Jabber / GTalk adresse." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Indstillinger gemt." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Ingen Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Kan ikke normalisere denne Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Ikke et gyldigt Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Det er allerede din Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID tilhører allerede en anden bruger." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2098,28 +2105,28 @@ msgstr "" "godkende %s for at sende beskeder til dig." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Det er den forkerte IM-adresse." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Kunne ikke slette IM bekræftelse." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM bekræftelse afbrudt." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM-adresse blev fjernet." @@ -2380,6 +2387,10 @@ msgstr "Kan ikke finde medlemskab oplysninger for %1$s i gruppen %2$s." msgid "Can't make %1$s an admin for group %2$s." msgstr "Kan ikke gøre %1$s til admin for gruppen %2$s." +#: actions/microsummary.php:69 +msgid "No current status." +msgstr "" + #: actions/newapplication.php:52 msgid "New Application" msgstr "Nyt program" @@ -2555,6 +2566,10 @@ msgstr "Du er ikke bruger af dette program." msgid "Unable to revoke access for app: %s." msgstr "" +#: actions/oauthconnectionssettings.php:198 +msgid "You have not authorized any applications to use your account." +msgstr "" + #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" @@ -2571,6 +2586,10 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: actions/othersettings.php:71 msgid "Manage various other options." msgstr "" @@ -2599,6 +2618,24 @@ msgstr "" msgid "No login token requested." msgstr "" +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + #: actions/passwordsettings.php:104 msgid "Old password" msgstr "Gammel adgangskode" @@ -2616,6 +2653,10 @@ msgstr "" msgid "Confirm" msgstr "Bekræft" +#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "" + #: actions/passwordsettings.php:117 msgid "Change" msgstr "Ændre" @@ -2628,12 +2669,20 @@ msgstr "" msgid "Passwords don't match." msgstr "" +#: actions/passwordsettings.php:165 +msgid "Incorrect old password" +msgstr "" + #: actions/passwordsettings.php:181 msgid "Error saving user; invalid." msgstr "" +#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +msgid "Can't save new password." +msgstr "" + #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -2688,6 +2737,10 @@ msgstr "Tema" msgid "Theme server" msgstr "" +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "" + #: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "" @@ -2724,6 +2777,17 @@ msgstr "" msgid "Save paths" msgstr "" +#: actions/peoplesearch.php:52 +#, 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/peoplesearch.php:58 +msgid "People search" +msgstr "" + #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -2746,7 +2810,7 @@ msgstr "" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmeside" @@ -2900,6 +2964,10 @@ msgstr "" msgid "Reset password" msgstr "Nulstil adgangskode" +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + #: actions/recoverpassword.php:210 actions/recoverpassword.php:335 msgid "Password recovery requested" msgstr "" @@ -3085,6 +3153,11 @@ msgstr "" msgid "Only logged-in users can repeat notices." msgstr "" +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + #: actions/replies.php:204 #, php-format msgid "" @@ -3092,9 +3165,16 @@ msgid "" "[join groups](%%action.groups%%)." msgstr "" +#: actions/replies.php:206 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -3115,7 +3195,7 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" @@ -3181,7 +3261,11 @@ msgstr "" msgid "URL" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:293 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "" @@ -3218,16 +3302,32 @@ msgid "" "their life and interests. " msgstr "" +#: actions/showgroup.php:489 +msgid "Admins" +msgstr "" + #: actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" +#: actions/showstream.php:207 +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" + #: actions/showstream.php:243 #, php-format msgid "" @@ -3286,6 +3386,10 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:245 +msgid "Local" +msgstr "" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -3322,6 +3426,10 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" @@ -3376,9 +3484,14 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +msgid "No code entered" +msgstr "" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3488,6 +3601,10 @@ msgstr "" msgid "%s is not listening to anyone." msgstr "" +#: actions/subscriptions.php:208 +msgid "Jabber" +msgstr "" + #: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" @@ -3568,6 +3685,14 @@ msgstr "" msgid "Default subscription" msgstr "" +#: actions/useradminpanel.php:242 +msgid "Automatically subscribe new users to this user." +msgstr "" + +#: actions/useradminpanel.php:256 +msgid "Invitations enabled" +msgstr "" + #: actions/useradminpanel.php:258 msgid "Whether to allow users to invite new users." msgstr "" @@ -3583,6 +3708,10 @@ msgid "" "click “Reject”." msgstr "" +#: actions/userauthorization.php:219 +msgid "Reject" +msgstr "" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" @@ -3725,6 +3854,11 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +msgid "Group leave failed." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3781,6 +3915,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1759 +#, php-format +msgid "RT @%1$s %2$s" +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:737 @@ -3822,11 +3963,22 @@ msgstr "" msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" msgstr "" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, php-format +msgid "%1$s - %2$s" +msgstr "" + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -3843,6 +3995,12 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +msgctxt "MENU" +msgid "Personal" +msgstr "" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" @@ -3861,6 +4019,26 @@ msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:495 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" @@ -3918,7 +4096,10 @@ msgid "StatusNet software license" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3926,13 +4107,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3941,44 +4125,45 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "" @@ -3987,121 +4172,149 @@ msgstr "" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" @@ -4111,7 +4324,8 @@ msgstr "" msgid "Author" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -4123,10 +4337,40 @@ msgstr "" msgid "Password changing is not allowed" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloker" + #: lib/channel.php:229 lib/mailhandler.php:142 msgid "Command complete" msgstr "" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4137,6 +4381,13 @@ msgstr "" msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4149,12 +4400,40 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format msgid "Fullname: %s" msgstr "" +#. TRANS: Whois output. %s is the location of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:438 lib/mail.php:268 +#, php-format +msgid "Location: %s" +msgstr "" + +#. TRANS: Whois output. %s is the homepage of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:442 lib/mail.php:271 +#, php-format +msgid "Homepage: %s" +msgstr "" + #. TRANS: Whois output. %s is the bio information of the queried user. #: lib/command.php:446 #, php-format @@ -4181,6 +4460,13 @@ msgstr "" msgid "Error sending direct message." msgstr "" +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "" + #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -4188,6 +4474,13 @@ msgstr "" msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, php-format +msgid "Reply to %s sent." +msgstr "" + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -4211,6 +4504,13 @@ msgstr "" 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:705 +#, 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:724 lib/command.php:750 @@ -4247,15 +4547,7 @@ msgstr "" 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 support plural forms. This message is followed by a -#. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 -msgid "This person is subscribed to you:" -msgid_plural "These people are subscribed to you:" -msgstr[0] "" -msgstr[1] "" - +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4398,13 +4690,25 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:114 +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4422,7 +4726,8 @@ msgstr "" msgid "This page is not available in a media type you accept" msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -4452,6 +4757,14 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" +#: lib/joinform.php:114 +msgid "Join" +msgstr "" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "" + #: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4474,6 +4787,12 @@ msgid "" "%s\n" msgstr "" +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + #: lib/mail.php:248 #, php-format msgid "" @@ -4654,52 +4973,69 @@ msgstr "" msgid "Not a registered user." msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 @@ -4710,6 +5046,11 @@ msgstr "" msgid "Available characters" msgstr "" +#: lib/messageform.php:178 lib/noticeform.php:237 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -4761,12 +5102,24 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +msgid "in context" +msgstr "" + #: lib/noticelist.php:631 msgid "Reply" msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" +#: lib/noticelist.php:675 +msgid "Notice repeated" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/personalgroupnav.php:99 +msgid "Personal" msgstr "" #: lib/personalgroupnav.php:104 @@ -4786,7 +5139,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -4810,6 +5164,10 @@ msgstr "" msgid "User ID" msgstr "" +#: lib/profileaction.php:196 +msgid "Member since" +msgstr "" + #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" @@ -4835,15 +5193,19 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "" @@ -4881,6 +5243,11 @@ msgstr "" msgid "People subscribed to %s" msgstr "" +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -4955,6 +5322,10 @@ msgstr "" msgid "Edit" msgstr "" +#: lib/userprofile.php:288 +msgid "Message" +msgstr "" + #: lib/userprofile.php:326 msgid "Moderate" msgstr "" @@ -4970,20 +5341,22 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1109 #, php-format -msgid "about %d minutes ago" -msgstr "" +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 @@ -4991,35 +5364,41 @@ msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 +#: lib/util.php:1115 #, php-format -msgid "about %d hours ago" -msgstr "" +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 +#: lib/util.php:1121 #, php-format -msgid "about %d days ago" -msgstr "" +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1127 #, php-format -msgid "about %d months ago" -msgstr "" +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 8d6d9a9a74..ab5c443404 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -1,16 +1,17 @@ -# Translation of StatusNet to German +# Translation of StatusNet to German (Deutsch) +# Expored from translatewiki.net # -# Author@translatewiki.net: Apmon -# Author@translatewiki.net: Bavatar -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Kghbln -# Author@translatewiki.net: Lutzgh -# Author@translatewiki.net: March -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Michael -# Author@translatewiki.net: Michi -# Author@translatewiki.net: The Evil IP address -# Author@translatewiki.net: Umherirrender +# Author: Apmon +# Author: Bavatar +# Author: Brion +# Author: Kghbln +# Author: Lutzgh +# Author: March +# Author: McDutchie +# Author: Michael +# Author: Michi +# Author: The Evil IP address +# Author: Umherirrender # -- # This file is distributed under the same license as the StatusNet package. # @@ -18,20 +19,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:44+0000\n" -"Language-Team: German\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:47+0000\n" +"Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Zugang" @@ -85,10 +87,10 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -101,15 +103,15 @@ msgstr "Seite nicht vorhanden" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -209,16 +211,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -233,21 +235,23 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" msgid "API method not found." msgstr "API-Methode nicht gefunden." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Diese Methode benötigt ein POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -255,27 +259,27 @@ msgstr "" "Du musst einen Parameter mit Namen „device“ übergeben. Mögliche Werte sind: " "sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Benutzer hat kein Profil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Konnte Profil nicht speichern." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -287,30 +291,30 @@ msgstr "" "Der Server kann so große POST Abfragen (%s bytes) aufgrund der Konfiguration " "nicht verarbeiten." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Konnte Twitter-Einstellungen nicht speichern." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Konnte Benutzerdesign nicht aktualisieren." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Du kannst dich nicht selbst sperren!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blockieren des Benutzers fehlgeschlagen." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." @@ -334,62 +338,62 @@ msgstr "Direkte Nachrichten an %s" msgid "All the direct messages sent to %s" msgstr "Alle an %s gesendeten direkten Nachrichten" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Fehlender Nachrichtentext!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist %d Zeichen." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Empfänger nicht gefunden." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen " "du nicht befreundet bist." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Keine Nachricht mit dieser ID gefunden." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Diese Nachricht ist bereits ein Favorit!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Diese Nachricht ist kein Favorit!" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Konnte Nutzer nicht folgen: Profil nicht gefunden" -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Kann Benutzer nicht entfolgen: Benutzer nicht gefunden." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kannst dich nicht selbst entfolgen!" @@ -405,7 +409,7 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -413,19 +417,19 @@ msgstr "" "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " "Leerzeichen sind nicht erlaubt." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ungültiger Nutzername." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 @@ -433,76 +437,76 @@ msgid "Homepage is not a valid URL." msgstr "" "Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Zu viele Pseudonyme! Maximale Anzahl ist %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ungültiges Alias: „%s“" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kann nicht das gleiche wie der Spitzname sein." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Gruppe nicht gefunden!" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Der Admin dieser Gruppe hat dich gesperrt." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -532,7 +536,7 @@ msgstr "%s Gruppen" msgid "groups on %s" msgstr "Gruppen von %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Hochladen fehlgeschlagen." @@ -546,9 +550,9 @@ msgstr "Ungültiges Token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -593,8 +597,8 @@ msgstr "Die Anfrage %s wurde gesperrt und widerrufen." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -658,18 +662,18 @@ msgstr "Diese Methode benötigt ein POST oder DELETE." msgid "You may not delete another user's status." msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Unbekannte Nachricht." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Nachricht bereits wiederholt" @@ -681,24 +685,24 @@ msgstr "Status gelöscht." msgid "No status with that ID found." msgstr "Keine Nachricht mit dieser ID gefunden." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" "Der Client muss einen „status“-Parameter mit einen Wert zur Verfügung " "stellen." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Nicht gefunden." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -902,7 +906,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -944,11 +950,13 @@ msgstr "Liste der blockierten Benutzer in dieser Gruppe." msgid "Unblock user from group" msgstr "Sperrung des Nutzers für die Gruppe aufheben." -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Freigeben" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Diesen Benutzer freigeben" @@ -987,9 +995,9 @@ msgstr "Diese Adresse wurde bereits bestätigt." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -997,7 +1005,7 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mail-Bestätigung nicht löschen." @@ -1033,9 +1041,10 @@ msgstr "Programm nicht gefunden." msgid "You are not the owner of this application." msgstr "Du bist Besitzer dieses Programms" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1068,7 +1077,7 @@ msgstr "Programm löschen" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Nicht angemeldet." @@ -1131,7 +1140,6 @@ msgstr "Diesen Benutzer löschen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1252,13 +1260,13 @@ msgstr "Standard-Design wiederherstellen" msgid "Reset back to default" msgstr "Standard wiederherstellen" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" @@ -1415,7 +1423,7 @@ msgstr "Aktuelle bestätigte E-Mail-Adresse." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1433,22 +1441,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1456,19 +1468,19 @@ msgstr "Hinzufügen" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Eingehende E-Mail" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Schicke eine E-Mail an diese Adresse um eine Nachricht zu posten." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " @@ -1476,94 +1488,94 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Neu" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-Mail Einstellungen" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Informiere mich über neues Abonnements per E-Mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Schick mir eine E-Mail, wenn mir jemand eine @Nachricht schickt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Ich möchte Einträge per E-Mail veröffentlichen." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "MicroID für meine E-Mail-Adresse veröffentlichen." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "E-Mail-Einstellungen gespeichert." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Keine E-Mail-Adresse." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Dies ist bereits deine E-Mail-Adresse." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Konnte keinen Bestätigungscode einfügen." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1575,50 +1587,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Dies ist die falsche E-Mail Adresse" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "E-Mail-Bestätigung abgebrochen." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Dies ist nicht deine E-Mail-Adresse." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Die E-Mail-Adresse wurde entfernt." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Keine Eingangs-E-Mail-Adresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Konnte Nutzereintrag nicht schreiben" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Eingehende E-Mail-Adresse entfernt" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." @@ -1737,7 +1749,7 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." msgid "Remote service uses unknown version of OMB protocol." msgstr "Service nutzt unbekannte OMB-Protokollversion." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Fehler beim Aktualisieren des entfernten Profils." @@ -1794,7 +1806,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" msgid "User is not a member of group." msgstr "Nutzer ist kein Mitglied dieser Gruppe." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Benutzerzugang zu der Gruppe blockieren" @@ -1876,40 +1888,32 @@ msgstr "Logo aktualisiert." msgid "Failed updating logo." msgstr "Aktualisierung des Logos fehlgeschlagen." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s Gruppen-Mitglieder" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Liste der Benutzer in dieser Gruppe." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blockieren" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Zum Admin ernennen" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Diesen Benutzer zu einem Admin ernennen" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2049,7 +2053,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2060,65 +2067,65 @@ msgstr "" "Programm oder GTalk aufgenommen hast." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM-Einstellungen" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk-Status verändert." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" "GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Einstellungen gesichert." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Keine Jabber-ID" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Konnte diese Jabber-ID nicht normalisieren" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Ungültige Jabber-ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Diese Jabber-ID hast du schon angegeben." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Diese Jabber-ID wird bereits von einem anderen Benutzer verwendet." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2128,28 +2135,28 @@ msgstr "" "hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Das ist die falsche IM-Adresse." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Konnte die IM-Bestätigung nicht löschen." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM-Bestätigung abgebrochen." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Die IM-Adresse wurde entfernt." @@ -2628,8 +2635,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bitte nur %s URLs über einfaches HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2770,7 +2777,7 @@ msgid "Password saved." msgstr "Passwort gespeichert." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Pfad" @@ -2984,7 +2991,7 @@ msgstr "Vollständiger Name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3092,7 +3099,7 @@ msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Einstellungen gespeichert." @@ -3635,7 +3642,7 @@ msgstr "Benutzer ist schon blockiert." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sitzung" @@ -3673,24 +3680,24 @@ msgid "Application profile" msgstr "Anwendungsprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Symbol" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beschreibung" @@ -3805,7 +3812,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dies ist ein Weg, Dinge zu teilen, die dir gefallen." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s Gruppe" @@ -3857,7 +3864,7 @@ msgstr "Nachrichtenfeed der Gruppe %s (Atom)" msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Mitglieder" @@ -4314,7 +4321,7 @@ msgstr "Kein Code eingegeben" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Snapshots" @@ -5054,7 +5061,7 @@ msgid "Unable to save tag." msgstr "Konnte Seitenbenachrichtigung nicht speichern." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." @@ -5197,7 +5204,8 @@ msgid "Change site configuration" msgstr "Seiteneinstellung ändern" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -5274,7 +5282,7 @@ msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Seitennachricht" @@ -5338,7 +5346,10 @@ msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5348,13 +5359,16 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ist ein Microbloggingdienst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5366,20 +5380,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhalte und Daten von %1$s sind privat und vertraulich." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5387,32 +5401,33 @@ msgstr "" "vorbehalten." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte " "vorbehalten." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Seitenerstellung" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Später" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Vorher" @@ -5421,207 +5436,226 @@ msgstr "Vorher" msgid "Expecting a root feed element but got a whole XML document." msgstr "Root-Element eines Feeds erwartet, aber ganzes XML-Dokument erhalten." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Fremdinhalt kann noch nicht eingebunden werden." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Kann eingebundenen XML-Inhalt nicht verarbeiten." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Eingebundener Base64-Inhalt kann noch nicht verarbeitet werden." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Du kannst keine Änderungen an dieser Seite vornehmen." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Änderungen an dieser Seite sind nicht erlaubt." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() noch nicht implementiert." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Konnte die Design-Einstellungen nicht löschen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Basis-Seiteneinstellungen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Seite" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Motiv-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Benutzereinstellung" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Zugangskonfiguration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Pfadkonfiguration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Sitzungseinstellungen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Programm bearbeiten" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Programmsymbol" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Beschreibe dein Programm in %d Zeichen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beschreibe dein Programm" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "Adresse der Homepage dieses Programms" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Quelladresse" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Für diese Anwendung verantwortliche Organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "Homepage der Gruppe oder des Themas" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "aufzurufende Adresse nach der Authentifizierung" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Arbeitsfläche" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Schreibgeschützt" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Abbrechen" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "Schreibgeschützt" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Genehmigte %1$s - „%2$s“ Zugriff." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Widerrufen" @@ -5641,11 +5675,13 @@ msgstr "Autor" msgid "Provider" msgstr "Anbieter" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Nachrichten in denen dieser Anhang erscheint" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Stichworte für diesen Anhang" @@ -5657,6 +5693,11 @@ msgstr "Passwort konnte nicht geändert werden" msgid "Password changing is not allowed" msgstr "Passwort kann nicht geändert werden" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blockieren" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Befehl-Ergebnisse" @@ -5907,7 +5948,7 @@ msgid "You are not subscribed to anyone." msgstr "Du hast niemanden abonniert." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5922,7 +5963,7 @@ msgid "No one is subscribed to you." msgstr "Niemand hat dich abonniert." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5937,7 +5978,7 @@ msgid "You are not a member of any groups." msgstr "Du bist in keiner Gruppe Mitglied." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5945,6 +5986,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du bist Mitglied dieser Gruppe:" msgstr[1] "Du bist Mitglied dieser Gruppen:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6166,38 +6208,6 @@ msgstr "" "Zusätzliche Spitznamen für die Gruppe, Komma oder Leerzeichen getrennt, max %" "d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Gruppe" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blockiert" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "in %s blockierte Nutzer" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "%s Gruppeneinstellungen bearbeiten" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "%s Logo hinzufügen oder bearbeiten" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "%s Design hinzufügen oder bearbeiten" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Gruppen mit den meisten Mitgliedern" @@ -6229,7 +6239,8 @@ msgstr "Du kannst ein Logo für deine Gruppe hochladen." msgid "Partial upload." msgstr "Unvollständiges Hochladen." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfehler beim Hochladen der Datei." @@ -6630,19 +6641,22 @@ msgstr "Sorry, keinen eingehenden E-Mails gestattet." msgid "Unsupported message type: %s" msgstr "Nachrichten-Typ %s wird nicht unterstützt." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Beim Speichern der Datei trat ein Datenbankfehler auf. Bitte versuche es " "noch einmal." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Die Größe der hochgeladenen Datei überschreitet die upload_max_filesize " "Angabe in der php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6650,44 +6664,43 @@ msgstr "" "Die Größe der hochgeladenen Datei überschreitet die MAX_FILE_SIZE Angabe, " "die im HTML-Formular angegeben wurde." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde nur teilweise auf den Server geladen." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Kein temporäres Verzeichnis gefunden." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Konnte die Datei nicht auf die Festplatte schreiben." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Upload der Datei wurde wegen der Dateiendung gestoppt." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Dateigröße liegt über dem Benutzerlimit" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Datei konnte nicht in das Zielverzeichnis verschoben werden." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Konnte den MIME-Typ nicht feststellen." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Versuche ein anderes %s Format." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s ist kein unterstütztes Dateiformat auf diesem Server." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" @@ -6803,27 +6816,7 @@ msgstr "Stups" msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stups" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Neues Profil konnte nicht angelegt werden" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Fehler beim Einfügen des Avatars" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Fehler beim Aktualisieren des entfernten Profils" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Fehler beim Einfügen des entfernten Profils" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Doppelte Nachricht" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." @@ -6860,7 +6853,8 @@ msgstr "Deine gesendeten Nachrichten" msgid "Tags in %s's notices" msgstr "Stichworte in %ss Nachrichten" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Unbekannter Befehl" @@ -6954,19 +6948,19 @@ msgstr "Spielwiese" msgid "Sandbox this user" msgstr "Diesen Nutzer auf die Spielwiese setzen" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Site durchsuchen" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Suchbegriff" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Suchen" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Hilfe suchen" @@ -7163,56 +7157,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "vor einer Minute" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "vor %d Minuten" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "vor einer Stunde" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "vor %d Stunden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "vor einem Tag" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "vor %d Tagen" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "vor einem Monat" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "vor %d Monaten" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 7923464797..fbc7354d0e 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Greek +# Translation of StatusNet to Greek (Ελληνικά) +# Expored from translatewiki.net # -# Author@translatewiki.net: Crazymadlover -# Author@translatewiki.net: Dead3y3 -# Author@translatewiki.net: Omnipaedista +# Author: Crazymadlover +# Author: Dead3y3 +# Author: Omnipaedista # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,20 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:46+0000\n" -"Language-Team: Greek\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:48+0000\n" +"Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Πρόσβαση" @@ -77,10 +79,10 @@ msgstr "Αποθήκευση ρυθμίσεων πρόσβασης" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Αποθήκευση" @@ -93,15 +95,15 @@ msgstr "Κανένας τέτοιος χρήστης." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -188,29 +190,31 @@ msgstr "" msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -220,21 +224,25 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "" -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockcreate.php:127 +msgid "Block user failed." +msgstr "" + +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "" @@ -258,49 +266,49 @@ msgstr "" msgid "All the direct messages sent to %s" msgstr "" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "" "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!" @@ -312,75 +320,81 @@ msgstr "" msgid "Could not find target user." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 +#: actions/newgroup.php:133 actions/profilesettings.php:218 +#: actions/register.php:217 +msgid "Not a valid nickname." +msgstr "" + +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 -#, php-format -msgid "Invalid alias: \"%s\"." -msgstr "" - -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "" + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -392,12 +406,6 @@ msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." msgid "%s's groups" msgstr "ομάδες των χρηστών %s" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." -msgstr "" - #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" @@ -407,15 +415,11 @@ msgstr "ομάδες του χρήστη %s" msgid "No oauth_token parameter provided." msgstr "" -#: actions/apioauthauthorize.php:106 -msgid "Invalid token." -msgstr "" - #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -433,14 +437,6 @@ msgstr "" msgid "Invalid nickname / password!" msgstr "" -#: actions/apioauthauthorize.php:159 -msgid "Database error deleting OAuth application user." -msgstr "" - -#: actions/apioauthauthorize.php:185 -msgid "Database error inserting OAuth application user." -msgstr "" - #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -458,8 +454,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -528,11 +524,21 @@ msgstr "Η κατάσταση διεγράφη." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 +msgid "Not found." +msgstr "" + +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -541,6 +547,11 @@ msgstr "" msgid "Unsupported format." msgstr "" +#: actions/apitimelinefavorites.php:110 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "" + #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." @@ -580,10 +591,20 @@ msgstr "" msgid "API method under construction." msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "" + #: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "" +#. TRANS: Link description in user account settings menu. +#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: lib/accountsettingsaction.php:118 +msgid "Avatar" +msgstr "" + #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." @@ -615,6 +636,10 @@ msgstr "" msgid "Delete" msgstr "Διαγραφή" +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +msgid "Upload" +msgstr "" + #: actions/avatarsettings.php:305 msgid "No file uploaded." msgstr "" @@ -623,6 +648,14 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + +#: actions/avatarsettings.php:370 +msgid "Avatar updated." +msgstr "" + #: actions/avatarsettings.php:373 msgid "Failed updating avatar." msgstr "" @@ -694,7 +727,8 @@ msgstr "" msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "" @@ -714,9 +748,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -724,7 +758,7 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." @@ -742,9 +776,15 @@ msgstr "" msgid "Conversation" msgstr "Συζήτηση" +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 +msgid "Notices" +msgstr "" + +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -805,7 +845,6 @@ msgstr "Διαγράψτε αυτόν τον χρήστη" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -817,27 +856,18 @@ msgstr "" msgid "Invalid logo URL." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "Αλλαγή χρωμάτων" -#: actions/designadminpanel.php:460 -msgid "Site theme" +#: actions/designadminpanel.php:431 +msgid "Site logo" msgstr "" #: actions/designadminpanel.php:461 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -916,6 +946,10 @@ msgstr "" msgid "Reset back to default" msgstr "" +#: actions/designadminpanel.php:686 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -929,6 +963,10 @@ msgstr "" msgid "No such document \"%s\"" msgstr "" +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + #: actions/editapplication.php:161 msgid "Use this form to edit your application." msgstr "" @@ -1015,7 +1053,7 @@ msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1031,95 +1069,90 @@ msgstr "" "προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " "αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Εισερχόμενο email" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Διευθύνσεις email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1129,19 +1162,19 @@ msgstr "" "αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Επιβεβαίωση διεύθυνσης email" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." @@ -1153,6 +1186,11 @@ msgstr "" msgid "Disfavor favorite" msgstr "" +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "" + #: actions/favorited.php:79 msgid "The most popular notices on the site right now." msgstr "" @@ -1174,11 +1212,22 @@ msgid "" "notice to your favorites!" msgstr "" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "" + #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "" +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" @@ -1212,10 +1261,6 @@ msgstr "" msgid "You are not authorized." msgstr "" -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - #: actions/finishremotesubscribe.php:118 msgid "Remote service uses unknown version of OMB protocol." msgstr "" @@ -1228,18 +1273,10 @@ msgstr "Κανένας τέτοιος χρήστης." msgid "Cannot read file." msgstr "Απέτυχε η αποθήκευση του προφίλ." -#: actions/grantrole.php:62 actions/revokerole.php:62 -msgid "Invalid role." -msgstr "" - #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" -#: actions/grantrole.php:75 -msgid "You cannot grant user roles on this site." -msgstr "" - #: actions/grantrole.php:82 msgid "User already has this role." msgstr "" @@ -1269,7 +1306,7 @@ msgstr "" msgid "User is already blocked from group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "" @@ -1281,6 +1318,11 @@ msgid "" "the group in the future." msgstr "" +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +msgid "Do not block this user from this group" +msgstr "" + #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" @@ -1322,23 +1364,21 @@ msgstr "" msgid "Failed updating logo." msgstr "" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" @@ -1357,6 +1397,11 @@ msgstr "χρονοδιάγραμμα του χρήστη %s" msgid "Updates from members of %1$s on %2$s!" msgstr "" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + #: actions/groups.php:90 #, php-format msgid "" @@ -1367,10 +1412,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - #: actions/groupsearch.php:52 #, php-format msgid "" @@ -1428,11 +1469,6 @@ msgid "" "doc.im%%). Configure your address and settings below." msgstr "" -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1445,7 +1481,10 @@ msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυν #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1453,43 +1492,48 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Οι προτιμήσεις αποθηκεύτηκαν" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:312 +msgid "No Jabber ID." +msgstr "" + #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Αδυναμία κανονικοποίησης του Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1499,16 +1543,21 @@ msgstr "" "Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "" +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1522,9 +1571,11 @@ msgstr "" msgid "Invites have been disabled." msgstr "" -#: actions/invite.php:41 +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 #, php-format -msgid "You must be logged in to invite other users to use %s." +msgid "%1$s (%2$s)" msgstr "" #: actions/invite.php:136 @@ -1606,10 +1657,20 @@ msgstr "" msgid "No nickname or ID." msgstr "Ψευδώνυμο" +#: actions/joingroup.php:141 +#, php-format +msgid "%1$s joined group %2$s" +msgstr "" + #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" +#: actions/leavegroup.php:137 +#, php-format +msgid "%1$s left group %2$s" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Ήδη συνδεδεμένος." @@ -1646,12 +1707,6 @@ msgstr "" "Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " "σας, πριν αλλάξετε τις ρυθμίσεις σας." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" @@ -1661,15 +1716,14 @@ msgstr "" msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - #: actions/microsummary.php:69 msgid "No current status." msgstr "" +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + #: actions/newapplication.php:143 msgid "Use this form to register a new application." msgstr "" @@ -1707,6 +1761,10 @@ msgstr "" msgid "Ajax Error" msgstr "" +#: actions/newnotice.php:227 +msgid "Notice posted" +msgstr "" + #: actions/noticesearch.php:68 #, php-format msgid "" @@ -1718,11 +1776,6 @@ msgstr "" msgid "Text search" msgstr "" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%1$s\" on %2$s" -msgstr "" - #: actions/noticesearch.php:121 #, php-format msgid "" @@ -1742,11 +1795,6 @@ msgstr "" msgid "Updates with \"%s\"" msgstr "" -#: actions/noticesearchrss.php:98 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -1764,10 +1812,23 @@ msgstr "" msgid "You must be logged in to list your applications." msgstr "" +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1785,12 +1846,6 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1798,8 +1853,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "" @@ -1823,30 +1878,27 @@ msgstr "" msgid "Shorten URLs with" msgstr "" +#: actions/othersettings.php:117 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" -#: actions/otp.php:69 -msgid "No user ID specified." -msgstr "" - -#: actions/otp.php:83 -msgid "No login token specified." -msgstr "" - #: actions/otp.php:90 msgid "No login token requested." msgstr "" -#: actions/otp.php:95 -msgid "Invalid login token specified." -msgstr "" - #: actions/otp.php:104 msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -1906,7 +1958,7 @@ msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1914,26 +1966,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -1942,10 +1974,6 @@ msgstr "" msgid "Site" msgstr "" -#: actions/pathsadminpanel.php:238 -msgid "Server" -msgstr "" - #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." msgstr "" @@ -1954,6 +1982,10 @@ msgstr "" msgid "Path" msgstr "" +#: actions/pathsadminpanel.php:242 +msgid "Site path" +msgstr "" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2002,6 +2034,10 @@ msgstr "Ρυθμίσεις του άβαταρ" msgid "Backgrounds" msgstr "" +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "" + #: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" @@ -2055,10 +2091,6 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:95 -msgid "Invalid notice content." -msgstr "" - #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -2085,7 +2117,7 @@ msgstr "Ονοματεπώνυμο" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Αρχική σελίδα" @@ -2188,10 +2220,6 @@ msgstr "" msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:191 msgid "Be the first to post!" msgstr "" @@ -2284,6 +2312,10 @@ msgstr "" msgid "6 or more characters, and don't forget it!" msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!" +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." @@ -2389,33 +2421,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2456,10 +2461,6 @@ msgstr "" msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "" @@ -2468,10 +2469,6 @@ msgstr "" msgid "You can't repeat your own notice." msgstr "" -#: actions/repeat.php:90 -msgid "You already repeated that notice." -msgstr "" - #: actions/repeat.php:114 lib/noticelist.php:676 msgid "Repeated" msgstr "Επαναλαμβάνεται από" @@ -2480,6 +2477,17 @@ msgstr "Επαναλαμβάνεται από" msgid "Repeated!" msgstr "Επαναλαμβάνεται από" +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + #: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2514,10 +2522,6 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" -#: actions/revokerole.php:75 -msgid "You cannot revoke user roles on this site." -msgstr "" - #: actions/revokerole.php:82 msgid "User doesn't have this role." msgstr "" @@ -2536,7 +2540,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2565,21 +2569,30 @@ msgstr "" msgid "Save site settings" msgstr "Αποθήκευση ρυθμίσεων πρόσβασης" +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + #: actions/showapplication.php:157 msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Περιγραφή" +#: actions/showapplication.php:192 actions/showgroup.php:436 +#: lib/profileaction.php:187 +msgid "Statistics" +msgstr "" + #: actions/showapplication.php:203 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d users" @@ -2686,12 +2699,7 @@ msgstr "" msgid "Aliases" msgstr "" -#: actions/showgroup.php:355 -#, php-format -msgid "FOAF for %s group" -msgstr "" - -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Μέλη" @@ -2790,6 +2798,10 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + #: actions/silence.php:72 msgid "User is already silenced." msgstr "" @@ -2891,6 +2903,10 @@ msgstr "" msgid "Edit site-wide message" msgstr "" +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." +msgstr "" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" @@ -2915,11 +2931,6 @@ msgstr "Ρυθμίσεις του άβαταρ" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -2957,6 +2968,11 @@ msgid "" "from my carrier." msgstr "" +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +msgid "No carrier selected." +msgstr "" + #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." @@ -3001,9 +3017,14 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +msgid "No code entered" +msgstr "" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3027,6 +3048,10 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -3142,6 +3167,11 @@ msgstr "" msgid "SMS" msgstr "" +#: actions/tag.php:69 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + #: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" @@ -3386,6 +3416,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "" +#: actions/version.php:75 +#, php-format +msgid "StatusNet %s" +msgstr "" + #: actions/version.php:155 #, php-format msgid "" @@ -3462,11 +3497,6 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 -msgid "Invalid filename." -msgstr "" - #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -3496,12 +3526,6 @@ msgstr "" msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" -#. TRANS: Server exception. %s are the error details. -#: classes/Notice.php:193 -#, php-format -msgid "Database error inserting hashtag: %s" -msgstr "" - #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 msgid "Problem saving notice. Too long." @@ -3568,7 +3592,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3644,11 +3668,22 @@ msgstr "" msgid "Design your profile" msgstr "Σχεδιάστε το προφίλ σας" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" msgstr "" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, php-format +msgid "%1$s - %2$s" +msgstr "" + #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. #: lib/action.php:449 msgid "Primary site navigation" @@ -3660,23 +3695,11 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Σύνδεση" -#. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 -msgctxt "TOOLTIP" -msgid "Change site configuration" -msgstr "" - #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users #: lib/action.php:481 msgctxt "MENU" @@ -3695,12 +3718,6 @@ msgctxt "MENU" msgid "Logout" msgstr "Λογότυπο" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - #. TRANS: Main menu option when not logged in to register a new account #: lib/action.php:498 msgctxt "MENU" @@ -3774,23 +3791,18 @@ msgstr "" msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου)." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3799,44 +3811,45 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "" @@ -3845,144 +3858,182 @@ msgstr "" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#: lib/adminpanelaction.php:339 msgctxt "MENU" -msgid "Design" -msgstr "" - -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 -msgid "User configuration" +msgid "Site" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Περιγράψτε την ομάδα ή το θέμα χρησιμοποιώντας μέχρι %d χαρακτήρες" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +msgid "URL of the homepage of this application" +msgstr "" + #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Ακύρωση" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "" @@ -4002,16 +4053,23 @@ msgstr "" msgid "Provider" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "" + +#: lib/channel.php:157 lib/channel.php:177 +msgid "Command results" msgstr "" #: lib/channel.php:229 lib/mailhandler.php:142 @@ -4029,6 +4087,13 @@ msgstr "" msgid "User has no last notice." msgstr "" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4063,6 +4128,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 #, php-format @@ -4083,6 +4162,11 @@ msgstr "" msgid "Error sending direct message." msgstr "" +#. TRANS: Error text shown when repeating a notice fails with an unknown reason. +#: lib/command.php:557 +msgid "Error repeating notice." +msgstr "" + #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -4097,6 +4181,11 @@ msgstr "" msgid "Reply to %s sent." msgstr "" +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +msgid "Error saving notice." +msgstr "" + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -4107,6 +4196,13 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 @@ -4158,8 +4254,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4168,7 +4271,7 @@ msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητέ msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4183,7 +4286,7 @@ msgid "You are not a member of any groups." msgstr "Δεν είστε μέλος καμίας ομάδας." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4191,6 +4294,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Ομάδες με τα περισσότερα μέλη" msgstr[1] "Ομάδες με τα περισσότερα μέλη" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4257,6 +4361,10 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4274,6 +4382,14 @@ msgstr "" msgid "Design defaults restored." msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "" + #: lib/favorform.php:140 msgid "Favor" msgstr "" @@ -4346,24 +4462,6 @@ msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Ομάδα" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Λογότυπο" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Ομάδες με τα περισσότερα μέλη" @@ -4390,7 +4488,8 @@ msgstr "" msgid "Partial upload." msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -4674,56 +4773,69 @@ msgstr "" msgid "Unsupported message type: %s" msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 -msgid "Could not determine file's MIME type." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid " Try using another %s format." -msgstr "" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 @@ -4752,16 +4864,17 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +msgid "N" +msgstr "" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4806,23 +4919,7 @@ msgstr "" msgid "Nudge" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." @@ -4859,7 +4956,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -4937,19 +5035,19 @@ msgstr "" msgid "Sandbox this user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "" @@ -5038,22 +5136,30 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" -#: lib/themeuploader.php:259 -msgid "Error opening theme archive." -msgstr "" - #: lib/topposterssection.php:74 msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "Διαγράψτε αυτόν τον χρήστη" +#: lib/userprofile.php:117 +msgid "Edit Avatar" +msgstr "" + #: lib/userprofile.php:237 msgid "User deletion in progress..." msgstr "" @@ -5085,20 +5191,22 @@ msgid "Moderator" msgstr "Συντονιστής" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1109 #, php-format -msgid "about %d minutes ago" -msgstr "" +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 @@ -5106,35 +5214,41 @@ msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 +#: lib/util.php:1115 #, php-format -msgid "about %d hours ago" -msgstr "" +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 +#: lib/util.php:1121 #, php-format -msgid "about %d days ago" -msgstr "" +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1127 #, php-format -msgid "about %d months ago" -msgstr "" +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index e828b02149..0d66123b4f 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -1,9 +1,10 @@ -# Translation of StatusNet to British English +# Translation of StatusNet to British English (British English) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Bruce89 -# Author@translatewiki.net: CiaranG -# Author@translatewiki.net: Reedy +# Author: Brion +# Author: Bruce89 +# Author: CiaranG +# Author: Reedy # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,20 +12,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:55+0000\n" -"Language-Team: British English\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:50+0000\n" +"Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Access" @@ -77,10 +79,10 @@ msgstr "Save access settings" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Save" @@ -93,15 +95,15 @@ msgstr "No such page." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -200,16 +202,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -224,21 +226,23 @@ msgstr "Updates from %1$s and friends on %2$s!" msgid "API method not found." msgstr "API method not found." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "This method requires a POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -246,19 +250,19 @@ msgstr "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "User has no profile." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -270,30 +274,30 @@ msgstr "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Unable to save your design settings!" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Could not update your design." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "You cannot block yourself!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Block user failed." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Unblock user failed." @@ -317,59 +321,59 @@ msgstr "Direct messages to %s" msgid "All the direct messages sent to %s" msgstr "All the direct messages sent to %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "No message text!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "That's too long. Max message size is %d chars." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Recipient user not found." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "No status found with that ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "This status is already a favourite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Could not create favourite." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "That status is not a favourite." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Could not delete favourite." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Could not follow user: profile not found." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Could not follow user: %s is already on your list." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Could not unfollow user: User not found." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "You cannot unfollow yourself." @@ -385,101 +389,101 @@ msgstr "Could not determine source user." msgid "Could not find target user." msgstr "Could not find target user." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Nickname must have only lowercase letters and numbers, and no spaces." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Not a valid nickname." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description is too long (max %d chars)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Location is too long (max 255 chars)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Too many aliases! Maximum %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Invalid alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" already in use. Try another one." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias can't be the same as nickname." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Group not found." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "You are already a member of that group." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Could not join user %1$s to group %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "You are not a member of this group." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -519,9 +523,9 @@ msgstr "Invalid token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -566,8 +570,8 @@ msgstr "The request token %s has been denied and revoked." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -631,18 +635,18 @@ msgstr "This method requires a POST or DELETE." msgid "You may not delete another user's status." msgstr "You may not delete another user's status." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "No such notice." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Cannot repeat your own notice." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Already repeated that notice." @@ -654,21 +658,21 @@ msgstr "Status deleted." msgid "No status with that ID found." msgstr "No status with that ID found." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is %d chars." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Not found." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Max notice size is %d chars, including attachment URL." @@ -868,7 +872,9 @@ msgid "Yes" msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Block this user" @@ -910,11 +916,13 @@ msgstr "A list of the users blocked from joining this group." msgid "Unblock user from group" msgstr "Unblock user from group" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Unblock" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Unblock this user" @@ -953,9 +961,9 @@ msgstr "That address has already been confirmed." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -963,7 +971,7 @@ msgstr "Couldn't update user." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." @@ -999,9 +1007,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1035,7 +1044,7 @@ msgstr "Delete this application" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Not logged in." @@ -1098,7 +1107,6 @@ msgstr "Delete this user" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1215,13 +1223,13 @@ msgstr "Restore default designs" msgid "Reset back to default" msgstr "Reset back to default" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Save" @@ -1377,7 +1385,7 @@ msgstr "Current confirmed e-mail address." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1395,22 +1403,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mail address, like \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1418,110 +1430,110 @@ msgstr "Add" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Incoming e-mail" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send e-mail to this address to post new notices." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Make a new e-mail address for posting to - cancels the old one." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "New" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Email preferences" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Send me notices of new subscriptions through e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send me e-mail when someone adds my notice as a favourite." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Send me e-mail when someone sends me a private message." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send me e-mail when someone sends me an \"@-reply\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Allow friends to nudge me and send me an e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "I want to post notices by e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publish a MicroID for my e-mail address." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Email preferences saved." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "No e-mail address." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Not a valid e-mail address." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "That is already your e-mail address." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "That e-mail address already belongs to another user." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Couldn't insert confirmation code." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1532,50 +1544,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "No pending confirmation to cancel." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "That is the wrong email address." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Email confirmation cancelled." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "That is not your e-mail address." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "The email address was removed." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No incoming e-mail address." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Couldn't update user record." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Incoming e-mail address removed." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "New incoming e-mail address added." @@ -1693,7 +1705,7 @@ msgstr "Couldn't convert request tokens to access tokens." msgid "Remote service uses unknown version of OMB protocol." msgstr "Remote service uses unknown version of OMB protocol." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Error updating remote profile." @@ -1750,7 +1762,7 @@ msgstr "User is already blocked from group." msgid "User is not a member of group." msgstr "User is not a member of group." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Block user from group" @@ -1831,40 +1843,32 @@ msgstr "Logo updated." msgid "Failed updating logo." msgstr "Failed updating logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s group members" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s group members, page %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "A list of the users in this group." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Block" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Make admin" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Make this user an admin" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2002,7 +2006,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2012,64 +2019,64 @@ msgstr "" "add %s to your buddy list in your IM client or on GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM preferences" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Send me replies through Jabber/GTalk from people I'm not subscribed to." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publish a MicroID for my Jabber/GTalk address." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferences saved." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "No Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Cannot normalise Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Not a valid Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "That is already your Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID already belongs to another user." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2079,28 +2086,28 @@ msgstr "" "s for sending messages to you." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "That is the wrong IM address." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Couldn't delete IM confirmation." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM confirmation cancelled." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "The IM address was removed." @@ -2557,8 +2564,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2694,7 +2701,7 @@ msgid "Password saved." msgstr "Password saved." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -2868,7 +2875,7 @@ msgstr "Full name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -2973,7 +2980,7 @@ msgid "Couldn't save tags." msgstr "Couldn't save tags." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Settings saved." @@ -3503,24 +3510,24 @@ msgid "Application profile" msgstr "Application profile" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organization" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -3624,7 +3631,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s group" @@ -3676,7 +3683,7 @@ msgstr "Notice feed for %s group (Atom)" msgid "FOAF for %s group" msgstr "Outbox for %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Members" @@ -4103,7 +4110,7 @@ msgstr "No code entered" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4195,6 +4202,11 @@ msgstr "" "You have no subscribers. Try subscribing to people you know and they might " "return the favour" +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + #: actions/subscribers.php:114 #, php-format msgid "" @@ -4763,7 +4775,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "You have been banned from subscribing." @@ -4901,7 +4913,8 @@ msgid "Change site configuration" msgstr "Change site configuration" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -4978,7 +4991,7 @@ msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Site notice" @@ -5042,7 +5055,10 @@ msgid "StatusNet software license" msgstr "StatusNet software licence" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5052,13 +5068,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5070,49 +5089,50 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Site content license" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "All %1$s content and data are available under the %2$s licence." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "After" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Before" @@ -5121,195 +5141,224 @@ msgstr "Before" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "You cannot make changes to this site." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Changes to that panel are not allowed." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() not implemented." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Unable to delete design setting." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Basic site configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Design configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "User configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "User" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Access configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Paths configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Sessions configuration" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Edit site notice" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Snapshots configuration" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Describe your application in %d characters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Describe your application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL of the homepage of this application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organisation responsible for this application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL for the homepage of the organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancel" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" @@ -5319,7 +5368,8 @@ msgstr "Revoke" msgid "Provider" msgstr "Provider" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -5331,6 +5381,11 @@ msgstr "Password changing failed" msgid "Password changing is not allowed" msgstr "Password changing is not allowed" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Block" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Command results" @@ -5343,6 +5398,13 @@ msgstr "Command complete" msgid "Command failed" msgstr "Command failed" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -5370,6 +5432,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Notice marked as fave." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5426,20 +5502,23 @@ msgstr "Error repeating notice." msgid "Error saving notice." msgstr "Error saving notice." -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -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:664 msgid "Can't subscribe to OMB profiles by command." msgstr "Can't subscribe to OMB profiles by command." -#. 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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:672 +#, php-format +msgid "Subscribed to %s." +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:705 +#, 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. @@ -5480,13 +5559,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "You are not subscribed to anyone." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5501,7 +5587,7 @@ msgid "No one is subscribed to you." msgstr "No one is subscribed to you." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5516,7 +5602,7 @@ msgid "You are not a member of any groups." msgstr "You are not a member of any groups." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5524,6 +5610,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5739,38 +5826,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Group" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blocked" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s blocked users" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Edit %s group properties" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Add or edit %s logo" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Add or edit %s design" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groups with most members" @@ -5802,7 +5857,8 @@ msgstr "That file is too big. The maximum file size is %s." msgid "Partial upload." msgstr "Partial upload." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "System error uploading file." @@ -6114,56 +6170,75 @@ msgstr "Sorry, no incoming e-mail allowed." msgid "Unsupported message type: %s" msgstr "Unsupported message type: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Could not determine file's MIME type." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -6279,27 +6354,7 @@ msgstr "Nudge" msgid "Send a nudge to this user" msgstr "Send a nudge to this user" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error inserting new profile." - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error inserting avatar." - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error updating remote profile." - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error inserting remote profile." - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicate notice" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." @@ -6336,7 +6391,8 @@ msgstr "Your sent messages" msgid "Tags in %s's notices" msgstr "Tags in %s's notices" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Unknown" @@ -6430,19 +6486,19 @@ msgstr "Sandbox" msgid "Sandbox this user" msgstr "Sandbox this user" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Search site" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Search" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Search help" @@ -6619,56 +6675,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "a few seconds ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "about a minute ago" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "about %d minutes ago" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "about an hour ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "about %d hours ago" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "about a day ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "about %d days ago" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "about a month ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "about %d months ago" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "about a year ago" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 16e5ae58b6..c5b268ea09 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -1,10 +1,11 @@ -# Translation of StatusNet to Esperanto +# Translation of StatusNet to Esperanto (Esperanto) +# Expored from translatewiki.net # -# Author@translatewiki.net: AVRS -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Ianmcorvidae -# Author@translatewiki.net: Kris10 -# Author@translatewiki.net: LyzTyphone +# Author: AVRS +# Author: Brion +# Author: Ianmcorvidae +# Author: Kris10 +# Author: LyzTyphone # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,20 +13,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:33:49+0000\n" -"Language-Team: Esperanto\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:49+0000\n" +"Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Atingo" @@ -78,10 +80,10 @@ msgstr "Konservu atingan agordon" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Konservu" @@ -94,15 +96,15 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -201,16 +203,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -225,21 +227,23 @@ msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!" msgid "API method not found." msgstr "Metodo de API ne troviĝas." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Ĉi tiu metodo bezonas POST-on." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -247,27 +251,27 @@ msgstr "" "Vi devas specifi parametron nomitan 'device' kun valoro de interalie: 'sms', " "'im', 'none'." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Malsukcesis ĝisdatigi uzanton" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "La uzanto ne havas profilon." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Malsukcesis konservi la profilon." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -279,30 +283,30 @@ msgstr "" "La servilo ne povis trakti tiom da POST-datumo (% bajtoj) pro ĝia nuna " "agordo." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Malsukcesis konservi vian desegnan agordon" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Malsukcesis ĝisdatigi vian desegnon." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Vi ne povas bloki vin mem!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Ne sukcesis bloki uzanton." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Ne sukcesis malbloki uzanton." @@ -326,59 +330,59 @@ msgstr "Rektaj mesaĝoj al %s" msgid "All the direct messages sent to %s" msgstr "Ĉiuj rektaj mesaĝoj senditaj al %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Sen mesaĝteksto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Tro longas. Mesaĝa longlimo estas %d signoj." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Ricevonta uzanto ne troviĝas." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Vi ne povas sendi rektan mesaĝon al uzanto kiu ne estas via amiko." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Stato kun tiu ID ne trovitas." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Ĉi tiu stato jam estas ŝatata." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Malsukcesis krei ŝataton." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "La stato ne estas ŝatata." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Malsukcesis forigi ŝataton." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Malsukcesis aboni uzanton: profilo ne troviĝas." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Ne povas aboni uzanton: %s estas jam en via listo." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Ne povas malaboni uzanton. Uzanto ne troviĝas." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Vi ne povas malaboni vin mem." @@ -394,102 +398,102 @@ msgstr " Malsukcesis certigi fontan uzanton." msgid "Could not find target user." msgstr "Malsukcesis trovi celan uzanton." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Kromnomo devas havi nur minuskulajn literojn kaj numerojn sed neniun spacon." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "La uzantnomo jam uziĝis. Provu ion alian." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ne valida kromnomo." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Ĉefpaĝo ne estas valida URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Plennomo estas tro longa (maksimume 255 literoj)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Priskribo estas tro longa (maksimume %d signoj)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "lokonomo estas tro longa (maksimume 255 literoj)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Tro da alinomoj! Maksimume %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "La alinomo estas nevalida: \"%*s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "La alinomo \"%s\" estas jam okupita. Provu ion alian." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "La alinomo devas ne esti sama al la kromnomo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Grupo ne troviĝas." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Vi estas jam grupano." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "La administranto blokis vin de tiu grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Vi ne estas grupano." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -519,7 +523,7 @@ msgstr "Grupoj de %s" msgid "groups on %s" msgstr "grupoj ĉe %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Malsukcesis alŝuti" @@ -533,9 +537,9 @@ msgstr "Nevalida ĵetono" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -580,8 +584,8 @@ msgstr "La demanda token %s estis neita kaj revokita." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -645,18 +649,18 @@ msgstr "Ĉi tiu metodo bezonas POST aǔ DELETE." msgid "You may not delete another user's status." msgstr "Vi ne povas forigi la staton de alia uzanto." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ne estas tiu avizo." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Vi ne povas ripeti vian propran avizon." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "La avizo jam ripetiĝis." @@ -668,21 +672,21 @@ msgstr "Stato forigita." msgid "No status with that ID found." msgstr "Neniu stato kun tiu ID troviĝas." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Kliento devas providi al \"stato\"-parametro valoron." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Tro longas. Longlimo por avizo estas %d signoj." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Ne troviĝas." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Longlimo por avizo estas %d signoj, enkalkulante ankaŭ la retadresojn." @@ -881,7 +885,9 @@ msgid "Yes" msgstr "Jes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloki la uzanton" @@ -923,11 +929,13 @@ msgstr "Listo de uzantoj blokita de aniĝi al ĉi tiun grupo." msgid "Unblock user from group" msgstr "Malbloki uzanton de grupo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Malbloki" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Malbloki ĉi tiun uzanton" @@ -966,9 +974,9 @@ msgstr "La adreso jam estis konfirmita." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -976,7 +984,7 @@ msgstr "Ne povus ĝisdatigi uzanton." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Ne povas forigi retpoŝtan konfirmon." @@ -1012,9 +1020,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1047,7 +1056,7 @@ msgstr "Viŝi ĉi tiun aplikon" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ne konektita." @@ -1109,7 +1118,6 @@ msgstr "Forigi la uzanton" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Aspekto" @@ -1228,13 +1236,13 @@ msgstr "Restaŭri defaŭltajn desegnojn" msgid "Reset back to default" msgstr "Redefaŭltiĝi" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Konservi" @@ -1390,7 +1398,7 @@ msgstr "Nuna konfirmita retpoŝtadreso." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1408,22 +1416,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Nuligi" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Retpoŝtadreso, ekzemple \"ViaNomo@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1431,110 +1443,110 @@ msgstr "Aldoni" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Alveninta poŝto" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Sendu mesaĝon al la adreso por afiŝi novan avizon." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Krei novan retpoŝtadreson por afiŝado kaj nuligi la antaŭan." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nova" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Retpoŝta agordo." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Sendu al mi avizon pri nova abonado per retpoŝto." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Sendu al mi mesaĝon tiam, kiam iu ŝatas mian avizon ." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Sendu al mi mesaĝon tiam, kiam iu sendas al mi privatan mesaĝon." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Sendu al mi mesaĝon tiam, kiam iu sendas al mi \"@-respondon\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permesi al amikoj puŝeti min kaj sendi al mi retpoŝtan mesaĝon." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Mi volas afiŝi avizon per retpoŝto." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publikigi MikroID por mia retpoŝtadreso." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Retpoŝta prefero konserviĝis." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Neniu retpoŝta adreso." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Malsukcesis normigi tiun retpoŝtadreson" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Retpoŝta adreso ne valida" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Tiu jam estas via retpoŝtadreso." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Tiu retpoŝtadreso jam apartenas al alia uzanto." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Malsukcesis enmeti konfirmkodon." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1545,50 +1557,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ne estas peto-konfirmo por nuligi." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Tiu retpoŝtadreso estas malĝusta." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Retpoŝta konfirmo nuligita." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Tiu ne estas via retpoŝtadreso." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "La retpoŝtadreso estas forigita." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ne estas alvena retpoŝtadreso" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Malsukcesis ĝisdatigi uzantan informon." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Alvena retpoŝtadreso forigita." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nova alvena retpoŝtadreso aldonita." @@ -1705,7 +1717,7 @@ msgstr "Malsukcesis interŝanĝi petĵetonon al atingoĵetono." msgid "Remote service uses unknown version of OMB protocol." msgstr "Fora servo uzas nekonatan version de OMB-protokolo." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Eraro je ĝisdatigo de fora profilo." @@ -1762,7 +1774,7 @@ msgstr "La uzanto jam de grupo blokiĝas." msgid "User is not a member of group." msgstr "La uzanto ne estas grupano." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloki uzanton de grupo" @@ -1840,40 +1852,32 @@ msgstr "Emblemo ĝisdatigita." msgid "Failed updating logo." msgstr "Malsukcesis ĝisdatigi emblemon." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s grupanoj" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s grupanoj, paĝo %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Listo de uzantoj en tiu ĉi grupo" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administranto" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloki" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Elekti uzanton grupestro." -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Estrigi" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Estrigi la uzanton" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2011,7 +2015,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2021,64 +2028,64 @@ msgstr "" "s al via amikolisto je via tujmesaĝilo-kliento aŭ je GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Tujmesaĝilaj preferoj" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Sendu al mi avizojn per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Afiŝu avizon tiam, kiam mia Jabber/GTalk-stato ŝanĝiĝas." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Sendu al mi per Jabber/GTalk respondojn de personoj, kiujn mi ne abonas." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publikigu MikroID por mia Jabber/GTalk-adreso." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Prefero konservita." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Mankas Jabber-ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Malsukcesis normigi la Jabber-ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Tio ne estas valida Jabber-ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Tio estas jam via Jabber-ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID jam apartenas al alia uzanto." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2088,28 +2095,28 @@ msgstr "" "al %s sendi mesaĝojn al vi." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 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. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Malsukcesis forigi tujmesaĝila agordo." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Tujmesaĝila konfirmo nuligita." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Tio ne estas via Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "La tujmesaĝila adreso estas forigita." @@ -2570,8 +2577,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bonvolu, nur %s-URL per plata HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Datumformato ne subteniĝas." @@ -2712,7 +2719,7 @@ msgid "Password saved." msgstr "Pasvorto konservitas." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Vojoj" @@ -2923,7 +2930,7 @@ msgstr "Plena nomo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hejmpaĝo" @@ -3028,7 +3035,7 @@ msgid "Couldn't save tags." msgstr "Malsukcesis konservi markilojn." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Agordo konservitas." @@ -3543,9 +3550,17 @@ msgstr "La uzanto ne havas la rolon." msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Seancoj" @@ -3583,24 +3598,24 @@ msgid "Application profile" msgstr "Aplikaĵa profilo" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikono" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nomo" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organizaĵo" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Priskribo" @@ -3708,7 +3723,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Tiel vi povas diskonigi vian ŝataton." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" @@ -3760,7 +3775,7 @@ msgstr "Avizofluo de grupo %s (Atom)" msgid "FOAF for %s group" msgstr "Foramiko de grupo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Grupanoj" @@ -3965,6 +3980,14 @@ msgstr "Nomo de via retejo, ekzemple \"Viafirmo Mikroblogo\"" msgid "Brought by" msgstr "Eblige de" +#: actions/siteadminpanel.php:230 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:234 +msgid "Brought by URL" +msgstr "" + #: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL por danko-ligilo je subaĵo sur ĉiu paĝo" @@ -3989,10 +4012,6 @@ msgstr "Defaŭlta horzono de la retejo; kutime UTC." msgid "Default language" msgstr "Defaŭlta lingvo" -#: actions/siteadminpanel.php:263 -msgid "Site language when autodetection from browser settings is not available" -msgstr "" - #: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limoj" @@ -4013,10 +4032,22 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +msgid "Site Notice" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." +msgstr "" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +msgid "Site notice text" +msgstr "" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" @@ -4041,6 +4072,16 @@ msgctxt "BUTTON" msgid "Confirm" msgstr "Konfirmi" +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 +msgid "SMS phone number" +msgstr "" + +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 msgid "" @@ -4074,7 +4115,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4090,6 +4131,10 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -4146,6 +4191,16 @@ msgstr "" msgid "%s has no subscribers. Want to be the first?" msgstr "" +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "" + +#: actions/subscriptions.php:54 +#, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "" + #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" @@ -4165,6 +4220,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "Jabber" @@ -4173,6 +4233,21 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" +#: actions/tag.php:87 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:93 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/tag.php:99 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" @@ -4183,6 +4258,10 @@ msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + #. TRANS: User admin panel title #: actions/useradminpanel.php:59 msgctxt "TITLE" @@ -4491,6 +4570,11 @@ msgstr "Dosiero tiel granda superos vian uzantan kvoton kun %d bajtoj." msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +msgid "Group join failed." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -4531,6 +4615,11 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +msgid "You are banned from posting notices on this site." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -4568,6 +4657,16 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +msgid "Already subscribed!" +msgstr "" + +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +msgid "Not subscribed!" +msgstr "" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:365 @@ -4580,6 +4679,11 @@ msgstr "Bonvenon al %1$s, @%2$s!" msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +msgid "Design your profile" +msgstr "" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" @@ -4626,7 +4730,8 @@ msgid "Change site configuration" msgstr "Ŝanĝi agordojn de la retejo" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administri" @@ -4673,6 +4778,23 @@ msgctxt "MENU" msgid "Help" msgstr "Helpo" +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +msgid "Site notice" +msgstr "" + +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:605 +msgid "Local views" +msgstr "" + #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 msgid "Secondary site navigation" @@ -4723,7 +4845,10 @@ msgid "StatusNet software license" msgstr "Licenco de la programaro StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4731,13 +4856,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4745,33 +4873,41 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:879 +#, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 msgid "After" msgstr "Poste" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Antaŭe" @@ -4780,108 +4916,177 @@ msgstr "Antaŭe" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Retejo" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Uzanto" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +msgid "Edit site notice" +msgstr "" + #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloki" + #: lib/channel.php:229 lib/mailhandler.php:142 msgid "Command complete" msgstr "" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4892,6 +5097,13 @@ msgstr "" msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4904,6 +5116,20 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 #, php-format @@ -4924,6 +5150,13 @@ msgstr "" msgid "Error sending direct message." msgstr "" +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "" + #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -4931,6 +5164,13 @@ msgstr "" msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, php-format +msgid "Reply to %s sent." +msgstr "" + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -4941,12 +5181,26 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 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:705 +#, 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:724 lib/command.php:750 @@ -4970,6 +5224,13 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. #: lib/command.php:858 @@ -4977,7 +5238,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4985,6 +5246,7 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "" msgstr[1] "" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5109,13 +5371,19 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -5133,7 +5401,8 @@ msgstr "" msgid "This page is not available in a media type you accept" msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -5158,6 +5427,11 @@ msgstr "" msgid "[%s]" msgstr "" +#: lib/jabber.php:567 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + #: lib/leaveform.php:114 msgid "Leave" msgstr "Forlasi" @@ -5166,6 +5440,11 @@ msgstr "Forlasi" msgid "Sign up for a new account" msgstr "" +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 +msgid "Email address confirmation" +msgstr "" + #. TRANS: Body for address confirmation email. #: lib/mail.php:177 #, php-format @@ -5334,6 +5613,10 @@ msgid "" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "" + #: lib/mailbox.php:139 msgid "" "You have no private messages. You can send private message to engage other " @@ -5344,52 +5627,73 @@ msgstr "" msgid "from" msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" msgstr "" #: lib/messageform.php:146 @@ -5460,6 +5764,14 @@ msgstr "" msgid "Reply" msgstr "" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5469,6 +5781,10 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "" + #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" @@ -5502,15 +5818,19 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "" @@ -5534,6 +5854,16 @@ msgstr "Pli..." msgid "Silence" msgstr "Silento" +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -5544,6 +5874,10 @@ msgstr "" msgid "People Tagcloud as tagged" msgstr "" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" @@ -5588,6 +5922,10 @@ msgstr "" msgid "Unsandbox" msgstr "" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Malaboni" @@ -5623,34 +5961,22 @@ msgid "Moderator" msgstr "Moderanto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "antaŭ kelkaj sekundoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "antaŭ ĉirkaŭ %d minutoj" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "antaŭ ĉirkaŭ %d horoj" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index a2d80329e3..22692c8915 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -1,13 +1,14 @@ -# Translation of StatusNet to Spanish +# Translation of StatusNet to Spanish (Español) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Crazymadlover -# Author@translatewiki.net: Locos epraix -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Patcito -# Author@translatewiki.net: PerroVerd -# Author@translatewiki.net: Peter17 -# Author@translatewiki.net: Translationista +# Author: Brion +# Author: Crazymadlover +# Author: Locos epraix +# Author: McDutchie +# Author: Patcito +# Author: PerroVerd +# Author: Peter17 +# Author: Translationista # -- # This file is distributed under the same license as the StatusNet package. # @@ -15,20 +16,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-09 17:36:47+0000\n" -"Language-Team: Spanish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:52+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acceder" @@ -81,10 +83,10 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -97,15 +99,15 @@ msgstr "No existe tal página." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -205,16 +207,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -229,21 +231,23 @@ msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" msgid "API method not found." msgstr "Método de API no encontrado." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Este método requiere un POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -251,27 +255,27 @@ msgstr "" "Tienes que especificar un parámetro llamdao 'dispositivo' con un valor a " "elegir entre: sms, im, ninguno." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "No se pudo actualizar el usuario." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "El usuario no tiene un perfil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "No se pudo guardar el perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -283,30 +287,30 @@ msgstr "" "El servidor no ha podido manejar tanta información del tipo POST (% de " "bytes) a causa de su configuración actual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "No se pudo grabar tu configuración de diseño." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "No se pudo actualizar tu diseño." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "¡No puedes bloquearte a tí mismo!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Falló bloquear usuario." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Falló desbloquear usuario." @@ -330,59 +334,59 @@ msgstr "Mensajes directos a %s" msgid "All the direct messages sent to %s" msgstr "Todos los mensajes directos enviados a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "¡Sin texto de mensaje!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "No se encuentra usuario receptor." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "No se encontró estado para ese ID" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Este status ya está en favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "No se pudo crear favorito." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Este status no es un favorito." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "No se pudo borrar favorito." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "No se pudo seguir al usuario: Perfil no encontrado." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "No puede seguir al usuario: %s ya esta en su lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "No se pudo dejar de seguir al usuario. Usuario no encontrado" -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "No puedes dejar de seguirte a ti mismo." @@ -398,7 +402,7 @@ msgstr "No se pudo determinar el usuario fuente." msgid "Could not find target user." msgstr "No se pudo encontrar ningún usuario de destino." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -406,95 +410,95 @@ msgstr "" "El usuario debe tener solamente letras minúsculas y números y no puede tener " "espacios." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "El usuario ya existe. Prueba con otro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Usuario inválido" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descripción es demasiado larga (máx. %d caracteres)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "¡Muchos seudónimos! El máximo es %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias inválido: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "El alias \"%s\" ya está en uso. Intenta usar otro." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "El alias no puede ser el mismo que el usuario." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Grupo no encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Has sido bloqueado de ese grupo por el administrador." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No se pudo unir el usuario %s al grupo %s" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "No eres miembro de este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -524,7 +528,7 @@ msgstr "Grupos %s" msgid "groups on %s" msgstr "Grupos en %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Carga falló." @@ -538,9 +542,9 @@ msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -588,8 +592,8 @@ msgstr "El token de solicitud %2 ha sido denegado y revocado." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -653,18 +657,18 @@ msgstr "Este método requiere un PUBLICAR O ELIMINAR" msgid "You may not delete another user's status." msgstr "No puedes borrar el estado de otro usuario." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "No existe ese aviso." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "No puedes repetir tus propias notificaciones." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Esta notificación ya se ha repetido." @@ -676,21 +680,21 @@ msgstr "Status borrado." msgid "No status with that ID found." msgstr "No hay estado para ese ID" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "El cliente debe proveer un parámetro de 'status' con un valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "No encontrado." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -892,7 +896,9 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuario." @@ -935,11 +941,13 @@ msgstr "" msgid "Unblock user from group" msgstr "Desbloquear usuario de grupo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Desbloquear este usuario" @@ -978,9 +986,9 @@ msgstr "Esa dirección ya fue confirmada." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -988,7 +996,7 @@ msgstr "No se pudo actualizar el usuario." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." @@ -1024,9 +1032,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1060,7 +1069,7 @@ msgstr "Borrar esta aplicación" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "No conectado." @@ -1123,7 +1132,6 @@ msgstr "Borrar este usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Diseño" @@ -1244,13 +1252,13 @@ msgstr "Restaurar los diseños predeterminados" msgid "Reset back to default" msgstr "Volver a los valores predeterminados" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1406,7 +1414,7 @@ msgstr "Actual dirección de correo electrónico confirmada" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1424,22 +1432,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Correo electrónico, como \"NombredeUsuario@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1447,113 +1459,113 @@ msgstr "Añadir" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo entrante" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie emails a esta dirección para ingresar nuevos avisos" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nuevo" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferencias de correo electrónico" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme avisos de suscripciones nuevas por correo." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Enviarme un correo electrónico cuando alguien me envíe una \"@-respuesta\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me contacten y envién un correo." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Deseo enviar estados por email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID para mi dirección de correo." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Preferencias de correo electrónico guardadas." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Sin dirección de correo electrónico" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correo electrónico no válido" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Esa ya es tu dirección de correo electrónico" #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Esa dirección de correo pertenece a otro usuario." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "No se pudo insertar el código de confirmación." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1565,50 +1577,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Esa es la dirección de correo electrónico incorrecta." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Confirmación de correo electrónico cancelada." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Esa no es tu dirección de correo electrónico" #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "La dirección de correo electrónico ha sido eliminada." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "No hay dirección de correo entrante." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "No se pudo actualizar información de usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Dirección de correo entrante removida." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." @@ -1727,7 +1739,7 @@ msgstr "No se pudo convertir el token de solicitud en token de acceso." msgid "Remote service uses unknown version of OMB protocol." msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Error al actualizar el perfil remoto." @@ -1784,7 +1796,7 @@ msgstr "Usuario ya está bloqueado del grupo." msgid "User is not a member of group." msgstr "Usuario no es miembro del grupo" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloquear usuario de grupo" @@ -1868,40 +1880,32 @@ msgstr "Logo actualizado." msgid "Failed updating logo." msgstr "Error al actualizar el logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Miembros del grupo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s miembros de grupo, página %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloquear" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Convertir al usuario en administrador del grupo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Convertir en administrador" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Convertir a este usuario en administrador" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2040,7 +2044,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2051,64 +2058,64 @@ msgstr "" "mensajería instantánea o en GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferencias de mensajería instantánea" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme avisos por Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferencias guardadas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Ningún Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "No se puede normalizar este Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Jabber ID no válido" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Ese ya es tu Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "El Jabber ID ya pertenece a otro usuario." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2119,28 +2126,28 @@ msgstr "" "mensajes." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Esa dirección de mensajería instantánea es incorrecta." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "No se pudo eliminar la confirmación de mensajería instantánea." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Confirmación de mensajería instantánea cancelada." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Ese no es tu Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "La dirección de mensajería instantánea ha sido eliminada." @@ -2613,8 +2620,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solamente %s URLs sobre HTTP simples por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2755,7 +2762,7 @@ msgid "Password saved." msgstr "Se guardó Contraseña." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Rutas" @@ -2969,7 +2976,7 @@ msgstr "Nombre completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página de inicio" @@ -3076,7 +3083,7 @@ msgid "Couldn't save tags." msgstr "No se pudo guardar las etiquetas." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Se guardó configuración." @@ -3625,7 +3632,7 @@ msgstr "Al usuario ya se le ha impuesto restricciones." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sesiones" @@ -3663,24 +3670,24 @@ msgid "Application profile" msgstr "Perfil de la aplicación" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icono" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nombre" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descripción" @@ -3794,7 +3801,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta es una manera de compartir lo que te gusta." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" @@ -3846,7 +3853,7 @@ msgstr "Canal de avisos del grupo %s (Atom)" msgid "FOAF for %s group" msgstr "Amistades de amistades del grupo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Miembros" @@ -4303,7 +4310,7 @@ msgstr "No ingresó código" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Capturas" @@ -5037,7 +5044,7 @@ msgid "Unable to save tag." msgstr "Incapaz de grabar etiqueta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Se te ha prohibido la suscripción." @@ -5180,7 +5187,8 @@ msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -5257,7 +5265,7 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso de sitio" @@ -5321,7 +5329,10 @@ msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5331,13 +5342,16 @@ msgstr "" "[%%site.broughtby%%**](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblogueo." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5349,34 +5363,35 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licencia de contenido del sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contenido y datos de %1$s son privados y confidenciales." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Copyright del contenido y los datos de%1$s. Todos los derechos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " "derechos reservados." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5384,19 +5399,19 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Después" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Antes" @@ -5407,208 +5422,227 @@ msgstr "" "A espera de un elemento de alimentación de raíz, pero se obtuvo un documento " "XML entero." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Aún no se puede manejar contenido remoto." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Aún no se puede manejar contenido XML incrustado." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Aún no se puede manejar contenido incrustado Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "No puedes hacer cambios a este sitio." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "No se permite realizar cambios a ese panel." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() no implementada." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() no implementada." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "No se puede eliminar la configuración de diseño." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuración básica del sitio" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuración del diseño" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Diseño" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuración de usuario" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuración de acceso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuración de rutas" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuración de sesiones" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Editar el aviso del sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuración de instantáneas" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API requiere acceso de lectura y escritura, pero sólo tienes acceso de " "lectura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Editar aplicación" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icono para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Describe tu aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Describe tu aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL de la página principal de esta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "La URL de origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organización responsable de esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL de la página principal de la organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL al que se redirigirá después de la autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador o de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Solo lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Solo escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lectura y escritura" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "sólo lectura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado el %1$s - acceso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" @@ -5628,11 +5662,13 @@ msgstr "Autor" msgid "Provider" msgstr "Proveedor" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Mensajes donde aparece este adjunto" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etiquetas de este archivo adjunto" @@ -5644,6 +5680,11 @@ msgstr "El cambio de contraseña ha fallado" msgid "Password changing is not allowed" msgstr "No está permitido cambiar la contraseña" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloquear" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultados de comando" @@ -5895,7 +5936,7 @@ msgid "You are not subscribed to anyone." msgstr "No estás suscrito a nadie." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5910,7 +5951,7 @@ msgid "No one is subscribed to you." msgstr "Nadie está suscrito a ti." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5925,7 +5966,7 @@ msgid "You are not a member of any groups." msgstr "No eres miembro de ningún grupo" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5933,6 +5974,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6155,38 +6197,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Nombres adicionales para el grupo, separados por comas o espacios. Máximo: %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloqueado" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "usuarios bloqueados" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Editar propiedades del grupo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Agregar o editar el logo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Agregar o editar el diseño de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos con más miembros" @@ -6218,7 +6228,8 @@ msgstr "El archivo es muy grande. El tamaño máximo permitido es %s." msgid "Partial upload." msgstr "Subida parcial" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error del sistema subir el archivo" @@ -6623,18 +6634,21 @@ msgstr "Lo sentimos, pero no se permite correos entrantes" msgid "Unsupported message type: %s" msgstr "Tipo de mensaje no compatible: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Hubo un error en la base de datos mientras subías tu archivo. Por favor, " "inténtalo de nuevo." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo subido sobrepasa la directiva upload_max_filesize en php.ini" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6642,44 +6656,43 @@ msgstr "" "El archivo subido sobrepasa la directiva MAX_FILE_SIZE que se especificó en " "el formulario HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "El archivo subido sólo fue parcialmente subido." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "No se pudo escribir el archivo en el disco." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "La subida de archivos se detuvo por extensión." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Archivo sobrepasa la cuota del usuario." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "El archivo no se pudo mover al directorio de destino." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "No se pudo determinar tipo MIME del archivo" -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Pruebe a usar otro formato %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s no es un tipo de archivo soportado en este servidor." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar un aviso directo" @@ -6795,27 +6808,7 @@ msgstr "Dar un toque a " msgid "Send a nudge to this user" msgstr "Dar un toque a este usuario" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error al insertar el nuevo perfil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error al insertar la imagen" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error al actualizar el perfil remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error al insertar perfil remoto" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicar aviso" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." @@ -6852,7 +6845,8 @@ msgstr "Mensajes enviados" msgid "Tags in %s's notices" msgstr "Etiquetas en avisos de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Desconocido" @@ -6946,19 +6940,19 @@ msgstr "Restringir" msgid "Sandbox this user" msgstr "Imponer restricciones a este usuario" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Buscar sitio" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Palabra(s) clave" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Buscar" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Buscar ayuda" @@ -7158,56 +7152,32 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "hace unos segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "hace un minuto" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "hace %d minutos" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "hace una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "hace %d horas" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "hace un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "hace %d días" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "hace un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "hace %d meses" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 5585a34634..6af53edae3 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -1,10 +1,11 @@ -# Translation of StatusNet to Persian +# Translation of StatusNet to Persian (فارسی) +# Expored from translatewiki.net # -# Author@translatewiki.net: ArianHT -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Choxos -# Author@translatewiki.net: Everplays -# Author@translatewiki.net: Narcissus +# Author: ArianHT +# Author: Brion +# Author: Choxos +# Author: Everplays +# Author: Narcissus # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,22 +13,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-09 17:35+0000\n" -"PO-Revision-Date: 2010-09-09 17:36:54+0000\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:54+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" -"Language-Team: Persian\n" +"Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Language-Code: fa\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "دسترسی" @@ -80,10 +82,10 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -96,15 +98,15 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -202,16 +204,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$s و دوستان در %2$s" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -226,48 +228,50 @@ msgstr "به روز رسانی از %1$s و دوستان در %2$s" msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "شما باید یک پارامتر را به نام device و مقدار sms، im یا none مشخص کنید." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "کاربر هیچ نمایه‌ای ندارد." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "نمی‌توان نمایه را ذخیره کرد." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -278,30 +282,30 @@ msgid "" msgstr "" "به دلیل تنظبمات، سرور نمی‌تواند این مقدار اطلاعات (%s بایت( را دریافت کند." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "شما نمی‌توانید خودتان رو مسدود کنید!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "مسدود کردن کاربر شکست خورد." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "باز کردن کاربر ناموفق بود." @@ -325,66 +329,62 @@ msgstr "پیام‌های مستقیم به %s" msgid "All the direct messages sent to %s" msgstr "تمام پیام‌های مستقیم فرستاده‌شده به %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "هیچ پیام متنی وجود ندارد!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d نویسه است." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "کاربر گیرنده یافت نشد." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "هیچ وضعیتی با آن شناسه پیدا نشد." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "این پیغام را پیش‌تر به برگزیده‌های خود اضافه کرده‌اید" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "نمی‌توان پیام را برگزید." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "این پیام یک پیام برگزیده نیست." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "نمی‌توان پیام برگزیده را حذف کرد." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "نمی‌توان کاربر را دنبال نکرد: کاربر یافت نشد." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "نمی‌توان کاربر را دنبال کرد: %s هم‌اکنون در لیست شما است." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "نمی‌توان کاربر را دنبال نکرد: کاربر یافت نشد." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "نمی‌توانید خودتان را دنبال کنید." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "نمی‌توان کاربر منبع را تعیین کرد." @@ -393,101 +393,101 @@ msgstr "نمی‌توان کاربر منبع را تعیین کرد." msgid "Could not find target user." msgstr "نمی‌توان کاربر هدف را پیدا کرد." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "لقب نا معتبر." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "توصیف خیلی طولانی است (حداکثر %d نویسه)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نویسه)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "نام‌های مستعار بسیار زیاد هستند! حداکثر %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "نام مستعار نامعتبر است: «%s»." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "نام‌مستعار «%s» ازپیش گرفته‌شده‌است. یکی دیگر را امتحان کنید." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "گروه یافت نشد." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "شما از پیش یک عضو این گروه هستید." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "شما یک عضو این گروه نیستید." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -511,7 +511,7 @@ msgstr "%s گروه" msgid "groups on %s" msgstr "گروه‌ها در %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "بارگذاری شکست خورد." @@ -525,9 +525,9 @@ msgstr "رمز نامعتبر است." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -571,8 +571,8 @@ msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -637,18 +637,18 @@ msgstr "این روش نیازمند POST یا DELETE است." msgid "You may not delete another user's status." msgstr "شما توانایی حذف وضعیت کاربر دیگری را ندارید." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "چنین پیامی وجود ندارد." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "نمی توانید پیام خود را تکرار کنید." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "قبلا آن پیام تکرار شده است." @@ -660,21 +660,21 @@ msgstr "وضعیت حذف شد." msgid "No status with that ID found." msgstr "هیچ وضعیتی با آن شناسه یافت نشد." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "این خیلی طولانی است. بیشینهٔ طول پیام %d نویسه است." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "یافت نشد." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "بیشینهٔ طول پیام %d نویسه که شامل نشانی اینترنتی پیوست هم هست." @@ -877,7 +877,9 @@ msgid "Yes" msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -919,11 +921,13 @@ msgstr "فهرستی از افراد مسدود شده در پیوستن به ا msgid "Unblock user from group" msgstr "آزاد کردن کاربر در پیوستن به گروه" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "آزاد سازی" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "آزاد سازی کاربر" @@ -962,9 +966,9 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -972,7 +976,7 @@ msgstr "نمی‌توان کاربر را به روز کرد." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." @@ -1008,9 +1012,10 @@ msgstr "برنامه یافت نشد." msgid "You are not the owner of this application." msgstr "شما مالک این برنامه نیستید." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1044,7 +1049,7 @@ msgstr "این برنامه حذف شود" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "شما به سیستم وارد نشده اید." @@ -1107,7 +1112,6 @@ msgstr "حذف این کاربر" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "طرح" @@ -1230,13 +1234,13 @@ msgstr "بازگرداندن طرح‌های پیش‌فرض" msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" @@ -1384,7 +1388,7 @@ msgstr "نشانی پست الکترونیکی تایید شدهٔ کنونی" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1402,22 +1406,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "انصراف" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "نشانی پست الکترونیکی، مانند «UserName@example.org»" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1425,113 +1433,113 @@ msgstr "افزودن" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "پست الکترونیک ورودی" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "برای فرستادن پیام با استفاده از پست الکترونیک به این نشانی نامه بفرستید." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "نشانی جدید برای فرستادن پیام ایجاد کن؛ نشانی قبلی لغو می‌شود." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "تازه" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "ترجیحات پست الکترونیکی" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "پیام‌های کسانی را که به تازگی دنبال می‌کنم با پست الکترونیک برایم بفرست." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "هرگاه کسی پیام من را به عنوان برگزیده اضافه کرد، به من نامه فرستاده شود." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "هر وقت کسی برای من پیام خصوصی فرستاد، مرا با پست الکترونیک با خبر کن." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "هرگاه کسی به من یک «@-پاسخ» می‌فرستد، به من نامه بفرست." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" "به دوستان اجازه داده شود که به من یادآوری کنند و یک نامه به من بفرستند." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "می‌خواهم با نامه پیام بفرستم." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "یک شناسه برای پست الکترونیک من منتشر کن." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "ترجیحات پست الکترونیکی ذخیره شد." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "پست الکترونیک وجود ندارد." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "نمی‌توان نشانی را قانونی کرد" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "یک نشانی پست الکترونیکی معتبر نیست." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "هم اکنون نشانی شما همین است." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "این نشانی در حال حاضر متعلق به فرد دیگری است." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "نمی‌توان کد تایید را اضافه کرد." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1542,50 +1550,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "هیچ تاییدی برای فسخ کردن وجود ندارد." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "این نشانی پست الکترونیکی نادرست است." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "تایید پست الکترونیکی لغو شد." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "آن نشانی شما نیست." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "نشانی پست الکترونیکی پاک شده است." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "هیچ نشانی ورودی وجود ندارد." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "نمی‌توان اطلاعات کاربر را به روز کرد." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "نشانی ورودی پاک شد." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "نشانی ورودی جدید اضافه شد." @@ -1704,7 +1712,7 @@ msgstr "نمی‌توان نشانهٔ درخواست شما را به نشان msgid "Remote service uses unknown version of OMB protocol." msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده می‌کند." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." @@ -1761,7 +1769,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده msgid "User is not a member of group." msgstr "کاربر عضو گروه نیست." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "دسترسی کاربر به گروه مسدود شود" @@ -1839,40 +1847,32 @@ msgstr "نشان به‌هنگام‌سازی شد." msgid "Failed updating logo." msgstr "به‌هنگام‌سازی نشان شکست خورد." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "اعضای گروه %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "اعضای گروه %1$s، صفحهٔ %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "یک فهرست از کاربران در این گروه" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "مدیر" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "بازداشتن" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "مدیر شود" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "این کاربر یک مدیر شود" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2010,7 +2010,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2020,63 +2023,63 @@ msgstr "" "به فهرست دوستان خود در کارگیر پیام‌رسان فوری‌تان یا در GTalk مطمئن شوید." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "ترجیحات پیام‌رسان فوری" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "پیام‌ها را از راه Jabber/GTalk برای من بفرست." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "هر وقت که وضعیت Jabber/Gtalk من تغییر کرد، یک پیام بفرست." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "پاسخ کسانی که من آن‌ها را دنبال نمی‌کنم را با Jabber/Gtalk برایم بفرست." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "یک شناسهٔ کوچک برای Jabber/Gtalk من منتشر کن." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "تنظیمات ذخیره شد." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "هیچ شناسهٔ Jabber ای وجود ندارد." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "نمی‌توان شناسهٔ Jabber را تایید کرد" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "شناسهٔ Jabber درست نیست" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "این شناسه Jabber کنونی شماست." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "شناسهٔ Jabber به یک کاربر دیگر مربوط است." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2086,28 +2089,28 @@ msgstr "" "برای فرستادن پیام به شما، تایید کنید." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "نشانی پیام رسان اشتباه است." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "نمی‌توان تایید پیام‌رسان فوری را پاک کرد." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "تایید پیام‌رسان فوری لغو شد." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "این شناسهٔ Jabber شما نیست." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "نشانی پیام‌رسان فوری پاک شده است." @@ -2572,8 +2575,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "لطفا تنها از نشانی‌های اینترنتی %s از راه HTTP ساده استفاده کنید." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -2715,7 +2718,7 @@ msgid "Password saved." msgstr "گذرواژه ذخیره شد." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "مسیر ها" @@ -2926,7 +2929,7 @@ msgstr "نام‌کامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "صفحهٔ خانگی" @@ -3031,7 +3034,7 @@ msgid "Couldn't save tags." msgstr "نمی‌توان نشان را ذخیره کرد." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "تنظیمات ذخیره شد." @@ -3555,7 +3558,7 @@ msgstr "StatusNet" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "نشست‌ها" @@ -3589,24 +3592,24 @@ msgid "Application profile" msgstr "نمایهٔ برنامه" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "شمایل" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "نام" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "سازمان" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "توصیف" @@ -3720,7 +3723,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "این یک راه است برای به اشتراک گذاشتن آنچه که دوست دارید." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "گروه %s" @@ -3772,7 +3775,7 @@ msgstr "خوراک پیام برای گروه %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF برای گروه %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "اعضا" @@ -4220,7 +4223,7 @@ msgstr "کدی وارد نشد" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "تصاویر لحظه‌ای" @@ -4737,15 +4740,6 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 -#, php-format -msgid "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." -msgstr "" - #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4899,7 +4893,7 @@ msgid "Missing profile." msgstr "نمایه وجود ندارد." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "شما از اشتراک منع شده‌اید." @@ -5042,7 +5036,8 @@ msgid "Change site configuration" msgstr "تغییر پیکربندی وب‌گاه" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "مدیر" @@ -5119,7 +5114,7 @@ msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "پیام وب‌گاه" @@ -5183,7 +5178,10 @@ msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5193,13 +5191,16 @@ msgstr "" "broughtbyurl%%) برای شما راه‌اندازی شده است." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5211,49 +5212,50 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html) در دسترس است." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "مجوز محتویات وب‌گاه" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "محتویات و داده‌های %1$s خصوصی و محرمانه هستند." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "حق تکثیر محتوا و داده‌ها با %1$s است. تمام حقوق محفوظ است." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "حق تکثیر محتوا و داده‌ها با مشارکت‌کنندگان است. تمام حقوق محفوظ است." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "تمام محتویات و داده‌های %1$s زیر مجوز %2$s در دسترس هستند." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "صفحه بندى" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "قبل از" @@ -5263,207 +5265,226 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "" "در حال انتظار برای یک عامل خوراک ریشه‌ای، اما یک سند XML کامل دریافت شد." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "هنوز نمی‌توان محتویات ازراه‌دور را به‌کار برد." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "هنوز نمی‌توان محتویات XML جاسازی‌شده را به‌کار برد." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "هنوز نمی‌توان محتوای جاسازی‌شدهٔ Base64 را به‌کار برد." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "شما نمی توانید در این وب‌گاه تغییر ایجاد کنید" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "تغییرات در آن قطعه مجاز نیست." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() پیاده نشده است." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() پیاده نشده است." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "پیکربندی اولیه وب‌گاه" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "وب‌گاه" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "پیکربندی طرح" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "طرح" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "پیکربندی کاربر" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "کاربر" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "پیکربندی دسترسی" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "پیکربندی مسیرها" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "پیکربندی نشست‌ها" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "ویرایش پیام وب‌گاه" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "پیکربندی تصاویر لحظه‌ای" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "منبع API به دسترسی خواندن-نوشتن نیاز دارد، اما شما تنها دسترسی خواندن را " "دارید." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "ویرایش برنامه" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "شمایل این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "برنامهٔ خود را در %d نویسه توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "برنامهٔ خود را توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "نشانی اینترنتی صفحهٔ خانگی این برنامه" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "نشانی اینترنتی منبع" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "سازمان مسئول این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "نشانی اینترنتی برای صفحهٔ خانگی سازمان" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "نشانی اینترنتی برای دوباره‌هدایت‌کردن بعد از تصدیق" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "مرورگر" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "میزکار" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "نوع برنامه، مرورگر یا میزکار" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "تنها خواندنی" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "خواندن-نوشتن" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "انصراف" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "خواندن-نوشتن" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "تایید شده %1$s - با دسترسی «%2$s»" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "لغو کردن" @@ -5483,11 +5504,13 @@ msgstr "مؤلف" msgid "Provider" msgstr "مهیا کننده" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "پیام‌هایی که این پیوست در آن‌جا ظاهر می‌شود" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "برچسب‌ها برای این پیوست" @@ -5499,6 +5522,11 @@ msgstr "تغییر گذرواژه شکست خورد" msgid "Password changing is not allowed" msgstr "تغییر گذرواژه مجاز نیست" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "بازداشتن" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "نتیجه دستور" @@ -5674,6 +5702,13 @@ msgstr "" msgid "Can't subscribe to OMB profiles by command." msgstr "نمی‌توان با دستور مشترک نمایه‌های OMB شد." +#. TRANS: Text shown after having subscribed to another user successfully. +#. TRANS: %s is the name of the user the subscription was requested for. +#: lib/command.php:672 +#, 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:694 lib/command.php:804 @@ -5739,7 +5774,7 @@ msgid "You are not subscribed to anyone." msgstr "شما مشترک هیچ‌کسی نشده‌اید." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5753,7 +5788,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5767,13 +5802,14 @@ msgid "You are not a member of any groups." msgstr "شما در هیچ گروهی عضو نیستید ." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه هستید:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5985,38 +6021,6 @@ msgstr "مکان گروه، در صورت وجود داشتن، مانند «ش msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "نام‌های مستعار اضافی برای گروه، با کاما- یا فاصله- جدا شود، بیشینه %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "گروه" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "مسدود شده" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s کاربر مسدود شده" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "خصوصیلت گروه %s ویرایش" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "نشان" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "افزودن یا ویرایش نشان" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "طرح %s را اضافه یا ویرایش کنید" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "گروه های با اعضاء بیشتر" @@ -6044,7 +6048,8 @@ msgstr "فرمت(فایل) عکس پشتیبانی نشده." msgid "That file is too big. The maximum file size is %s." msgstr "این پرونده خیلی بزرگ است. بیشینهٔ اندازهٔ پرونده %s است." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد." @@ -6444,59 +6449,61 @@ msgstr "با عرض پوزش، اجازه‌ی ورودی پست الکترون msgid "Unsupported message type: %s" msgstr "نوع پیام پشتیبانی نشده است: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "یک خطای پایگاه داده هنگام ذخیره کردن فایل شما رخ داد. لطفا بعدا سعی کنید." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "نتها اندکی از فایل بارگذاری‌شده فرستاده شد." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "گم شدن یک پوشه ی موقتی." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "شکست خوردن در نوشتن فایل روی دیسک." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "بارگذاری پرونده توسط افزونه متوقف شد." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "پرونده از سهمیهٔ کاربر می‌گذرد." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "فایل نتوانست به دایرکتوری مقصد منتقل شود." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "نمی‌توان فرمت پرونده را تعیین کرد." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "تلاش برای امتحان نوع دیگر %s" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s یک گونهٔ پروندهٔ پیشتیبانی شده روی این کارگزار نیست." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "فرستادن یک پیام مستقیم" @@ -6607,27 +6614,7 @@ msgstr "یادآوری‌کردن" msgid "Send a nudge to this user" msgstr "یک یادآوری به این کاربر فرستاده شود" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "هنگام قرار دادن نمایهٔ تازه خطا رخ داد" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "هنگام افزودن چهره خطایی رخ داد" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "هنگام به‌روز کردن نمایهٔ از راه دور خطا رخ داد" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "هنگام افزودن نمایهٔ ازراه‌دور خطایی رخ داد" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "رونوشت‌برداری از پیام" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "نمی‌توان اشتراک تازه‌ای افزود." @@ -6664,7 +6651,8 @@ msgstr "پیام‌های فرستاده شدهٔ شما" msgid "Tags in %s's notices" msgstr "برچسب‌ها در پیام‌های %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "ناشناخته" @@ -6746,19 +6734,19 @@ msgstr "دسترسی کاربر به گروه مسدود شود" msgid "No single user defined for single-user mode." msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است." -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "جست‌وجوی وب‌گاه" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "کلمه(های) کلیدی" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "جست‌وجو" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "راهنمای جستجو" @@ -6934,56 +6922,32 @@ msgid "Moderator" msgstr "مدیر" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "چند ثانیه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "حدود %d دقیقه پیش" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "حدود %d ساعت پیش" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "حدود یک روز پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "حدود %d روز پیش" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "حدود یک ماه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "حدود %d ماه پیش" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 5cb62b22da..fd00b99d7d 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -1,8 +1,12 @@ -# Translation of StatusNet to Finnish +# Translation of StatusNet to Finnish (Suomi) +# Expored from translatewiki.net # -# Author@translatewiki.net: Crt -# Author@translatewiki.net: Jaakko -# Author@translatewiki.net: McDutchie +# Author: Crt +# Author: Jaakko +# Author: Josutus +# Author: McDutchie +# Author: Nike +# Author: Str4nd # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,16 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:01+0000\n" -"Language-Team: Finnish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:53+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -41,23 +46,34 @@ msgstr "" msgid "Closed" msgstr "Suljettu" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 +msgctxt "BUTTON" +msgid "Save" +msgstr "Tallenna" + #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 msgid "No such page." -msgstr "Tuota tagia ei ole." +msgstr "Sivua ei ole." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -72,12 +88,6 @@ msgstr "Tuota tagia ei ole." msgid "No such user." msgstr "Käyttäjää ei ole." -#. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:90 -#, php-format -msgid "%1$s and friends, page %2$d" -msgstr "%s ja kaverit" - #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname #. TRANS: Message is used as link title. %s is a user nickname. @@ -121,8 +131,8 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Kokeile useamman käyttäjän tilaamista, [liity ryhmään] (%%action.groups%%) " -"tai lähetä päivitys itse." +"Kokeile useamman käyttäjän tilaamista [liittymällä ryhmään](%%action.groups%" +"%) tai kirjoita päivitys." #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 #, php-format @@ -134,7 +144,7 @@ msgstr "" #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" -msgstr "Sinä ja kaverit" +msgstr "Sinä ja kaverisi" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. @@ -144,39 +154,74 @@ msgstr "Sinä ja kaverit" msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 -msgid "This method requires a POST." -msgstr "Tämä metodi edellyttää POST sanoman." +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found." +msgstr "API-metodia ei löytynyt." -#: actions/apiaccountupdatedeliverydevice.php:106 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 +msgid "This method requires a POST." +msgstr "Tämä metodi edellyttää POST-pyynnön." + +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdatedeliverydevice.php:134 +msgid "Could not update user." +msgstr "Käyttäjän päivitys epäonnistui." + +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofile.php:148 +msgid "Could not save profile." +msgstr "Profiilin tallennus epäonnistui." + +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -186,15 +231,25 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:105 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings." +msgstr "Ulkoasun tallennus epäonnistui." + +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Sinä et voi poistaa käyttäjiä." -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Käyttäjän esto epäonnistui." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Käyttäjän eston poisto epäonnistui." @@ -218,59 +273,50 @@ msgstr "Suorat viestit käyttäjälle %s" msgid "All the direct messages sent to %s" msgstr "Kaikki suorat viestit käyttäjälle %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Viestissä ei ole tekstiä!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Vastaanottajaa ei löytynyt." -#: actions/apidirectmessagenew.php:142 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." - -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Ei voitu lopettaa tilausta: Käyttäjää ei löytynyt." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Ei voitu tilata käyttäjää: %s on jo listallasi" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Ei voitu lopettaa tilausta: Käyttäjää ei löytynyt." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Sinä et voi poistaa käyttäjiä." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Ei voitu päivittää käyttäjää." @@ -279,7 +325,7 @@ msgstr "Ei voitu päivittää käyttäjää." msgid "Could not find target user." msgstr "Ei voitu päivittää käyttäjää." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -287,83 +333,83 @@ msgstr "" "Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " "välilyöntiä." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max %d merkkiä)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Liikaa aliaksia. Maksimimäärä on %d." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" on jo käytössä. Yritä toista aliasta." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias ei voi olla sama kuin ryhmätunnus." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Ei löytynyt." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -382,7 +428,7 @@ msgstr "Käyttäjän %s ryhmät" msgid "%s groups" msgstr "Käyttäjän %s ryhmät" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Komento epäonnistui" @@ -392,9 +438,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -427,8 +473,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -481,13 +527,13 @@ msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." msgid "You may not delete another user's status." msgstr "Et voi poistaa toisen käyttäjän päivitystä." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Päivitystä ei ole." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Tätä päivitystä ei voi poistaa." @@ -499,21 +545,21 @@ msgstr "Päivitys poistettu." msgid "No status with that ID found." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Ei löytynyt." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." @@ -548,11 +594,6 @@ msgstr "" msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "%s päivitykset kaikilta!" - #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" @@ -653,7 +694,7 @@ msgstr "Kuva poistettu." #: actions/block.php:69 msgid "You already blocked that user." -msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" +msgstr "!!FUZZZY!!Olet jos tilannut seuraavien käyttäjien päivitykset:" #: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 msgid "Block user" @@ -685,7 +726,9 @@ msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -717,11 +760,13 @@ msgstr "Lista käyttäjistä, jotka ovat estetty liittymästä tähän ryhmään msgid "Unblock user from group" msgstr "Poista käyttäjän esto ryhmästä" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Poista esto" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" @@ -743,12 +788,6 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -760,9 +799,9 @@ msgstr "Tämä osoite on jo vahvistettu." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -770,7 +809,7 @@ msgstr "Ei voitu päivittää käyttäjää." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." @@ -801,9 +840,10 @@ msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." msgid "Application not found." msgstr "Vahvistuskoodia ei löytynyt." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -820,7 +860,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Et ole kirjautunut sisään." @@ -881,7 +921,6 @@ msgstr "Poista käyttäjä" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Ulkoasu" @@ -897,10 +936,6 @@ msgstr "Vaihda väriä" msgid "Site logo" msgstr "Palvelun ilmoitus" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -952,13 +987,13 @@ msgstr "" msgid "Use defaults" msgstr "Käytä oletusasetuksia" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -976,10 +1011,6 @@ msgstr "Lisää suosikkeihin" msgid "No such document \"%s\"" msgstr "Liitettä ei ole." -#: actions/editapplication.php:54 -msgid "Edit Application" -msgstr "" - #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" @@ -1064,7 +1095,7 @@ msgstr "Tämän hetken vahvistettu sähköpostiosoite." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1080,123 +1111,111 @@ msgstr "" "sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " "lisäohjeita. " -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Saapuva sähköposti" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " "osoitteen" -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Sähköpostiosoitteet" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Lähetä sähköpostilla tieto uusista tilaajista." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Lähetä sähköpostia, jos joku lähettää minulle \"@-vastauksen\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Haluan lähettää päivityksiä sähköpostilla." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Sähköpostiosoitetta ei ole." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Tämä on jo sähköpostiosoitteesi." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Ei voitu asettaa vahvistuskoodia." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1208,45 +1227,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Avoimia vahvistuksia ei ole peruutettavana." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Tämä ei ole sähköpostiosoitteesi." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Saapuvan sähköpostin osoite poistettu." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Saapuvan sähköpostin osoitetta ei ole." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Ei voitu päivittää käyttäjätietoja." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Saapuvan sähköpostin osoite poistettu." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." @@ -1310,11 +1329,6 @@ msgstr "Esittelyssä olevat käyttäjät" msgid "Featured users, page %d" msgstr "Esittelyssä olevat käyttäjät, sivu %d" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some great users on %s" -msgstr "" - #: actions/file.php:34 msgid "No notice ID." msgstr "Päivitystä ei ole." @@ -1335,10 +1349,6 @@ msgstr "Liitettä ei ole." msgid "Not expecting this response!" msgstr "Odottamaton vastaus saatu!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Voit käyttää paikallista tilausta!" @@ -1355,10 +1365,6 @@ msgstr "Sinulla ei ole valtuutusta tähän." msgid "Could not convert request token to access token." msgstr "Ei saatu request tokenia." -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:79 msgid "No such file." msgstr "Tiedostoa ei ole." @@ -1385,12 +1391,6 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "No profile specified." msgstr "Profiilia ei ole määritelty." -#: actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unsubscribe.php:84 lib/profileformaction.php:86 -msgid "No profile with that ID." -msgstr "Ei profiilia tuolle ID:lle." - #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1408,7 +1408,7 @@ msgstr "Käyttäjää ei ole estetty ryhmästä." msgid "User is not a member of group." msgstr "Käyttäjä ei kuulu tähän ryhmään." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Estä käyttäjä ryhmästä" @@ -1430,10 +1430,6 @@ msgstr "Älä estä tätä käyttäjää tästä ryhmästä" msgid "Block this user from this group" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" -#: actions/groupbyid.php:74 actions/userbyid.php:70 -msgid "No ID." -msgstr "Ei Jabber ID -osoitetta" - #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "" @@ -1462,12 +1458,6 @@ msgstr "Ulkoasuasetukset tallennettu." msgid "Group logo" msgstr "Ryhmän logo" -#: actions/grouplogo.php:153 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." - #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" @@ -1480,40 +1470,32 @@ msgstr "Logo päivitetty." msgid "Failed updating logo." msgstr "Logon päivittäminen epäonnistui." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Ryhmän %s jäsenet" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Ryhmän %s jäsenet" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Lista ryhmän käyttäjistä." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Estä" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Tee ylläpitäjäksi" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Tee tästä käyttäjästä ylläpitäjä" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1634,7 +1616,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1645,65 +1630,65 @@ msgstr "" "GTalkissa." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Asetukset tallennettu." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " "tilannut. " #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Asetukset tallennettu." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Ei Jabber ID -osoitetta" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Ei voida normalisoida Jabber ID -tunnusta" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Tuo ei ole kelvollinen Jabber ID." #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Tämä on jo Jabber ID -tunnuksesi." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1713,23 +1698,23 @@ msgstr "" "antaa osoitteelle %s oikeus lähettää viestejä sinulle." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Tämä on väärä pikaviestiosoite." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Varmistuskoodia ei ole annettu." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Tämä ei ole Jabber ID-tunnuksesi." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Saapuvan sähköpostin osoite poistettu." @@ -1767,7 +1752,7 @@ msgstr "Kutsu uusia käyttäjiä" #: actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" +msgstr "Olet jo tilannut seuraavien käyttäjien päivitykset:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -1818,12 +1803,6 @@ msgstr "Henkilökohtainen viesti" msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1943,12 +1922,6 @@ msgstr "" "Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " "asetuksiesi muuttamista." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän." @@ -2048,11 +2021,6 @@ msgstr "" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Tönäisy lähetetty" @@ -2065,6 +2033,15 @@ msgstr "Tönäisy lähetetty!" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -2091,12 +2068,6 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2104,8 +2075,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2224,7 +2195,7 @@ msgid "Password saved." msgstr "Salasana tallennettu." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Polut" @@ -2232,16 +2203,6 @@ msgstr "Polut" msgid "Path and server settings for this StatusNet site." msgstr "Polut ja palvelin asetukset tälle StatusNet palvelulle." -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2278,6 +2239,10 @@ msgstr "" msgid "Theme path" msgstr "" +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + #: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Taustakuvan hakemisto" @@ -2306,18 +2271,10 @@ msgstr "" msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:335 -msgid "SSL server" -msgstr "" - #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2375,7 +2332,7 @@ msgstr "Koko nimi" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Kotisivu" @@ -2403,10 +2360,6 @@ msgstr "Tietoja" msgid "Location" msgstr "Kotipaikka" -#: actions/profilesettings.php:134 actions/register.php:480 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" - #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" msgstr "" @@ -2438,7 +2391,7 @@ msgstr "Aikavyöhyke" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "Missä aikavyöhykkeessä olet normaalisti?" +msgstr "Millä aikavyöhykkeellä olet tavallisesti?" #: actions/profilesettings.php:167 msgid "" @@ -2458,7 +2411,7 @@ msgstr "Aikavyöhykettä ei ole valittu." #: actions/profilesettings.php:241 msgid "Language is too long (max 50 chars)." -msgstr "Kieli on liian pitkä (max 50 merkkiä)." +msgstr "Kieli on liian pitkä (enintään 50 merkkiä)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format @@ -2478,7 +2431,7 @@ msgid "Couldn't save tags." msgstr "Tageja ei voitu tallentaa." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Asetukset tallennettu." @@ -2531,14 +2484,6 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:247 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Julkinen tagipilvi" @@ -2635,10 +2580,6 @@ msgstr "Salasanan palautuspyyntö lähetetty." msgid "Unknown action" msgstr "Tuntematon toiminto" -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" - #: actions/recoverpassword.php:243 msgid "Reset" msgstr "Vaihda" @@ -2777,33 +2718,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2857,19 +2771,11 @@ msgstr "Tilaa" msgid "Invalid profile URL (bad format)" msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "Ei saatu request tokenia." - #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Sinä kuulut jo tähän ryhmään." @@ -2912,7 +2818,7 @@ msgstr "Päivityksesi tähän palveluun on estetty." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2933,13 +2839,13 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" @@ -2953,10 +2859,18 @@ msgstr "Tilastot" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -3027,7 +2941,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Ryhmä %s" @@ -3079,16 +2993,10 @@ msgstr "Syöte ryhmän %s päivityksille (Atom)" msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:398 lib/profileaction.php:117 -#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 -#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 -msgid "(None)" -msgstr "(Tyhjä)" - #: actions/showgroup.php:404 msgid "All members" msgstr "Kaikki jäsenet" @@ -3107,15 +3015,6 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:461 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - #: actions/showgroup.php:489 msgid "Admins" msgstr "Ylläpitäjät" @@ -3189,14 +3088,6 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" @@ -3423,7 +3314,7 @@ msgstr "Koodia ei ole syötetty." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3431,6 +3322,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Sähköpostiosoitteen vahvistus" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3695,13 +3590,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Valtuuta tilaus" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "Lisenssi" @@ -3727,24 +3615,10 @@ msgstr "Ei valtuutuspyyntöä!" msgid "Subscription authorized" msgstr "Tilaus sallittu" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tilaus hylätty" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3770,16 +3644,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -4064,24 +3928,12 @@ msgstr "Nimetön sivu" msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Vaihda salasanasi" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -4097,7 +3949,7 @@ msgstr "Kirjaudu sisään" #: lib/action.php:490 msgctxt "MENU" msgid "Logout" -msgstr "Logo" +msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:495 @@ -4125,7 +3977,7 @@ msgstr "Hae lisää ryhmiä" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Palvelun ilmoitus" @@ -4184,22 +4036,17 @@ msgstr "Ota yhteyttä" msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** on mikroblogipalvelu." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4212,43 +4059,44 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Sivutus" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Myöhemmin" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Aiemmin" @@ -4257,96 +4105,134 @@ msgstr "Aiemmin" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Kuvaus" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Peruuta" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" @@ -4356,10 +4242,16 @@ msgstr "" msgid "Provider" msgstr "Esikatselu" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Estä" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Komennon tulos" @@ -4372,6 +4264,13 @@ msgstr "Komento suoritettu" msgid "Command failed" msgstr "Komento epäonnistui" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4399,6 +4298,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4433,13 +4346,6 @@ msgid "" "same server." msgstr "" -#. TRANS: Message given if content is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 -#, php-format -msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." @@ -4450,22 +4356,18 @@ msgstr "Tapahtui virhe suoran viestin lähetyksessä." 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. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#. 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:672 #, php-format -msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgid "Subscribed to %s." msgstr "" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." -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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -4506,26 +4408,15 @@ msgstr "" msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" -#. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a -#. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:836 -msgid "You are subscribed to this person:" -msgid_plural "You are subscribed to these people:" -msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:" -msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" - -#. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a -#. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 -msgid "This person is subscribed to you:" -msgid_plural "These people are subscribed to you:" -msgstr[0] "Toista ei voitu asettaa tilaamaan sinua." -msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." +#. 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4533,6 +4424,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4681,24 +4573,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Ryhmä" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Muokkaa %s ryhmän ominaisuuksia" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Ryhmät, joissa eniten jäseniä" @@ -4725,7 +4599,8 @@ msgstr "Kuvatiedoston formaattia ei ole tuettu." msgid "Partial upload." msgstr "Osittain ladattu palvelimelle." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." @@ -4968,6 +4843,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -5006,10 +4886,6 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 -msgid "from" -msgstr "" - #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." @@ -5026,56 +4902,75 @@ msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Ei voitu poistaa suosikkia." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5090,11 +4985,6 @@ msgstr "Vastaanottaja" msgid "Available characters" msgstr "Sallitut merkit" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Lähetä päivitys" @@ -5112,14 +5002,6 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - -#: lib/noticeform.php:216 -msgid "Do not share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -5154,10 +5036,6 @@ msgstr "" msgid "web" msgstr "" -#: lib/noticelist.php:603 -msgid "Repeated by" -msgstr "" - #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" @@ -5178,23 +5056,7 @@ msgstr "Tönäise" msgid "Send a nudge to this user" msgstr "Lähetä tönäisy tälle käyttäjälle" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Virhe tapahtui uuden profiilin lisäämisessä" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Virhe tapahtui profiilikuvan lisäämisessä" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Virhe tapahtui etäprofiilin päivittämisessä" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." @@ -5292,14 +5154,12 @@ msgstr "Kyllä" msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Haku" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Henkilö" @@ -5452,56 +5312,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "muutama sekunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "noin minuutti sitten" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "noin %d minuuttia sitten" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "noin tunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "noin %d tuntia sitten" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "noin päivä sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "noin %d päivää sitten" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "noin kuukausi sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "noin %d kuukautta sitten" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index bd905de29f..3d33750341 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -1,16 +1,17 @@ -# Translation of StatusNet to French +# Translation of StatusNet to French (Français) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Crochet.david -# Author@translatewiki.net: IAlex -# Author@translatewiki.net: Isoph -# Author@translatewiki.net: Jean-Frédéric -# Author@translatewiki.net: Julien C -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Patcito -# Author@translatewiki.net: Peter17 -# Author@translatewiki.net: Sherbrooke -# Author@translatewiki.net: Y-M D +# Author: Brion +# Author: Crochet.david +# Author: IAlex +# Author: Isoph +# Author: Jean-Frédéric +# Author: Julien C +# Author: McDutchie +# Author: Patcito +# Author: Peter17 +# Author: Sherbrooke +# Author: Y-M D # -- # This file is distributed under the same license as the StatusNet package. # @@ -18,20 +19,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:11+0000\n" -"Language-Team: French\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:55+0000\n" +"Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accès" @@ -84,10 +86,10 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -100,15 +102,15 @@ msgstr "Page non trouvée." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -209,16 +211,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -233,21 +235,23 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" msgid "API method not found." msgstr "Méthode API non trouvée !" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Ce processus requiert un POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -255,27 +259,27 @@ msgstr "" "Vous devez spécifier un paramètre « device » avec une des valeurs suivantes : " "sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Impossible de mettre à jour l’utilisateur." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Impossible d’enregistrer le profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -287,30 +291,30 @@ msgstr "" "Le serveur n’a pas pu gérer autant de données de POST (%s octets) en raison " "de sa configuration actuelle." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Impossible de sauvegarder les parmètres de la conception." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Impossible de mettre à jour votre conception." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Vous ne pouvez pas vous bloquer vous-même !" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Le blocage de l’utilisateur a échoué." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Le déblocage de l’utilisateur a échoué." @@ -334,61 +338,61 @@ msgstr "Messages directs envoyés à %s" msgid "All the direct messages sent to %s" msgstr "Tous les messages directs envoyés à %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Message sans texte !" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "C’est trop long ! La taille maximale du message est de %d caractères." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Destinataire non trouvé." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Vous ne pouvez envoyer des messages personnels qu’aux utilisateurs inscrits " "comme amis." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Aucun statut trouvé avec cet identifiant. " -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Cet avis est déjà un favori." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Impossible de créer le favori." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Cet avis n’est pas un favori." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Impossible de supprimer le favori." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Impossible de suivre l’utilisateur : profil non trouvé." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossible de suivre l’utilisateur : %s est déjà dans votre liste." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Impossible de ne plus suivre l’utilisateur : utilisateur non trouvé." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Vous ne pouvez pas ne plus vous suivre vous-même." @@ -404,7 +408,7 @@ msgstr "Impossible de déterminer l’utilisateur source." msgid "Could not find target user." msgstr "Impossible de trouver l’utilisateur cible." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -412,95 +416,95 @@ msgstr "" "Les pseudos ne peuvent contenir que des caractères minuscules et des " "chiffres, sans espaces." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Pseudo invalide." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "L’adresse du site personnel n’est pas un URL valide. " -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Nom complet trop long (maximum de 255 caractères)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La description est trop longue (%d caractères maximum)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Emplacement trop long (maximum de 255 caractères)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Trop d’alias ! Maximum %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias invalide : « %s »." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias « %s » déjà utilisé. Essayez-en un autre." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L’alias ne peut pas être le même que le pseudo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Groupe non trouvé." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Vous avez été bloqué de ce groupe par l’administrateur." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Vous n’êtes pas membre de ce groupe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -530,7 +534,7 @@ msgstr "Groupes de %s" msgid "groups on %s" msgstr "groupes sur %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Échec du téléversement." @@ -544,9 +548,9 @@ msgstr "Jeton incorrect." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -596,8 +600,8 @@ msgstr "Le jeton de connexion %s a été refusé et révoqué." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -663,18 +667,18 @@ msgstr "Ce processus requiert un POST ou un DELETE." msgid "You may not delete another user's status." msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Avis non trouvé." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Vous ne pouvez pas reprendre votre propre avis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Vous avez déjà repris cet avis." @@ -686,21 +690,21 @@ msgstr "Statut supprimé." msgid "No status with that ID found." msgstr "Aucun statut trouvé avec cet identifiant." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Le client doit fournir un paramètre « statut » avec une valeur." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "C’est trop long ! La taille maximale de l’avis est de %d caractères." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trouvé." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -904,7 +908,9 @@ msgid "Yes" msgstr "Oui" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -946,11 +952,13 @@ msgstr "Une liste des utilisateurs dont l’inscription à ce groupe est bloqué msgid "Unblock user from group" msgstr "Débloquer l’utilisateur de ce groupe" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Débloquer" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" @@ -989,9 +997,9 @@ msgstr "Cette adresse a déjà été confirmée." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -999,7 +1007,7 @@ msgstr "Impossible de mettre à jour l’utilisateur." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." @@ -1035,9 +1043,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1071,7 +1080,7 @@ msgstr "Supprimer cette application" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non connecté." @@ -1134,7 +1143,6 @@ msgstr "Supprimer cet utilisateur" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Conception" @@ -1256,13 +1264,13 @@ msgstr "Restaurer les conceptions par défaut" msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" @@ -1418,7 +1426,7 @@ msgstr "Adresse courriel actuellement confirmée." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1436,22 +1444,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Adresse de courriel (ex : nom@example.org)" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1459,112 +1471,112 @@ msgstr "Ajouter" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Courriel entrant" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Écrivez à cette adresse courriel pour poster de nouveaux avis." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Nouvelle adresse courriel pour poster ; annule l’ancienne." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nouveau" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Préférences de courrier électronique" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Avertissez-moi par courriel des nouveaux abonnements." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envoyez-moi un courriel quand un utilisateur ajoute un de mes avis à ses " "favoris." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie un message personnel." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie une réponse « @ »." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Autoriser mes amis à m’envoyer des courriels et des clins d’œil." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Je veux envoyer mes avis par courriel." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publier un MicroID pour mon adresse courriel." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Préférences de courrier électronique enregistrées." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Aucune adresse électronique." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse courriel invalide." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Vous utilisez déjà cette adresse courriel." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Impossible d’insérer le code de confirmation." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1575,50 +1587,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Aucune confirmation à annuler." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Cette adresse de messagerie électronique est erronée." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Confirmation de courrier électronique annulée." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Ceci n’est pas votre adresse courriel." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "L’adresse électronique a été supprimée." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Aucune adresse de courriel entrant." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Impossible de mettre à jour le dossier de l’utilisateur." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "L’adresse de courriel entrant a été supprimée." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nouvelle adresse de courriel entrant ajoutée." @@ -1737,7 +1749,7 @@ msgstr "Impossible de convertir le jeton de requête en jeton d’accès." msgid "Remote service uses unknown version of OMB protocol." msgstr "Le service distant utilise une version inconnue du protocole OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Erreur lors de la mise à jour du profil distant." @@ -1794,7 +1806,7 @@ msgstr "Cet utilisateur est déjà bloqué pour le groupe." msgid "User is not a member of group." msgstr "L’utilisateur n’est pas membre du groupe." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" @@ -1877,40 +1889,32 @@ msgstr "Logo mis à jour." msgid "Failed updating logo." msgstr "La mise à jour du logo a échoué." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membres du groupe %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membres du groupe %1$s - page %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloquer" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Faire un administrateur" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Faire de cet utilisateur un administrateur" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2052,7 +2056,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2063,66 +2070,66 @@ msgstr "" "GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Préférences de messagerie instantanée" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Envoyez-moi les avis par Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Poster un avis chaque fois que mon statut est modifié dans Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " "suis pas abonné." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Préférences enregistrées" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Aucun identifiant Jabber" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Impossible d’utiliser cet identifiant Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Identifiant Jabber invalide." #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Vous utilisez déjà cet idenfiant Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2132,28 +2139,28 @@ msgstr "" "instantanée. Vous devez approuver %s pour recevoir des messages." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Cette adresse de messagerie instantanée est erronée." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Impossible de supprimer la confirmation de messagerie instantanée." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Confirmation de messagerie instantanée annulée." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Ceci n’est pas votre identifiant Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "L’adresse de messagerie instantanée a été supprimée." @@ -2636,8 +2643,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2778,7 +2785,7 @@ msgid "Password saved." msgstr "Mot de passe enregistré." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Chemins" @@ -2992,7 +2999,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site personnel" @@ -3099,7 +3106,7 @@ msgid "Couldn't save tags." msgstr "Impossible d’enregistrer les marques." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Préférences enregistrées." @@ -3648,7 +3655,7 @@ msgstr "L’utilisateur est déjà dans le bac à sable." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessions" @@ -3686,24 +3693,24 @@ msgid "Application profile" msgstr "Profil de l’application" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icône" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -3818,7 +3825,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "C’est un moyen de partager ce que vous aimez." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Groupe %s" @@ -3870,7 +3877,7 @@ msgstr "Fil des avis du groupe %s (Atom)" msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membres" @@ -4331,7 +4338,7 @@ msgstr "Aucun code entré" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Instantanés" @@ -5073,7 +5080,7 @@ msgid "Unable to save tag." msgstr "Impossible d’enregistrer l’étiquette." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Il vous a été interdit de vous abonner." @@ -5221,7 +5228,8 @@ msgid "Change site configuration" msgstr "Modifier la configuration du site" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrer" @@ -5298,7 +5306,7 @@ msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Notice du site" @@ -5362,7 +5370,10 @@ msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5372,13 +5383,16 @@ msgstr "" "%site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** est un service de micro-blogging." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5390,20 +5404,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licence du contenu du site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5411,33 +5425,34 @@ msgstr "" "réservés." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " "droits réservés." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Tous les contenus %1$s et les données sont disponibles sous la licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Après" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Avant" @@ -5446,209 +5461,228 @@ msgstr "Avant" msgid "Expecting a root feed element but got a whole XML document." msgstr "Attendait un élément racine mais a reçu tout un document XML." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Impossible de gérer le contenu distant pour le moment." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Impossible de gérer le contenu XML embarqué pour le moment." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Vous ne pouvez pas faire de modifications sur ce site." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "La modification de ce panneau n’est pas autorisée." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() n’a pas été implémentée." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuration basique du site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuration de la conception" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Conception" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuration d’accès" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuration des chemins" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuration des sessions" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Modifier l'avis du site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuration des instantanés" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "La ressource de l’API a besoin de l’accès en lecture et en écriture, mais " "vous n’y avez accès qu’en lecture." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Modifier votre application" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icône pour cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Décrivez votre application en %d caractères" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Décrivez votre application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL de la page d’accueil de cette application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL source" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organisation responsable de cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL de la page d’accueil de l’organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL vers laquelle rediriger après l’authentification" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navigateur" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Bureau" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Type d’application, navigateur ou bureau" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Lecture seule" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lecture-écriture" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Annuler" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lecture-écriture" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "lecture seule" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accès « %2$s » approuvé le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" @@ -5668,11 +5702,13 @@ msgstr "Auteur" msgid "Provider" msgstr "Fournisseur" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Avis sur lesquels cette pièce jointe apparaît." -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Marques de cette pièce jointe" @@ -5684,6 +5720,11 @@ msgstr "La modification du mot de passe a échoué" msgid "Password changing is not allowed" msgstr "La modification du mot de passe n’est pas autorisée" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloquer" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Résultats de la commande" @@ -5939,7 +5980,7 @@ msgid "You are not subscribed to anyone." msgstr "Vous n’êtes abonné(e) à personne." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5954,7 +5995,7 @@ msgid "No one is subscribed to you." msgstr "Personne ne s’est abonné à vous." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5969,7 +6010,7 @@ msgid "You are not a member of any groups." msgstr "Vous n’êtes membre d’aucun groupe." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5977,6 +6018,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6202,38 +6244,6 @@ msgstr "" "Pseudos supplémentaires pour le groupe, séparés par des virgules ou des " "espaces, %d au maximum" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Groupe" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloqué" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s utilisateurs bloqués" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Modifier les propriétés du groupe %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Ajouter ou modifier le logo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Ajouter ou modifier la conception de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groupes avec le plus de membres" @@ -6266,7 +6276,8 @@ msgstr "Ce fichier est trop grand. La taille maximale est %s." msgid "Partial upload." msgstr "Transfert partiel." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." @@ -6671,17 +6682,20 @@ msgstr "Désolé, la réception de courriels n’est pas permise." msgid "Unsupported message type: %s" msgstr "Type de message non supporté : %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Une erreur de base de données s’est produite pendant la sauvegarde de votre " "fichier. Veuillez réessayer." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Le fichier importé dépasse le réglage upload_max_filesize de php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6689,44 +6703,43 @@ msgstr "" "Le fichier importé dépasse le réglage MAX_FILE_SIZE qui a été précisé dans " "le formulaire HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n’a été que partiellement importé." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Un dossier temporaire est manquant." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Impossible d’écrire sur le disque." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Import de fichier stoppé par une extension." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Le fichier dépasse le quota de l’utilisateur." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Le fichier n’a pas pu être déplacé dans le dossier de destination." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Impossible de déterminer le type MIME du fichier." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Essayez d’utiliser un autre %s format." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s n’est pas un type de fichier supporté sur ce serveur." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envoyer un message direct" @@ -6842,27 +6855,7 @@ msgstr "Clin d’œil" msgid "Send a nudge to this user" msgstr "Envoyer un clin d’œil à cet utilisateur" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erreur lors de l’insertion du nouveau profil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erreur lors de l’insertion de l’avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Erreur lors de la mise à jour du profil distant" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erreur lors de l’insertion du profil distant" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Dupliquer l’avis" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." @@ -6899,7 +6892,8 @@ msgstr "Vos messages envoyés" msgid "Tags in %s's notices" msgstr "Marques dans les avis de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Inconnu" @@ -6993,19 +6987,19 @@ msgstr "Bac à sable" msgid "Sandbox this user" msgstr "Mettre cet utilisateur dans un bac à sable" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Rechercher sur le site" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Mot(s) clef(s)" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Rechercher" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Aide sur la recherche" @@ -7208,56 +7202,32 @@ msgid "Moderator" msgstr "Modérateur" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "il y a quelques secondes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "il y a 1 minute" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "il y a %d minutes" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "il y a 1 heure" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "il y a %d heures" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "il y a 1 jour" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "il y a %d jours" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "il y a 1 mois" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "il y a %d mois" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 0758448f24..e69fe18318 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ -# Translation of StatusNet to Irish +# Translation of StatusNet to Irish (Gaeilge) +# Expored from translatewiki.net # -# Author@translatewiki.net: McDutchie +# Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:13+0000\n" -"Language-Team: Irish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:56+0000\n" +"Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4;\n" +"X-Message-Group: #out-statusnet\n" +"Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " +"2 : ( (n < 11) ? 3 : 4 ) ) );\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -40,22 +42,17 @@ msgstr "" msgid "Disable new registrations." msgstr "" -#. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 -msgid "Closed" -msgstr "" - #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -117,39 +114,41 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Este método require un POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuario non ten perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -159,11 +158,11 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Bloqueo de usuario fallido." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Desbloqueo de usuario fallido." @@ -182,55 +181,51 @@ msgstr "Mensaxes directas para %s" msgid "All the direct messages sent to %s" msgstr "Tódalas mensaxes directas enviadas a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Non hai mensaxes de texto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Usuario destinatario non atopado." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Non se atopou un estado con ese ID." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Non se puido actualizar o usuario." @@ -239,103 +234,103 @@ msgstr "Non se puido actualizar o usuario." msgid "Could not find target user." msgstr "Non se puido actualizar o usuario." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non é un alcume válido." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "A páxina persoal semella que non é unha URL válida." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max %d car.)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "A localización é demasiado longa (max 255 car.)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Non atopado" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "" + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Non estás suscrito a ese perfil" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:92 actions/usergroups.php:63 #, php-format -msgid "%s's groups" +msgid "%s groups" msgstr "" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." -msgstr "" - -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Comando fallido" @@ -345,9 +340,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -378,8 +373,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -431,13 +426,13 @@ msgstr "Este método require un POST ou DELETE." msgid "You may not delete another user's status." msgstr "Non deberías eliminar o estado de outro usuario" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ningún chío." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Non se pode eliminar este chíos." @@ -445,21 +440,21 @@ msgstr "Non se pode eliminar este chíos." msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Non atopado" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -566,6 +561,10 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:370 msgid "Avatar updated." msgstr "Avatar actualizado." @@ -592,18 +591,6 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." -#. TRANS: Button label on the user block form. -#. TRANS: Button label on the delete application form. -#. TRANS: Button label on the delete notice form. -#. TRANS: Button label on the delete user form. -#. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 -#: actions/deletenotice.php:147 actions/deleteuser.php:152 -#: actions/groupblock.php:178 -msgctxt "BUTTON" -msgid "No" -msgstr "" - #: actions/block.php:187 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." @@ -617,7 +604,8 @@ msgstr "" msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" @@ -639,12 +627,6 @@ msgstr "Confirmation code not found." msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -656,9 +638,9 @@ msgstr "Esa dirección xa foi confirmada." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -666,7 +648,7 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." @@ -689,10 +671,6 @@ msgstr "Chíos" msgid "Application not found." msgstr "Confirmation code not found." -#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 -msgid "Delete application" -msgstr "" - #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " @@ -700,18 +678,13 @@ msgid "" "connections." msgstr "" -#. TRANS: Submit button title for 'Yes' when deleting an application. -#: actions/deleteapplication.php:164 -msgid "Delete this application" -msgstr "" - #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non está logueado." @@ -720,12 +693,6 @@ msgstr "Non está logueado." msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." -#: actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar chío" @@ -747,7 +714,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -763,10 +729,6 @@ msgstr "Modificado" msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -826,17 +788,21 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" +#: actions/designadminpanel.php:686 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Este chío non é un favorito!" @@ -850,10 +816,6 @@ msgstr "Engadir a favoritos" msgid "No such document \"%s\"" msgstr "Ningún chío." -#: actions/editapplication.php:54 -msgid "Edit Application" -msgstr "" - #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "Subscrición rexeitada" @@ -862,6 +824,14 @@ msgstr "Subscrición rexeitada" msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" @@ -875,6 +845,10 @@ msgstr "" msgid "Edit %s group" msgstr "" +#: actions/editgroup.php:158 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." @@ -902,7 +876,7 @@ msgstr "Direccións de correo confirmadas actualmente." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -918,116 +892,104 @@ msgstr "" "GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " "a %s á túa lista de contactos?)" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Dirección de correo, coma \"Nomede Usuario@example.org\"" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo Entrante" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Enviar un correo a esta dirección para enviar novos chíos." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Enderezos de correo" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Envíame chios de novas suscricións por email." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Quero enviar chíos dende o mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Non se inseriu unha dirección de correo" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Xa é o teu enderezo de correo." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Este enderezo de correo xa pertence a outro usuario." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1039,45 +1001,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente para cancelar." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Non hai ningunha confirmación pendente para cancelar." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Esa non é a túa dirección de correo." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Dirección de correo entrante eliminada." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Non hai direccións de correo entrante" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro de usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Dirección de correo entrante eliminada." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Engadida nova dirección de correo entrante." @@ -1094,10 +1056,6 @@ msgstr "Desactivar favorito" msgid "Popular notices" msgstr "Chíos populares" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" @@ -1143,10 +1101,6 @@ msgstr "Ningún chío." msgid "Not expecting this response!" msgstr "¡Non esperaba esa resposta!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Podes empregar a túa subscrición local!" @@ -1159,14 +1113,6 @@ msgstr "Este usuario non che permite suscribirte a el." msgid "You are not authorized." msgstr "Non estás suscrito a ese perfil" -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:79 msgid "No such file." msgstr "Ningún chío." @@ -1230,36 +1176,49 @@ msgid "" "palette of your choice." msgstr "" +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:118 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "" + +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloquear" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" @@ -1277,6 +1236,11 @@ msgstr "Liña de tempo de %s" msgid "Groups" msgstr "" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + #: actions/groups.php:90 #, php-format msgid "" @@ -1287,10 +1251,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." @@ -1363,7 +1323,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1374,64 +1337,64 @@ msgstr "" "GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferencias gardadas." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme advertencias a través de Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferencias gardadas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Sen Identificador de Jabber." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar ese identificador de Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Non é un Identificador de Jabber válido" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Xa é a túa conta de Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "O identificador de Jabber xa pertence a outro usuario." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1441,23 +1404,23 @@ msgstr "" "engadir a %s como contacto para que che poida enviar mensaxes." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Esa é unha enderezo IM incorrecto." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Sen código de confirmación." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Esa non é a túa conta Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Dirección de correo entrante eliminada." @@ -1544,12 +1507,6 @@ msgstr "Mensaxe persoal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1657,25 +1614,10 @@ msgstr "" msgid "Login with your username and password." msgstr "Usuario ou contrasinal incorrectos." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/newapplication.php:52 -msgid "New Application" -msgstr "" - #: actions/newapplication.php:143 msgid "Use this form to register a new application." msgstr "" @@ -1688,6 +1630,10 @@ msgstr "" msgid "New group" msgstr "" +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nova mensaxe" @@ -1760,21 +1706,11 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Toque enviado" @@ -1822,12 +1758,6 @@ msgstr "O usuario non ten perfil." msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1835,8 +1765,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -1880,6 +1810,10 @@ msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." msgid "No login token requested." msgstr "Sen petición de autorización!" +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -1944,7 +1878,7 @@ msgid "Password saved." msgstr "Contrasinal gardada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1952,26 +1886,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2024,6 +1938,10 @@ msgstr "Avatar" msgid "Backgrounds" msgstr "" +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "" + #: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" @@ -2048,10 +1966,6 @@ msgstr "" msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2107,7 +2021,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -2115,15 +2029,6 @@ msgstr "Páxina persoal" msgid "URL of your homepage, blog, or profile on another site" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Bio" @@ -2205,7 +2110,7 @@ msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Configuracións gardadas." @@ -2222,10 +2127,6 @@ msgstr "Non se pudo recuperar a liña de tempo publica." msgid "Public timeline" msgstr "Liña de tempo pública" -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2256,10 +2157,6 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2421,12 +2318,6 @@ msgstr "O enderezo de correo xa existe." msgid "Invalid username or password." msgstr "Usuario ou contrasinal inválidos." -#: actions/register.php:350 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" @@ -2477,33 +2368,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2528,10 +2392,6 @@ msgstr "" msgid "Remote subscribe" msgstr "Suscrición remota" -#: actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" - #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Alcume de usuario" @@ -2557,18 +2417,6 @@ msgstr "Subscribir" msgid "Invalid profile URL (bad format)" msgstr "Enderezo de perfil inválido (formato incorrecto)" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Xa estas suscrito a estes usuarios:" @@ -2634,7 +2482,7 @@ msgstr "Estatísticas" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2664,15 +2512,10 @@ msgid "Save site settings" msgstr "Configuración de perfil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 -msgid "Organization" -msgstr "" - #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 msgid "Statistics" @@ -2683,10 +2526,18 @@ msgstr "Estatísticas" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2757,7 +2608,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" @@ -2785,17 +2636,6 @@ msgstr "Fonte para os amigos de %s" msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte para os amigos de %s" -#: actions/showgroup.php:355 -#, php-format -msgid "FOAF for %s group" -msgstr "" - -#: actions/showgroup.php:398 lib/profileaction.php:117 -#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 -#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 -msgid "(None)" -msgstr "" - #: actions/showgroup.php:404 msgid "All members" msgstr "" @@ -3105,7 +2945,7 @@ msgstr "Non se inseriu ningún código" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3113,6 +2953,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Confirmar correo electrónico" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3244,10 +3088,6 @@ msgstr "Fonte para os amigos de %s" msgid "Notice feed for tag %s (Atom)" msgstr "Fonte para os amigos de %s" -#: actions/tagother.php:39 -msgid "No ID argument." -msgstr "" - #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" @@ -3351,11 +3191,8 @@ msgstr "" msgid "Authorize subscription" msgstr "Subscrición de autorización." -#: actions/userauthorization.php:110 -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”." +#: actions/userauthorization.php:196 actions/version.php:167 +msgid "License" msgstr "" #: actions/userauthorization.php:217 @@ -3374,24 +3211,10 @@ msgstr "Sen petición de autorización!" msgid "Subscription authorized" msgstr "Subscrición autorizada" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscrición rexeitada" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3417,16 +3240,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3687,19 +3500,14 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Conectar" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -3710,12 +3518,6 @@ msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" @@ -3733,11 +3535,6 @@ msgstr "" msgid "Local views" msgstr "" -#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 -msgid "Secondary site navigation" -msgstr "" - #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3782,22 +3579,17 @@ msgstr "" msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de microbloguexo." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3810,195 +3602,203 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Outros" -#. TRANS: Pagination message to go to a page displaying information more in the -#. TRANS: past than the currently displayed information. -#: lib/action.php:1257 -msgid "Before" -msgstr "" - #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" -msgstr "" - -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Eliminar chío" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 -#, php-format -msgid "Describe your application in %d characters" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 -msgid "Describe your application" -msgstr "" - #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 -msgid "URL of the homepage of this application" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 -msgid "URL for the homepage of the organization" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Recuperar" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloquear" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultados do comando" @@ -4011,6 +3811,13 @@ msgstr "Comando completo" msgid "Command failed" msgstr "Comando fallido" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4041,6 +3848,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4075,13 +3896,6 @@ msgid "" "same server." msgstr "" -#. TRANS: Message given if content is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 -#, php-format -msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." @@ -4092,22 +3906,18 @@ msgstr "Erro ó enviar a mensaxe directa." msgid "Error repeating notice." msgstr "Acounteceu un erro configurando o usuario." -#. TRANS: Message given if content of a notice for a reply is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#. 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:672 #, php-format -msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgid "Subscribed to %s." msgstr "" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." -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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -4148,8 +3958,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4161,7 +3978,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4173,7 +3990,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4184,48 +4001,6 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: lib/command.php:905 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"groups - lists the groups you have joined\n" -"subscriptions - list the people you follow\n" -"subscribers - list the people that follow you\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"lose - force user to stop following you\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"repeat # - repeat a notice with a given id\n" -"repeat - repeat the last notice from user\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4319,40 +4094,38 @@ msgstr "Ir" msgid "Grant this user the \"%s\" role" msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" msgid "Group" msgstr "" -#: lib/groupnav.php:108 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 #, php-format +msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Inicio de sesión" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4382,7 +4155,8 @@ msgstr "Formato de ficheiro de imaxe non soportado." msgid "Partial upload." msgstr "Carga parcial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." @@ -4394,10 +4168,6 @@ msgstr "Non é unha imaxe ou está corrupta." msgid "Lost our file." msgstr "Ningún chío." -#: lib/imagefile.php:163 lib/imagefile.php:224 -msgid "Unknown file type" -msgstr "" - #: lib/imagefile.php:244 msgid "MB" msgstr "" @@ -4420,10 +4190,6 @@ msgstr "" msgid "Login with a username and password" msgstr "Usuario ou contrasinal inválidos." -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" @@ -4472,22 +4238,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Subject of notification mail for new posting email address #: lib/mail.php:304 #, php-format @@ -4606,28 +4356,6 @@ msgstr "" msgid "%s (@%s) added your notice as a favorite" msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." -#. TRANS: Body for favorite notification email -#: lib/mail.php:592 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 #, php-format @@ -4637,6 +4365,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -4675,10 +4408,6 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 -msgid "from" -msgstr "" - #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Non se puido analizaar a mensaxe." @@ -4695,67 +4424,81 @@ msgstr "Ise é un enderezo IM incorrecto." msgid "Sorry, no incoming email allowed." msgstr "Aivá, non se permiten correos entrantes." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Non se puido eliminar o favorito." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 msgid "To" msgstr "A" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Novo chío" @@ -4773,25 +4516,12 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - -#: lib/noticeform.php:216 -msgid "Do not share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 -msgid "N" -msgstr "" - #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4824,23 +4554,7 @@ msgstr "" msgid "Reply" msgstr "Respostas" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Acounteceu un erro ó inserir o novo perfil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Acounteceu un erro ó inserir o avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Acounteceu un erro actualizando o perfil remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Aconteceu un erro ó inserir o perfil remoto" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." @@ -4872,11 +4586,6 @@ msgstr "Band. Saída" msgid "Your sent messages" msgstr "As túas mensaxes enviadas" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" @@ -4898,10 +4607,6 @@ msgstr "Membro dende" msgid "Daily average" msgstr "" -#: lib/profileaction.php:264 -msgid "All groups" -msgstr "" - #: lib/profileformaction.php:123 msgid "Unimplemented method." msgstr "" @@ -4910,10 +4615,6 @@ msgstr "" msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetas recentes" @@ -4926,10 +4627,6 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." -msgstr "" - #: lib/repeatform.php:132 msgid "Yes" msgstr "Si" @@ -4943,18 +4640,12 @@ msgstr "" msgid "No single user defined for single-user mode." msgstr "" -#: lib/sandboxform.php:78 -msgid "Sandbox this user" -msgstr "" - -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Buscar" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Xente" @@ -4975,12 +4666,9 @@ msgstr "" msgid "More..." msgstr "" -#: lib/silenceform.php:67 -msgid "Silence" -msgstr "" - -#: lib/silenceform.php:78 -msgid "Silence this user" +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" msgstr "" #: lib/subgroupnav.php:105 @@ -4997,10 +4685,6 @@ msgstr "" msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" @@ -5049,18 +4733,10 @@ msgstr "" msgid "Unsandbox" msgstr "" -#: lib/unsandboxform.php:80 -msgid "Unsandbox this user" -msgstr "" - #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" -#: lib/unsilenceform.php:78 -msgid "Unsilence this user" -msgstr "" - #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Eliminar subscrición" @@ -5088,56 +4764,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "fai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "fai un minuto" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "fai %d minutos" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fai unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "fai %d horas" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "fai un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "fai %d días" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "fai un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "fai %d meses" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "fai un ano" @@ -5145,3 +4797,8 @@ msgstr "fai un ano" #, php-format msgid "%s is not a valid color!" msgstr "A páxina persoal semella que non é unha URL válida." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 40e6314ee0..44a206e654 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Galician +# Translation of StatusNet to Galician (Galego) +# Expored from translatewiki.net # -# Author@translatewiki.net: Gallaecio -# Author@translatewiki.net: Toliño +# Author: Gallaecio +# Author: Toliño # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:20+0000\n" -"Language-Team: Galician\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:58+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acceso" @@ -75,10 +77,10 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -91,15 +93,15 @@ msgstr "Esa páxina non existe." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -199,16 +201,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións de %1$s e amigos en %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -223,21 +225,23 @@ msgstr "Actualizacións de %1$s e amigos en %2$s!" msgid "API method not found." msgstr "Non se atopou o método da API." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Este método require un POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -245,27 +249,27 @@ msgstr "" "Ten que especificar un parámetro chamado \"device\" cun destes valores: sms, " "im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Non se puido actualizar o usuario." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuario non ten perfil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Non se puido gardar o perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -277,30 +281,30 @@ msgstr "" "O servidor non puido manexar tantos datos POST (%s bytes) por mor da súa " "configuración actual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Non se puido gardar a súa configuración de deseño." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Non se puido actualizar o seu deseño." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Non pode bloquearse a si mesmo!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Non se puido bloquear o usuario." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Non se puido desbloquear o usuario." @@ -324,61 +328,61 @@ msgstr "Mensaxes directas a %s" msgid "All the direct messages sent to %s" msgstr "Todas as mensaxes directas enviadas a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "A mensaxe non ten texto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" "Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Non se atopou o destinatario." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Non pode enviar mensaxes directas a usuarios que non sexan amigos seus." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Non se atopou ningún estado con esa ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Este estado xa é dos favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Ese estado non é un dos favoritos." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Non se puido seguir o usuario: non se atopou." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Non se puido seguir o usuario: %s xa está na súa lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Non se puido deixar de seguir o usuario: non se atopou." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Non pode deixar de seguirse a si mesmo." @@ -394,7 +398,7 @@ msgstr "Non se puido determinar o usuario de orixe." msgid "Could not find target user." msgstr "Non se puido atopar o usuario de destino." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -402,95 +406,95 @@ msgstr "" "O alcume debe ter só letras en minúscula e números, e non pode ter espazos " "en branco." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "O formato do alcume non é correcto." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "O URL da páxina persoal non é correcto." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "A descrición é longa de máis (o máximo son %d caracteres)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "A localidade é longa de máis (o máximo son 255 caracteres)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Demasiados pseudónimos! O número máximo é %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Pseudónimo incorrecto: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "O pseudónimo non pode coincidir co alcume." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Non se atopou o grupo." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Xa forma parte dese grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "O administrador bloqueouno nese grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Vostede non pertence a este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -520,7 +524,7 @@ msgstr "grupos %s" msgid "groups on %s" msgstr "grupos en %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Houbo un erro durante a carga." @@ -534,9 +538,9 @@ msgstr "Pase incorrecto." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -583,8 +587,8 @@ msgstr "Denegouse e revogouse a ficha da solicitude %s." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -648,18 +652,18 @@ msgstr "Este método require un POST ou un DELETE." msgid "You may not delete another user's status." msgstr "Non pode borrar o estado doutro usuario." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Non existe tal nota." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Non pode repetir a súa propia nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Xa repetiu esa nota." @@ -671,21 +675,21 @@ msgstr "Borrouse o estado." msgid "No status with that ID found." msgstr "Non se atopou ningún estado con esa ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Iso é longo de máis. A nota non pode exceder os %d caracteres." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Non se atopou." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -889,7 +893,9 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuario" @@ -931,11 +937,13 @@ msgstr "Unha lista de usuarios bloqueados fronte á unión a este grupo." msgid "Unblock user from group" msgstr "Desbloquear o usuario do grupo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Desbloquear este usuario" @@ -974,9 +982,9 @@ msgstr "Ese enderezo xa se confirmou." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -984,7 +992,7 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non se puido borrar a confirmación por correo electrónico." @@ -1020,9 +1028,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1056,7 +1065,7 @@ msgstr "Borrar a aplicación" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Non iniciou sesión." @@ -1119,7 +1128,6 @@ msgstr "Borrar o usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Deseño" @@ -1241,13 +1249,13 @@ msgstr "Restaurar o deseño por defecto" msgid "Reset back to default" msgstr "Volver ao deseño por defecto" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1403,7 +1411,7 @@ msgstr "Enderezo de correo electrónico confirmado actualmente." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1421,22 +1429,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Enderezo de correo electrónico, coma \"nomedeusuario@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1444,20 +1456,20 @@ msgstr "Engadir" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correo entrante" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "Enviar un correo electrónico a este enderezo para publicar novas notas." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Establece un novo enderezo de correo electrónico no que publicar, e cancela " @@ -1465,96 +1477,96 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Novo" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferencias de correo electrónico" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme notas acerca de novas subscricións por correo electrónico." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviádeme un correo electrónico cando alguén marque como favorito algunha " "das miñas notas." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "Enviádeme un correo electrónico cando alguén me envíe unha mensaxe privada." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Enviádeme un correo electrónico cando alguén me envíe unha resposta." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" "Permitirlles aos meus amigos facerme acenos e enviarme correos electrónicos." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Quero publicar notas por correo electrónico." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Gardáronse as preferencias de correo electrónico." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Non hai enderezo de correo electrónico." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Non se pode normalizar ese enderezo de correo electrónico" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "O enderezo de correo electrónico é incorrecto." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Ese enderezo de correo electrónico é o que ten agora." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Ese enderezo de correo electrónico xa pertence a outro usuario." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1566,50 +1578,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente que cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Ese enderezo de correo electrónico é incorrecto." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Cancelouse a confirmación por correo electrónico." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Ese non é o seu enderezo de correo electrónico." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Borrouse o enderezo de correo electrónico." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Non hai ningún enderezo ao que enviar." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro do usuario." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Borrouse o enderezo de correo electrónico entrante." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Engadiuse un novo enderezo de correo electrónico entrante." @@ -1726,7 +1738,7 @@ msgstr "Non se puido converter a ficha da solicitude nun pase." msgid "Remote service uses unknown version of OMB protocol." msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Houbo un erro ao actualizar o perfil remoto." @@ -1783,7 +1795,7 @@ msgstr "O usuario xa está excluído do grupo." msgid "User is not a member of group." msgstr "O usuario non pertence ao grupo." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Excluír do grupo ao usuario" @@ -1865,40 +1877,32 @@ msgstr "Actualizouse o logo." msgid "Failed updating logo." msgstr "Non se puido actualizar o logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membros do grupo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros do grupo %1$s, páxina %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Unha lista dos usuarios pertencentes a este grupo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrador" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Excluír" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Converter ao usuario en administrador do grupo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Converter en administrador" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Converter a este usuario en administrador" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2036,7 +2040,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2047,65 +2054,65 @@ msgstr "" "instantánea ou en GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferencias de mensaxería instantánea" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Enviádeme as notas mediante Jabber ou GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Enviádeme as respostas mediante Jabber ou GTalk da xente á que non estou " "subscrita." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Gardáronse as preferencias." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Non existe ningunha ID de Jabber." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar esa ID de Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "A ID de Jabber non é correcta" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Esa xa é a súa ID de Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Esa ID de Jabber xa corresponde a un usuario." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2115,28 +2122,28 @@ msgstr "" "engadiu. Ten que aprobar que %s lle envíe mensaxes." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Ese enderezo de mensaxería instantánea é incorrecto." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Non se puido borrar a confirmación por mensaxería instantánea." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Cancelouse a confirmación por mensaxería instantánea." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Esa ID de Jabber non é súa." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Borrouse o enderezo de mensaxería instantánea." @@ -2609,8 +2616,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só %s enderezos URL sobre HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." @@ -2753,7 +2760,7 @@ msgid "Password saved." msgstr "Gardouse o contrasinal." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Rutas" @@ -2967,7 +2974,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3074,7 +3081,7 @@ msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Gardouse a configuración." @@ -3623,7 +3630,7 @@ msgstr "O usuario xa está illado." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sesións" @@ -3661,24 +3668,24 @@ msgid "Application profile" msgstr "Perfil da aplicación" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descrición" @@ -3794,7 +3801,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Isto é un modo de compartir o que lle gusta." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" @@ -3846,7 +3853,7 @@ msgstr "Fonte de novas das notas do grupo %s (Atom)" msgid "FOAF for %s group" msgstr "Amigo dun amigo para o grupo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membros" @@ -4304,7 +4311,7 @@ msgstr "Non se introduciu ningún código" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Instantáneas" @@ -5038,7 +5045,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. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Prohibíuselle realizar subscricións de momento." @@ -5186,7 +5193,8 @@ msgid "Change site configuration" msgstr "Cambiar a configuración do sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -5263,7 +5271,7 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nota do sitio" @@ -5327,7 +5335,10 @@ msgid "StatusNet software license" msgstr "Licenza do software StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5337,13 +5348,16 @@ msgstr "" "site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5355,20 +5369,20 @@ msgstr "" "GNU](http://www.fsf.org/licensing/licenses/agpl-3.0.html) (en inglés)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licenza dos contidos do sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O contido e os datos de %1$s son privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5376,33 +5390,34 @@ msgstr "" "todos os dereitos." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Os contidos e datos son propiedade intelectual dos colaboradores. Quedan " "reservados todos os dereitos." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paxinación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Anteriores" @@ -5412,208 +5427,227 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Aínda non é posible manexar contidos remotos." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Aínda non se poden manexar contidos XML integrados." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Aínda non se poden manexar contidos Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Non pode realizar cambios neste sitio." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Non se permite realizar cambios nese panel." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() non está integrado." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() non está integrado." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Non se puido borrar a configuración do deseño." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuración básica do sitio" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuración do deseño" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Deseño" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuración do usuario" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuración de acceso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuración das rutas" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuración das sesións" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Modificar a nota do sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuración das instantáneas" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "O recurso API precisa permisos de lectura e escritura, pero só dispón de " "permisos de lectura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Modificar a aplicación" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icona para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Describa a súa aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Describa a súa aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL do sitio web desta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL de orixe" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organización responsable desta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL do sitio web da organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL ao que ir tras a autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador ou de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lectura e escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lectura e escritura" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "lectura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado o %1$s - permisos de \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" @@ -5633,11 +5667,13 @@ msgstr "Autor" msgid "Provider" msgstr "Provedor" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notas nas que se anexou este ficheiro" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etiquetas para este ficheiro" @@ -5649,6 +5685,11 @@ msgstr "Non se puido cambiar o contrasinal" msgid "Password changing is not allowed" msgstr "Non se permite cambiar o contrasinal" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Excluír" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultados da orde" @@ -5900,7 +5941,7 @@ msgid "You are not subscribed to anyone." msgstr "Non está subscrito a ninguén." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5915,7 +5956,7 @@ msgid "No one is subscribed to you." msgstr "Non hai ninguén subscrito a vostede." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5930,7 +5971,7 @@ msgid "You are not a member of any groups." msgstr "Non forma parte de ningún grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5938,6 +5979,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6161,38 +6203,6 @@ msgstr "" "Alcumes adicionais para o grupo, separados por comas ou espazos, %d como " "máximo" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloqueado" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s usuarios bloqueados" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Modificar as propiedades do grupo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logotipo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Engadir ou modificar o logotipo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Engadir ou modificar o deseño de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos con máis membros" @@ -6224,7 +6234,8 @@ msgstr "Ese ficheiro é grande de máis. O tamaño máximo por ficheiro son %s." msgid "Partial upload." msgstr "Carga parcial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Houbo un erro no sistema ao cargar o ficheiro." @@ -6627,16 +6638,19 @@ msgstr "Non se permite recibir correo electrónico." msgid "Unsupported message type: %s" msgstr "Non se soporta o tipo de mensaxe: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Houbo un erro na base de datos ao gardar o seu ficheiro. Volva intentalo." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6644,44 +6658,43 @@ msgstr "" "O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no " "formulario HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro só se subiu parcialmente." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Falta un cartafol temporal." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Non se puido escribir o ficheiro no disco." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Interrompeuse a carga do ficheiro por mor da extensión." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "O ficheiro supera a cota do usuario." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Non se puido mover o ficheiro ao directorio de destino." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Non se puido determinar o tipo MIME do ficheiro." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Inténteo utilizando outro formato %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "Neste servidor non se soporta o tipo de ficheiro %s." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar unha nota directa" @@ -6797,27 +6810,7 @@ msgstr "Facer un aceno" msgid "Send a nudge to this user" msgstr "Facerlle un aceno a este usuario" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Houbo un erro ao inserir o novo perfil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Houbo un erro ao inserir o avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Houbo un erro ao actualizar o perfil remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Houbo un erro ao inserir o perfil remoto" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Nota duplicada" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir unha subscrición nova." @@ -6854,7 +6847,8 @@ msgstr "As mensaxes enviadas" msgid "Tags in %s's notices" msgstr "Etiquetas nas notas de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Descoñecida" @@ -6948,19 +6942,19 @@ msgstr "Illar" msgid "Sandbox this user" msgstr "Illar a este usuario" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Buscar no sitio" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Termos de busca" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Buscar" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Buscar na axuda" @@ -7161,56 +7155,32 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "hai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "hai como un minuto" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "hai como %d minutos" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "hai como unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "hai como %d horas" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "hai como un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "hai como %d días" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "hai como un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "hai como %d meses" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "hai como un ano" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 598dd033a7..3b4dcb6be4 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -1,4 +1,5 @@ -# Translation of StatusNet to Hebrew +# Translation of StatusNet to Hebrew (עברית) +# Expored from translatewiki.net # # -- # This file is distributed under the same license as the StatusNet package. @@ -7,16 +8,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:22+0000\n" -"Language-Team: Hebrew\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:53:59+0000\n" +"Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -43,11 +45,6 @@ msgstr "" msgid "Disable new registrations." msgstr "" -#. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 -msgid "Closed" -msgstr "" - #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 @@ -56,15 +53,15 @@ msgstr "אין משתמש כזה." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -89,18 +86,6 @@ msgstr "אין משתמש כזה." msgid "%s and friends" msgstr "%s וחברים" -#. TRANS: %1$s is user nickname -#: actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" - -#. TRANS: %1$s is user nickname -#: actions/all.php:116 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "" - #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -138,39 +123,41 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "למשתמש אין פרופיל." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -180,25 +167,21 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "" -#: actions/apiblockcreate.php:105 -msgid "You cannot block yourself!" -msgstr "" - -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "" @@ -222,118 +205,107 @@ msgstr "" msgid "All the direct messages sent to %s" msgstr "" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "שמירת הפרופיל נכשלה." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself." +#: actions/apifriendshipscreate.php:119 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" #: actions/apifriendshipsexists.php:91 msgid "Two valid IDs or screen_names must be supplied." msgstr "" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "שם משתמש לא חוקי." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "שם המיקום ארוך מידי (מותר עד %d אותיות)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "גודל לא חוקי." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "קוד האישור לא נמצא." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 -#, php-format -msgid "%s's groups" -msgstr "" - -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." -msgstr "" - #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" @@ -345,9 +317,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -378,8 +350,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -435,7 +407,7 @@ msgstr "" msgid "You may not delete another user's status." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "אין הודעה כזו." @@ -444,20 +416,15 @@ msgstr "אין הודעה כזו." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" - #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -473,11 +440,6 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "אין הודעה כזו." @@ -518,11 +480,6 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 -msgid "Delete" -msgstr "" - #: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" msgstr "ההעלה" @@ -554,23 +511,6 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#. TRANS: Button label on the user block form. -#. TRANS: Button label on the delete application form. -#. TRANS: Button label on the delete notice form. -#. TRANS: Button label on the delete user form. -#. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 -#: actions/deletenotice.php:147 actions/deleteuser.php:152 -#: actions/groupblock.php:178 -msgctxt "BUTTON" -msgid "No" -msgstr "" - -#. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 -msgid "Block this user" -msgstr "" - #: actions/block.php:187 msgid "Failed to save block information." msgstr "" @@ -591,25 +531,12 @@ msgstr "" msgid "No such group." msgstr "אין משתמש כזה." -#: actions/blockedfromgroup.php:97 -#, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:100 -#, php-format -msgid "%1$s blocked profiles, page %2$d" -msgstr "" - #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:288 -msgid "Unblock user from group" -msgstr "" - -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "" @@ -625,12 +552,6 @@ msgstr "קוד האישור לא נמצא." msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -642,9 +563,9 @@ msgstr "כתובת זו כבר אושרה." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -668,9 +589,10 @@ msgstr "הודעות" msgid "Application not found." msgstr "קוד האישור לא נמצא." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -687,7 +609,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "לא מחובר." @@ -706,11 +628,6 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 -msgid "Do not delete this notice" -msgstr "" - #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" @@ -725,7 +642,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -733,11 +649,6 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "שנה" @@ -746,10 +657,6 @@ msgstr "שנה" msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -805,17 +712,21 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "שמור" +#: actions/designadminpanel.php:686 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -825,14 +736,18 @@ msgstr "" msgid "No such document \"%s\"" msgstr "אין הודעה כזו." -#: actions/editapplication.php:54 -msgid "Edit Application" +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." msgstr "" #: actions/editapplication.php:161 msgid "Use this form to edit your application." msgstr "" +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "ההרשמה נדחתה" @@ -841,6 +756,14 @@ msgstr "ההרשמה נדחתה" msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" @@ -854,6 +777,10 @@ msgstr "" msgid "Edit %s group" msgstr "" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." @@ -885,86 +812,79 @@ msgstr "" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" msgid "Remove" msgstr "שיחזור" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "" +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:357 +msgid "No email address." +msgstr "" + #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "הכנסת קוד האישור נכשלה." @@ -972,25 +892,35 @@ msgstr "הכנסת קוד האישור נכשלה." #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "אין אישור ממתין שניתן לבטל." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "כתובת זו כבר אושרה." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +msgid "Incoming email address removed." +msgstr "" + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +msgid "New incoming email address added." +msgstr "" + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" @@ -999,11 +929,6 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - #: actions/favorited.php:79 msgid "The most popular notices on the site right now." msgstr "" @@ -1031,9 +956,9 @@ msgstr "" msgid "%s's favorite notices" msgstr "" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" msgstr "" #: actions/featured.php:71 @@ -1058,10 +983,6 @@ msgstr "אין הודעה כזו." msgid "Not expecting this response!" msgstr "זו תגובה לא צפויה!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "ניתן להשתמש במנוי המקומי!" @@ -1074,14 +995,6 @@ msgstr "" msgid "You are not authorized." msgstr "ההרשמה אושרה" -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:83 msgid "Cannot read file." msgstr "שמירת הפרופיל נכשלה." @@ -1090,8 +1003,16 @@ msgstr "שמירת הפרופיל נכשלה." msgid "This role is reserved and cannot be set." msgstr "" -#: actions/grantrole.php:75 -msgid "You cannot grant user roles on this site." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:79 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:86 +msgid "No profile with that ID." msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 @@ -1103,10 +1024,6 @@ msgstr "" msgid "Only an admin can block group members." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 -msgid "Block user from group" -msgstr "" - #: actions/groupblock.php:160 #, php-format msgid "" @@ -1115,16 +1032,6 @@ msgid "" "the group in the future." msgstr "" -#. TRANS: Submit button title for 'No' when blocking a user from a group. -#: actions/groupblock.php:182 -msgid "Do not block this user from this group" -msgstr "" - -#. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#: actions/groupblock.php:189 -msgid "Block this user from this group" -msgstr "" - #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1147,41 +1054,44 @@ msgstr "" msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 +#, php-format +msgid "%s group members" +msgstr "" + +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" -#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#: actions/grouprss.php:142 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1202,15 +1112,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - #: actions/groupsearch.php:82 #, php-format msgid "" @@ -1229,10 +1130,6 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - #. TRANS: Title for instance messaging settings. #: actions/imsettings.php:60 msgid "IM settings" @@ -1250,11 +1147,6 @@ msgstr "" "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " "את כתובתך והעדפותיך למטה." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." @@ -1272,7 +1164,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1282,53 +1177,53 @@ msgstr "" "החברים בתוכנת ההמסרים המידיים או GTalk שלך." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "העדפות נשמרו." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "העדפות נשמרו." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "אין זיהוי Jabber כזה." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "לא עומד בכללים לזיהוי Jabber" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1338,18 +1233,18 @@ msgstr "" "מידיים אליך." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "זוהי כתובת מסרים מידיים שגויה." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "אין קוד אישור." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." @@ -1371,15 +1266,19 @@ msgstr "" msgid "Invites have been disabled." msgstr "" -#: actions/invite.php:41 +#: actions/invite.php:72 #, php-format -msgid "You must be logged in to invite other users to use %s." +msgid "Invalid email address: %s" msgstr "" #: actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 @@ -1407,6 +1306,10 @@ msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" @@ -1415,12 +1318,6 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:231 #, php-format @@ -1504,37 +1401,12 @@ msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסי msgid "Login with your username and password." msgstr "שם משתמש או סיסמה לא נכונים." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:96 -#, php-format -msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "" - -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/makeadmin.php:146 -#, php-format -msgid "Can't make %1$s an admin for group %2$s." -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status." -msgstr "" - -#: actions/newapplication.php:52 -msgid "New Application" +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." msgstr "" #: actions/newapplication.php:143 @@ -1549,6 +1421,10 @@ msgstr "" msgid "Could not create application." msgstr "שמירת הפרופיל נכשלה." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" @@ -1574,10 +1450,6 @@ msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. #: actions/newmessage.php:185 lib/command.php:514 @@ -1606,11 +1478,6 @@ msgstr "" msgid "Text search" msgstr "חיפוש טקסט" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%1$s\" on %2$s" -msgstr "" - #: actions/noticesearch.php:121 #, php-format msgid "" @@ -1625,16 +1492,6 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:98 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -1660,6 +1517,15 @@ msgstr "" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1686,12 +1552,6 @@ msgstr "למשתמש אין פרופיל." msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1726,14 +1586,14 @@ msgstr "" msgid "Show or hide profile designs." msgstr "" -#: actions/otp.php:69 -msgid "No user ID specified." -msgstr "" - #: actions/otp.php:90 msgid "No login token requested." msgstr "לא התבקש אישור!" +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" @@ -1798,7 +1658,7 @@ msgid "Password saved." msgstr "הסיסמה נשמרה." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1806,26 +1666,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -1882,6 +1722,10 @@ msgstr "תמונה" msgid "Backgrounds" msgstr "" +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "" + #: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" @@ -1906,10 +1750,6 @@ msgstr "" msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -1923,16 +1763,6 @@ msgstr "" msgid "People search" msgstr "חיפוש סיסמה" -#: actions/peopletag.php:68 -#, php-format -msgid "Not a valid people tag: %s." -msgstr "" - -#: actions/peopletag.php:142 -#, php-format -msgid "Users self-tagged with %1$s - page %2$d" -msgstr "" - #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "גודל לא חוקי." @@ -1967,7 +1797,7 @@ msgstr "שם מלא" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "אתר בית" @@ -1975,15 +1805,6 @@ msgstr "אתר בית" msgid "URL of your homepage, blog, or profile on another site" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "ביוגרפיה" @@ -2054,7 +1875,7 @@ msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2067,18 +1888,6 @@ msgstr "" msgid "Public timeline" msgstr "קו זמן ציבורי" -#: actions/public.php:160 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:164 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" - -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2113,10 +1922,6 @@ msgid "" "tool." msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2396,18 +2201,10 @@ msgstr "הירשם כמנוי" msgid "Invalid profile URL (bad format)" msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "" @@ -2448,29 +2245,13 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/revokerole.php:75 -msgid "You cannot revoke user roles on this site." -msgstr "" - -#: actions/revokerole.php:82 -msgid "User doesn't have this role." -msgstr "" - #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "סטטיסטיקה" -#: actions/sandbox.php:65 actions/unsandbox.php:65 -msgid "You cannot sandbox users on this site." -msgstr "" - -#: actions/sandbox.php:72 -msgid "User is already sandboxed." -msgstr "" - #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2499,14 +2280,13 @@ msgstr "" msgid "Save site settings" msgstr "הגדרות הפרופיל" -#. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 -msgid "Icon" +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." msgstr "" -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 -msgid "Organization" +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:173 +msgid "Icon" msgstr "" #: actions/showapplication.php:192 actions/showgroup.php:436 @@ -2519,10 +2299,18 @@ msgstr "סטטיסטיקה" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2553,21 +2341,6 @@ msgstr "" msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%1$s's favorite notices, page %2$d" -msgstr "" - -#: actions/showfavorites.php:171 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:178 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -2593,9 +2366,9 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:84 +#: actions/showgroup.php:82 #, php-format -msgid "%1$s group, page %2$d" +msgid "%s group" msgstr "" #: actions/showgroup.php:227 @@ -2611,21 +2384,6 @@ msgstr "" msgid "Aliases" msgstr "" -#: actions/showgroup.php:338 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:344 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:355 -#, php-format -msgid "FOAF for %s group" -msgstr "" - #: actions/showgroup.php:398 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 @@ -2673,25 +2431,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - #: actions/showstream.php:73 #, php-format msgid " tagged %s" msgstr "" -#: actions/showstream.php:79 -#, php-format -msgid "%1$s, page %2$d" -msgstr "" - -#: actions/showstream.php:122 -#, php-format -msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "" - #: actions/showstream.php:148 #, php-format msgid "FOAF for %s" @@ -2736,10 +2480,6 @@ msgstr "" msgid "You cannot silence users on this site." msgstr "" -#: actions/silence.php:72 -msgid "User is already silenced." -msgstr "" - #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -2853,11 +2593,6 @@ msgstr "הגדרות הפרופיל" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." @@ -2930,10 +2665,14 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -2983,15 +2722,6 @@ msgstr "הכנסת מנוי חדש נכשלה." msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribe.php:117 -msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%1$s subscribers, page %2$d" -msgstr "" - #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "אלה האנשים המאזינים להודעות שלך." @@ -3042,25 +2772,6 @@ msgstr "" msgid "SMS" msgstr "סמס" -#: actions/tag.php:69 -#, php-format -msgid "Notices tagged with %1$s, page %2$d" -msgstr "" - -#: actions/tag.php:87 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:93 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/tagother.php:39 -msgid "No ID argument." -msgstr "" - #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3139,12 +2850,12 @@ msgstr "" msgid "New users" msgstr "הודעה חדשה" -#: actions/useradminpanel.php:236 -msgid "Welcome text for new users (Max 255 chars)." +#: actions/useradminpanel.php:235 +msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:251 -msgid "Invitations" +#: actions/useradminpanel.php:236 +msgid "Welcome text for new users (Max 255 chars)." msgstr "" #: actions/useradminpanel.php:256 @@ -3159,13 +2870,6 @@ msgstr "" msgid "Authorize subscription" msgstr "אשר מנוי" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "" @@ -3195,24 +2899,10 @@ msgstr "לא התבקש אישור!" msgid "Subscription authorized" msgstr "ההרשמה אושרה" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "ההרשמה נדחתה" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3238,16 +2928,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3258,12 +2938,6 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. -#: actions/usergroups.php:66 -#, php-format -msgid "%1$s groups, page %2$d" -msgstr "" - #: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" @@ -3434,7 +3108,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3485,6 +3159,11 @@ msgstr "שמירת הפרופיל נכשלה." msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" @@ -3506,25 +3185,14 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 -msgctxt "TOOLTIP" -msgid "Change your email, avatar, password, profile" -msgstr "" - -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "התחבר" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -3536,24 +3204,12 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 -msgctxt "MENU" -msgid "Invite" -msgstr "" - #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" @@ -3571,11 +3227,6 @@ msgstr "" msgid "Local views" msgstr "" -#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 -msgid "Secondary site navigation" -msgstr "" - #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3620,22 +3271,17 @@ msgstr "" msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** הוא שרות ביקרובלוג." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3648,225 +3294,240 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "" -#. TRANS: Pagination message to go to a page displaying information more in the -#. TRANS: present than the currently displayed information. -#: lib/action.php:1247 -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:1257 -msgid "Before" -msgstr "" - #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 -msgctxt "MENU" -msgid "Site" -msgstr "" - -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +msgid "Design configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "אין קוד אישור." #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "אין קוד אישור." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "אין קוד אישור." #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 -#, php-format -msgid "Describe your application in %d characters" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 -msgid "Describe your application" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 -msgid "URL of the homepage of this application" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 -msgid "URL for the homepage of the organization" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "בטל" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "שיחזור" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "" + +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "" + +#: lib/channel.php:157 lib/channel.php:177 +msgid "Command results" msgstr "" #: lib/channel.php:229 lib/mailhandler.php:142 @@ -3877,18 +3538,6 @@ msgstr "" msgid "Command failed" msgstr "" -#. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 -msgid "Notice with that id does not exist." -msgstr "" - -#. TRANS: Message given requesting a profile for a non-existing user. -#. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 -#, php-format -msgid "Could not find a user with nickname %s." -msgstr "" - #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -3937,6 +3586,13 @@ msgstr "" msgid "%1$s joined group %2$s." msgstr "" +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the bio information of the queried user. #: lib/command.php:446 #, php-format @@ -3958,13 +3614,6 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." 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:554 -#, php-format -msgid "Notice from %s repeated." -msgstr "" - #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -3982,9 +3631,11 @@ msgstr "" 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:664 -msgid "Can't subscribe to OMB profiles by command." +#. 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:672 +#, php-format +msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. @@ -3993,6 +3644,13 @@ msgstr "" 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:705 +#, 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:724 lib/command.php:750 @@ -4021,8 +3679,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4031,7 +3696,7 @@ msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4040,7 +3705,7 @@ msgstr[0] "הרשמה מרוחקת" msgstr[1] "הרשמה מרוחקת" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4048,6 +3713,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4114,6 +3780,10 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4175,45 +3845,32 @@ msgstr "" msgid "Grant this user the \"%s\" role" msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:108 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 #, php-format +msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "היכנס" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4243,7 +3900,8 @@ msgstr "פורמט התמונה אינו נתמך." msgid "Partial upload." msgstr "העלאה חלקית." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "שגיאת מערכת בהעלאת הקובץ." @@ -4273,10 +3931,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - #. TRANS: Body for address confirmation email. #: lib/mail.php:177 #, php-format @@ -4308,22 +3962,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Subject of notification mail for new posting email address #: lib/mail.php:304 #, php-format @@ -4399,12 +4037,6 @@ msgid "" "%5$s\n" msgstr "" -#. TRANS: Subject for favorite notification email -#: lib/mail.php:589 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -4487,56 +4119,69 @@ msgstr "" msgid "Sorry, no incoming email allowed." msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 -msgid "Could not determine file's MIME type." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid " Try using another %s format." -msgstr "" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -4547,11 +4192,6 @@ msgstr "" msgid "To" msgstr "אל" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -4565,21 +4205,12 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 -msgid "N" -msgstr "" - #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4616,27 +4247,19 @@ msgstr "" msgid "Reply" msgstr "תגובות" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + #: lib/nudgeform.php:128 msgid "Nudge" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "שגיאה בהכנסת הפרופיל" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "שגיאה בהכנסת התמונה." - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "שגיאה בעדכון פרופיל מרוחק" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "שגיאה בהכנסת פרופיל מרוחק" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." @@ -4669,7 +4292,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -4710,19 +4334,14 @@ msgstr "" msgid "Recent tags" msgstr "" -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" #: lib/repeatform.php:132 msgid "Yes" msgstr "כן" -#: lib/revokeroleform.php:91 -#, php-format -msgid "Revoke the \"%s\" role from this user" -msgstr "" - #: lib/router.php:709 msgid "No single user defined for single-user mode." msgstr "" @@ -4731,14 +4350,12 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "חיפוש" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "אנשים" @@ -4763,10 +4380,6 @@ msgstr "" msgid "More..." msgstr "" -#: lib/silenceform.php:67 -msgid "Silence" -msgstr "" - #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -4791,10 +4404,6 @@ msgstr "" msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" @@ -4847,6 +4456,10 @@ msgstr "" msgid "Unsubscribe" msgstr "בטל מנוי" +#: lib/userprofile.php:234 lib/userprofile.php:248 +msgid "User actions" +msgstr "" + #: lib/userprofile.php:237 msgid "User deletion in progress..." msgstr "" @@ -4874,56 +4487,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "לפני מספר שניות" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "לפני כדקה" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "לפני כ-%d דקות" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "לפני כשעה" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "לפני כ-%d שעות" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "לפני כיום" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "לפני כ-%d ימים" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "לפני כחודש" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "לפני כ-%d חודשים" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index da63fd6ea7..c1735aad17 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Upper Sorbian +# Translation of StatusNet to Upper Sorbian (Hornjoserbsce) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Michawiki +# Author: Brion +# Author: McDutchie +# Author: Michawiki # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,21 +11,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:25+0000\n" -"Language-Team: Dutch\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:00+0000\n" +"Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Přistup" @@ -77,10 +79,10 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -93,15 +95,15 @@ msgstr "Strona njeeksistuje." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -193,16 +195,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacije wot %1$s a přećelow na %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -217,47 +219,49 @@ msgstr "Aktualizacije wot %1$s a přećelow na %2$s!" msgid "API method not found." msgstr "API-metoda njenamakana." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Tuta metoda wužaduje sej POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Wužiwar njeje so dał aktualizować." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Wužiwar nima profil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Profil njeje so składować dał." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -267,20 +271,20 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Design njeda so aktualizować." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Njemóžeš so samoho blokować." -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blokowanje wužiwarja je so njeporadźiło." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Wotblokowanje wužiwarja je so njeporadźiło." @@ -304,52 +308,52 @@ msgstr "Direktne powěsće do %s" msgid "All the direct messages sent to %s" msgstr "Wšě do %s pósłane direktne powěsće" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Žadyn powěsćowy tekst!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Přijimowar njenamakany." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Njeje móžno, direktne powěsće wužiwarjam pósłać, kotřiž twoji přećeljo " "njejsu." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Status z tym ID njenamakany." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Tutón status je hižo faworit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Faworit njeda so wutworić." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Tón status faworit njeje." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Faworit njeda so zhašeć." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Njebě móžno wužiwarja słědować: profil njenamakany." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Njemóžeš slědowanje swójskich aktiwitow blokować." @@ -365,102 +369,102 @@ msgstr "Žórłowy wužiwar njeda so postajić." msgid "Could not find target user." msgstr "Cilowy wužiwar njeda so namakać." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Přimjeno smě jenož małe pismiki a cyfry wobsahować. Mjezery njejsu dowolene." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Startowa strona njeje płaćiwy URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Wopisanje je předołho (maks. %d znamješkow)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Městno je předołho (maks. 255 znamješkow)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Přewjele aliasow! Maksimum: %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Njepłaćiwy alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" so hižo wužiwa. Spytaj druhi." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias njemóže samsny kaž přimjeno być." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Skupina njenamakana." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Administratora tuteje skupiny je će zablokował." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Njejsy čłon tuteje skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -490,7 +494,7 @@ msgstr "%s skupinow" msgid "groups on %s" msgstr "skupiny na %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Nahraće je so njeporadźiło." @@ -504,9 +508,9 @@ msgstr "Njepłaćiwy token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -549,8 +553,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -611,18 +615,18 @@ msgstr "Tuta metoda wužaduje sej POST abo DELETE." msgid "You may not delete another user's status." msgstr "Njemóžeš status druheho wužiwarja zničić." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Zdźělenka njeeksistuje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Njemóžno twoju zdźělenku wospjetować." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Tuta zdźělenka bu hižo wospjetowana." @@ -634,21 +638,21 @@ msgstr "Status zničeny." msgid "No status with that ID found." msgstr "Žadyn status z tym ID namakany." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Njenamakany." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -827,7 +831,9 @@ msgid "Yes" msgstr "Haj" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -861,11 +867,13 @@ msgstr "%1$s zablokowa profile, stronu %2$d" msgid "Unblock user from group" msgstr "Wužiwarja za skupinu wotblokować" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Wotblokować" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Tutoho wužiwarja wotblokować" @@ -904,9 +912,9 @@ msgstr "Tuta adresa bu hižo wobkrućena." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -914,7 +922,7 @@ msgstr "Wužiwar njeda aktualizować." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "E-mejlowe wobkrućenje njeda so zhašeć." @@ -950,9 +958,10 @@ msgstr "Aplikaciska njenamakana." msgid "You are not the owner of this application." msgstr "Njejsy wobsedźer tuteje aplikacije." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -983,7 +992,7 @@ msgstr "Tutu aplikaciju zničić" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Njepřizjewjeny." @@ -1042,7 +1051,6 @@ msgstr "Tutoho wužiwarja wušmórnyć" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Design" @@ -1154,13 +1162,13 @@ msgstr "Standardne designy wobnowić" msgid "Reset back to default" msgstr "Na standard wróćo stajić" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Składować" @@ -1308,7 +1316,7 @@ msgstr "Aktualna wobkrućena e-mejlowa adresa." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1324,22 +1332,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Přetorhnyć" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mejlowa adresa, kaž na př. \"WužiwarskeMjeno@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1347,144 +1359,144 @@ msgstr "Přidać" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Dochadźaca e-mejl" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nowy" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-mejlowe nastajenja" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "E-mejl pósłać, hdyž něchtó priwatnu powěsć sćele." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Chcu zdźělenki přez e-mejl pósłać." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "MicroID za moju e-mejlowu adresu publikować" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "E-mejlowe nastajenja składowane." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Žana e-mejlowa adresa." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Tuta e-mejlowa adresa njehodźi so normalizować" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Njepłaćiwa e-mejlowa adresa." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "To je hižo twoja e-mejlowa adresa." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Ta e-mejlowa adresa hižo słuša k druhemu wužiwarjej." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Wobkrućenski kod njehodźi so zasunyć." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "To je wopačna e-mejlowa adresa." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "E-mejlowe wobkrućenje přetorhnjene." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "To njeje twoja e-mejlowa adresa." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "E-mejlowa adresa bu wotstronjena." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Žana adresa za dochadźace e-mejle." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Datowa sadźba wužiwarja njeda so aktualizować." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Adresa za dochadźaće e-mejle wotstronjena." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nowa adresa za dochadźace e-mejle přidata." @@ -1558,6 +1570,10 @@ msgstr "Žane nahrate přiwěški." msgid "Not expecting this response!" msgstr "Njewočakowana wotmołwa!" +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Móžeš lokalny abonement wužiwać!" @@ -1578,7 +1594,7 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Zmylk při aktualizaciji zdaleneho profila." @@ -1635,7 +1651,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany." msgid "User is not a member of group." msgstr "Wužiwar njeje čłon skupiny." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Wužiwarja za skupinu blokować" @@ -1712,40 +1728,32 @@ msgstr "Logo zaktualizowane." msgid "Failed updating logo." msgstr "Aktualizowanje loga je so njeporadźiło." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s skupinskich čłonow" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s skupinskich čłonow, strona %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Lisćina wužiwarjow w tutej skupinje." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokować" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Wužiwarja k administratorej skupiny činić" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Za administratora pomjenować" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Tutoho wužiwarja k administratorej činić" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1866,7 +1874,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1874,48 +1885,48 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM-nastajenja" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Nastajenja składowane." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Žadyn ID Jabber." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Njepłaćiwy ID Jabber" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "To je hižo twój ID Jabber." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1923,28 +1934,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "to je wopačna IM-adresa." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "IM-wobkrućenje njeda so zhašeć." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM-wobkrućenje přetorhnjene." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "To njeje twój ID Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM-adresa bu wotstronjena." @@ -2353,8 +2364,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -2478,7 +2489,7 @@ msgid "Password saved." msgstr "Hesło składowane." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Šćežki" @@ -2678,7 +2689,7 @@ msgstr "Dospołne mjeno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Startowa strona" @@ -2768,7 +2779,7 @@ msgid "Couldn't save profile." msgstr "Profil njeda so składować." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Nastajenja składowane." @@ -3184,7 +3195,7 @@ msgstr "StatusNet" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Posedźenja" @@ -3222,24 +3233,24 @@ msgid "Application profile" msgstr "Aplikaciski profil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Symbol" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Mjeno" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organizacija" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Wopisanje" @@ -3325,7 +3336,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "skupina %s" @@ -3352,7 +3363,7 @@ msgstr "Aliasy" msgid "Group actions" msgstr "Skupinske akcije" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Čłonojo" @@ -3717,7 +3728,7 @@ msgstr "Žadyn kod zapodaty" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4404,7 +4415,8 @@ msgid "Change site configuration" msgstr "Sydłowu konfiguraciju změnić" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -4524,7 +4536,10 @@ msgid "StatusNet software license" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4532,13 +4547,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4548,38 +4566,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Před" @@ -4588,184 +4607,208 @@ msgstr "Před" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Njemóžeš tute sydło změnić." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Změny na tutym woknje njejsu dowolene." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() njeimplementowany." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() njeimplementowany." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Zakładna sydłowa konfiguracija" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Sydło" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Wužiwarska konfiguracija" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Wužiwar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Přistupna konfiguracija" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Konfiguracija posedźenjow" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Sydłowu zdźělenku wobdźěłać" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Aplikaciju wobdźěłać" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Symbol za tutu aplikaciju" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Wopisaj swoju aplikaciju z %d znamješkami" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Wopisaj swoju aplikaciju" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL žórła" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organizacija, kotraž je za tutu aplikaciju zamołwita" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL za startowu stronu organizacije" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Wobhladowak" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Jenož čitajomny" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Popisujomny" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Přetorhnyć" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "popisujomny" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "jenož čitajomny" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" @@ -4785,7 +4828,8 @@ msgstr "Awtor" msgid "Provider" msgstr "Poskićowar" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -4797,6 +4841,11 @@ msgstr "Změnjenje hesła je so njeporadźiło" msgid "Password changing is not allowed" msgstr "Změnjenje hesła njeje dowolene" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokować" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Přikazowe wuslědki" @@ -4820,6 +4869,20 @@ msgstr "Zdźělenka z tym ID njeeksistuje." msgid "User has no last notice." msgstr "Wužiwar nima poslednju powěsć." +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4849,6 +4912,20 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4909,6 +4986,13 @@ msgstr "Powěsć wot %s wospjetowana." 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. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + #. 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:603 @@ -4931,12 +5015,26 @@ msgstr "" msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-profile njedadźa so přez přikaz abonować." +#. 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:672 +#, 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:694 lib/command.php:804 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:705 +#, 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:724 lib/command.php:750 @@ -4975,13 +5073,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "Njejsy nikoho abonował." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4998,7 +5103,7 @@ msgid "No one is subscribed to you." msgstr "Nichtó njeje će abonował." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5015,7 +5120,7 @@ msgid "You are not a member of any groups." msgstr "Njejsy čłon w žanej skupinje." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5025,6 +5130,7 @@ msgstr[1] "Sy čłon tuteju skupinow:" msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5188,30 +5294,19 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Skupina" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blokowany" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Kajkosće skupiny %s wobdźěłać" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -5243,7 +5338,8 @@ msgstr "Tuta dataja je přewulka. Maksimalna datajowa wulkosć je %s." msgid "Partial upload." msgstr "Dźělne nahraće." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemowy zmylk při nahrawanju dataje." @@ -5534,60 +5630,62 @@ msgstr "Wodaj, dochadźaće e-mejle njejsu dowolene." msgid "Unsupported message type: %s" msgstr "Njepodpěrany powěsćowy typ: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Při składowanju twojeje dataje je zmylk w datowej bance wustupił. Prošu " "spytaj hišće raz." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Nahrata dataja bu jenož zdźěla nahrata." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Temporerny rjadowka faluje." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Dataju njeda so na tačel pisać." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Datajowe nahraće přez rozšěrjenje zastajene." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Dataja njeda so do ciloweho zapisa přesunyć." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "MIME-typ dataje njeda so zwěsćić." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Spytaj druhi format %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s njeje podpěrany datajowy typ na tutym serwerje." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Direktnu zdźělenku pósłać" @@ -5693,27 +5791,7 @@ msgstr "Zdźělenka wospjetowana" msgid "Nudge" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Zmylk při zasunjenju noweho profila" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Zmylk při zasunjenju awatara" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Zmylk při aktualizowanju zdaleneho profila" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Zmylk při zasunjenju zdaleneho profila" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Dwójna zdźělenka" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nowy abonement njeda so zasunyć." @@ -5745,12 +5823,8 @@ msgstr "Wuchadny póst" msgid "Your sent messages" msgstr "Twoje pósłane powěsće" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Njeznaty" @@ -5832,19 +5906,19 @@ msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" msgid "No single user defined for single-user mode." msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany." -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Pytanske sydło" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Klučowe hesła" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Pytać" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Pytanska pomoc" @@ -6018,56 +6092,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "před něšto sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "před %d mjeńšinami" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "před něhdźe %d hodźinami" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "před něhdźe %d dnjemi" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "před něhdźe %d měsacami" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "před něhdźe jednym lětom" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 9575fa6036..a8e55d6856 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ -# Translation of StatusNet to Interlingua +# Translation of StatusNet to Interlingua (Interlingua) +# Expored from translatewiki.net # -# Author@translatewiki.net: McDutchie +# Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,20 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:33+0000\n" -"Language-Team: Interlingua\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:01+0000\n" +"Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accesso" @@ -74,10 +76,10 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -90,15 +92,15 @@ msgstr "Pagina non existe." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -198,16 +200,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -222,21 +224,23 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" msgid "API method not found." msgstr "Methodo API non trovate." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Iste methodo require un POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -244,27 +248,27 @@ msgstr "" "Tu debe specificar un parametro nominate 'device' con un del valores: sms, " "im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Non poteva actualisar le usator." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Le usator non ha un profilo." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Non poteva salveguardar le profilo." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -276,30 +280,30 @@ msgstr "" "Le servitor non ha potite tractar tante datos POST (%s bytes) a causa de su " "configuration actual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Impossibile salveguardar le configurationes del apparentia." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Non poteva actualisar le apparentia." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Tu non pote blocar te mesme!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Le blocada del usator ha fallite." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Le disblocada del usator ha fallite." @@ -323,59 +327,59 @@ msgstr "Messages directe a %s" msgid "All the direct messages sent to %s" msgstr "Tote le messages directe inviate a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Message sin texto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Isto es troppo longe. Le maximo es %d characteres." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Usator destinatario non trovate." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Non pote inviar messages directe a usatores que non es tu amicos." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Nulle stato trovate con iste ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Iste stato es ja favorite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Non poteva crear le favorite." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Iste stato non es favorite." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non poteva deler le favorite." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Non poteva sequer le usator: profilo non trovate." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Non poteva sequer le usator: %s es ja in tu lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Non poteva cessar de sequer le usator: Usator non trovate." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Tu non pote cessar de sequer te mesme." @@ -391,101 +395,101 @@ msgstr "Non poteva determinar le usator de origine." msgid "Could not find target user." msgstr "Non poteva trovar le usator de destination." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Le pagina personal non es un URL valide." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Le nomine complete es troppo longe (max. 255 characteres)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Description es troppo longe (max %d charachteres)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Loco es troppo longe (max. 255 characteres)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Troppo de aliases! Maximo: %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias invalide: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Le alias \"%s\" es ja in uso. Proba un altere." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Le alias non pote esser identic al pseudonymo." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Gruppo non trovate." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Tu non es membro de iste gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -515,7 +519,7 @@ msgstr "Gruppos de %s" msgid "groups on %s" msgstr "gruppos in %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Le incargamento ha fallite." @@ -529,9 +533,9 @@ msgstr "Indicio invalide." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -579,8 +583,8 @@ msgstr "Le indicio de requesta %s ha essite refusate e revocate." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -644,18 +648,18 @@ msgstr "Iste methodo require un commando POST o DELETE." msgid "You may not delete another user's status." msgstr "Tu non pote deler le stato de un altere usator." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota non trovate." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Non pote repeter tu proprie nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Iste nota ha ja essite repetite." @@ -667,22 +671,22 @@ msgstr "Stato delite." msgid "No status with that ID found." msgstr "Nulle stato trovate con iste ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Le cliente debe fornir un parametro 'status' con un valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" "Isto es troppo longe. Le longitude maximal del notas es %d characteres." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trovate." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -886,7 +890,9 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blocar iste usator" @@ -928,11 +934,13 @@ msgstr "Un lista del usatores excludite del membrato de iste gruppo." msgid "Unblock user from group" msgstr "Disblocar le usator del gruppo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Disblocar" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Disblocar iste usator" @@ -971,9 +979,9 @@ msgstr "Iste adresse ha ja essite confirmate." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -981,7 +989,7 @@ msgstr "Non poteva actualisar usator." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Non poteva deler confirmation de e-mail." @@ -1017,9 +1025,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1053,7 +1062,7 @@ msgstr "Deler iste application" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Tu non ha aperite un session." @@ -1116,7 +1125,6 @@ msgstr "Deler iste usator" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Apparentia" @@ -1239,13 +1247,13 @@ msgstr "Restaurar apparentias predefinite" msgid "Reset back to default" msgstr "Revenir al predefinitiones" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" @@ -1401,7 +1409,7 @@ msgstr "Adresse de e-mail actualmente confirmate." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1419,22 +1427,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Le adresse de e-mail, como \"nomine@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1442,111 +1454,111 @@ msgstr "Adder" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "E-mail entrante" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Invia e-mail a iste adresse pro publicar nove notas." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Face un nove adresse de e-mail per le qual publicar; cancella le vetule." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nove" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferentias de e-mail" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Inviar me notificationes de nove subscriptiones per e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Inviar me e-mail quando alcuno adde mi nota al favorites." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Inviar me e-mail quando alcuno me invia un message private." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviar me e-mail quando alcuno me invia un \"responsa @\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permitte que amicos me pulsa e me invia e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Io vole publicar notas per e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID pro mi adresse de e-mail." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Preferentias de e-mail salveguardate." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Nulle adresse de e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Non pote normalisar iste adresse de e-mail" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Isto es ja tu adresse de e-mail." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Iste adresse de e-mail pertine ja a un altere usator." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Non poteva inserer le codice de confirmation." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1558,50 +1570,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nulle confirmation pendente a cancellar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Iste adresse de e-mail es erronee." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Confirmation de e-mail cancellate." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Isto non es tu adresse de e-mail." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Le adresse de e-mail ha essite removite." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nulle adresse de e-mail entrante." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Non poteva actualisar le datos del usator." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Adresse de e-mail entrante removite." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nove adresse de e-mail entrante addite." @@ -1719,7 +1731,7 @@ msgstr "Non poteva converter le indicio de requesta in un indicio de accesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Le servicio remote usa un version incognite del protocollo OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Error durante le actualisation del profilo remote." @@ -1776,7 +1788,7 @@ msgstr "Le usator es ja blocate del gruppo." msgid "User is not a member of group." msgstr "Le usator non es membro del gruppo." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blocar usator del gruppo" @@ -1858,40 +1870,32 @@ msgstr "Logotypo actualisate." msgid "Failed updating logo." msgstr "Falleva de actualisar le logotypo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membros del gruppo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros del gruppo %1$s, pagina %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Un lista de usatores in iste gruppo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blocar" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Facer administrator" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Facer iste usator administrator" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2029,7 +2033,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2040,65 +2047,65 @@ msgstr "" "in GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferentias de messageria instantanee" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Inviar me notas per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar un nota quando mi stato de Jabber/GTalk cambia." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Inviar me responsas per Jabber/GTalk de personas al quales io non es " "subscribite." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID pro mi adresse Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferentias confirmate." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Nulle ID de Jabber." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Non pote normalisar iste ID de Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "ID de Jabber non valide" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Isto es ja tu ID de Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Le ID de Jabber pertine ja a un altere usator." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2108,28 +2115,28 @@ msgstr "" "instantanee specificate. Tu debe approbar que %s invia messages a te." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Iste adresse de messageria instantanee es erronee." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Non poteva deler confirmation de messageria instantanee." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Confirmation de messageria instantanee cancellate." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Isto non es tu ID de Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Le adresse de messageria instantanee ha essite removite." @@ -2604,8 +2611,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solmente le URLs %s es permittite super HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2746,7 +2753,7 @@ msgid "Password saved." msgstr "Contrasigno salveguardate." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Camminos" @@ -2959,7 +2966,7 @@ msgstr "Nomine complete" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina personal" @@ -3065,7 +3072,7 @@ msgid "Couldn't save tags." msgstr "Non poteva salveguardar etiquettas." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Preferentias confirmate." @@ -3603,7 +3610,7 @@ msgstr "Usator es ja in cassa de sablo." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessiones" @@ -3641,24 +3648,24 @@ msgid "Application profile" msgstr "Profilo del application" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icone" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nomine" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -3773,7 +3780,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Isto es un modo de condivider lo que te place." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Gruppo %s" @@ -3825,7 +3832,7 @@ msgstr "Syndication de notas pro le gruppo %s (Atom)" msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membros" @@ -4279,7 +4286,7 @@ msgstr "Nulle codice entrate" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Instantaneos" @@ -5012,7 +5019,7 @@ msgid "Unable to save tag." msgstr "Impossibile salveguardar le etiquetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Tu ha essite blocate del subscription." @@ -5160,7 +5167,8 @@ msgid "Change site configuration" msgstr "Modificar le configuration del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -5237,7 +5245,7 @@ msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso del sito" @@ -5301,7 +5309,10 @@ msgid "StatusNet software license" msgstr "Licentia del software StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5311,13 +5322,16 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5329,50 +5343,51 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licentia del contento del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Post" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Ante" @@ -5383,209 +5398,228 @@ msgstr "" "Expectava le elemento-radice de un syndication, ma recipeva un documento XML " "integre." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Non pote ancora tractar contento remote." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Non pote ancora tractar contento XML incastrate." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Non pote ancora tractar contento Base64 incastrate." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Tu non pote facer modificationes in iste sito." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Le modification de iste pannello non es permittite." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() non implementate." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuration basic del sito" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuration del apparentia" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Apparentia" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuration del usator" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usator" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuration del accesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuration del camminos" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuration del sessiones" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Modificar aviso del sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuration del instantaneos" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le ressource de API require accesso pro lectura e scriptura, ma tu ha " "solmente accesso pro lectura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Modificar application" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icone pro iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Describe tu application in %d characteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Describe tu application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL del pagina initial de iste application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL de origine" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organisation responsabile de iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL del pagina initial del organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL verso le qual rediriger post authentication" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navigator" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Scriptorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Typo de application, navigator o scriptorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Lectura solmente" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lectura e scriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancellar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lectura-scriptura" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "lectura solmente" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accesso \"%2$s\" approbate le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" @@ -5605,11 +5639,13 @@ msgstr "Autor" msgid "Provider" msgstr "Providitor" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notas ubi iste annexo appare" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etiquettas pro iste annexo" @@ -5621,6 +5657,11 @@ msgstr "Cambio del contrasigno fallite" msgid "Password changing is not allowed" msgstr "Cambio del contrasigno non permittite" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blocar" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultatos del commando" @@ -5871,7 +5912,7 @@ msgid "You are not subscribed to anyone." msgstr "Tu non es subscribite a alcuno." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5886,7 +5927,7 @@ msgid "No one is subscribed to you." msgstr "Necuno es subscribite a te." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5901,7 +5942,7 @@ msgid "You are not a member of any groups." msgstr "Tu non es membro de alcun gruppo." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5909,6 +5950,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Tu es membro de iste gruppo:" msgstr[1] "Tu es membro de iste gruppos:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6130,38 +6172,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Pseudonymos additional pro le gruppo, separate per commas o spatios, max %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Gruppo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blocate" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s usatores blocate" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Modificar proprietates del gruppo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logotypo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Adder o modificar logotypo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Adder o modificar apparentia de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Gruppos con le plus membros" @@ -6193,7 +6203,8 @@ msgstr "Iste file es troppo grande. Le dimension maximal es %s." msgid "Partial upload." msgstr "Incargamento partial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Error de systema durante le incargamento del file." @@ -6595,17 +6606,20 @@ msgstr "Pardono, le reception de e-mail non es permittite." msgid "Unsupported message type: %s" msgstr "Typo de message non supportate: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Un error de base de datos occurreva durante le salveguarda de tu file. Per " "favor reproba." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 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." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6613,44 +6627,43 @@ msgstr "" "Le file incargate excede le directiva MAX_FILE_SIZE specificate in le " "formulario HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Le file incargate ha solmente essite incargate partialmente." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Manca un dossier temporari." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Falleva de scriber le file in disco." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Incargamento de file stoppate per un extension." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "File excede quota del usator." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "File non poteva esser displaciate in le directorio de destination." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Non poteva determinar le typo MIME del file." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Tenta usar un altere formato %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s non es un typo de file supportate in iste servitor." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Inviar un nota directe" @@ -6766,27 +6779,7 @@ msgstr "Pulsar" msgid "Send a nudge to this user" msgstr "Inviar un pulsata a iste usator" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Error durante le insertion del nove profilo" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Error durante le insertion del avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Error in actualisar le profilo remote" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Error durante le insertion del profilo remote" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicar nota" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non poteva inserer nove subscription." @@ -6823,7 +6816,8 @@ msgstr "Tu messages inviate" msgid "Tags in %s's notices" msgstr "Etiquettas in le notas de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Incognite" @@ -6917,19 +6911,19 @@ msgstr "Cassa de sablo" msgid "Sandbox this user" msgstr "Mitter iste usator in le cassa de sablo" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Cercar in sito" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Parola(s)-clave" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Cercar" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Adjuta super le recerca" @@ -7132,56 +7126,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "alcun secundas retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "circa un minuta retro" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "circa %d minutas retro" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "circa un hora retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "circa %d horas retro" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "circa un die retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "circa %d dies retro" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "circa un mense retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "circa %d menses retro" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 6fb275b237..177c00e08a 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ -# Translation of StatusNet to Icelandic +# Translation of StatusNet to Icelandic (Íslenska) +# Expored from translatewiki.net # -# Author@translatewiki.net: McDutchie +# Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,18 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:34+0000\n" -"Language-Team: Icelandic\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:02+0000\n" +"Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=2; plural=(n % 100 != 1 && n % 100 != 21 && n % 100 !" -"= 31 && n % 100 != 41 && n % 100 != 51 && n % 100 != 61 && n % 100 != 71 && " -"n % 100 != 81 && n % 100 != 91);\n" +"X-Message-Group: #out-statusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -43,15 +43,15 @@ msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -94,6 +94,12 @@ msgstr "" msgid "Feed for friends of %s (RSS 2.0)" msgstr "" +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "" + #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -131,39 +137,41 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Þessi aðferð krefst POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Notandi hefur enga persónulega síðu." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -173,11 +181,21 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:126 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings." +msgstr "" + +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Mistókst að loka á notanda." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Mistókst að opna fyrir notanda." @@ -196,127 +214,128 @@ msgstr "Bein skilaboð til %s" msgid "All the direct messages sent to %s" msgstr "Öll bein skilaboð til %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Enginn texti í skilaboðum!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Þetta er of langt. Hámarkslengd babls er %d tákn." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Móttakandi fannst ekki." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Engin staða fundin með þessu kenni." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Gat ekki eytt uppáhaldi." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ekki tækt stuttnefni." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Heimasíða er ekki gild vefslóð." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Staðsetning er of löng (í mesta lagi %d stafir)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Fannst ekki." +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "" + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki skráð hópmeðlimi." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -335,9 +354,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -368,8 +387,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -426,13 +445,13 @@ msgstr "Þessi aðferð krefst POST eða DELETE." msgid "You may not delete another user's status." msgstr "Þú getur ekki eytt stöðu annars notanda." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ekkert svoleiðis babl." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Get ekki eytt þessu babli." @@ -444,15 +463,15 @@ msgstr "" msgid "No status with that ID found." msgstr "Engin staða með þessu kenni fannst." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Fannst ekki." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -591,7 +610,9 @@ msgid "No" msgstr "Athugasemd" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -615,11 +636,13 @@ msgstr "Mistókst að vista upplýsingar um notendalokun" msgid "No such group." msgstr "Enginn þannig hópur." -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Opna" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Opna á þennan notanda" @@ -641,12 +664,6 @@ msgstr "Staðfestingarlykill fannst ekki." msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -658,9 +675,9 @@ msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -668,7 +685,7 @@ msgstr "Gat ekki uppfært notanda." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." @@ -696,9 +713,10 @@ msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." msgid "Application not found." msgstr "Staðfestingarlykill fannst ekki." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -720,7 +738,7 @@ msgstr "Get ekki eytt þessu babli." #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ekki innskráð(ur)." @@ -757,7 +775,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -765,19 +782,10 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:431 msgid "Site logo" msgstr "Babl vefsíðunnar" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -833,13 +841,13 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Vista" @@ -861,10 +869,6 @@ msgstr "Bæta við sem uppáhaldsbabli" msgid "No such document \"%s\"" msgstr "Ekkert svoleiðis babl." -#: actions/editapplication.php:54 -msgid "Edit Application" -msgstr "" - #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" @@ -938,7 +942,7 @@ msgstr "Núverandi staðfesta tölvupóstfangið." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -953,116 +957,104 @@ msgstr "" "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " "ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Tölvupóstfang eins og \"notandi@example.org\"" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Móttökutölvupóstur" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla." -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Tölvupóstföng" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Ég vil babla í gegnum tölvupóst." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Birta MicroID fyrir tölvupóstfangið mitt." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Ekkert tölvupóstfang." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Þetta er nú þegar tölvupóstfangið þitt." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Gat ekki sett inn staðfestingarlykil." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1074,45 +1066,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Engin staðfesting í bið sem þarf að hætta við." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Engin staðfesting í bið sem þarf að hætta við." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Þetta er ekki tölvupóstfangið þitt." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Móttökutölvupóstfang fjarlægt." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ekkert móttökutölvupóstfang." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Gat ekki uppfært skráarfærslu notanda." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Móttökutölvupóstfang fjarlægt." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nýju móttökutölvupóstfangi bætt við." @@ -1171,15 +1163,6 @@ msgstr "Notendur í sviðsljósinu" msgid "Featured users, page %d" msgstr "Notendur í sviðsljósinu, síða %d" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some great users on %s" -msgstr "" - -#: actions/file.php:42 -msgid "No attachments." -msgstr "" - #: actions/file.php:51 msgid "No uploaded attachments." msgstr "" @@ -1188,10 +1171,6 @@ msgstr "" msgid "Not expecting this response!" msgstr "Bjóst ekki við þessu svari!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Þú getur notað staðbundna áskrift!" @@ -1204,14 +1183,6 @@ msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" msgid "You are not authorized." msgstr "Þú ert ekki áskrifandi." -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1270,29 +1241,35 @@ msgstr "Einkennismynd uppfærð." msgid "Failed updating logo." msgstr "Tókst ekki að uppfæra einkennismynd" -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Hópmeðlimir %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Hópmeðlimir %s" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Listi yfir notendur í þessum hóp." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Stjórnandi" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Loka" +#: actions/groupmembers.php:498 +msgid "Make user an admin of the group" +msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" @@ -1373,11 +1350,6 @@ msgstr "" "[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " "neðan og stilltu notkunina." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1402,7 +1374,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1413,64 +1388,64 @@ msgstr "" "á GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Stillingar vistaðar." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Sendur mér babl í gegnum Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Stillingar vistaðar." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Ekkert Jabber-kenni" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Get ekki staðlað þetta Jabber kenni" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Ekki tækt Jabber-kenni" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Þetta er nú þegar Jabber-kennið þitt." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber-kennið tilheyrir öðrum notanda." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1480,23 +1455,23 @@ msgstr "" "við. Þú verður að leyfa %s að senda snarskilaboð til þín." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Þetta er rangt snarskilaboðafang." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Enginn staðfestingarlykill." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Þetta er ekki Jabber-kennið þitt." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Móttökutölvupóstfang fjarlægt." @@ -1584,12 +1559,6 @@ msgstr "Persónuleg skilaboð" msgid "Optionally add a personal message to the invitation." msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1710,23 +1679,13 @@ msgstr "" "Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " "lykilorð áður en þú breytir stillingunum þínum." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:133 +#: actions/makeadmin.php:96 #, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status." +msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" #: actions/newapplication.php:176 @@ -1818,11 +1777,6 @@ msgstr "" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Færslur frá %1$s á %2$s!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Ýtt við notanda" @@ -1835,6 +1789,15 @@ msgstr "Ýtt við notanda!" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1874,8 +1837,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -1992,7 +1955,7 @@ msgid "Password saved." msgstr "Lykilorð vistað." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -2000,26 +1963,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2096,18 +2039,10 @@ msgstr "" msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:335 -msgid "SSL server" -msgstr "" - #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2162,7 +2097,7 @@ msgstr "Fullt nafn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimasíða" @@ -2172,15 +2107,6 @@ msgstr "" "Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " "vefsvæði" -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Lýsing" @@ -2267,7 +2193,7 @@ msgid "Couldn't save tags." msgstr "Gat ekki vistað merki." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Stillingar vistaðar." @@ -2565,25 +2491,6 @@ msgid "" "email address, IM address, and phone number." msgstr "" -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2633,18 +2540,6 @@ msgstr "Gerast áskrifandi" msgid "Invalid profile URL (bad format)" msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:119 msgid "Repeated!" msgstr "" @@ -2660,6 +2555,16 @@ msgstr "Svör við %s" msgid "Replies to %1$s, page %2$d" msgstr "Svör við %s" +#: actions/replies.php:145 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:152 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + #: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" @@ -2696,7 +2601,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2721,13 +2626,13 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Lýsing" @@ -2741,10 +2646,18 @@ msgstr "Tölfræði" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2775,16 +2688,6 @@ msgstr "" msgid "Could not retrieve favorite notices." msgstr "Gat ekki sótt uppáhaldsbabl." -#: actions/showfavorites.php:171 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:178 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -2810,7 +2713,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s hópurinn" @@ -2852,7 +2755,12 @@ msgstr "" msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:350 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Meðlimir" @@ -2908,9 +2816,19 @@ msgstr "Skilaboð frá %1$s á %2$s" msgid "%1$s, page %2$d" msgstr "Hópar, síða %d" -#: actions/showstream.php:122 +#: actions/showstream.php:129 #, php-format -msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" msgstr "" #: actions/showstream.php:200 @@ -3053,11 +2971,6 @@ msgstr "Stillingar fyrir mynd" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3172,7 +3085,7 @@ msgstr "Enginn lykill sleginn inn" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3180,6 +3093,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Staðfesting tölvupóstfangs" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3321,13 +3238,9 @@ msgstr "Babl merkt með %s" msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:93 +#: actions/tag.php:99 #, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/tagother.php:39 -msgid "No ID argument." +msgid "Notice feed for tag %s (Atom)" msgstr "" #: actions/tagother.php:65 @@ -3442,13 +3355,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Heimila áskriftir" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "" @@ -3474,24 +3380,10 @@ msgstr "Engin heimildarbeiðni!" msgid "Subscription authorized" msgstr "Áskrift heimiluð" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Áskrift hafnað" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3517,16 +3409,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3797,24 +3679,12 @@ msgstr "Ónafngreind síða" msgid "Primary site navigation" msgstr "Stikl aðalsíðu" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Breyta lykilorðinu þínu" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -3844,15 +3714,9 @@ msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp" -#. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 -msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "" - #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Babl vefsíðunnar" @@ -3911,22 +3775,17 @@ msgstr "Tengiliður" msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er örbloggsþjónusta." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3939,43 +3798,44 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Uppröðun" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Eftir" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Áður" @@ -3984,103 +3844,140 @@ msgstr "Áður" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" -msgstr "" - -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Lýsing" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Hætta við" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Endurheimta" @@ -4095,14 +3992,21 @@ msgstr "" msgid "Author" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Loka" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Niðurstöður skipunar" @@ -4115,6 +4019,13 @@ msgstr "Fullkláruð skipun" msgid "Command failed" msgstr "Misheppnuð skipun" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4142,6 +4053,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Babl gert að uppáhaldi." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4176,13 +4101,6 @@ msgid "" "same server." msgstr "" -#. TRANS: Message given if content is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 -#, php-format -msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." @@ -4193,22 +4111,18 @@ msgstr "Villa kom upp við að senda bein skilaboð" msgid "Error repeating notice." msgstr "Villa kom upp í stillingu notanda." -#. TRANS: Message given if content of a notice for a reply is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#. 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:672 #, php-format -msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgid "Subscribed to %s." msgstr "" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." -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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -4249,8 +4163,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4259,7 +4180,7 @@ msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4268,7 +4189,7 @@ msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4276,6 +4197,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4326,10 +4248,6 @@ msgstr "" msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 -msgid "Go to the installer." -msgstr "" - #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "Snarskilaboð" @@ -4415,11 +4333,6 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4430,24 +4343,6 @@ msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Hópur" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Breyta hópstillingum %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Einkennismerki" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Bæta við eða breyta einkennismerki %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Hóparnir með flestu meðlimina" @@ -4475,7 +4370,8 @@ msgstr "Skráarsnið myndar ekki stutt." msgid "Partial upload." msgstr "Upphal að hluta til." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Kerfisvilla kom upp við upphal skráar." @@ -4708,6 +4604,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -4746,10 +4647,6 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 -msgid "from" -msgstr "" - #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Gat ekki þáttað skilaboðin." @@ -4766,52 +4663,69 @@ msgstr "Afsakið en þetta er ekki móttökutölvupóstfangið þitt." msgid "Sorry, no incoming email allowed." msgstr "Því miður er móttökutölvupóstur ekki leyfður." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -4826,11 +4740,6 @@ msgstr "Til" msgid "Available characters" msgstr "Leyfileg tákn" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Senda babl" @@ -4848,10 +4757,6 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -4886,10 +4791,6 @@ msgstr "" msgid "web" msgstr "" -#: lib/noticelist.php:603 -msgid "Repeated by" -msgstr "" - #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Svara þessu babli" @@ -4910,23 +4811,7 @@ msgstr "Pot" msgid "Send a nudge to this user" msgstr "Ýta við þessum notanda" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Villa kom upp við að setja inn nýja persónulega síðu" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Villa kom upp við að setja inn mynd" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Gat ekki sett inn nýja áskrift." @@ -5016,10 +4901,6 @@ msgstr "Í sviðsljósinu" msgid "Popular" msgstr "Vinsælt" -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." -msgstr "" - #: lib/repeatform.php:132 msgid "Yes" msgstr "Já" @@ -5033,14 +4914,12 @@ msgstr "" msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Leita" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Fólk" @@ -5198,56 +5077,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "fyrir um %d mínútum síðan" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "fyrir um %d klukkutímum síðan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "fyrir um einum degi síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "fyrir um %d dögum síðan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "fyrir um %d mánuðum síðan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "fyrir um einu ári síðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index db7cb67ceb..35f4b1c1f2 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Italian +# Translation of StatusNet to Italian (Italiano) +# Expored from translatewiki.net # -# Author@translatewiki.net: HalphaZ -# Author@translatewiki.net: Milocasagrande -# Author@translatewiki.net: Nemo bis +# Author: HalphaZ +# Author: Milocasagrande +# Author: Nemo bis # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,20 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:41+0000\n" -"Language-Team: Italian\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:04+0000\n" +"Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Accesso" @@ -78,10 +80,10 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -94,15 +96,15 @@ msgstr "Pagina inesistente." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -200,16 +202,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -224,21 +226,23 @@ msgstr "Messaggi da %1$s e amici su %2$s!" msgid "API method not found." msgstr "Metodo delle API non trovato." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Questo metodo richiede POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -246,27 +250,27 @@ msgstr "" "È necessario specificare un parametro chiamato \"device\" con un valore tra: " "\"sms\", \"im\" o \"none\"." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Impossibile aggiornare l'utente." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "L'utente non ha un profilo." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Impossibile salvare il profilo." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -278,30 +282,30 @@ msgstr "" "Il server non è in grado di gestire tutti quei dati POST (%s byte) con la " "configurazione attuale." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Impossibile salvare la impostazioni dell'aspetto." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Impossibile aggiornare l'aspetto." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Non puoi bloccarti!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blocco dell'utente non riuscito." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Sblocco dell'utente non riuscito." @@ -325,66 +329,62 @@ msgstr "Messaggi diretti a %s" msgid "All the direct messages sent to %s" msgstr "Tutti i messaggi diretti inviati a %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Nessun testo nel messaggio!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Destinatario non trovato." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Nessuno messaggio trovato con quel ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Questo messaggio è già un preferito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Impossibile creare un preferito." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Questo messaggio non è un preferito." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Impossibile eliminare un preferito." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Impossibile non seguire l'utente: utente non trovato." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossibile seguire l'utente: %s è già nel tuo elenco." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Impossibile non seguire l'utente: utente non trovato." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Non puoi non seguirti." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Impossibile determinare l'utente sorgente." @@ -393,7 +393,7 @@ msgstr "Impossibile determinare l'utente sorgente." msgid "Could not find target user." msgstr "Impossibile trovare l'utente destinazione." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -401,95 +401,95 @@ msgstr "" "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " "spazi." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "L'indirizzo della pagina web non è valido." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Nome troppo lungo (max 255 caratteri)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max %d caratteri)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Troppi alias! Massimo %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Alias non valido: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "L'alias \"%s\" è già in uso. Prova con un altro." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "L'alias non può essere lo stesso del soprannome." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Gruppo non trovato." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Non fai parte di questo gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -529,9 +529,9 @@ msgstr "Token non valido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -577,8 +577,8 @@ msgstr "Il token di richiesta %s è stato rifiutato o revocato." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -642,18 +642,18 @@ msgstr "Questo metodo richiede POST o DELETE." msgid "You may not delete another user's status." msgstr "Non puoi eliminare il messaggio di un altro utente." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Nessun messaggio." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Non puoi ripetere un tuo messaggio." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Hai già ripetuto quel messaggio." @@ -665,21 +665,21 @@ msgstr "Messaggio eliminato." msgid "No status with that ID found." msgstr "Nessuno stato trovato con quel ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Troppo lungo. Lunghezza massima %d caratteri." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trovato." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -881,7 +881,9 @@ msgid "Yes" msgstr "Sì" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blocca questo utente" @@ -923,11 +925,13 @@ msgstr "Un elenco degli utenti a cui è bloccato l'accesso a questo gruppo." msgid "Unblock user from group" msgstr "Sblocca l'utente dal gruppo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Sblocca" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Sblocca questo utente" @@ -966,9 +970,9 @@ msgstr "Quell'indirizzo è già stato confermato." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -976,7 +980,7 @@ msgstr "Impossibile aggiornare l'utente." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." @@ -1012,9 +1016,10 @@ msgstr "Applicazione non trovata." msgid "You are not the owner of this application." msgstr "Questa applicazione non è di tua proprietà." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1047,7 +1052,7 @@ msgstr "Elimina l'applicazione" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Accesso non effettuato." @@ -1110,7 +1115,6 @@ msgstr "Elimina questo utente" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Aspetto" @@ -1231,13 +1235,13 @@ msgstr "Ripristina i valori predefiniti" msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salva" @@ -1393,7 +1397,7 @@ msgstr "Indirizzo email attualmente confermato." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1412,22 +1416,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Annulla" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Indirizzo email, del tipo \"nomeutente@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1435,19 +1443,19 @@ msgstr "Aggiungi" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Email di ricezione" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Crea un nuovo indirizzo email a cui inviare i messaggi e rimuovi quello " @@ -1455,93 +1463,93 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nuovo" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferenze dell'email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Inviami avvisi di nuovi abbonamenti via email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviami un'email quando qualcuno mi invia una \"@-risposta\"" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Voglio inviare i messaggi via email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Pubblica un MicroID per il mio indirizzo email" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Preferenze dell'email salvate." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Nessun indirizzo email." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare quell'indirizzo email" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Quello è già il tuo indirizzo email." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Quell'indirizzo email appartiene già a un altro utente." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Impossibile inserire il codice di conferma." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1553,50 +1561,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nessuna conferma da annullare." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Quello è l'indirizzo email sbagliato." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Conferma dell'email annullata." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Quello non è il tuo indirizzo email." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "L'indirizzo email è stato rimosso." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Nessun indirizzo email di ricezione." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Impossibile aggiornare il record dell'utente." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Indirizzo email di ricezione rimosso." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." @@ -1715,7 +1723,7 @@ msgstr "Impossibile convertire il token di richiesta in uno di accesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Errore nell'aggiornare il profilo remoto." @@ -1772,7 +1780,7 @@ msgstr "L'utente è già bloccato dal gruppo." msgid "User is not a member of group." msgstr "L'utente non fa parte del gruppo." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blocca l'utente dal gruppo" @@ -1854,40 +1862,32 @@ msgstr "Logo aggiornato." msgid "Failed updating logo." msgstr "Aggiornamento del logo non riuscito." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membri del gruppo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membri del gruppo %1$s, pagina %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blocca" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Rendi amm." - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Rende questo utente un amministratore" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2027,7 +2027,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2038,63 +2041,63 @@ msgstr "" "di messaggistica o su GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferenze messaggistica" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Inviami i messaggi via Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferenze salvate." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Nessun ID di Jabber." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Impossibile normalizzare quell'ID Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Non è un ID Jabber valido" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Quello è già il tuo ID di Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "ID Jabber già assegnato a un altro utente." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2104,28 +2107,28 @@ msgstr "" "istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Quello è l'indirizzo di messaggistica sbagliato." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Impossibile eliminare la conferma della messaggistica." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Conferma della messaggistica annullata." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "L'indirizzo di messaggistica è stato rimosso." @@ -2513,11 +2516,6 @@ msgstr "Messaggi con \"%s\"" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Messaggi che corrispondono al termine \"%1$s\" su %2$s!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Richiamo inviato" @@ -2592,8 +2590,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solo URL %s attraverso HTTP semplice." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2735,7 +2733,7 @@ msgid "Password saved." msgstr "Password salvata." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Percorsi" @@ -2949,7 +2947,7 @@ msgstr "Nome" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina web" @@ -3055,7 +3053,7 @@ msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -3591,7 +3589,7 @@ msgstr "L'utente è già nella \"sandbox\"." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessioni" @@ -3629,24 +3627,24 @@ msgid "Application profile" msgstr "Profilo applicazione" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icona" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organizzazione" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" @@ -3750,7 +3748,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Questo è un modo per condividere ciò che ti piace." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Gruppo %s" @@ -3802,7 +3800,7 @@ msgstr "Feed dei messaggi per il gruppo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membri" @@ -4254,7 +4252,7 @@ msgstr "Nessun codice inserito" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Snapshot" @@ -4816,15 +4814,6 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 -#, php-format -msgid "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." -msgstr "" - #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4971,7 +4960,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Non ti è possibile abbonarti." @@ -5119,7 +5108,8 @@ msgid "Change site configuration" msgstr "Modifica la configurazione del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Amministra" @@ -5196,7 +5186,7 @@ msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Messaggio del sito" @@ -5260,7 +5250,10 @@ msgid "StatusNet software license" msgstr "Licenza del software StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5270,13 +5263,16 @@ msgstr "" "(%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** è un servizio di microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5288,34 +5284,35 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licenza del contenuto del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5323,19 +5320,19 @@ msgstr "" "licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginazione" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Successivi" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Precedenti" @@ -5344,208 +5341,227 @@ msgstr "Precedenti" msgid "Expecting a root feed element but got a whole XML document." msgstr "Atteso un elemento root del feed, ma ricevuto un documento XML intero." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Impossibile gestire contenuti remoti." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Impossibile gestire contenuti XML incorporati." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Non puoi apportare modifiche al sito." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Le modifiche al pannello non sono consentite." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() non implementata." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configurazione di base" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configurazione aspetto" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Aspetto" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configurazione utente" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configurazione di accesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configurazione percorsi" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configurazione sessioni" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Modifica messaggio del sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configurazione snapshot" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo " "accesso in lettura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Modifica applicazione" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icona per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Descrivi l'applicazione in %d caratteri" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Descrivi l'applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL della pagina web di questa applicazione" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL sorgente" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organizzazione responsabile per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL della pagina web dell'organizzazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL verso cui redirigere dopo l'autenticazione" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipo di applicazione, browser o desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Sola lettura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lettura-scrittura" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Annulla" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "Lettura-scrittura" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "Sola lettura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Approvata %1$s - Accesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" @@ -5565,11 +5581,13 @@ msgstr "Autore" msgid "Provider" msgstr "Provider" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Messaggi in cui appare questo allegato" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etichette per questo allegato" @@ -5581,6 +5599,11 @@ msgstr "Modifica della password non riuscita" msgid "Password changing is not allowed" msgstr "La modifica della password non è permessa" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blocca" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Risultati comando" @@ -5611,6 +5634,13 @@ msgstr "L'utente non ha un ultimo messaggio." msgid "Could not find a user with nickname %s." msgstr "Impossibile trovare un utente col soprannome %s." +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -5648,6 +5678,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5737,12 +5781,26 @@ msgstr "Specifica il nome dell'utente a cui abbonarti." msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." +#. 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:672 +#, 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:694 lib/command.php:804 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." +#. 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:705 +#, 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:724 lib/command.php:750 @@ -5781,13 +5839,20 @@ msgstr "Il comando di accesso è disabilitato." 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "Il tuo abbonamento è stato annullato." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5802,7 +5867,7 @@ msgid "No one is subscribed to you." msgstr "Nessuno è abbonato ai tuoi messaggi." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5817,7 +5882,7 @@ msgid "You are not a member of any groups." msgstr "Non fai parte di alcun gruppo." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5825,6 +5890,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6049,38 +6115,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Soprannomi aggiuntivi per il gruppo, separati da virgole o spazi, max %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Gruppo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloccato" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "Utenti bloccati di %s" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Modifica le proprietà del gruppo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Aggiungi o modifica il logo di %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Aggiungi o modifica l'aspetto di %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "I gruppi più numerosi" @@ -6112,7 +6146,8 @@ msgstr "Quel file è troppo grande. La dimensione massima è %s." msgid "Partial upload." msgstr "Caricamento parziale." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." @@ -6517,16 +6552,19 @@ msgstr "Email di ricezione non consentita." msgid "Unsupported message type: %s" msgstr "Tipo di messaggio non supportato: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Si è verificato un errore nel database nel salvare il file. Prova di nuovo." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Il file caricato eccede la direttiva upload_max_filesize in php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6534,44 +6572,43 @@ msgstr "" "Il file caricato eccede la direttiva MAX_FILE_SIZE specificata nel modulo " "HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Il file caricato è stato caricato solo parzialmente." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Manca una directory temporanea." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Scrittura del file su disco non riuscita." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Caricamento del file bloccato dall'estensione." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Il file supera la quota dell'utente." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Impossibile spostare il file nella directory di destinazione." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Impossibile determinare il tipo MIME del file." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Prova a usare un altro formato per %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s non è un tipo di file supportato su server." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Invia un messaggio diretto" @@ -6687,27 +6724,7 @@ msgstr "Richiama" msgid "Send a nudge to this user" msgstr "Invia un richiamo a questo utente" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Errore nell'inserire il nuovo profilo" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Errore nell'inserire l'immagine" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Errore nell'aggiornare il profilo remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Errore nell'inserire il profilo remoto" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Messaggio duplicato" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." @@ -6744,7 +6761,8 @@ msgstr "I tuoi messaggi inviati" msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Sconosciuto" @@ -6838,19 +6856,19 @@ msgstr "Sandbox" msgid "Sandbox this user" msgstr "Metti questo utente nella \"sandbox\"" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Cerca nel sito" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Parole" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Cerca" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Aiuto sulla ricerca" @@ -7049,56 +7067,32 @@ msgid "Moderator" msgstr "Moderatore" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "pochi secondi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "circa un minuto fa" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "circa %d minuti fa" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "circa un'ora fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "circa %d ore fa" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "circa un giorno fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "circa %d giorni fa" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "circa un mese fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "circa %d mesi fa" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 027ea92c21..e555c52d87 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -1,9 +1,10 @@ -# Translation of StatusNet to Japanese +# Translation of StatusNet to Japanese (日本語) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Fryed-peach -# Author@translatewiki.net: Sonoda -# Author@translatewiki.net: Whym +# Author: Brion +# Author: Fryed-peach +# Author: Sonoda +# Author: Whym # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,20 +12,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:44+0000\n" -"Language-Team: Japanese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:05+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "アクセス" @@ -82,15 +84,15 @@ msgstr "そのようなタグはありません。" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -188,16 +190,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -212,47 +214,43 @@ msgstr "%2$s に %1$s と友人からの更新があります!" msgid "API method not found." msgstr "API メソッドが見つかりません。" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" -#: actions/apiaccountupdatedeliverydevice.php:106 -msgid "" -"You must specify a parameter named 'device' with a value of one of: sms, im, " -"none." -msgstr "" - -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "ユーザを更新できませんでした。" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "ユーザはプロフィールをもっていません。" -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "プロフィールを保存できませんでした。" -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -264,30 +262,30 @@ msgstr "" "サーバーの現在の構成が理由で、大量の POST データ (%sバイト) を処理することが" "できませんでした。" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "あなたのデザイン設定を保存できません。" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "デザインを更新できませんでした。" -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "自分自身をブロックすることはできません!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "ユーザのブロックに失敗しました。" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "ユーザのブロック解除に失敗しました。" @@ -311,67 +309,63 @@ msgstr "%s へのダイレクトメッセージ" msgid "All the direct messages sent to %s" msgstr "%s へ送った全てのダイレクトメッセージ" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "メッセージの本文がありません!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "長すぎます。メッセージは最大 %d 字までです。" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "受け取り手のユーザが見つかりません。" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "そのIDのステータスが見つかりません。" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "このステータスはすでにお気に入りです。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "お気に入りを作成できません。" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "そのステータスはお気に入りではありません。" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "お気に入りを取り消すことができません。" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" "ユーザをフォローできませんでした: %s は既にあなたのリストに入っています。" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "自分自身をフォロー停止することはできません。" -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "ソースユーザーを決定できません。" @@ -380,7 +374,7 @@ msgstr "ソースユーザーを決定できません。" msgid "Could not find target user." msgstr "ターゲットユーザーを見つけられません。" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -388,90 +382,90 @@ msgstr "" "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" "できません。" -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "フルネームが長すぎます。(255字まで)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "記述が長すぎます。(最長%d字)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "場所が長すぎます。(255字まで)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "別名が多すぎます! 最大 %d。" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "別名 \"%s\" は既に使用されています。他のものを試してみて下さい。" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "別名はニックネームと同じではいけません。" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "見つかりません。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "すでにこのグループのメンバーです。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "管理者によってこのグループからブロックされています。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ユーザ %1$s はグループ %2$s に参加できません。" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "このグループのメンバーではありません。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -505,9 +499,9 @@ msgstr "不正なトークン。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -552,8 +546,8 @@ msgstr "リクエストトークン%sは、拒否されて、取り消されま #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -614,18 +608,18 @@ msgstr "このメソッドには POST か DELETE が必要です。" msgid "You may not delete another user's status." msgstr "他のユーザのステータスを消すことはできません。" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "そのようなつぶやきはありません。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "あなたのつぶやきを繰り返せません。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "すでにつぶやきを繰り返しています。" @@ -637,21 +631,21 @@ msgstr "ステータスを削除しました。" msgid "No status with that ID found." msgstr "そのIDでのステータスはありません。" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "長すぎます。つぶやきは最大 %d 字までです。" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "見つかりません。" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "つぶやきは URL を含めて最大 %d 字までです。" @@ -825,7 +819,9 @@ msgid "Do not block this user" msgstr "このユーザをアンブロックする" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "このユーザをブロックする" @@ -867,11 +863,13 @@ msgstr "このグループへの参加をブロックされたユーザのリス msgid "Unblock user from group" msgstr "グループからのアンブロックユーザ" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "アンブロック" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "このユーザをアンブロックする" @@ -893,12 +891,6 @@ msgstr "確認コードが見つかりません。" msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -910,9 +902,9 @@ msgstr "そのアドレスは既に承認されています。" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -920,7 +912,7 @@ msgstr "ユーザを更新できません" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" @@ -956,9 +948,10 @@ msgstr "アプリケーションが見つかりません。" msgid "You are not the owner of this application." msgstr "このアプリケーションのオーナーではありません。" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -982,7 +975,7 @@ msgstr "このアプリケーションを削除" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "ログインしていません。" @@ -1045,7 +1038,6 @@ msgstr "このユーザを削除" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "デザイン" @@ -1162,13 +1154,13 @@ msgstr "デフォルトデザインに戻す。" msgid "Reset back to default" msgstr "デフォルトへリセットする" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1324,7 +1316,7 @@ msgstr "現在確認されているメールアドレス。" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1339,124 +1331,112 @@ msgstr "" "このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" "かれたメッセージが届いていないか確認してください。" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "メールアドレス、\"UserName@example.org\" のような" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "入ってくるメール" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "新しいつぶやき投稿にこのアドレスへメールする" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。" -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "メールアドレス" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "メールで新規フォローの通知を私に送ってください。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "だれかがお気に入りとして私のつぶやきを加えたら、メールを私に送ってください。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "だれかがプライベート・メッセージを私に送るときには、メールを私に送ってくださ" "い。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "だれかが\"@-返信\"を私を送るときには、メールを私に送ってください、" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "友達が私に合図とメールを送ることを許可する。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "メールでつぶやきを投稿したい。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "私のメールアドレスのためにMicroIDを発行してください。" #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "メールアドレスがありません。" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "これはすでにあなたのメールアドレスです。" #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "このメールアドレスは既に他の人が使っています。" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "承認コードを追加できません" #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1468,45 +1448,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "承認待ちのものはありません。" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "承認待ちのものはありません。" #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "これはあなたのメールアドレスではありません。" #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "入ってくるメールアドレスは削除されました。" -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "入ってくるメールアドレスではありません。" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "ユーザレコードを更新できません。" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "入ってくるメールアドレスは削除されました。" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "新しい入ってくるメールアドレスが追加されました。" @@ -1667,7 +1647,7 @@ msgstr "ユーザはすでにグループからブロックされています。 msgid "User is not a member of group." msgstr "ユーザはグループのメンバーではありません。" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "グループからユーザをブロック" @@ -1748,40 +1728,32 @@ msgstr "ロゴが更新されました。" msgid "Failed updating logo." msgstr "ロゴの更新に失敗しました。" -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s グループメンバー" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s グループメンバー、ページ %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "このグループのユーザのリスト。" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "管理者" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "ブロック" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "管理者にする" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "このユーザを管理者にする" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1919,7 +1891,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1929,65 +1904,65 @@ msgstr "" "IMクライアントやGTalkに追加して下さい。" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "設定が保存されました。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Jabber/GTalkを通して回答を、私がフォローされていない人々から私に送ってくださ" "い。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "私のJabber/GTalkアドレスのためにMicroIDを発行してください。" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "設定が保存されました。" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Jabbar ID はありません。" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "その Jabbar ID を正規化できません" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "有効な Jabber ID ではありません。" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID jは既に別のユーザが使用しています。" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1997,23 +1972,23 @@ msgstr "" "ようにするには%sを承認してください。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "確認コードがありません。" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "入ってくるメールアドレスは削除されました。" @@ -2106,12 +2081,6 @@ msgstr "パーソナルメッセージ" msgid "Optionally add a personal message to the invitation." msgstr "任意に招待にパーソナルメッセージを加えてください。" -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -2239,12 +2208,6 @@ msgstr "" "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" "て下さい。" -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "管理者だけが別のユーザを管理者にすることができます。" @@ -2391,11 +2354,6 @@ msgstr "%s で更新" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%2$s\" 上の検索語 \"$1$s\" に一致するすべての更新" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "合図を送った" @@ -2433,11 +2391,6 @@ msgstr "あなたのアカウントにアクセスする以下のアプリケー msgid "You are not a user of that application." msgstr "あなたはそのアプリケーションのユーザではありません。" -#: actions/oauthconnectionssettings.php:186 -#, php-format -msgid "Unable to revoke access for app: %s." -msgstr "" - #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." msgstr "" @@ -2457,12 +2410,6 @@ msgstr "ユーザはプロフィールをもっていません。" msgid "%1$s's status on %2$s" msgstr "%2$s における %1$s のステータス" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2470,8 +2417,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -2613,7 +2560,7 @@ msgid "Password saved." msgstr "パスワードが保存されました。" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "パス" @@ -2820,7 +2767,7 @@ msgstr "フルネーム" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "ホームページ" @@ -2925,15 +2872,10 @@ msgid "Couldn't save tags." msgstr "タグを保存できません。" #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "設定が保存されました。" -#: actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)." -msgstr "" - #: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "パブリックストリームを検索できません。" @@ -3191,12 +3133,6 @@ msgstr "メールアドレスが既に存在します。" msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" -#: actions/register.php:350 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" @@ -3245,14 +3181,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - #: actions/register.php:583 #, php-format msgid "" @@ -3448,7 +3376,7 @@ msgstr "ユーザはすでにサンドボックスです。" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "セッション" @@ -3486,24 +3414,24 @@ msgid "Application profile" msgstr "アプリケーションプロファイル" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "アイコン" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "名前" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "組織" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "概要" @@ -3604,7 +3532,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "これは、あなたが好きなことを共有する方法です。" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s グループ" @@ -3656,7 +3584,7 @@ msgstr "%s グループのつぶやきフィード (Atom)" msgid "FOAF for %s group" msgstr "%s グループの FOAF" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "メンバー" @@ -3840,14 +3768,6 @@ msgstr "有効な連絡用メールアドレスがなければなりません。 msgid "Unknown language \"%s\"." msgstr "不明な言語 \"%s\"" -#: actions/siteadminpanel.php:165 -msgid "Minimum text limit is 0 (unlimited)." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Dupe limit must be one or more seconds." -msgstr "" - #: actions/siteadminpanel.php:221 msgid "General" msgstr "一般" @@ -4069,7 +3989,7 @@ msgstr "コードが入力されていません" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "スナップショット" @@ -4499,10 +4419,6 @@ msgstr "" "あなたのプロフィールがバックグラウンド画像とあなたの選択の色のパレットで見る" "方法をカスタマイズしてください。" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. #: actions/usergroups.php:66 #, php-format @@ -4599,15 +4515,6 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" -#. TRANS: Message given if an upload is larger than the configured maximum. -#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 -#, php-format -msgid "" -"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " -"Try to upload a smaller version." -msgstr "" - #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4726,6 +4633,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1759 +#, php-format +msgid "RT @%1$s %2$s" +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:737 @@ -4746,7 +4660,7 @@ msgid "Unable to save tag." msgstr "タグをを保存できません。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "あなたはフォローが禁止されました。" @@ -4853,12 +4767,6 @@ msgstr "名称未設定ページ" msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" @@ -4914,7 +4822,7 @@ msgstr "もっとグループを検索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "サイトつぶやき" @@ -4977,22 +4885,17 @@ msgstr "バッジ" msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** はマイクロブログサービスです。" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5004,49 +4907,50 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "サイト内容ライセンス" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "ページ化" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "前>>" @@ -5055,177 +4959,195 @@ msgstr "前>>" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "あなたはこのサイトへの変更を行うことができません。" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "そのパネルへの変更は許可されていません。" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() は実装されていません。" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() は実装されていません。" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "基本サイト設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "デザイン設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "ユーザ設定" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "ユーザ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "アクセス設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "パス設定" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "セッション設定" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って" "いません。" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "アプリケーション編集" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "このアプリケーションのアイコン" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "あなたのアプリケーションを %d 字以内記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "あなたのアプリケーションを記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "このアプリケーションのホームページの URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "ソース URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "このアプリケーションに責任がある組織" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "組織のホームページのURL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "認証の後にリダイレクトするURL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "ブラウザ" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "デスクトップ" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "リードオンリー" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "リードライト" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "回復" @@ -5245,11 +5167,13 @@ msgstr "作者" msgid "Provider" msgstr "プロバイダ" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "この添付が現れるつぶやき" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "この添付のタグ" @@ -5261,6 +5185,11 @@ msgstr "パスワード変更に失敗しました" msgid "Password changing is not allowed" msgstr "パスワード変更は許可されていません" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "ブロック" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "コマンド結果" @@ -5273,6 +5202,13 @@ msgstr "コマンド完了" msgid "Command failed" msgstr "コマンド失敗" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -5303,6 +5239,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "お気に入りにされているつぶやき。" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5359,15 +5309,18 @@ msgstr "つぶやき繰り返しエラー" msgid "Error saving notice." msgstr "つぶやき保存エラー。" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." +#. 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:672 +#, 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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -5396,11 +5349,6 @@ msgstr "通知オン。" msgid "Can't turn on notification." msgstr "通知をオンできません。" -#. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 -msgid "Login command is disabled." -msgstr "" - #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. #: lib/command.php:784 @@ -5408,13 +5356,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "あなたはだれにもフォローされていません。" #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5428,7 +5383,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5442,13 +5397,14 @@ msgid "You are not a member of any groups." msgstr "あなたはどのグループのメンバーでもありません。" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5632,38 +5588,6 @@ msgstr "グループの場所, 例えば \"都市, 都道府県 (または 地 msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "グループのエクストラニックネーム、カンマまたはスペース区切り、最大 %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "グループ" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "ブロック" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s ブロックユーザ" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "%s グループプロパティを編集" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "ロゴ" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "%s ロゴの追加や編集" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "%s デザインの追加や編集" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "メンバー数が多いグループ" @@ -5695,7 +5619,8 @@ msgstr "ファイルが大きすぎます。最大ファイルサイズは %s msgid "Partial upload." msgstr "不完全なアップロード。" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" @@ -5793,22 +5718,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -5821,20 +5730,6 @@ msgstr "自己紹介: %s" msgid "New email address for posting to %s" msgstr "%s へ投稿のための新しいメールアドレス" -#. TRANS: Body of notification mail for new posting email address -#: lib/mail.php:308 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - #. TRANS: Subject line for SMS-by-email notification messages #: lib/mail.php:433 #, php-format @@ -5852,77 +5747,18 @@ msgstr "SMS確認" msgid "You've been nudged by %s" msgstr "あなたは %s に合図されています" -#. TRANS: Body for 'nudge' notification email -#: lib/mail.php:489 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - #. TRANS: Subject for direct-message notification email #: lib/mail.php:536 #, php-format msgid "New private message from %s" msgstr "%s からの新しいプライベートメッセージ" -#. TRANS: Body for direct-message notification email -#: lib/mail.php:541 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - #. TRANS: Subject for favorite notification email #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" -#. TRANS: Body for favorite notification email -#: lib/mail.php:592 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 #, php-format @@ -6003,19 +5839,22 @@ msgstr "すみません、入ってくるメールは許可されていません msgid "Unsupported message type: %s" msgstr "サポート外のメッセージタイプ: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "データベースエラーがあなたのファイルを保存しているときにありました。 再試行し" "てください。" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードされたファイルは php.ini の upload_max_filesize ディレクティブを" "超えています。" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6023,44 +5862,43 @@ msgstr "" "アップロードされたファイルはHTMLフォームで指定された MAX_FILE_SIZE ディレク" "ティブを超えています。" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "アップロードされたファイルは部分的にアップロードされていただけです。" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "一時フォルダを失いました。" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "ディスクへのファイル書き込みに失敗しました。" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "エクステンションによってファイルアップロードを中止しました。" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "ファイルはユーザの割当てを超えています。" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "ファイルを目的ディレクトリに動かすことができませんでした。" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "ファイルのMIMEタイプを決定できません。" -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "別の %s フォーマットを試してください。" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s はこのサーバのサポートしているファイルタイプではありません。" - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接つぶやきを送る" @@ -6073,11 +5911,6 @@ msgstr "To" msgid "Available characters" msgstr "利用可能な文字" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "つぶやきを送る" @@ -6111,21 +5944,6 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" -#. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 -msgid "S" -msgstr "" - -#. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 -msgid "E" -msgstr "" - -#. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 -msgid "W" -msgstr "" - #: lib/noticelist.php:444 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" @@ -6171,27 +5989,7 @@ msgstr "合図" msgid "Send a nudge to this user" msgstr "このユーザへ合図を送る" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "プロファイル追加エラー" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "アバター追加エラー" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "リモートプロファイル更新エラー" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "リモートプロファイル追加エラー" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "重複したつぶやき" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" @@ -6228,7 +6026,8 @@ msgstr "あなたが送ったメッセージ" msgid "Tags in %s's notices" msgstr "%s のつぶやきのタグ" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "不明" @@ -6317,19 +6116,19 @@ msgstr "サンドボックス" msgid "Sandbox this user" msgstr "このユーザをサンドボックス" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "サイト検索" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "キーワード" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "検索" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "ヘルプ検索" @@ -6499,66 +6298,33 @@ msgstr "この利用者にダイレクトメッセージを送る" msgid "Message" msgstr "メッセージ" -#: lib/userprofile.php:326 -msgid "Moderate" -msgstr "" - -#: lib/userprofile.php:367 -msgctxt "role" -msgid "Moderator" -msgstr "" - #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "数秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "約 1 分前" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "約 %d 分前" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "約 %d 時間前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "約 %d 日前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "約 1 ヵ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "約 %d ヵ月前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index f51cb3c27d..36eecb2760 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -1,7 +1,7 @@ -# Translation of StatusNet to Georgian +# Translation of StatusNet to Georgian (ქართული) +# Expored from translatewiki.net # -# Author@translatewiki.net: Zaal -# -- +# Author: Zaal # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,19 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-09 18:07+0000\n" -"PO-Revision-Date: 2010-09-09 18:09:12+0000\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:06+0000\n" +"Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "შესვლა" @@ -74,10 +76,10 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "შეინახე" @@ -90,15 +92,15 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -129,6 +131,24 @@ msgstr "%1$s და მეგობრები, გვერდი %2$d" msgid "%s and friends" msgstr " %s და მეგობრები" +#. TRANS: %1$s is user nickname +#: actions/all.php:107 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "" + +#. TRANS: %1$s is user nickname +#: actions/all.php:116 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "" + +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "" + #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -147,6 +167,14 @@ msgstr "" " გახდი მეტი მომხმარებლის მიმდევარი, [გაწევრიანდი ჯგუფში](%%action.groups%%) " "ან თავად დაპოსტე რამე." +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:146 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from their profile or [post something " +"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" @@ -170,16 +198,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -194,21 +222,23 @@ msgstr " %1$s და მეგობრების განახლებე msgid "API method not found." msgstr "API მეთოდი ვერ მოიძებნა." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "ეს მეთოდი მოითხოვს POST-ს." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -216,27 +246,27 @@ msgstr "" "აუცილებელია პარამეტრ 'device'-ს მიუთითოთ შემდეგი მნიშვნელობებიდან ერთერთი: " "sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "მომხმარებლის განახლება ვერ მოხერხდა." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "მომხმარებელს პროფილი არ გააჩნია." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "პროფილის შენახვა ვერ მოხერხდა." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -248,30 +278,30 @@ msgstr "" "სამწუხაროდ სერვერმა ვერ გაუძლო ამდენ POST მონაცემებს (%s ბაიტი) მიმდინარე " "კონფიგურაციის გამო." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "სამწუხაროდ თქვენი დიზაინის პარამეტრების შენახვა ვერ მოხერხდა." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "დიზაინის განახლება ვერ მოხერხდა." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "საკუთარი თავის დაბლოკვა შეუძლებელია." -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "მომხმარებლის დაბლოკვა ვერ მოხერხდა." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "ვერ მოხერხდა მომხმარებელზე ბლოკის მოხსნა." @@ -295,59 +325,59 @@ msgstr "%s-სთვის გაგზავნილი პირდაპი msgid "All the direct messages sent to %s" msgstr "%s-სთვის გაგზავნილი ყველა პირდაპირი შეტყობინება" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "შეტყობინების ტექსტი არ არის!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "ეს ძალიან გრძელია. შეტყობინებაში დასაშვებია %d სიმბოლო." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "მიმღები მომხმარებელი ვერ მოიძებნა." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "ვერ გაუგზავნი პირდაპირ შეტყობინებას იმას, ვისთანაც არ მეგობრობ." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "სტატუსი ასეთი ID-თ ვერ მოიძებნა." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "ეს სტატუსი უკვე ფავორიტია." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "ფავორიტის შექმნა ვერ მოხერხდა." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "ეს სტატუსი არა არის ფავორიტი." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "ფავორიტის წაშლა ვერ მოხერხდა." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "ამ მომხმარებლის მიმდევარი ვერ გახდებით, რადგან პროფილი ვერ მოიძებნა" -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "თქვენ უკვე ხართ %s-ის მიმდევარი." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "მომხმარებლის ჩამოშორება ვერ მოხერხდა. მომხმარებელი ვერ მოიძებნა." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "საკუთარი თავის ჩამოშორება შეუძლებელია." @@ -363,90 +393,101 @@ msgstr "ავტორი მომხმარებლის განსა msgid "Could not find target user." msgstr "სასურველი მომხმარებელი ვერ მოიძებნა." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "მეტსახელში დასაშვებია მხოლოდ პატარა ასოები და ციფრები." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "მეტსახელი არასწორია." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "სასტარტო გვერდი არასწორი URL-ია." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "სრული სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "ადგილმდებარეობა ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:268 +#, php-format +msgid "Invalid alias: \"%s\"." +msgstr "" + +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "" + +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "ჯგუფი ვერ მოიძებნა." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "თქვენ დაბლოკილი ხართ ამ ჯგუფიდან ადმინისტრატორის მიერ." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -476,7 +517,7 @@ msgstr "%s ჯგუფები" msgid "groups on %s" msgstr "ჯგუფები %s-ზე" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "ატვირთვა ვერ მოხერხდა." @@ -484,11 +525,15 @@ msgstr "ატვირთვა ვერ მოხერხდა." msgid "No oauth_token parameter provided." msgstr "oauth_token პარამეტრი არ არის მოწოდებული." +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "" + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -526,6 +571,18 @@ msgstr "" msgid "The request token %s has been denied and revoked." msgstr "" +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:104 actions/editapplication.php:139 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:277 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" msgstr "აპლიკაციას უნდა რომ დაუკავშირდეს თქვენს ანგარიშს" @@ -581,18 +638,18 @@ msgstr "ეს მეთოდი მოითხოვს POST-ს ან DELET msgid "You may not delete another user's status." msgstr "სხვა მომხმარებლის სტატუსის წაშლა არ შეგიძლიათ." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "ეს შეტყობინება უკვე გამეორებულია." @@ -604,21 +661,21 @@ msgstr "სტატუსი წაშლილია." msgid "No status with that ID found." msgstr "ასეთი ID-ს სტატუსი ვერ მოიძებნა." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "შეტყობინების დასაძვები ზომაა %d სიმბოლო." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "ვერ მოიძებნა." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "შეყობინების დასაშვები ზომაა %d სიმბოლო მიმაგრებული URL-ის ჩათვლით." @@ -627,6 +684,21 @@ msgstr "შეყობინების დასაშვები ზომ msgid "Unsupported format." msgstr "ფორმატი არ არის მხარდაჭერილი." +#: actions/apitimelinefavorites.php:110 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "" + +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "" + +#: actions/apitimelinementions.php:118 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -642,6 +714,16 @@ msgstr "%s საჯარო ნაკადი" msgid "%s updates from everyone!" msgstr "%s განახლებები ყველასგან!" +#: actions/apitimelineretweetedtome.php:111 +#, php-format +msgid "Repeated to %s" +msgstr "" + +#: actions/apitimelineretweetsofme.php:114 +#, php-format +msgid "Repeats of %s" +msgstr "" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" @@ -729,6 +811,10 @@ msgstr "არცერთი ფაილი არ ატვირთულა msgid "Pick a square area of the image to be your avatar" msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი თქვენი ავატარისთვის" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:370 msgid "Avatar updated." msgstr "ავატარი განახლდა." @@ -749,6 +835,13 @@ msgstr "თქვენ უკვე დაბლოკეთ ეს მომ msgid "Block user" msgstr "მომხმარებლის დაბლოკვა" +#: actions/block.php:138 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. #. TRANS: Button label on the delete notice form. @@ -780,7 +873,9 @@ msgid "Yes" msgstr "დიახ" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "დაბლოკე ეს მომხმარებელი" @@ -822,11 +917,13 @@ msgstr "ამ ჯგუფში გაწევრიანებისგა msgid "Unblock user from group" msgstr "მომხმარებლის ბლოკირების მოხსნა ჯგუფიდან" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "ბლოკირების მოხსნა" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "მომხმარებლის ბლოკირების მოხსნა" @@ -865,9 +962,9 @@ msgstr "ეს მისამართი უკვე დადასტურ #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -875,7 +972,7 @@ msgstr "მომხმარებლის განახლება ვე #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "ელ. ფოსტის დადასტურების წაშლა ვერ მოხერხდა." @@ -911,9 +1008,10 @@ msgstr "აპლიკაცია ვერ მოიძებნა." msgid "You are not the owner of this application." msgstr "თქვენ არ ხართ ამ აპლიკაციის მფლობელი." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -946,7 +1044,7 @@ msgstr "აპლიკაციის წაშლა" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "ავტორიზებული არ ხართ." @@ -1007,7 +1105,6 @@ msgstr "ამ მომხმარებლის წაშლა" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "ამ მომხმარებლის წაშლა" @@ -1129,13 +1226,13 @@ msgstr "დააბრუნე პირვანდელი დიზაი msgid "Reset back to default" msgstr "პირვანდელის პარამეტრების დაბრუნება" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "შენახვა" @@ -1210,6 +1307,14 @@ msgstr "ორგანიზაცია ძალიან გრძელი msgid "Organization homepage is required." msgstr "ორგანიზაციის ვებ. გვერდი სავალდებულოა." +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + #: actions/editapplication.php:258 msgid "Could not update application." msgstr "აპლიკაციის განახლება ვერ მოხერხდა." @@ -1237,10 +1342,20 @@ msgstr "ჯგუფის რედაქტირებისათვის msgid "description is too long (max %d chars)." msgstr "აღწერა ძალიან გრძელია (არაუმეტეს %d სიმბოლო)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "ჯგუფის განახლება ვერ მოხერხდა." +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +msgid "Could not create aliases." +msgstr "" + #: actions/editgroup.php:280 msgid "Options saved." msgstr "პარამეტრები შენახულია." @@ -1273,7 +1388,7 @@ msgstr "მიმდინარე დადასტურებული ე #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1291,22 +1406,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "გაუქმება" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "ელ. ფოსტის მისამართი, როგორც \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1314,101 +1433,112 @@ msgstr "დამატება" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "შემომავალი ელ. ფოსტა" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "გააგზავნე ელ. ფოსტა ამ მისამართზე ახალი შეტყობინებების დასაპოსტად." +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:168 actions/smssettings.php:186 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "ახალი" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "ელ. ფოსტის პარამეტრები" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" "გამომიგზავნე შეტყობინებები ახალი გამოწერების შესახებ ელ. ფოსტის საშუალებით." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "გამომიგზავნე ელ. წერილი როდესაც ვინმე ჩემს შეტყობინებას რჩეულებში დაიმატებს." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "გამომიგზავნე ელ. წერილი როდესაც ვინმე პირად შეტყობინებას მომწერს." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "გამომიგზავნე წერილი როდესაც ვინმე გამომიგზავნის \"@-პასუხს\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "მინდა დავპოსტო შეტყობინებები ელ. ფოსტით." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "გამოაქვეყნე MicroID ჩემი ელ. ფოსტის მისამართისთვის." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "ელ. ფოსტის პარამეტრები შენახულია." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr " ელ. ფოსტის მისამართი მითითებული არ არის." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +msgid "Cannot normalize that email address" +msgstr "" + #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "არასწორი ელ. ფოსტის მისამართი." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "ეს უკვე არის თქვენი ელ. ფოსტის მისამართი." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "ეს ელ. ფოსტის მისამართი დაკავებულია." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "დასტურის კოდის ჩასმა ვერ მოხერხდა." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1420,50 +1550,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "გასაუქმებელიარაფერია. არ არის მომლოდინე დასტური." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "ეს არასწორი ელ. ფოსტის მისამართია." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "ელ. ფოსტის დადასტურება გაუქმებულია." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "ეს არ არის თქვენი ელ. ფოსტის მისამართი." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "ელ. ფოსტის მისამართი მოშორებულია." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "შემომავალი ელ. ფოსტის მისამართი არ არის." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "მომხმარებლის ჩანაწერის განახლება ვერ მოხერხდა." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "შემომავალი ელ. ფოსტის მისამართი მოშორებულია." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "დამატებულია ახალი შემომავალი ელ. ფოსტა." @@ -1581,7 +1711,7 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "შეცდომა დაშორებული პროფილის განახლებისას." @@ -1638,7 +1768,7 @@ msgstr "მომხმარებელი უკვე გარიცხუ msgid "User is not a member of group." msgstr "მომხმარებელი არ არის ჯგუფის წევრი." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "მომხმარებლის გარიცხვა ჯგუფიდან." @@ -1719,40 +1849,32 @@ msgstr "ლოგო განახლდა." msgid "Failed updating logo." msgstr "ლოგოს განახლება ვერ მოხერხდა." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s ჯგუფის წევრი" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s ჯგუფის წევრი, გვერდი %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "ამ ჯგუფის წევრების სია." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "ადმინი" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "ბლოკირება" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "მიანიჭე მომხმარებელს ჯგუფის ადმინობა" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "მიანიჭე ადმინობა" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "მიანიჭე ამ მომხმარებელს ადმინობა" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1891,7 +2013,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1901,64 +2026,64 @@ msgstr "" "დარწმუნდით, რომ დაიმატეთ %s მეგობრების სიაში თქვენს IM კლიენტში ან GTalk-ში." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM პარამეტრები" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "გამომიგზავნე შეტყობინებები Jabber/GTalk-ის მეშვეობით." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "დაპოსტე შეტყობინება, როდესაც ჩემი Jabber/GTalk სტატუსი შეიცვლება." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "გამომიგზავნე პასუხები Jabber/GTalk-ით ხალხისგან, რომლთა მიმდევარი არ ვარ." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "გამოაქვეყნე MicroID ჩემი Jabber/GTalk მისამართისთვის." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "პარამეტრები შენახულია." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Jabber ID უცნობია." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Jabber ID-ს ნორმალიზაცია ვერ ხერხდება" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "არასწორი Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "ეს უკვე არის თქვენი Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID უკვე ეკუთვნის სხვა მომხმარებელს." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1968,28 +2093,28 @@ msgstr "" "s-ს გამოგიგზავნოთ შეტყობინებები." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "ეს არასწორი IM მისამართია." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "IM დასტურის წაშლა ვერ მოხერხდა." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM დასტური გაუქმდა." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "ეს არ არის თქვენი Jabber ID" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM მისამართი მოშორებულია." @@ -2189,6 +2314,10 @@ msgstr "უკვე ავტორიზირებული ხართ." msgid "Incorrect username or password." msgstr "არასწორი მომხმარებლის სახელი ან პაროლი." +#: actions/login.php:154 actions/otp.php:120 +msgid "Error setting user. You are probably not authorized." +msgstr "" + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "შესვლა" @@ -2379,6 +2508,14 @@ msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." msgstr "თქვენი აპლიკაციების სიის სანახავად საჭიროა ავროტიზაცია." @@ -2445,8 +2582,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "გთხოვთ გამოიყენოთ მხოლოდ %s URL–ები წმინდა HTTP მეთოდით." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "მონაცემთა ფორმატი მხარდაჭერილი არ არის." @@ -2494,10 +2631,22 @@ msgstr "URL–ს შემოკლების სერვისი ძალ msgid "No user ID specified." msgstr "მომხმარებლის ID მითითებული არ არის." +#: actions/otp.php:83 +msgid "No login token specified." +msgstr "" + #: actions/otp.php:90 msgid "No login token requested." msgstr "" +#: actions/otp.php:95 +msgid "Invalid login token specified." +msgstr "" + +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" @@ -2576,7 +2725,7 @@ msgid "Password saved." msgstr "პაროლი შენახულია." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "გზები" @@ -2599,6 +2748,11 @@ msgstr "ავატარის დირექტორია არ არი msgid "Background directory not writable: %s." msgstr "ფონის დირექტორია არ არის ჩაწერადი: %s." +#: actions/pathsadminpanel.php:177 +#, php-format +msgid "Locales directory not readable: %s." +msgstr "" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "არასწორი SSL სერვერი. მაქსიმალური სიგრძე არის 255 სიმბოლო." @@ -2784,7 +2938,7 @@ msgstr "სრული სახელი" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "ვებ. გვერსი" @@ -2890,7 +3044,7 @@ msgid "Couldn't save tags." msgstr "სანიშნეების შენახვა ვერ მოხერხდა." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "პარამეტრები შენახულია." @@ -3356,6 +3510,21 @@ msgstr "პასუხები %s–ს" msgid "Replies to %1$s, page %2$d" msgstr "პასუხები %1$s–ს, გვერდი %2$d" +#: actions/replies.php:145 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:152 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:159 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + #: actions/replies.php:199 #, php-format msgid "" @@ -3374,6 +3543,13 @@ msgstr "" "თქვენ შეგიძლიათ ჩაერთოთ საუბარში სხვა მომხმარებლებთან ერთად, გამოიწეროთ მეტი " "პიროვნებების განახლებები, ან [გაწევრიანდეთ ჯგუფში](%%action.groups%%)." +#: actions/replies.php:206 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" + #: actions/repliesrss.php:72 #, php-format msgid "Replies to %1$s on %2$s!" @@ -3401,7 +3577,7 @@ msgstr "მომხმარებელი უკვე იზოლირე #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "სესიები" @@ -3439,24 +3615,24 @@ msgid "Application profile" msgstr "აპლიკაციის პროფილი" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "დასახელება" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "ორგანიზაცია" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "აღწერა" @@ -3525,6 +3701,21 @@ msgstr "%1$s-ის რჩეული შეტყობინებები, msgid "Could not retrieve favorite notices." msgstr "რჩეული შეტყობინებების გამოთხოვნა ვერ მოხერხდა." +#: actions/showfavorites.php:171 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:178 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:185 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -3540,10 +3731,32 @@ msgid "" "would add to their favorites :)" msgstr "" +#: actions/showfavorites.php:212 +#, 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 "" + #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "" +#: actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "" + +#: actions/showgroup.php:227 +msgid "Group profile" +msgstr "" + #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" @@ -3554,7 +3767,35 @@ msgstr "" msgid "Note" msgstr "შენიშვნა" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:293 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:302 +msgid "Group actions" +msgstr "" + +#: actions/showgroup.php:338 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:344 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:350 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:355 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "წევრები" @@ -3564,16 +3805,134 @@ msgstr "წევრები" msgid "(None)" msgstr "(არცერთი)" +#: actions/showgroup.php:404 +msgid "All members" +msgstr "" + #: actions/showgroup.php:439 msgid "Created" msgstr "შექმნილია" +#: actions/showgroup.php:455 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showgroup.php:461 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:489 +msgid "Admins" +msgstr "" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "" + +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:200 +#, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "" + #: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" +#: actions/showstream.php:207 +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" + +#: actions/showstream.php:243 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:248 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/showstream.php:305 +#, php-format +msgid "Repeat of %s" +msgstr "" + #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების დადუმებას ამ საიტზე." @@ -3619,6 +3978,10 @@ msgstr "საიტის სახელი" msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "თქვენი საიტის სახელი, როგორც \"თქვენი კომპანიის მიკრობლოგი\"" +#: actions/siteadminpanel.php:229 +msgid "Brought by" +msgstr "" + #: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "ტექსტი გამოყენებული თითოეული გვერდის ბოლოს კრედიტებისთვის" @@ -3667,6 +4030,10 @@ msgstr "ტექსტის ზღვარი" msgid "Maximum number of characters for notices." msgstr "შეტყობინების სიმბოლოთა მაქსიმალური რაოდენობა." +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" +msgstr "" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" @@ -3859,7 +4226,7 @@ msgstr "კოდი არ არის შეყვანილი" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "წინა ვერსიები" @@ -3875,6 +4242,10 @@ msgstr "წინა ვერსიის გაშვების არას msgid "Snapshot frequency must be a number." msgstr "წინა ვერსიის სიხშირე ციფრი უნდა იყოს." +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3883,6 +4254,10 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "როდის გაეგზავნოს სტატისტიკური მონაცემები status.net სერვერს" @@ -3891,6 +4266,14 @@ msgstr "როდის გაეგზავნოს სტატისტი msgid "Frequency" msgstr "სიხშირე" +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" @@ -4034,6 +4417,10 @@ msgstr "შეტყობინებების RSS მონიშნულ msgid "Notice feed for tag %s (Atom)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (Atom)" +#: actions/tagother.php:39 +msgid "No ID argument." +msgstr "" + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -4052,10 +4439,62 @@ msgstr "ფოტო" msgid "Tag user" msgstr "მონიშნე მომხმარებელი" +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით " +"მძიმით ან სივრცით" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +"ადამიანების მონიშვნა შესაძლებელია მხოლოდ მაშინ, როდესაც ან თქვენ გაქვთ " +"გამოწერილი მისი განახლებები, ან იმას." + +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "სანიშნეების შენახვა ვერ მოხერხდა." + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" +"გამოიყენეთ ეს ფორმა, რომ მიანიჭოთ სანიშნეები თქვენს გამოწერებს ან " +"გამომწერებს." + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "ასეთი სანიშნე არ არსებობს." + +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "თქვენ არ დაგიბლოკავთ ეს მომხმარებელი." + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "მომხმარებელი არ არის იზოლირებული." + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "მომხმარებელი არ არის დადუმებული." + +#: actions/unsubscribe.php:77 +msgid "No profile ID in request." +msgstr "არცერთი პროფილის ID არ არის მოთხოვნილი." + +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "გამოწერა გაუქმებულია" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, php-format +msgid "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" +"გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " +"ლიცენზიასთან ‘%2$s’." #. TRANS: User admin panel title #: actions/useradminpanel.php:59 @@ -4063,33 +4502,111 @@ msgctxt "TITLE" msgid "User" msgstr "მომხმარებელი" +#: actions/useradminpanel.php:70 +msgid "User settings for this StatusNet site." +msgstr "მომხმარებლის პარამეტრები ამ საიტისათვის." + #: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "ბიოგრაფიის არასწორი ლიმიტი. უნდა იყოს ციფრი." + +#: actions/useradminpanel.php:155 +msgid "Invalid welcome text. Max length is 255 characters." +msgstr "არასწორი მისასალმებელი ტექსტი. სიმბოლოების მაქს. რაოდენობაა 255." #: actions/useradminpanel.php:165 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "პროფილი" + +#: actions/useradminpanel.php:222 +msgid "Bio Limit" +msgstr "ბიოგრაფიის ლიმიტი" + #: actions/useradminpanel.php:223 msgid "Maximum length of a profile bio in characters." -msgstr "" +msgstr "პროფილის ბიოგრაფიის მაქსიმალური ზომა სიმბოლოებში." + +#: actions/useradminpanel.php:231 +msgid "New users" +msgstr "ახალი მომხმარებლები" #: actions/useradminpanel.php:235 msgid "New user welcome" +msgstr "ახალი მომხმარებლის მისალმება" + +#: actions/useradminpanel.php:236 +msgid "Welcome text for new users (Max 255 chars)." +msgstr "მისალმების ტექსტი ახალი მომხმარებლებისთვის (მაქს. 255 სიმბოლო)." + +#: actions/useradminpanel.php:241 +msgid "Default subscription" msgstr "" +#: actions/useradminpanel.php:242 +msgid "Automatically subscribe new users to this user." +msgstr "ავტომატურად გამოაწერინე ამ მომხმარებელს ახალი მომხმარებლები." + +#: actions/useradminpanel.php:251 +msgid "Invitations" +msgstr "მოსაწვევეი" + +#: actions/useradminpanel.php:256 +msgid "Invitations enabled" +msgstr "მოსაწვევები გააქტიურებულია" + +#: actions/useradminpanel.php:258 +msgid "Whether to allow users to invite new users." +msgstr "მიეცეთ თუ არა მომხმარებლებს სხვების მოწვევის უფლება." + +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "გამოწერის ავტორიზაცია" + #: actions/userauthorization.php:110 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 "" +"გთხოვთ გადახედოთ ამ დეტალებს, რომ დარწმუნდეთ რომ გინდათ ამ მომხმარებლის " +"განახლებების გამოწერა. თუ თქვენ არ გინდოდათ გამოწერა, მაშინ გააჭირეთ ღილაკს " +"\"უარყოფა\"." + +#: actions/userauthorization.php:196 actions/version.php:167 +msgid "License" +msgstr "ლიცენზია" + +#: actions/userauthorization.php:217 +msgid "Accept" +msgstr "მიღება" + +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "გამოიწერე ეს მომხმარებელი" + +#: actions/userauthorization.php:219 +msgid "Reject" +msgstr "უარყოფა" + +#: actions/userauthorization.php:220 +msgid "Reject this subscription" +msgstr "ამ გამოწერის უარყოფა" #: actions/userauthorization.php:232 msgid "No authorization request!" -msgstr "" +msgstr "ავტორიზაციის მოთხოვნა არ არის!" + +#: actions/userauthorization.php:254 +msgid "Subscription authorized" +msgstr "გამოწერა ავტორიზირებულია" #: actions/userauthorization.php:256 msgid "" @@ -4097,6 +4614,13 @@ msgid "" "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" +"გამოწერა ავტორიზირებულია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " +"გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის ავტორიზირების დეტალები. თქვენი " +"გამოწერის ტოკენია:" + +#: actions/userauthorization.php:266 +msgid "Subscription rejected" +msgstr "გამოწერა უარყოფილია" #: actions/userauthorization.php:268 msgid "" @@ -4104,11 +4628,14 @@ msgid "" "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" +"გამოწერა უარყოფილია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " +"გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის მთლიანად უარყოფის შესახებ " +"დეტალები." #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." -msgstr "" +msgstr "მსმენელის URI ‘%s’ აქ ვერ მოიძებნა." #: actions/userauthorization.php:308 #, php-format @@ -4123,26 +4650,74 @@ msgstr "" #: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." -msgstr "" +msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." + +#: actions/userauthorization.php:345 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "ავატარის URL ‘%s’ არ არის სწორი." #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "" +msgstr "ვერ ვკითხულობ ავატარის URL ‘%s’." #: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." +msgstr "ავატარის სურათის ფორმატი არასწორია URL ‘%s’." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "პროფილის დიზაინი" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." msgstr "" +"აირჩიეთ, როგორ გნებავთ გამოიყურებოდეს თქვენი პროფილი ფონური სურათისა და " +"ფერთა პალიტრის შეცვლით." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" -msgstr "" +msgstr "ისიამოვნეთ ჰოთ დოგით!" + +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s ჯგუფი, გვერდი %2$d" + +#: actions/usergroups.php:132 +msgid "Search for more groups" +msgstr "მოძებნე მეტი ჯგუფები" + +#: actions/usergroups.php:159 +#, php-format +msgid "%s is not a member of any group." +msgstr "მომხმარებელი %s არ არის არცერთი ჯგუფის წევრი." #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" +msgstr "სცადეთ [ჯგუფების მოძებნა](%%action.groupsearch%%) გაერთიენდით მათში." + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: lib/atomusernoticefeed.php:76 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%1$s-ს განახლებები %2$s-ზე!" + +#: actions/version.php:75 +#, php-format +msgid "StatusNet %s" +msgstr "StatusNet %s" #: actions/version.php:155 #, php-format @@ -4150,6 +4725,12 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" +"ეს საიტი მუშაობს %1$s-ის %2$s ვერსიაზე, ყველა უფლება დაცულია 2008-2010 " +"StatusNet, Inc. და წვლილის შემომტანები." + +#: actions/version.php:163 +msgid "Contributors" +msgstr "წვლილის შემომტანები" #: actions/version.php:170 msgid "" @@ -4158,6 +4739,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"StatusNet არის უფასო კოდი: თქვენ შეგიძლიათ მისი გავრცელება ან/და გადაკეთება " +"GNU Affero ძირითადი საჯარო ლიცენზიის პირობების თანახმად, როგორც " +"გამოქვეყნებულია Free Software Foundation-ის მიერ, ან ლიცენზიის 3 ვერსიით, ან " +"ნებისმიერი უფრო ახალი ვერსიით. " #: actions/version.php:176 msgid "" @@ -4166,6 +4751,10 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"ეს პროგრამა ვრცელდება იმ იმედით, რომ გამოსადეგი იქნება, მაგრამ არ იძლევა " +"არანაირ გარანტიებს; არც თუნდაც პატარა გარანტიას მის გაყიდვადობაზე ან " +"კონკრეტული მიზნისთვის თავსებადობაზე. იხილეთ GNU Affero ძირითადი საჯარო " +"ლიცენზია მეტი ინფორმაციისთვის." #: actions/version.php:182 #, php-format @@ -4173,26 +4762,32 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" +"თქვენ უნდა მიგეღოთ GNU Affero ძირითადი საჯარო ლიცენზიის ასლი ამ პროგრამასთან " +"ერთად. თუ არა, იხილეთ %s." #: actions/version.php:191 msgid "Plugins" -msgstr "" +msgstr "დამატებები" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. #: actions/version.php:198 lib/action.php:805 msgid "Version" msgstr "ვერსია" +#: actions/version.php:199 +msgid "Author(s)" +msgstr "ავტორი(ები)" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "ვერ ვამოუშავებ URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! #: classes/File.php:175 msgid "Robin thinks something is impossible." -msgstr "" +msgstr "რობინი ფიქრობს რაღაც შეუძლებელია." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. @@ -4202,6 +4797,8 @@ msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" +"ფაილი არ შეიძლება იყოს %1$d ბაიტზე მეტი, თქვენ მიერ გაგზავნილი კი %2$d ბაიტი " +"იყო. სცადეთ უფრო პატარა ვერსიის ატვირთვა." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. @@ -4209,6 +4806,7 @@ msgstr "" #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" +"ასეთი ზომის ფაილმა შეიძლება გადააჭარბოს თქვენთვის გამოყოფილ კვოტას, %d ბაიტს." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. @@ -4216,6 +4814,13 @@ msgstr "" #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +"ასეთი ზომის ფაილმა შეიძლება გადააჭარბოს თქვენთვის გამოყოფილ თვიურ კვოტას, %d " +"ბაიტს." + +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +msgid "Invalid filename." +msgstr "ფაილის არასწორი სახელი." #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 @@ -4237,6 +4842,13 @@ msgstr "ჯგუფის დატოვება ვერ მოხერხ msgid "Could not update local group." msgstr "ლოკალური ჯგუფის განახლება ვერ მოხერხდა." +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, php-format +msgid "Could not create login token for %s" +msgstr "შესასვლელი ტოკენის შექმნა %s-სთვის ვერ მოხერხდა." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -4311,7 +4923,7 @@ msgstr "პრობლემა შეტყობინების შენ #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). #: classes/Notice.php:899 msgid "Bad type provided to saveKnownGroups" -msgstr "" +msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული" #. TRANS: Server exception thrown when an update for a group inbox fails. #: classes/Notice.php:998 @@ -4353,7 +4965,7 @@ msgid "Unable to save tag." msgstr "სანიშნეს დამახსოვრება ვერ ხერხდება." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "თქვენ აგეკრძალათ გამოწერა." @@ -4501,7 +5113,8 @@ msgid "Change site configuration" msgstr "საიტის კონფიგურაცია" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "ადმინი" @@ -4578,7 +5191,7 @@ msgstr "ძიება" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "საიტის შეტყობინება" @@ -4642,7 +5255,10 @@ msgid "StatusNet software license" msgstr "StatusNet კოდის ლიცენზია" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4652,13 +5268,16 @@ msgstr "" "(%%site.broughtbyurl%%)-ს მიერ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** არის მიკრობლოგინგის სერვისი." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4670,50 +5289,51 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "საიტის შიგთავსის ლიცენზია" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s ის შიგთავსი და მონაცემები არის პირადული და კონფიდენციალური." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "შიგთავსი და მონაცემები %1$s-ის საკუთრებაა. ყველა უფლება დაცულია." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "შიგთავსი და მონაცემები წვლილის შემტანების საკუთრებაა. ყველა უფლება დაცულია." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "გვერდებათ დაყოფა" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "წინა" @@ -4722,201 +5342,233 @@ msgstr "წინა" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "ჯერჯერობით ვერ ვამუშავებ დაშორებულ შიგთავსს." +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 +msgid "Can't handle embedded Base64 content yet." +msgstr "" + #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "თქვენ არ გაქვთ ამ საიტზე ცვლილებების შეტანის უფლება." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "ამ პანელის ცვლილებები არ არის დაშვებული." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() არ არის განხორციელებული." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() არ არის განხორციელებული." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "დიზაინის პარამეტრების წაშლა ვერ ხერხდება." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "საიტის ძირითადი კონფიგურაცია" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "საიტი" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "დიზაინის კონფიგურაცია" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "დიზაინი" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "მომხმარებლის კონფიგურაცია" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "მომხმარებელი" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "შესვლის კონფიგურაცია" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "გზების კონფიგურაცია" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "სესიების კონფიგურაცია" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "საიტის შეტყობინების რედაქტირება" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "წინა ვერსიების კონფიგურაცია" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API რესურსი მოითხოვს ჩაწერა-წაკითხვის წვდომას, მაგრამ თვენ მხოლოდ წაკითხვის " "უფლება გაქვთ." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "ჩაასწორე აპლიკაცია" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "ამ აპლიკაციის ხატულა" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "აღწერეთ თქვენი აპლიკაცია %d სიმბოლოთი" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "აღწერეთ თქვენი აპლიკაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "აპლიკაციის საწყისი გვერდის URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "წყაროს URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "ამ აპლიკაციაზე პასუხისმგებელი ორგანიზაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "ორგანიზაციის საწყისი გვერდის URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "ავტორიზაციის შემდეგ გადასამისამართებელი URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "ბროუზერი" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "ინსტალირებადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "აპლიკაციის ტიპი, ბროუზერისთვის ან ინსტალირებადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "მხოლოდ წაკითხვადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "კიტხვა-წერადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "შესვლის პირვანდელი მდგომარეობა ამ აპლიკაციისთვის: მხოლოდ წაკითხვადი, ან " "კითხვა-წერადი" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "გაუქმება" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "კიტხვა-წერადი" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "დამტკიცებულია %1$s - \"%2$s\" შესვლა" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "უკუგება" @@ -4936,11 +5588,13 @@ msgstr "ავტორი" msgid "Provider" msgstr "მომწოდებელი" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "შეტყობინებები სადაც ეს მიმაგრება გამოჩენილა" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "ამ მიმაგრების სანიშნეები" @@ -4952,6 +5606,11 @@ msgstr "პაროლის ცვლილება ჩაიშალა" msgid "Password changing is not allowed" msgstr "პაროლის ცვლილება არ არის ნებადართული" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "ბლოკირება" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "ბრძანების შედეგები" @@ -5128,6 +5787,11 @@ msgstr "შეცდომა შეტყობინების შენა 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:664 +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:672 @@ -5154,11 +5818,26 @@ msgstr "%s-ს გამოწერა გაუქმდა." msgid "Command not yet implemented." msgstr "ბრძანება ჯერ არ არის შემუშავებული." +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +msgid "Notification off." +msgstr "" + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +msgid "Notification on." +msgstr "" + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +msgid "Can't turn on notification." +msgstr "" + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -5171,14 +5850,55 @@ msgstr "" 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:813 +#, 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:831 +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:836 +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "" + +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +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:890 +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "" + +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5364,38 +6084,6 @@ msgstr "" "ჯგუფის დამატებითი მეტსახელები. გამოყავით მძიმით ან სივრცით. მაქსიმუმ %d " "სიმბოლო" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "ჯგუფი" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "დაბლოკილია" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s დაბლოკილი მომხმარებელი" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "%s ჯგუფის პარამეტრების რედაქტირება" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "ლოგო" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "%s-ს ლოგოს დამატება ან ჩასწორება" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "%s-ს დიზაინის დამატება ან ჩასწორება" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "ჯგუფები უმეტესი მომხმარებლებით" @@ -5427,7 +6115,8 @@ msgstr "ეს ფაილი ძალიან დიდია. ფაილ msgid "Partial upload." msgstr "ნაწილობრივი ატვირთვა." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "სისტემური შეცდომა ფაილის ატვირთვისას." @@ -5456,6 +6145,11 @@ msgstr "კბ" msgid "[%s]" msgstr "[%s]" +#: lib/jabber.php:567 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + #: lib/joinform.php:114 msgid "Join" msgstr "გაერთიანება" @@ -5805,17 +6499,20 @@ msgstr "ბოდიში, შემომავალი ელ. ფოსტ msgid "Unsupported message type: %s" msgstr "შეტყობინების ტიპი არ არის მხარდაჭერილი: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "ფაილის შენახვისას მოხდა მონაცემთა ბაზის შეცდომა. გთხოვთ კიდევ სცადოთ." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "ასატვირთი ფაილი სცდება ფაილის დაშვებულ ზომას. upload_max_filesize დირექტივა " "php.ini-ში." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -5823,44 +6520,43 @@ msgstr "" "ასატვირთი ფაილი სცდება MAX_FILE_SIZE დირექტივას, რომელიც მითითებული იყო HTML " "ფორმაში." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "ასატვირთი ფაილი მხოლოდ ნაწილობრივ აიტვირთა." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "დროებითი საქაღალდე ვერ მოიძებნა." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "ფაილის დისკზე ჩაწერა ვერ მოხერხდა." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "ფაილის არვირთვა გაჩერდა გაფართოების გამო." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "ფაილი სცდება მომხმარებლის კვოტას." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "ფაილის გადატანა დანიშნულების დირექტორიაში ვერ მოხერხდა." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "ფაილის MIME ტიპი ვერ დადგინდა." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "სხვა %s ფორმატი სცადეთ." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s არ არის ამ სერვერზე მხარდაჭერილი ფაილის ტიპი." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "გააგზავნე პირდაპირი შეტყობინება" @@ -5936,10 +6632,22 @@ msgstr "დ" 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" +#: lib/noticelist.php:453 +msgid "at" +msgstr "" + #: lib/noticelist.php:502 msgid "web" msgstr "" +#: lib/noticelist.php:568 +msgid "in context" +msgstr "" + +#: lib/noticelist.php:603 +msgid "Repeated by" +msgstr "" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "უპასუხე ამ შეტყობინებას" @@ -5952,23 +6660,19 @@ msgstr "პასუხი" msgid "Notice repeated" msgstr "შეტყობინება გამეორებულია" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "შეცდომა ახალი პროფილის ჩასმისას." +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "შეცდომა ავატარის ჩასმისას" +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "შეცდომა დაშორებული პროფილის განახლებისას." +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "შეცდომა დაშორებული პროფილის ჩასმისას." - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." @@ -6005,7 +6709,8 @@ msgstr "თქვენი გაგზავნილი წერილებ msgid "Tags in %s's notices" msgstr "%s-ს შეტყობინებებში გამოყენებული სანიშნეები" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "უცნობი" @@ -6029,6 +6734,10 @@ msgstr "ყველა გამომწერი" msgid "User ID" msgstr "მომხმარებლის იდ" +#: lib/profileaction.php:196 +msgid "Member since" +msgstr "" + #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" @@ -6046,14 +6755,26 @@ msgstr "მეთოდი განუხორციელებელია." msgid "Public" msgstr "საჯარო" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "ბოლო სანიშნეები" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:92 msgid "Popular" msgstr "პოპულარული" +#: lib/redirectingaction.php:95 +msgid "No return-to arguments." +msgstr "" + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "გავიმეორო ეს შეტყობინება?" @@ -6075,23 +6796,27 @@ msgstr "ჩამოართვი \"%s\" როლი ამ მომხმ msgid "No single user defined for single-user mode." msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის." +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + #: lib/sandboxform.php:78 msgid "Sandbox this user" msgstr "ამ მომხმარებლის იზოლირება" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "ძიება საიტზე" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "საკვანძო სიტყვები" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "ძიება" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "ძიება დახმარებაში" @@ -6127,6 +6852,21 @@ msgstr "დადუმება" msgid "Silence this user" msgstr "ამ მომხმარებლის დადუმება" +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + #: lib/subgroupnav.php:105 msgid "Invite" msgstr "მოწვევა" @@ -6274,56 +7014,32 @@ msgid "Moderator" msgstr "მოდერატორი" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "რამდენიმე წამის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "დაახლოებით %d წუთის წინ" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "დაახლოებით %d საათის წინ" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "დაახლოებით %d დღის წინ" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "დაახლოებით %d თვის წინ" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "დაახლოებით 1 წლის წინ" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index a82559718a..46c1fb4694 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Korean +# Translation of StatusNet to Korean (한국어) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Changwoo -# Author@translatewiki.net: Twkang +# Author: Brion +# Author: Changwoo +# Author: Twkang # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,20 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:52+0000\n" -"Language-Team: Korean\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:08+0000\n" +"Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "접근" @@ -76,10 +78,10 @@ msgstr "접근 설정을 저장" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -92,15 +94,15 @@ msgstr "해당하는 페이지 없음" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -194,16 +196,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -218,47 +220,49 @@ msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" msgid "API method not found." msgstr "API 메서드 발견 안 됨." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "이 메서드는 POST를 요구합니다." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "이용자를 업데이트 할 수 없습니다." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "프로필을 저장 할 수 없습니다." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -270,30 +274,30 @@ msgstr "" "현재 설정으로 인해 너무 많은 POST 데이터(%s 바이트)는 서버에서 처리할 수 없습" "니다." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "디자인 설정을 저장할 수 없습니다." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "디자인을 업데이트 할 수 없습니다." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "자기 자신은 차단할 수 없습니다." -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "이용자 차단에 실패했습니다." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "이용자 차단 해제에 실패했습니다." @@ -317,66 +321,62 @@ msgstr "%s에게 직접 메시지" msgid "All the direct messages sent to %s" msgstr "%s에게 모든 직접 메시지" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "메시지 내용이 없습니다!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "너무 깁니다. 최대 메시지 길이는 %d자 까지입니다." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "받는 사용자가 없습니다." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "그 ID로 발견된 상태가 없습니다." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "관심소식을 생성할 수 없습니다." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "이 소식은 관심소식이 아닙니다." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "관심소식을 삭제할 수 없습니다." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "언팔로우할 수 없습니다: 이용자 없음." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "팔로우할 수 없습니다 : %s 님은 이미 리스트에 있습니다." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "언팔로우할 수 없습니다: 이용자 없음." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "자기 자신을 언팔로우할 수 없습니다." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "소스 이용자를 확인할 수 없습니다." @@ -385,7 +385,7 @@ msgstr "소스 이용자를 확인할 수 없습니다." msgid "Could not find target user." msgstr "타겟 이용자를 찾을 수 없습니다." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -393,90 +393,90 @@ msgstr "" "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" "다." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "실명이 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "설명이 너무 깁니다. (최대 %d 글자)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "위치가 너무 깁니다. (최대 255글자)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "별명이 너무 많습니다! 최대 %d개." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "찾을 수가 없습니다." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "이미 차단된 이용자입니다." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -506,7 +506,7 @@ msgstr "%s 그룹" msgid "groups on %s" msgstr "%s 사이트의 그룹" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "실행 실패" @@ -516,9 +516,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -557,8 +557,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -622,18 +622,18 @@ msgstr "이 메서드는 POST 또는 DELETE를 요구합니다." msgid "You may not delete another user's status." msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "그러한 통지는 없습니다." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "자기 자신의 소식은 재전송할 수 없습니다." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "이미 재전송된 소식입니다." @@ -645,21 +645,21 @@ msgstr "삭제된 소식입니다." msgid "No status with that ID found." msgstr "발견된 ID의 상태가 없습니다." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "찾을 수가 없습니다." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다." @@ -834,7 +834,9 @@ msgid "Yes" msgstr "예" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -872,11 +874,13 @@ msgstr "%1$s 및 친구들, %2$d 페이지" msgid "Unblock user from group" msgstr "그룹 이용자는 차단해제" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "차단해제" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." @@ -898,12 +902,6 @@ msgstr "인증 코드가 없습니다." msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -915,9 +913,9 @@ msgstr "그 주소는 이미 승인되었습니다." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -925,7 +923,7 @@ msgstr "사용자를 업데이트 할 수 없습니다." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "메일 승인을 삭제 할 수 없습니다." @@ -961,9 +959,10 @@ msgstr "인증 코드가 없습니다." msgid "You are not the owner of this application." msgstr "이 응용프로그램 삭제 않기" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -994,7 +993,7 @@ msgstr "이 응용프로그램 삭제" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "로그인하고 있지 않습니다." @@ -1003,12 +1002,6 @@ msgstr "로그인하고 있지 않습니다." msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." -#: actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "통지 삭제" @@ -1048,7 +1041,6 @@ msgstr "이 사용자 삭제" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "디자인" @@ -1168,13 +1160,13 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1233,6 +1225,14 @@ msgstr "기관 이름이 너무 깁니다. (최대 255글자)" msgid "Organization homepage is required." msgstr "기관 홈페이지가 필요합니다." +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + #: actions/editapplication.php:258 msgid "Could not update application." msgstr "관심소식을 생성할 수 없습니다." @@ -1306,7 +1306,7 @@ msgstr "확인된 최신의 메일 계정" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1324,22 +1324,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "취소" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "\"사용자이름@예제.org\"와 같은 메일 계정" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1347,110 +1351,110 @@ msgstr "추가" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "받은 메일" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "포스팅을 위한 새 메일 계정의 생성; 전 메일 계정은 취소." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "새 게임" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "메일 설정" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "새로운 예약 구독의 통지를 메일로 보내주세요." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "누군가 내게 비밀메시지를 보냈을 때, 메일을 보냅니다." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "누군가 내게 @ 답장을 보냈을 때, 메일을 보냅니다." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "친구들이 내게 메일이나 쪽지를 보낼 수 있도록 허용합니다." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "메일로 통보를 포스트합니다." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "메일 주소를 위한 MicroID의 생성" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "메일 설정이 저장되었습니다." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "메일 주소가 없습니다." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "메일 주소를 정규화 할 수 없습니다." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "올바른 메일 주소가 아닙니다." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "그 메일 주소는 이미 귀하의 것입니다." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "그 메일 주소는 이미 다른 사용자의 소유입니다." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "확인 코드를 추가 할 수 없습니다." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1461,45 +1465,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "취소 할 대기중인 인증이 없습니다." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "그 메일 주소는 귀하의 것이 아닙니다." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "메일 주소를 지웠습니다." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "받는 메일 주소가 없습니다." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "사용자 기록을 업데이트 할 수 없습니다." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "받는 메일 주소를 지웠습니다." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "새로운 받는 메일 주소를 추가했습니다." @@ -1558,11 +1562,6 @@ msgstr "인기있는 회원" msgid "Featured users, page %d" msgstr "인기있는 회원, %d페이지" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some great users on %s" -msgstr "" - #: actions/file.php:34 msgid "No notice ID." msgstr "그러한 통지는 없습니다." @@ -1583,10 +1582,6 @@ msgstr "첨부문서 없음" msgid "Not expecting this response!" msgstr "예상치 못한 반응 입니다." -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "당신은 로컬 구독을 사용할 수 있습니다." @@ -1599,14 +1594,6 @@ msgstr "이 사용자는 귀하의 구독을 차단했습니다." msgid "You are not authorized." msgstr "당신은 이 프로필에 구독되지 않고있습니다." -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:79 msgid "No such file." msgstr "해당하는 파일이 없습니다." @@ -1651,7 +1638,7 @@ msgstr "사용자가 귀하를 차단했습니다." msgid "User is not a member of group." msgstr "그룹 이용자는 차단해제" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "그룹 이용자는 차단해제" @@ -1711,32 +1698,28 @@ msgstr "로고를 업데이트했습니다." msgid "Failed updating logo." msgstr "로고 업데이트에 실패했습니다." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s 그룹 회원" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%s 그룹 회원" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "차단하기" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "이 이용자를 관리자로 만듦" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1859,7 +1842,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1869,64 +1855,64 @@ msgstr "" "GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "메일 설정" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk 로 통지를 보내주세요." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "설정이 저장되었습니다." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Jabber ID가 아닙니다." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "그 Jabbar ID를 정규화 할 수 없습니다." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "유효한 Jabber ID가 아닙니다." #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "그 Jabber ID는 이미 귀하의 것입니다." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1936,28 +1922,28 @@ msgstr "" "달할 수 있습니다." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "옳지 않은 메신저 계정 입니다." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "메신저 승인을 삭제 할 수 없습니다." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "확인 코드가 없습니다." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "그 Jabber ID는 귀하의 것이 아닙니다." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "메일 주소를 지웠습니다." @@ -2173,12 +2159,6 @@ msgid "" msgstr "" "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" @@ -2301,21 +2281,11 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "찔러 보기를 보냈습니다." @@ -2362,12 +2332,6 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다." msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2375,8 +2339,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -2504,7 +2468,7 @@ msgid "Password saved." msgstr "비밀 번호 저장" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "경로" @@ -2677,7 +2641,7 @@ msgstr "실명" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "홈페이지" @@ -2685,10 +2649,6 @@ msgstr "홈페이지" msgid "URL of your homepage, blog, or profile on another site" msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "자기소개" @@ -2771,7 +2731,7 @@ msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "설정 저장" @@ -2824,14 +2784,6 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:247 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "공개 태그 클라우드" @@ -3045,33 +2997,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -3120,18 +3045,6 @@ msgstr "구독" msgid "Invalid profile URL (bad format)" msgstr "옳지 않은 프로필 URL (나쁜 포멧)" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:76 msgid "You can't repeat your own notice." msgstr "자신의 글은 재전송할 수 없습니다." @@ -3243,24 +3156,24 @@ msgid "Application profile" msgstr "신규 응용 프로그램" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "이름" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "기관 이름이 필요합니다." #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "설명" @@ -3357,7 +3270,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "좋아하는 글을 지정하면 자기가 무엇을 좋아하는지 알릴 수 있습니다." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 그룹" @@ -3409,7 +3322,7 @@ msgstr "%s 그룹을 위한 공지피드 (Atom)" msgid "FOAF for %s group" msgstr "%s의 보낸쪽지함" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "회원" @@ -3437,15 +3350,6 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:461 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - #: actions/showmessage.php:81 msgid "No such message." msgstr "그러한 메시지가 없습니다." @@ -3513,14 +3417,6 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -3780,7 +3676,7 @@ msgstr "코드가 입력 되지 않았습니다." #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4063,13 +3959,6 @@ msgstr "" msgid "Authorize subscription" msgstr "구독을 허가" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "라이센스" @@ -4095,24 +3984,10 @@ msgstr "허용되지 않는 요청입니다." msgid "Subscription authorized" msgstr "구독 허가" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "구독 거부" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -4133,14 +4008,9 @@ msgstr "" msgid "Profile URL ‘%s’ is for a local user." msgstr "" -#: actions/userauthorization.php:350 +#: actions/userauthorization.php:345 #, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." +msgid "Avatar URL ‘%s’ is not valid." msgstr "" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 @@ -4163,10 +4033,6 @@ msgstr "" msgid "%1$s groups, page %2$d" msgstr "그룹, %d 페이지" -#: actions/usergroups.php:132 -msgid "Search for more groups" -msgstr "" - #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -4366,7 +4232,7 @@ msgid "Unable to save tag." msgstr "태그를 저장할 수 없습니다." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "귀하는 구독이 금지되었습니다." @@ -4463,12 +4329,6 @@ msgstr "제목없는 페이지" msgid "Primary site navigation" msgstr "주 사이트 네비게이션" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Main menu option when logged in for access to personal profile and friends timeline #: lib/action.php:458 msgctxt "MENU" @@ -4499,7 +4359,8 @@ msgid "Change site configuration" msgstr "메일 주소 확인" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "관리" @@ -4556,12 +4417,6 @@ msgctxt "MENU" msgid "Help" msgstr "도움말" -#. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 -msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "" - #: lib/action.php:516 msgctxt "MENU" msgid "Search" @@ -4569,7 +4424,7 @@ msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "사이트 공지" @@ -4632,22 +4487,17 @@ msgstr "배지" msgid "StatusNet software license" msgstr "StatusNet 소프트웨어 라이선스" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4659,50 +4509,51 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "사이트 컨텐츠 라이선스" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "컨텐츠와 데이터의 저작권은 %1$s의 소유입니다. All rights reserved." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "컨텐츠와 데이터의 저작권은 각 이용자의 소유입니다. All rights reserved." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "페이지수" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "앞 페이지" @@ -4711,165 +4562,194 @@ msgstr "앞 페이지" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "디자인 설정을 저장할 수 없습니다." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "메일 주소 확인" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "사이트" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "메일 주소 확인" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "디자인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "메일 주소 확인" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "사용자" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "메일 주소 확인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "메일 주소 확인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "메일 주소 확인" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "메일 주소 확인" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "이 응용프로그램 삭제 않기" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "응용프로그램 삭제" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "응용프로그램 삭제" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "소스 코드 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "브라우저" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "데스크톱" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "읽기 전용" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "읽기 쓰기" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "취소" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "읽기 쓰기" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "제거" @@ -4889,10 +4769,16 @@ msgstr "작성자" msgid "Provider" msgstr "미리보기" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "차단하기" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "실행결과" @@ -4905,6 +4791,13 @@ msgstr "실행 완료" msgid "Command failed" msgstr "실행 실패" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4932,6 +4825,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4966,13 +4873,6 @@ msgid "" "same server." msgstr "" -#. TRANS: Message given if content is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 -#, php-format -msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." @@ -4983,27 +4883,23 @@ msgstr "직접 메시지 보내기 오류." msgid "Error repeating notice." msgstr "사용자 세팅 오류" -#. TRANS: Message given if content of a notice for a reply is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 -#, php-format -msgid "Notice too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." msgstr "사용자 세팅 오류" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." +#. 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:672 +#, 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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -5044,8 +4940,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5053,7 +4956,7 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5061,13 +4964,14 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5226,33 +5130,6 @@ msgstr "그룹의 위치, \"시/군/구, 도, 국가\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "그룹" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "차단" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "%s 그룹 속성 편집" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "로고" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "%s 로고 추가 혹은 편집" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "%s 로고 추가 혹은 편집" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "가장 많은 회원수를 가진 그룹들" @@ -5279,7 +5156,8 @@ msgstr "지원하지 않는 그림 파일 형식입니다." msgid "Partial upload." msgstr "불완전한 업로드." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" @@ -5365,22 +5243,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -5564,56 +5426,75 @@ msgstr "죄송합니다. 귀하의 이메일이 아닙니다." msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "소스 이용자를 확인할 수 없습니다." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -5721,23 +5602,7 @@ msgstr "찔러 보기" msgid "Send a nudge to this user" msgstr "이 사용자에게 찔러 보기 메시지 보내기" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "새 프로필 추가 오류" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "아바타 추가 오류" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "리모트 프로필 업데이트 오류" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "리모트 프로필 추가 오류" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." @@ -5848,19 +5713,19 @@ msgstr "그룹 이용자는 차단해제" msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "검색 도움말" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "검색" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "검색 도움말" @@ -5978,6 +5843,10 @@ msgstr "상위 게시글 등록자" msgid "Unsandbox" msgstr "" +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "이 사용자 삭제" @@ -6033,56 +5902,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "몇 초 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "1분 전" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "%d분 전" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1시간 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "%d시간 전" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "하루 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "%d일 전" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "1달 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "%d달 전" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index cdabe37a3c..45afa2b711 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Macedonian +# Translation of StatusNet to Macedonian (Македонски) +# Expored from translatewiki.net # -# Author@translatewiki.net: Bjankuloski06 -# Author@translatewiki.net: Brest +# Author: Bjankuloski06 +# Author: Brest # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:34:59+0000\n" -"Language-Team: Macedonian\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:10+0000\n" +"Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1;\n" +"X-Message-Group: #out-statusnet\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Пристап" @@ -77,10 +79,10 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -93,15 +95,15 @@ msgstr "Нема таква страница." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -200,16 +202,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -224,21 +226,23 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" msgid "API method not found." msgstr "API методот не е пронајден." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Овој метод бара POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -246,27 +250,27 @@ msgstr "" "Мора да назначите параметар со име 'device' со една од следниве вредности: " "sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Не можев да го подновам корисникот." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Корисникот нема профил." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Не може да се зачува профил." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -278,30 +282,30 @@ msgstr "" "Опслужувачот не можеше да обработи толку многу POST-податоци (%s бајти) " "заради неговата тековна поставеност." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Не можам да ги зачувам Вашите нагодувања за изглед." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Не може да се поднови Вашиот изглед." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Не можете да се блокирате самите себеси!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Блокирањето на корисникот не успеа." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Не успеа одблокирањето на корисникот." @@ -325,61 +329,61 @@ msgstr "Директни пораки до %s" msgid "All the direct messages sent to %s" msgstr "Сите директни пораки испратени до %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Нема текст за пораката!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Ова е предолго. Максималната должина изнесува %d знаци." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Примачот не е пронајден." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Неможете да испраќате директни пораки на корисници што не ви се пријатели." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Нема пронајдено статус со таков ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Овој статус веќе Ви е омилен." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Не можам да создадам омилина забелешка." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Тој статус не Ви е омилен." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не можам да ја избришам омилената забелешка." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Не можам да го следам корисникот: профилот не е пронајден." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не можам да го следам корисникот: %s веќе е на Вашиот список." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Не можам да престанам да го следам корисникот: Корисникот не е пронајден." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Не можете да престанете да се следите самите себеси." @@ -397,101 +401,101 @@ msgstr "Не можев да го утврдам целниот корисник msgid "Could not find target user." msgstr "Не можев да го пронајдам целниот корисник." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неправилен прекар." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Главната страница не е важечка URL-адреса." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Целото име е предолго (највеќе 255 знаци)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Описот е предолг (дозволено е највеќе %d знаци)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Премногу алијаси! Дозволено е највеќе %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Неважечки алијас: „%s“." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алијасот „%s“ е зафатен. Одберете друг." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Алијасот не може да биде ист како прекарот." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Групата не е пронајдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Веќе членувате во таа група." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Блокирани сте од таа група од администраторот." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Не членувате во оваа група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -521,7 +525,7 @@ msgstr "%s групи" msgid "groups on %s" msgstr "групи на %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Подигањето не успеа." @@ -535,9 +539,9 @@ msgstr "Погрешен жетон." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -582,8 +586,8 @@ msgstr "Жетонот на барањето %s е одбиен и поништ #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -647,18 +651,18 @@ msgstr "Методот бара POST или DELETE." msgid "You may not delete another user's status." msgstr "Не можете да избришете статус на друг корисник." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Нема таква забелешка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Не можете да ја повторувате сопствената забелешка." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Забелешката е веќе повторена." @@ -670,21 +674,21 @@ msgstr "Статусот е избришан." msgid "No status with that ID found." msgstr "Нема пронајдено статус со тој ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Клиентот мора да укаже вредност за параметарот „статус“" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Ова е предолго. Максималната дозволена должина изнесува %d знаци." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Не е пронајдено." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -889,7 +893,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Блокирај го корисников" @@ -931,11 +937,13 @@ msgstr "Листана корисниците блокирани од придр msgid "Unblock user from group" msgstr "Одблокирај корисник од група" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Одблокирај" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Одблокирај го овој корсник" @@ -974,9 +982,9 @@ msgstr "Оваа адреса веќе е потврдена." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -984,7 +992,7 @@ msgstr "Не можев да го подновам корисникот." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не можев да ја избришам потврдата по е-пошта." @@ -1020,9 +1028,10 @@ msgstr "Програмот не е пронајден." msgid "You are not the owner of this application." msgstr "Не сте сопственик на овој програм." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1056,7 +1065,7 @@ msgstr "Избриши го програмов" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не сте најавени." @@ -1119,7 +1128,6 @@ msgstr "Избриши овој корисник" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Изглед" @@ -1240,13 +1248,13 @@ msgstr "Врати основно-зададени нагодувања" msgid "Reset back to default" msgstr "Врати по основно" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" @@ -1402,7 +1410,7 @@ msgstr "Тековна потврдена е-поштенска адреса." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1420,22 +1428,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Е-пошта, од обликот „UserName@example.org“" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1443,113 +1455,113 @@ msgstr "Додај" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Приемна пошта" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Испраќајте е-пошта на оваа адреса за да објавувате нови забелешки." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создај нова е-поштенска адреса за примање објави; ја заменува старата адреса." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Нова" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Нагодувања за е-пошта" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Испраќај ми известувања за нови претплати по е-пошта." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Испраќај ми е-пошта кога некој ќе додаде моја забелешка како омилена." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Испраќај ми е-пошта кога некој ќе ми испрати приватна порака." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Испраќај ми е-пошта кога некој ќе ми испрати „@-одговор“" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" "Дозволи им на пријателите да можат да ме подбуцнуваат и да ми испраќаат е-" "пошта." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Сакам да објавувам забелешки по е-пошта." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Објави MicroID за мојата е-поштенска адреса." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Нагодувањата за е-пошта се зачувани." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Нема е-поштенска адреса." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Неможам да ја нормализирам таа е-поштенска адреса" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Оваа е-поштенска адреса е веќе Ваша." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Таа е-поштенска адреса е веќе зафатена од друг корисник." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Потврдниот код не може да се внесе." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1561,50 +1573,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Ова е погрешна е-поштенска адреса." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Потврдата на е-пошта е откажана." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Ова не е Вашата е-поштенска адреса." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Е-поштенската адреса е отстранета." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Нема приемна е-поштенска адреса." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не можев да ја подновам корисничката евиденција." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Приемната е-поштенска адреса е отстранета." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Додадена е нова влезна е-поштенска адреса." @@ -1723,7 +1735,7 @@ msgstr "Не можев да ги претворам жетоните за ба msgid "Remote service uses unknown version of OMB protocol." msgstr "Далечинската служба користи непозната верзија на OMB протокол." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Грешка во подновувањето на далечинскиот профил." @@ -1780,7 +1792,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп msgid "User is not a member of group." msgstr "Корисникот не членува во групата." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Блокирај корисник од група" @@ -1864,40 +1876,32 @@ msgstr "Логото е подновено." msgid "Failed updating logo." msgstr "Подновата на логото не успеа." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Членови на групата %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Членови на групата %1$s, стр. %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Список на корисниците на оваа група." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Администратор" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Блокирај" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Направи го/ја администратор" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Направи го корисникот администратор" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2037,7 +2041,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2047,64 +2054,64 @@ msgstr "" "%s во Вашиот контактен список во Вашиот IM клиент или GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM нагодувања" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми забелешки преку Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Објавувај забелешка кога мојот статус на Jabber/GTalk ќе се промени." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Испраќај ми одговори преку Jabber/GTalk од луѓе на кои не сум претплатен." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Објави MicroID за мојата адреса на Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Нагодувањата се зачувани." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Нема JabberID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Неправилен JabberID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Ова Jabber ID му припаѓа на друг корисник." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2114,28 +2121,28 @@ msgstr "" "одобрите на %S да ви испраќа пораки." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Ова е погрешната IM адреса." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Не можев да ја избришам потврдата на IM." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Потврдата на IM е откажана." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM-адресата е отстранета." @@ -2608,8 +2615,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2751,7 +2758,7 @@ msgid "Password saved." msgstr "Лозинката е зачувана." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Патеки" @@ -2965,7 +2972,7 @@ msgstr "Цело име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Домашна страница" @@ -3073,7 +3080,7 @@ msgid "Couldn't save tags." msgstr "Не можев да ги зачувам ознаките." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Нагодувањата се зачувани" @@ -3615,7 +3622,7 @@ msgstr "Корисникот е веќе во песочен режим." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Сесии" @@ -3653,24 +3660,24 @@ msgid "Application profile" msgstr "Профил на програмот" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Икона" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Организација" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -3787,7 +3794,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Ова е начин да го споделите она што Ви се допаѓа." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Група %s" @@ -3839,7 +3846,7 @@ msgstr "Канал со забелешки за групата%s (Atom)" msgid "FOAF for %s group" msgstr "FOAF за групата %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Членови" @@ -4296,7 +4303,7 @@ msgstr "Нема внесено код" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Снимки" @@ -5034,7 +5041,7 @@ msgid "Unable to save tag." msgstr "Не можам да ја зачувам ознаката." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Блокирани сте од претплаќање." @@ -5177,7 +5184,8 @@ msgid "Change site configuration" msgstr "Промена на поставките на мрежното место" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Админ" @@ -5254,7 +5262,7 @@ msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Напомена за мрежното место" @@ -5318,7 +5326,10 @@ msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5328,13 +5339,16 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е сервис за микроблогирање." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5346,20 +5360,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Лиценца на содржините на мрежното место" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5367,32 +5381,33 @@ msgstr "" "права задржани." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "права задржани." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Прелом на страници" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Претходно" @@ -5401,208 +5416,227 @@ msgstr "Претходно" msgid "Expecting a root feed element but got a whole XML document." msgstr "Се очекува коренски каналски елемент, но добив цел XML документ." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Сè уште не е поддржана обработката на далечинска содржина." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Сè уште не е поддржана обработката на XML содржина." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Не можете да врште измени на ова мрежно место." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Менувањето на тој алатник не е дозволено." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() не е имплементирано." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Основни нагодувања на мрежното место" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Мреж. место" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Поставки на изгледот" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Изглед" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Конфигурација на корисник" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Корисник" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Конфигурација на пристапот" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Конфигурација на патеки" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Конфигурација на сесиите" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Уреди објава за мрежното место" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Поставки за снимки" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурсот бара да може и да чита и да запишува, а вие можете само да " "читате." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Уреди програм" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Икона за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Опишете го програмот со %d знаци" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Опишете го Вашиот програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL на страницата на програмот" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Изворна URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Организацијата одговорна за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL на страницата на организацијата" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL за пренасочување по заверката" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Прелистувач" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Работна површина" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Тип на програм, прелистувач или работна површина" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Само читање" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Читање-пишување" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Откажи" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "читање-пишување" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Одобрено %1$s - „%2$s“ пристап." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" @@ -5622,11 +5656,13 @@ msgstr "Автор" msgid "Provider" msgstr "Обезбедувач" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Забелешки кадешто се јавува овој прилог" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Ознаки за овој прилог" @@ -5638,6 +5674,11 @@ msgstr "Менувањето на лозинката не успеа" msgid "Password changing is not allowed" msgstr "Менувањето на лозинка не е дозволено" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Блокирај" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Резултати од наредбата" @@ -5889,7 +5930,7 @@ msgid "You are not subscribed to anyone." msgstr "Не сте претплатени никому." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5904,7 +5945,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5919,7 +5960,7 @@ msgid "You are not a member of any groups." msgstr "Не членувате во ниедна група." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5927,6 +5968,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6147,38 +6189,6 @@ msgstr "" "Дополнителни прекари за групата, одделени со запирка или празно место, " "највеќе до %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Група" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Блокирани" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s блокирани корисници" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Уреди својства на групата %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Лого" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Додај или уреди лого на %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Додај или уреди изглед на %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи со највеќе членови" @@ -6205,7 +6215,8 @@ msgstr "Неподдржан фомрат на слики." msgid "Partial upload." msgstr "Делумно подигање." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системска грешка при подигањето на податотеката." @@ -6610,19 +6621,22 @@ msgstr "Жалиме, приемната пошта не е дозволена." msgid "Unsupported message type: %s" msgstr "Неподдржан формат на порака: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Се појави грешка во базата на податоци при зачувувањето на Вашата " "податотека. Обидете се повторно." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Подигнатата податотека ја надминува директивата upload_max_filesize во php." "ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6630,44 +6644,43 @@ msgstr "" "Подигнатата податотека ја надминува директивата the MAX_FILE_SIZE назначена " "во HTML-образецот." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Подигнатата податотека е само делумно подигната." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Недостасува привремена папка." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Податотеката не може да се запише на дискот." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Подигањето на податотеката е запрено од проширувањето." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Податотеката ја надминува квотата на корисникот." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Податотеката не може да се премести во целниот директориум." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Не можев да го утврдам mime-типот на податотеката." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Обидете се со друг формат на %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s не е поддржан тип на податотека на овој опслужувач." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Испрати директна забелешка" @@ -6783,27 +6796,7 @@ msgstr "Подбуцни" msgid "Send a nudge to this user" msgstr "Испрати подбуцнување на корисников" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Грешка во внесувањето на новиот профил" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Грешка во внесувањето на аватарот" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Грешка во подновувањето на далечинскиот профил" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Грешка во внесувањето на далечинскиот профил" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Дуплирај забелешка" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." @@ -6840,7 +6833,8 @@ msgstr "Ваши испратени пораки" msgid "Tags in %s's notices" msgstr "Ознаки во забелешките на %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Непознато" @@ -6934,19 +6928,19 @@ msgstr "Песок" msgid "Sandbox this user" msgstr "Стави го корисников во песочен режим" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Пребарај по мрежното место" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Клучен збор" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Барај" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Помош со пребарување" @@ -7145,56 +7139,32 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "пред неколку секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "пред една минута" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "пред %d минути" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "пред еден час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "пред %d часа" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "пред еден ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "пред %d дена" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "пред еден месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "пред %d месеца" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 4b23489ada..e74afe48fa 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Norwegian (bokmål)‬ +# Translation of StatusNet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net # -# Author@translatewiki.net: Laaknor -# Author@translatewiki.net: Nghtwlkr +# Author: Laaknor +# Author: Nghtwlkr # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:01+0000\n" -"Language-Team: Norwegian (bokmål)‬\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:11+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Tilgang" @@ -75,10 +77,10 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -91,15 +93,15 @@ msgstr "Ingen slik side." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -196,39 +198,41 @@ msgstr "Du og venner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Denne metoden krever en POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brukeren har ingen profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -240,25 +244,25 @@ msgstr "" "Tjeneren kunne ikke håndtere så mye POST-data (%s bytes) på grunn av sitt " "nåværende oppsett." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Kunne ikke lagre dine innstillinger for utseende." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Du kan ikke blokkere deg selv!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blokkering av bruker mislyktes." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Oppheving av blokkering av bruker mislyktes." @@ -282,59 +286,59 @@ msgstr "Direktemeldinger til %s" msgid "All the direct messages sent to %s" msgstr "Alle direktemeldinger sendt til %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Ingen meldingstekst!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Fant ikke mottakeren." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Fant ingen status med den ID-en." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Denne statusen er allerede en favoritt." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Den statusen er ikke en favoritt." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikke slette favoritt." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Kunne ikke følge brukeren: fant ikke profilen." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kunne ikke følge brukeren: %s er allerede i listen din." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Kunne ikke slutte å følge brukeren: Fant ikke brukeren." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kan ikke slutte å følge deg selv." @@ -350,101 +354,101 @@ msgstr "Kunne ikke bestemme kildebruker." msgid "Could not find target user." msgstr "Kunne ikke finne målbruker." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ugyldig nick." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Beklager, navnet er for langt (max 250 tegn)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivelsen er for lang (maks %d tegn)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Plassering er for lang (maks 255 tegn)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "For mange alias! Maksimum %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ugyldig alias: «%s»." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kan ikke være det samme som kallenavn." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Gruppe ikke funnet." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Du har blitt blokkert fra den gruppen av administratoren." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Du er ikke et medlem av denne gruppen." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -474,7 +478,7 @@ msgstr "%s grupper" msgid "groups on %s" msgstr "grupper på %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Opplasting feilet." @@ -488,9 +492,9 @@ msgstr "Ugyldig symbol." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -533,8 +537,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -598,18 +602,18 @@ msgstr "Denne metoden krever en POST eller DELETE." msgid "You may not delete another user's status." msgstr "Du kan ikke slette statusen til en annen bruker." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen slik notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Kan ikke gjenta din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Allerede gjentatt den notisen." @@ -621,21 +625,21 @@ msgstr "Status slettet." msgid "No status with that ID found." msgstr "Ingen status med den ID-en funnet." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt. Maks notisstørrelse er %d tegn." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Ikke funnet." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." @@ -835,7 +839,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -877,11 +883,13 @@ msgstr "En liste over brukere som er blokkert fra å delta i denne gruppen." msgid "Unblock user from group" msgstr "Opphev blokkering av bruker fra gruppe" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Opphev blokkering" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Opphev blokkering av denne brukeren" @@ -920,9 +928,9 @@ msgstr "Den adressen har allerede blitt bekreftet." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -930,7 +938,7 @@ msgstr "Klarte ikke å oppdatere bruker." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kunne ikke slette e-postbekreftelse." @@ -996,7 +1004,7 @@ msgstr "Slett dette programmet" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ikke logget inn." @@ -1059,7 +1067,6 @@ msgstr "Slett denne brukeren" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Utseende" @@ -1179,13 +1186,13 @@ msgstr "Gjenopprett standardutseende" msgid "Reset back to default" msgstr "Tilbakestill til standardverdier" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" @@ -1341,7 +1348,7 @@ msgstr "Nåværende bekreftede e-postadresse" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1359,22 +1366,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-postadresse («brukernavn@eksempel.org»)" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1382,110 +1393,110 @@ msgstr "Legg til" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "innkommende e-post" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send e-post til denne adressen for å poste nye notiser." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Angi en ny e-postadresse for å poste til; fjerner den gamle." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Ny" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-postinnstillinger" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Send meg varsler om nye abonnementer gjennom e-post." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send meg en e-post når noen legger min notis til som favoritt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Send meg en e-post når noen sender meg en privat melding." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send meg en e-post når noen sender meg et «@-svar»." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat venner å knuffe meg og sende meg en e-post." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Jeg vil poste notiser med e-post." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publiser en MicroID for min e-postadresse." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "E-postinnstillinger lagret." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Ingen e-postadresse." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Det er allerede din e-postadresse." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Den e-postadressen tilhører allerede en annen bruker." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kunne ikke sette inn bekreftelseskode." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1496,50 +1507,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen ventende bekreftelse å avbryte." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Dette er feil e-postadresse." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "E-postbekreftelse avbrutt." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Det er ikke din e-postadresse." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "E-postadressen ble fjernet." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen innkommende e-postadresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kunne ikke oppdatere brukeroppføring." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkommende e-postadresse fjernet." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Ny innkommende e-postadresse lagt til." @@ -1658,7 +1669,7 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Feil ved oppdatering av fjernprofil." @@ -1715,7 +1726,7 @@ msgstr "Bruker er allerede blokkert fra gruppe." msgid "User is not a member of group." msgstr "Bruker er ikke et medlem av gruppa." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blokker bruker fra gruppe" @@ -1795,40 +1806,32 @@ msgstr "Logo oppdatert." msgid "Failed updating logo." msgstr "Kunne ikke oppdatere logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s gruppemedlemmer" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s gruppemedlemmer, side %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "En liste over brukerne i denne gruppen." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokkér" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Gjør til administrator" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Gjør denne brukeren til administrator" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1966,7 +1969,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1976,63 +1982,63 @@ msgstr "" "vennelisten din i direktemeldingsklienten din eller på GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Direktemeldingsinnstillinger" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg notiser gjennom Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post en notis når min Jabber/Gtalk-status endres." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send meg svar gjennom Jabber/GTalk fra personer jeg ikke abonnerer på." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Innstillinger lagret." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Ingen Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Klarer ikke normalisere Jabber-IDen" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Ugyldig Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Det er allerede din Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID tilhører allerede en annen bruker." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2042,28 +2048,28 @@ msgstr "" "godkjenne %s for å sende meldinger til deg." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Det er feil IM-adresse." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Kunne ikke slette direktemeldingsbekreftelse." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Direktemeldingsbekreftelse avbrutt." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Direktemeldingsadressen ble fjernet." @@ -2527,8 +2533,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bare %s-nettadresser over vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Ikke et støttet dataformat." @@ -2580,6 +2586,10 @@ msgstr "Ingen bruker-ID spesifisert." msgid "No login token specified." msgstr "Ingen notis spesifisert." +#: actions/otp.php:90 +msgid "No login token requested." +msgstr "" + #: actions/otp.php:95 msgid "Invalid login token specified." msgstr "Ugyldig symbol." @@ -2660,7 +2670,7 @@ msgid "Password saved." msgstr "Passordet ble lagret" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Stier" @@ -2871,7 +2881,7 @@ msgstr "Fullt navn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmesiden" @@ -2977,7 +2987,7 @@ msgid "Couldn't save tags." msgstr "Kunne ikke lagre merkelapper." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Innstillinger lagret." @@ -3512,7 +3522,7 @@ msgstr "Brukeren er allerede i sandkassen." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Økter" @@ -3550,24 +3560,24 @@ msgid "Application profile" msgstr "Programprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikon" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Navn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisasjon" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivelse" @@ -3678,7 +3688,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dette er en måte å dele det du liker." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s gruppe" @@ -3730,7 +3740,7 @@ msgstr "Notismating for %s gruppe (Atom)" msgid "FOAF for %s group" msgstr "FOAF for gruppen %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Medlemmer" @@ -4176,7 +4186,7 @@ msgstr "Ingen kode skrevet inn" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4192,6 +4202,10 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -4461,6 +4475,21 @@ msgid "" "subscription." msgstr "" +#: actions/userauthorization.php:303 +#, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "" + +#: actions/userauthorization.php:308 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:314 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + #: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." @@ -4856,7 +4885,8 @@ msgid "Change site configuration" msgstr "Endre nettstedskonfigurasjon" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -4933,7 +4963,7 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nettstedsnotis" @@ -4988,7 +5018,10 @@ msgid "StatusNet software license" msgstr "Programvarelisens for StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4998,13 +5031,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er en mikrobloggingtjeneste." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5014,38 +5050,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 +#: lib/action.php:1254 msgid "After" msgstr "Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Før" @@ -5054,171 +5091,200 @@ msgstr "Før" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Du kan ikke gjøre endringer på dette nettstedet." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() ikke implementert." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() ikke implementert." #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Nettsted" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Utseende" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Brukerkonfigurasjon" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Bruker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Tilgangskonfigurasjon" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Stikonfigurasjon" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Rediger nettstedsnotis" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Rediger program" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ikon for dette programmet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Beskriv programmet ditt med %d tegn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beskriv programmet ditt" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "Nettadresse til hjemmesiden for dette programmet" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Nettadresse til kilde" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL til organisasjonens hjemmeside" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Nettleser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Skrivebord" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Type program, nettleser eller skrivebord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Skrivebeskyttet" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Les og skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "les og skriv" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "skrivebeskyttet" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" @@ -5238,7 +5304,8 @@ msgstr "Forfatter" msgid "Provider" msgstr "Leverandør" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notiser hvor dette vedlegget forekommer" @@ -5250,6 +5317,11 @@ msgstr "Endring av passord mislyktes" msgid "Password changing is not allowed" msgstr "Endring av passord er ikke tillatt" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokkér" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Kommandoresultat" @@ -5262,6 +5334,18 @@ msgstr "Kommando fullført" msgid "Command failed" msgstr "Kommando feilet" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -5272,6 +5356,13 @@ msgstr "Beklager, denne kommandoen er ikke implementert ennå." msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det gir ikke så mye mening å knuffe seg selv." +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5292,6 +5383,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Notis markert som favoritt." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5343,6 +5448,13 @@ msgstr "Feil ved sending av direktemelding." msgid "Error repeating notice." msgstr "Feil ved repetering av notis." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -5358,12 +5470,26 @@ msgstr "" 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:672 +#, 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:694 lib/command.php:804 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." @@ -5381,8 +5507,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5391,7 +5524,7 @@ msgstr[0] "Ikke autorisert." msgstr[1] "Ikke autorisert." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5406,7 +5539,7 @@ msgid "You are not a member of any groups." msgstr "Du er ikke et medlem av den gruppen." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5414,6 +5547,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5512,10 +5646,6 @@ msgstr "Venn av en venn" msgid "Export data" msgstr "Eksporter data" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - #: lib/galleryaction.php:131 msgid "All" msgstr "Alle" @@ -5551,33 +5681,6 @@ msgstr "Beskriv programmet ditt med %d tegn" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Gruppe" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blokkert" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s blokkerte brukere" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Rediger %s gruppeegenskaper" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Legg til eller rediger %s logo" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmer" @@ -5604,7 +5707,8 @@ msgstr "Filen er for stor. Maks filstørrelse er %s." msgid "Partial upload." msgstr "Delvis opplasting." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." @@ -5995,54 +6099,60 @@ msgstr "Ikke en registrert bruker." msgid "Unsupported message type: %s" msgstr "Meldingstypen støttes ikke: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet grunnet filendelse." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Fil overgår brukers kvote." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Filen kunne ikke flyttes til målmappen." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Kunne ikke avgjøre filens MIME-type." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Prøv å bruke et annet %s-format." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "filtypen %s støttes ikke på denne tjeneren." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send en direktenotis" @@ -6154,10 +6264,6 @@ msgstr "Knuff" msgid "Send a nudge to this user" msgstr "Send et knuff til denne brukeren" -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplikatnotis" - #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" @@ -6186,12 +6292,8 @@ msgstr "Utboks" msgid "Your sent messages" msgstr "Dine sendte meldinger" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Ukjent" @@ -6240,10 +6342,6 @@ msgstr "Offentlig" msgid "User groups" msgstr "Brukergrupper" -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repeter denne notisen?" @@ -6264,19 +6362,19 @@ msgstr "" msgid "Sandbox this user" msgstr "Opphev blokkering av denne brukeren" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Søk nettsted" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Nøkkelord" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Søk" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Søkehjelp" @@ -6367,10 +6465,18 @@ msgstr "" msgid "Top posters" msgstr "" +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "Opphev blokkering av denne brukeren" +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "Opphev blokkering av denne brukeren" @@ -6414,56 +6520,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "noen få sekunder siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "omtrent %d minutter siden" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "omtrent én time siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "omtrent %d timer siden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "omtrent én dag siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "omtrent %d dager siden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "omtrent én måned siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "omtrent %d måneder siden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "omtrent ett år siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 9afcea4bfa..d34cc5e1db 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -1,9 +1,10 @@ -# Translation of StatusNet to Dutch +# Translation of StatusNet to Dutch (Nederlands) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Itavero -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Siebrand +# Author: Brion +# Author: Itavero +# Author: McDutchie +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,20 +12,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:11+0000\n" -"Language-Team: Dutch\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:13+0000\n" +"Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Toegang" @@ -77,10 +79,10 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -93,15 +95,15 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -202,16 +204,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -226,21 +228,23 @@ msgstr "Updates van %1$s en vrienden op %2$s." msgid "API method not found." msgstr "De API-functie is niet aangetroffen." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Deze methode vereist een POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -248,27 +252,27 @@ msgstr "" "U moet een parameter met de naam \"device\" opgeven met een van de volgende " "waardes: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Het was niet mogelijk de gebruiker bij te werken." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Het was niet mogelijk het profiel op te slaan." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -280,30 +284,30 @@ msgstr "" "De server was niet in staat zoveel POST-gegevens te verwerken (%s bytes) " "vanwege de huidige instellingen." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "U kunt zichzelf niet blokkeren!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Het blokkeren van de gebruiker is mislukt." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Het deblokkeren van de gebruiker is mislukt." @@ -327,64 +331,64 @@ msgstr "Privéberichten aan %s" msgid "All the direct messages sent to %s" msgstr "Alle privéberichten aan %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Het bericht is leeg!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "De ontvanger is niet aangetroffen." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "U kunt geen privéberichten sturen aan gebruikers die niet op uw " "vriendenlijst staan." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Er is geen status gevonden met dit ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Deze mededeling staat al in uw favorietenlijst." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Het was niet mogelijk een favoriet aan te maken." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Deze mededeling staat niet in uw favorietenlijst." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" "Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "U kunt deze gebruiker niet volgen, omdat deze niet bestaat." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "U kunt de gebruiker %s niet volgen, omdat deze al op uw lijst staat." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Het is niet mogelijk deze gebruiker niet langer te volgen: de gebruiker is " "niet aangetroffen." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "U kunt het abonnement op uzelf niet opzeggen." @@ -401,7 +405,7 @@ msgstr "Het was niet mogelijk de brongebruiker te bepalen." msgid "Could not find target user." msgstr "Het was niet mogelijk de doelgebruiker te vinden." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -409,96 +413,96 @@ msgstr "" "De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties " "zijn niet toegestaan." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "De thuispagina is geen geldige URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Locatie is te lang (maximaal 255 tekens)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Te veel aliassen! Het maximale aantal is %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ongeldige alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een andere alias op." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "De groep is niet aangetroffen." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "U bent al lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "U bent geen lid van deze groep." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -528,7 +532,7 @@ msgstr "%s groepen" msgid "groups on %s" msgstr "groepen op %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Uploaden is mislukt." @@ -542,9 +546,9 @@ msgstr "Ongeldig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -595,8 +599,8 @@ msgstr "Het verzoektoken %s is geweigerd en ingetrokken." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -660,18 +664,18 @@ msgstr "Deze methode vereist een POST of DELETE." msgid "You may not delete another user's status." msgstr "U kunt de status van een andere gebruiker niet verwijderen." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "De mededeling bestaat niet." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "U kunt uw eigen mededeling niet herhalen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "U hebt die mededeling al herhaald." @@ -683,21 +687,21 @@ msgstr "De status is verwijderd." msgid "No status with that ID found." msgstr "Er is geen status gevonden met dit ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "De client moet een parameter \"status\" met een waarde opgeven." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "De mededeling is te lang. Gebruik maximaal %d tekens." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Niet aangetroffen." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -901,7 +905,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -943,11 +949,13 @@ msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." msgid "Unblock user from group" msgstr "Deze gebruiker weer toegang geven tot de groep" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Deblokkeer" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." @@ -986,9 +994,9 @@ msgstr "Dit adres is al bevestigd." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -996,7 +1004,7 @@ msgstr "De gebruiker kon gebruiker niet bijwerkt worden." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "De e-mailbevestiging kon niet verwijderd worden." @@ -1032,9 +1040,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1068,7 +1077,7 @@ msgstr "Deze applicatie verwijderen" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Niet aangemeld." @@ -1132,7 +1141,6 @@ msgstr "Gebruiker verwijderen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Uiterlijk" @@ -1253,13 +1261,13 @@ msgstr "Standaardontwerp toepassen" msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" @@ -1415,7 +1423,7 @@ msgstr "Huidige bevestigde e-mailadres" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1433,22 +1441,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mailadres, zoals \"gebruikersnaam@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1456,19 +1468,19 @@ msgstr "Toevoegen" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkomende e-mail" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Stelt een nieuw e-mailadres in voor het ontvangen van berichten. Het " @@ -1476,92 +1488,92 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nieuw" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-mailvoorkeuren" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Mij e-mailen bij nieuwe abonnementen." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Mij e-mailen als iemand mijn mededeling als favoriet instelt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Mij e-mailen als iemand mij een privébericht zendt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Mij e-mailen als iemand mij een antwoord met \"@\" erin stuurt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Vrienden mogen me porren en e-mailen." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Ik wil mededelingen per e-mail plaatsen." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Een MicroID voor mijn e-mailadres publiceren." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "De e-mailvoorkeuren zijn opgeslagen." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Geen e-mailadres" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "U hebt dit e-mailadres als ingesteld als uw e-mailadres." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "De bevestigingscode kon niet ingevoegd worden." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1573,50 +1585,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Dat is het verkeerde e-mailadres." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "E-mailbevestiging geannuleerd." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Dit is niet uw e-mailadres." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Het e-mailadres is verwijderd." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Geen binnenkomend e-mailadres" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kan de gebruikersgegevens niet vernieuwen" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Het e-mailadres voor inkomende mail is verwijderd." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." @@ -1739,7 +1751,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "" "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." @@ -1797,7 +1809,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." msgid "User is not a member of group." msgstr "De gebruiker is geen lid van de groep." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" @@ -1881,40 +1893,32 @@ msgstr "Logo geactualiseerd." msgid "Failed updating logo." msgstr "Het bijwerken van het logo is mislukt." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "leden van de groep %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s groeps leden, pagina %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Ledenlijst van deze groep" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Beheerder" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokkeren" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Beheerder maken" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Deze gebruiker beheerder maken" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2055,7 +2059,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2065,65 +2072,65 @@ msgstr "" "%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM-voorkeuren" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Mij berichten sturen via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Een mededeling versturen als mijn Jabber/GTalk-status wijzigt." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Mij antwoorden sturen via Jabber/GTalk van gebruikers op wie ik niet " "geabonneerd ben." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Uw voorkeuren zijn opgeslagen." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Geen Jabber-ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Geen geldige Jabber-ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "U hebt dit al ingesteld als uw Jabber-ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2133,28 +2140,28 @@ msgstr "" "ermee akkoord gaan dat %s berichten aan u verzendt." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Dat is het verkeerde IM-adres." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "De IM-bevestiging kon niet verwijderd worden." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM-bevestiging geannuleerd." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Dit is niet uw Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Het IM-adres is verwijderd." @@ -2633,8 +2640,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Alleen URL's voor %s via normale HTTP alstublieft." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2774,7 +2781,7 @@ msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Paden" @@ -2988,7 +2995,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Thuispagina" @@ -3097,7 +3104,7 @@ msgid "Couldn't save tags." msgstr "Het was niet mogelijk de labels op te slaan." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." @@ -3641,7 +3648,7 @@ msgstr "Deze gebruiker is al in de zandbak geplaatst." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessies" @@ -3679,24 +3686,24 @@ msgid "Application profile" msgstr "Applicatieprofiel" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Icoon" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisatie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beschrijving" @@ -3813,7 +3820,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Dit is de manier om dat te delen wat u wilt." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s groep" @@ -3865,7 +3872,7 @@ msgstr "Mededelingenfeed voor groep %s (Atom)" msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Leden" @@ -4326,7 +4333,7 @@ msgstr "Er is geen code ingevoerd" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Snapshots" @@ -5076,7 +5083,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. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "U mag zich niet abonneren." @@ -5225,7 +5232,8 @@ msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" @@ -5302,7 +5310,7 @@ msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Mededeling van de website" @@ -5366,7 +5374,10 @@ msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5376,13 +5387,16 @@ msgstr "" "broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is een microblogdienst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5394,20 +5408,20 @@ msgstr "" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licentie voor siteinhoud" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5415,33 +5429,34 @@ msgstr "" "voorbehouden." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Later" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Eerder" @@ -5450,208 +5465,227 @@ msgstr "Eerder" msgid "Expecting a root feed element but got a whole XML document." msgstr "Verwachtte een root-feed element maar kreeg een heel XML-document." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "U mag geen wijzigingen maken aan deze website." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Wijzigingen aan dat venster zijn niet toegestaan." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() is niet geïmplementeerd." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Website" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Instellingen vormgeving" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Gebruikersinstellingen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Toegangsinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Padinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Sessieinstellingen" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Websitebrede mededeling opslaan" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Snapshotinstellingen" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " "maar leestoegang." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Applicatie bewerken" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Icoon voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Beschrijf uw applicatie in %d tekens" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beschrijf uw applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "De URL van de homepage van deze applicatie" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Bron-URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organisatie verantwoordelijk voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "De URL van de homepage van de organisatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL om naar door te verwijzen na authenticatie" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Type applicatie; browser of desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Alleen-lezen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Lezen en schrijven" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Annuleren" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "lezen en schrijven" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "alleen-lezen" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" @@ -5671,11 +5705,13 @@ msgstr "Auteur" msgid "Provider" msgstr "Provider" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Mededelingen die deze bijlage bevatten" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Labels voor deze bijlage" @@ -5687,6 +5723,11 @@ msgstr "Wachtwoord wijzigen is mislukt" msgid "Password changing is not allowed" msgstr "Wachtwoord wijzigen is niet toegestaan" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokkeren" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Commandoresultaten" @@ -5942,7 +5983,7 @@ msgid "You are not subscribed to anyone." msgstr "U bent op geen enkele gebruiker geabonneerd." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5957,7 +5998,7 @@ msgid "No one is subscribed to you." msgstr "Niemand heeft een abonnenment op u." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5972,7 +6013,7 @@ msgid "You are not a member of any groups." msgstr "U bent lid van geen enkele groep." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5980,6 +6021,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6204,38 +6246,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Extra namen voor de groep, gescheiden door komma's of spaties. Maximaal %d." -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Groep" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Geblokkeerd" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s geblokkeerde gebruikers" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Eigenschappen van de groep %s bewerken" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Logo voor %s toevoegen of verwijderen" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "%s-ontwerp toevoegen of bewerken" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groepen met de meeste leden" @@ -6267,7 +6277,8 @@ msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %s." msgid "Partial upload." msgstr "Gedeeltelijke upload." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." @@ -6671,19 +6682,22 @@ msgstr "Inkomende e-mail is niet toegestaan." msgid "Unsupported message type: %s" msgstr "Niet ondersteund berichttype: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Er is een databasefout opgetreden tijdens het opslaan van uw bestand. " "Probeer het alstublieft opnieuw." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 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." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6691,44 +6705,43 @@ msgstr "" "Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het " "HTML-formulier." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "De upload is slechts gedeeltelijk voltooid." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "De tijdelijke map is niet aanwezig." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Het was niet mogelijk naar schijf te schrijven." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Met dit bestand wordt het quotum van de gebruiker overschreden." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Het bestand kon niet verplaatst worden naar de doelmap." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Probeer een ander %s-formaat te gebruiken." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "Het bestandstype %s wordt door deze server niet ondersteund." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Directe mededeling verzenden" @@ -6844,29 +6857,7 @@ msgstr "Porren" msgid "Send a nudge to this user" msgstr "Deze gebruiker porren" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Er is een fout opgetreden bij het toevoegen van de avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicaatmelding" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." @@ -6903,7 +6894,8 @@ msgstr "Uw verzonden berichten" msgid "Tags in %s's notices" msgstr "Labels in de mededelingen van %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Onbekend" @@ -6997,19 +6989,19 @@ msgstr "Zandbak" msgid "Sandbox this user" msgstr "Deze gebruiker in de zandbak plaatsen" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Site doorzoeken" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Term(en)" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Zoeken" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Hulp bij zoeken" @@ -7214,56 +7206,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "een paar seconden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "ongeveer %d minuten geleden" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ongeveer een uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "ongeveer %d uur geleden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "ongeveer een dag geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "ongeveer %d dagen geleden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "ongeveer een maand geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "ongeveer %d maanden geleden" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index badba4fc2c..743b222c72 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Norwegian Nynorsk +# Translation of StatusNet to Norwegian Nynorsk (‪Norsk (nynorsk)‬) +# Expored from translatewiki.net # -# Author@translatewiki.net: Nghtwlkr -# Author@translatewiki.net: Ranveig +# Author: Nghtwlkr +# Author: Ranveig # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,16 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:06+0000\n" -"Language-Team: Norwegian Nynorsk\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:12+0000\n" +"Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -35,22 +37,17 @@ msgstr "" msgid "Disable new registrations." msgstr "" -#. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 -msgid "Closed" -msgstr "" - #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -118,39 +115,41 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Dette krev ein POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Brukaren har inga profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -160,11 +159,11 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blokkering av brukar feila." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "De-blokkering av brukar feila." @@ -183,49 +182,45 @@ msgstr "Direkte meldingar til %s" msgid "All the direct messages sent to %s" msgstr "Alle direkte meldingar sendt til %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Inga meldingstekst!" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Kunne ikkje finne mottakar." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Fann ingen status med den ID-en." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." -#: actions/apifriendshipsexists.php:91 -msgid "Two valid IDs or screen_names must be supplied." -msgstr "" - #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Kan ikkje oppdatera brukar." @@ -234,76 +229,81 @@ msgstr "Kan ikkje oppdatera brukar." msgid "Could not find target user." msgstr "Kan ikkje oppdatera brukar." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Finst ikkje." +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "" + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje bli med i gruppa." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -322,9 +322,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -355,8 +355,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -413,13 +413,13 @@ msgstr "Dette krev anten ein POST eller DELETE." msgid "You may not delete another user's status." msgstr "Du kan ikkje sletta statusen til ein annan brukar." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Denne notisen finst ikkje." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." @@ -427,15 +427,15 @@ msgstr "Kan ikkje sletta notisen." msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Finst ikkje." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -587,7 +587,9 @@ msgid "No" msgstr "Merknad" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -611,11 +613,13 @@ msgstr "Lagring av informasjon feila." msgid "No such group." msgstr "Denne gruppa finst ikkje." -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Lås opp" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Lås opp brukaren" @@ -637,12 +641,6 @@ msgstr "Fann ikkje stadfestingskode." msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -654,9 +652,9 @@ msgstr "Den addressa har alt blitt bekrefta." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -664,7 +662,7 @@ msgstr "Kan ikkje oppdatera brukar." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." @@ -691,9 +689,10 @@ msgstr "Du må være innlogga for å melde deg ut av ei gruppe." msgid "Application not found." msgstr "Fann ikkje stadfestingskode." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -710,7 +709,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Ikkje logga inn" @@ -719,12 +718,6 @@ msgstr "Ikkje logga inn" msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." -#: actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Slett notis" @@ -747,7 +740,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -755,11 +747,6 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "Endra" @@ -768,10 +755,6 @@ msgstr "Endra" msgid "Site logo" msgstr "Statusmelding" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -831,13 +814,13 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" @@ -859,10 +842,6 @@ msgstr "Legg til i favorittar" msgid "No such document \"%s\"" msgstr "Denne notisen finst ikkje." -#: actions/editapplication.php:54 -msgid "Edit Application" -msgstr "" - #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" @@ -936,7 +915,7 @@ msgstr "Godkjent epostadresse." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -951,122 +930,110 @@ msgstr "" "Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " "med instruksjonar." -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Epostadresse («brukarnamn@example.org»)" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Innkomande epost" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Send epost til denne addressa for å legge til nye notisar." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Epostadresser" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Send meg ein notis ved nye tingingar på epost." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Send meg ein epost når nokon legg til ein av mine notisar som favoritt." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Send meg ein epost når nokon sender meg ei privat melding." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat vennar å sende meg ein epost." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Eg vil senda notisar med epost." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publiser ein MicroID for epost addressa mi." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Lagra brukarval." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Ingen epostadresse." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Det er alt din epost addresse" #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Den epost addressa er alt registrert hos ein annan brukar." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kan ikkje leggja til godkjenningskode." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1077,45 +1044,45 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Ingen ventande stadfesting å avbryta." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Det er ikkje din epost addresse." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Fjerna innkomande epostadresse." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen innkomande epostadresse." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kan ikkje oppdatera brukarinformajon." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Fjerna innkomande epostadresse." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." @@ -1174,11 +1141,6 @@ msgstr "Profilerte folk" msgid "Featured users, page %d" msgstr "Profilerte folk, side %d" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some great users on %s" -msgstr "" - #: actions/file.php:34 msgid "No notice ID." msgstr "Denne notisen finst ikkje." @@ -1191,10 +1153,6 @@ msgstr "Denne notisen finst ikkje." msgid "Not expecting this response!" msgstr "Venta ikkje dette svaret!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan nytta det lokale abonnementet!" @@ -1207,14 +1165,6 @@ msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." msgid "You are not authorized." msgstr "Du tingar ikkje oppdateringar til den profilen." -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1281,32 +1231,28 @@ msgstr "Logo oppdatert." msgid "Failed updating logo." msgstr "Feil ved oppdatering av logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s medlemmar i gruppa" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%s medlemmar i gruppa" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blokkér" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1388,11 +1334,6 @@ msgstr "" "Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" "doc.im%%). Set opp adressa og innstillingar under." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1416,7 +1357,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1426,63 +1370,63 @@ msgstr "" "leggja %s til venelista di i ljonmeldingsklienten din." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Lagra brukarval." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg ein notis via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Lagra brukarval." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Nei Jabber-ID" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Klarar ikkje normalisera Jabber-IDen" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Ikkje ein gyldig Jabber-ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Det er alt din Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1492,23 +1436,23 @@ msgstr "" "for å senda meldinger til deg." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Det er feil lynmeldings addresse." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Ingen stadfestingskode." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Det er ikkje din Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Fjerna innkomande epostadresse." @@ -1595,12 +1539,6 @@ msgstr "Personleg melding" msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1714,21 +1652,10 @@ msgstr "" "Skriv inn brukarnam og passord før du endrar innstillingar (av " "tryggleiksomsyn)." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "" @@ -1813,21 +1740,11 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set their email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Dytta!" @@ -1844,6 +1761,15 @@ msgstr "Du må være logga inn for å bli med i ei gruppe." msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1870,12 +1796,6 @@ msgstr "Brukaren har inga profil." msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1883,8 +1803,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -1999,7 +1919,7 @@ msgid "Password saved." msgstr "Lagra passord." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -2007,26 +1927,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2063,6 +1963,10 @@ msgstr "" msgid "Theme" msgstr "" +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + #: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" @@ -2071,10 +1975,6 @@ msgstr "" msgid "Theme directory" msgstr "" -#: actions/pathsadminpanel.php:292 -msgid "Avatar directory" -msgstr "" - #: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" @@ -2115,10 +2015,6 @@ msgstr "Tenar" msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2174,7 +2070,7 @@ msgstr "Fullt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimeside" @@ -2182,15 +2078,6 @@ msgstr "Heimeside" msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Om meg" @@ -2271,7 +2158,7 @@ msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2293,10 +2180,6 @@ msgstr "Offentleg tidsline, side %d" msgid "Public timeline" msgstr "Offentleg tidsline" -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2323,14 +2206,6 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:247 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Offentleg emne sky" @@ -2552,33 +2427,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2628,18 +2476,6 @@ msgstr "Ting" msgid "Invalid profile URL (bad format)" msgstr "Ugyldig profil-nettadresse (feil format)" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:114 lib/noticelist.php:676 msgid "Repeated" msgstr "Framheva" @@ -2691,7 +2527,7 @@ msgstr "Statistikk" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2716,13 +2552,13 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" @@ -2736,10 +2572,18 @@ msgstr "Statistikk" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2810,7 +2654,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s gruppe" @@ -2862,7 +2706,7 @@ msgstr "Notisstraum for %s" msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Medlemmar" @@ -2890,15 +2734,6 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:461 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - #: actions/showmessage.php:81 msgid "No such message." msgstr "Kan ikkje finne den meldinga." @@ -2964,14 +2799,6 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -3073,11 +2900,6 @@ msgstr "Avatar-innstillingar" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3200,7 +3022,7 @@ msgstr "Ingen innskriven kode" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3208,6 +3030,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Stadfesting av epostadresse" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3359,10 +3185,6 @@ msgstr "Straum for vener av %s" msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Straum for vener av %s" -#: actions/tagother.php:39 -msgid "No ID argument." -msgstr "" - #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3479,17 +3301,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Autoriser tinging" -#: actions/userauthorization.php:110 -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 "" - -#: actions/userauthorization.php:196 actions/version.php:167 -msgid "License" -msgstr "" - #: actions/userauthorization.php:217 msgid "Accept" msgstr "Godta" @@ -3511,24 +3322,10 @@ msgstr "Ingen autoriserings-spørjing!" msgid "Subscription authorized" msgstr "Tinging autorisert" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tinging avvist" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3554,16 +3351,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3580,10 +3367,6 @@ msgstr "" msgid "%1$s groups, page %2$d" msgstr "Grupper, side %d" -#: actions/usergroups.php:132 -msgid "Search for more groups" -msgstr "" - #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -3838,24 +3621,12 @@ msgstr "Ingen tittel" msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" -msgstr "" - #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra passordet ditt" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -3891,15 +3662,9 @@ msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 -msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "" - #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Statusmelding" @@ -3958,22 +3723,17 @@ msgstr "Kontakt" msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er ei mikrobloggingteneste." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3986,43 +3746,44 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "« Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Før »" @@ -4031,106 +3792,143 @@ msgstr "Før »" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" -msgstr "" - -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beskriving" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Gjenopprett" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" @@ -4141,10 +3939,21 @@ msgstr "" msgid "Provider" msgstr "Forhandsvis" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "" + +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokkér" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultat frå kommandoen" @@ -4157,6 +3966,13 @@ msgstr "Kommandoen utførd" msgid "Command failed" msgstr "Kommandoen feila" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4184,6 +4000,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Notis markert som favoritt." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4218,13 +4048,6 @@ msgid "" "same server." msgstr "" -#. TRANS: Message given if content is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 -#, php-format -msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" - #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." @@ -4235,22 +4058,18 @@ msgstr "Ein feil oppstod ved sending av direkte melding." msgid "Error repeating notice." msgstr "Feil ved å setja brukar." -#. TRANS: Message given if content of a notice for a reply is too long. -#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#. 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:672 #, php-format -msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgid "Subscribed to %s." msgstr "" -#. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 -msgid "Specify the name of the user to subscribe to." -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:694 lib/command.php:804 -msgid "Specify the name of the user to unsubscribe from." +#. 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:705 +#, 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. @@ -4291,8 +4110,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4301,7 +4127,7 @@ msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4310,7 +4136,7 @@ msgstr[0] "Kan ikkje tinga andre til deg." msgstr[1] "Kan ikkje tinga andre til deg." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4318,6 +4144,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4397,6 +4224,10 @@ msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "Du kan lasta opp ein logo for gruppa." +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "" + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Fjern favoriseringsmerket" @@ -4458,11 +4289,6 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4473,24 +4299,6 @@ msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Gruppe" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Rediger %s gruppa sine eigenskapar" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Legg til eller rediger logoen til %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmar" @@ -4517,7 +4325,8 @@ msgstr "Støttar ikkje bileteformatet." msgid "Partial upload." msgstr "Hallvegs opplasta." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." @@ -4603,22 +4412,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -4750,6 +4543,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -4788,10 +4586,6 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 -msgid "from" -msgstr "" - #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Kunne ikkje prosessera melding." @@ -4808,56 +4602,75 @@ msgstr "Beklager, det er ikkje di inngåande epost addresse." msgid "Sorry, no incoming email allowed." msgstr "Beklager, inngåande epost er ikkje tillatt." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Kunne ikkje slette favoritt." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -4872,11 +4685,6 @@ msgstr "Til" msgid "Available characters" msgstr "Tilgjenglege teikn" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Send ei melding" @@ -4894,14 +4702,6 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - -#: lib/noticeform.php:216 -msgid "Do not share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -4956,23 +4756,7 @@ msgstr "Dult" msgid "Send a nudge to this user" msgstr "Send eit dult til denne brukaren" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Feil med å henta inn ny profil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Feil med innhenting av brukarbilete." - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Feil ved oppdatering av ekstern profil" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Feil med å henta inn ekstern profil" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." @@ -5062,31 +4846,20 @@ msgstr "Framheva" msgid "Popular" msgstr "Populære" -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." -msgstr "" - #: lib/repeatform.php:132 msgid "Yes" msgstr "Jau" -#: lib/revokeroleform.php:91 -#, php-format -msgid "Revoke the \"%s\" role from this user" -msgstr "" - #: lib/router.php:709 msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Søk" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Folk" @@ -5233,67 +5006,38 @@ msgstr "Melding" msgid "Moderate" msgstr "" -#: lib/userprofile.php:366 -msgctxt "role" -msgid "Administrator" -msgstr "" - #: lib/userprofile.php:367 msgctxt "role" msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "eit par sekund sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "~%d minutt sidan" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "omtrent ein time sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "~%d timar sidan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "omtrent ein dag sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "~%d dagar sidan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "omtrent ein månad sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "~%d månadar sidan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "omtrent eitt år sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index d87c2de9ec..884844bc68 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -1,33 +1,34 @@ -# Translation of StatusNet to Polish +# Translation of StatusNet to Polish (Polski) +# Expored from translatewiki.net # -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Raven -# Author@translatewiki.net: Sp5uhe +# Author: McDutchie +# Author: Raven +# Author: Sp5uhe # -- -# Paweł Wilk , 2008. -# Piotr Drąg , 2009. +# This file is distributed under the same license as the StatusNet package. # msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:13+0000\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:15+0000\n" "Last-Translator: Piotr Drąg \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " +"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Dostęp" @@ -80,10 +81,10 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -96,15 +97,15 @@ msgstr "Nie ma takiej strony." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -204,16 +205,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -228,48 +229,50 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." msgid "API method not found." msgstr "Nie odnaleziono metody API." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Nie można zaktualizować użytkownika." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Nie można zapisać profilu." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -281,30 +284,30 @@ msgstr "" "Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " "konfiguracji." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Nie można zapisać ustawień wyglądu." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Nie można zaktualizować wyglądu." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Nie można zablokować siebie." -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Zablokowanie użytkownika nie powiodło się." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." @@ -328,62 +331,62 @@ msgstr "Bezpośrednia wiadomość do użytkownika %s" msgid "All the direct messages sent to %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Brak tekstu wiadomości." -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Nie odnaleziono odbiorcy." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " "twoimi przyjaciółmi." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Nie odnaleziono stanów z tym identyfikatorem." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Ten stan jest już ulubiony." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Ten stan nie jest ulubiony." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Nie można usunąć ulubionego wpisu." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Nie można obserwować użytkownika: nie odnaleziono profilu." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Nie można obserwować użytkownika: %s jest już na twojej liście." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Nie można zrezygnować z obserwacji użytkownika: nie odnaleziono użytkownika." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Nie można zrezygnować z obserwacji samego siebie." @@ -400,101 +403,101 @@ msgstr "Nie można określić użytkownika źródłowego." msgid "Could not find target user." msgstr "Nie można odnaleźć użytkownika docelowego." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Opis jest za długi (maksymalnie %d znaków)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów. Maksymalnie %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Nieprawidłowy alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" jest już używany. Spróbuj innego." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Nie odnaleziono grupy." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Nie jesteś członkiem tej grupy." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -524,7 +527,7 @@ msgstr "Grupy %s" msgid "groups on %s" msgstr "grupy na %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Wysłanie nie powiodło się." @@ -538,9 +541,9 @@ msgstr "Nieprawidłowy token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -584,8 +587,8 @@ msgstr "Token żądania %s został odrzucony lub unieważniony." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -649,18 +652,18 @@ msgstr "Ta metoda wymaga POST lub DELETE." msgid "You may not delete another user's status." msgstr "Nie można usuwać stanów innych użytkowników." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Nie ma takiego wpisu." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Nie można powtórzyć własnego wpisu." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Już powtórzono ten wpis." @@ -672,21 +675,21 @@ msgstr "Usunięto stan." msgid "No status with that ID found." msgstr "Nie odnaleziono stanów z tym identyfikatorem." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musi dostarczać parametr \"stan\" z wartością." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Nie odnaleziono." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." @@ -886,7 +889,9 @@ msgid "Yes" msgstr "Tak" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -928,11 +933,13 @@ msgstr "Lista użytkowników zablokowanych w tej grupie." msgid "Unblock user from group" msgstr "Odblokuj użytkownika w tej grupie" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Odblokuj" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Odblokuj tego użytkownika" @@ -971,9 +978,9 @@ msgstr "Ten adres został już potwierdzony." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -981,7 +988,7 @@ msgstr "Nie można zaktualizować użytkownika." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." @@ -1017,9 +1024,10 @@ msgstr "Nie odnaleziono aplikacji." msgid "You are not the owner of this application." msgstr "Nie jesteś właścicielem tej aplikacji." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1052,7 +1060,7 @@ msgstr "Usuń tę aplikację" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Niezalogowany." @@ -1115,7 +1123,6 @@ msgstr "Usuń tego użytkownika" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Wygląd" @@ -1234,13 +1241,13 @@ msgstr "Przywróć domyślny wygląd" msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" @@ -1396,7 +1403,7 @@ msgstr "Obecnie potwierdzone adresy e-mail." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1415,22 +1422,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1438,110 +1449,110 @@ msgstr "Dodaj" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Wiadomości przychodzące" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj poprzedni." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Nowy" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferencje e-mail" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Wyślij wpisy nowych subskrypcji przez e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Wyślij wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle prywatną wiadomość." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle odpowiedź \"@\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Chcę wysyłać wpisy przez wiadomości e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Opublikuj MicroID adresu e-mail." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Zapisano preferencje e-mail." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Brak adresu e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Ten adres e-mail jest już twój." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Ten adres e-mail należy już do innego użytkownika." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Nie można wprowadzić kodu potwierdzającego." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1553,50 +1564,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Brak oczekujących potwierdzeń do anulowania." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "To jest błędny adres e-mail." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Anulowano potwierdzenie e-mail." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "To nie jest twój adres e-mail." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Adres e-mail został usunięty." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Brak przychodzącego adresu e-mail." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Nie można zaktualizować wpisu użytkownika." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Usunięto przychodzący adres e-mail." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -1715,7 +1726,7 @@ msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." msgid "Remote service uses unknown version of OMB protocol." msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Błąd podczas aktualizowania zdalnego profilu." @@ -1772,7 +1783,7 @@ msgstr "Użytkownik został już zablokował w grupie." msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -1850,40 +1861,32 @@ msgstr "Zaktualizowano logo." msgid "Failed updating logo." msgstr "Zaktualizowanie logo nie powiodło się." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Członkowie grupy %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Członkowie grupy %1$s, strona %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Lista użytkowników znajdujących się w tej grupie." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Zablokuj" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Uczyń administratorem" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Uczyń tego użytkownika administratorem" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2022,7 +2025,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2032,64 +2038,64 @@ msgstr "" "upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub na GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferencje komunikatora" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Wyślij mi wpisy przez Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Wyślij wpis, kiedy zmieni się mój stan na Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Wyślij mi odpowiedzi przez Jabber/GTalk od osób, których nie subskrybuję." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Zapisano preferencje." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Brak identyfikatora Jabbera." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Nie można znormalizować tego identyfikatora Jabbera" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "To nie jest prawidłowy identyfikator Jabbera" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Ten identyfikator Jabbera jest już twój." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Identyfikator Jabbera należy już do innego użytkownika." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2099,28 +2105,28 @@ msgstr "" "zaakceptować otrzymywanie wiadomości od %s." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "To jest błędny adres komunikatora." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Nie można usunąć potwierdzenia komunikatora." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Anulowano potwierdzenie komunikatora." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "To nie jest twój identyfikator Jabbera." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Adres komunikatora został usunięty." @@ -2591,8 +2597,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2732,7 +2738,7 @@ msgid "Password saved." msgstr "Zapisano hasło." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Ścieżki" @@ -2946,7 +2952,7 @@ msgstr "Imię i nazwisko" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Strona domowa" @@ -3052,7 +3058,7 @@ msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -3589,7 +3595,7 @@ msgstr "Użytkownik jest już ograniczony." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sesje" @@ -3627,24 +3633,24 @@ msgid "Application profile" msgstr "Profil aplikacji" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikona" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nazwa" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organizacja" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -3759,7 +3765,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "To jest sposób na współdzielenie tego, co chcesz." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupa %s" @@ -3811,7 +3817,7 @@ msgstr "Kanał wpisów dla grupy %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Członkowie" @@ -4266,7 +4272,7 @@ msgstr "Nie podano kodu" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Migawki" @@ -5002,7 +5008,7 @@ msgid "Unable to save tag." msgstr "Nie można zapisać etykiety." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Zablokowano subskrybowanie." @@ -5150,7 +5156,8 @@ msgid "Change site configuration" msgstr "Zmień konfigurację witryny" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -5227,7 +5234,7 @@ msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Wpis witryny" @@ -5291,7 +5298,10 @@ msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5301,13 +5311,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** jest usługą mikroblogowania." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5319,20 +5332,20 @@ msgstr "" "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licencja zawartości witryny" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s są prywatne i poufne." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5340,14 +5353,15 @@ msgstr "" "zastrzeżone." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " "prawa zastrzeżone." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5355,19 +5369,19 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginacja" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Później" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Wcześniej" @@ -5376,208 +5390,227 @@ msgstr "Wcześniej" msgid "Expecting a root feed element but got a whole XML document." msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Nie można jeszcze obsługiwać zdalnej treści." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Nie można wprowadzić zmian witryny." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Zmiany w tym panelu nie są dozwolone." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() nie jest zaimplementowane." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Witryna" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Konfiguracja wyglądu" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Wygląd" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Użytkownik" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Konfiguracja dostępu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Konfiguracja ścieżek" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Konfiguracja sesji" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Zmodyfikuj wpis witryny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Konfiguracja migawek" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " "do odczytu." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Zmodyfikuj aplikację" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ikona tej aplikacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Opisz aplikację w %d znakach" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Opisz aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "Adres URL strony domowej tej aplikacji" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Źródłowy adres URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organizacja odpowiedzialna za tę aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "Adres URL strony domowej organizacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "Adres URL do przekierowania po uwierzytelnieniu" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Przeglądarka" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Pulpit" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Typ aplikacji, przeglądarka lub pulpit" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Tylko do odczytu" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Odczyt i zapis" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Anuluj" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "odczyt i zapis" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "tylko do odczytu" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" @@ -5597,11 +5630,13 @@ msgstr "Autor" msgid "Provider" msgstr "Dostawca" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Powiadamia, kiedy pojawia się ten załącznik" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Znaczniki dla tego załącznika" @@ -5613,6 +5648,11 @@ msgstr "Zmiana hasła nie powiodła się" msgid "Password changing is not allowed" msgstr "Zmiana hasła nie jest dozwolona" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Zablokuj" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Wyniki polecenia" @@ -5862,7 +5902,7 @@ msgid "You are not subscribed to anyone." msgstr "Nie subskrybujesz nikogo." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5878,7 +5918,7 @@ msgid "No one is subscribed to you." msgstr "Nikt cię nie subskrybuje." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5894,7 +5934,7 @@ msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem żadnej grupy." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5903,6 +5943,7 @@ msgstr[0] "Jesteś członkiem tej grupy:" msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6126,38 +6167,6 @@ msgstr "" "Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " "%d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupa" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Zablokowano" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s zablokowani użytkownicy" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Zmodyfikuj właściwości grupy %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Dodaj lub zmodyfikuj logo grupy %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Dodaj lub zmodyfikuj wygląd %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupy z największą liczbą członków" @@ -6189,7 +6198,8 @@ msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %s." msgid "Partial upload." msgstr "Częściowo wysłano." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." @@ -6593,59 +6603,61 @@ msgstr "Przychodzący e-mail nie jest dozwolony." msgid "Unsupported message type: %s" msgstr "Nieobsługiwany typ wiadomości: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Plik został tylko częściowo wysłany." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Brak katalogu tymczasowego." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Zapisanie pliku na dysku nie powiodło się." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Plik przekracza przydział użytkownika." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Nie można przenieść pliku do katalogu docelowego." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Nie można określić typu MIME pliku." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Spróbuj innego formatu %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s nie jest obsługiwanym typem pliku na tym serwerze." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" @@ -6761,27 +6773,7 @@ msgstr "Szturchnij" msgid "Send a nudge to this user" msgstr "Wyślij szturchnięcie do tego użytkownika" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Błąd podczas wprowadzania nowego profilu" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Błąd podczas wprowadzania awatara" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Błąd podczas aktualizowania zdalnego profilu" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Błąd podczas wprowadzania zdalnego profilu" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplikat wpisu" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." @@ -6818,7 +6810,8 @@ msgstr "Wysłane wiadomości" msgid "Tags in %s's notices" msgstr "Znaczniki we wpisach użytkownika %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Nieznane" @@ -6913,19 +6906,19 @@ msgstr "Ogranicz" msgid "Sandbox this user" msgstr "Ogranicz tego użytkownika" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Przeszukaj witrynę" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Słowa kluczowe" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Wyszukaj" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Przeszukaj pomoc" @@ -7127,56 +7120,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "kilka sekund temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "około minutę temu" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "około %d minut temu" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "około godzinę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "około %d godzin temu" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "blisko dzień temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "około %d dni temu" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "około miesiąc temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "około %d miesięcy temu" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "około rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 44dc05c506..51a2982b70 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -1,10 +1,11 @@ -# Translation of StatusNet to Portuguese +# Translation of StatusNet to Portuguese (Português) +# Expored from translatewiki.net # -# Author@translatewiki.net: Gallaecio -# Author@translatewiki.net: Giro720 -# Author@translatewiki.net: Hamilton Abreu -# Author@translatewiki.net: Ipublicis -# Author@translatewiki.net: Waldir +# Author: Gallaecio +# Author: Giro720 +# Author: Hamilton Abreu +# Author: Ipublicis +# Author: Waldir # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,20 +13,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:15+0000\n" -"Language-Team: Portuguese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:16+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acesso" @@ -78,10 +80,10 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Gravar" @@ -94,15 +96,15 @@ msgstr "Página não foi encontrada." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -201,16 +203,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -225,48 +227,50 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" msgid "API method not found." msgstr "Método da API não encontrado." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Este método requer um POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Tem de especificar um parâmetro 'aparelho' com um dos valores: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Não foi possível actualizar o utilizador." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Utilizador não tem perfil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Não foi possível gravar o perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -278,30 +282,30 @@ msgstr "" "O servidor não conseguiu processar tantos dados POST (%s bytes) devido à sua " "configuração actual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Não foi possível gravar as configurações do estilo." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Não foi possível actualizar o seu estilo." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Os utilizadores não podem bloquear-se a si próprios!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Bloqueio do utilizador falhou." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Desbloqueio do utilizador falhou." @@ -325,61 +329,61 @@ msgstr "Mensagens directas para %s" msgid "All the direct messages sent to %s" msgstr "Todas as mensagens directas enviadas para %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Mensagem não tem texto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Destinatário não encontrado." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Não pode enviar mensagens directas a utilizadores que não sejam amigos." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Nenhum estado encontrado com esse ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Este estado já é um favorito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Não foi possível criar o favorito." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Esse estado não é um favorito." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Não foi possível eliminar o favorito." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Não foi possível seguir o utilizador: o perfil não foi encontrado." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não foi possível seguir utilizador: %s já está na sua lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Não foi possível deixar de seguir utilizador: Utilizador não encontrado." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Não pode deixar de seguir-se a si próprio." @@ -395,101 +399,101 @@ msgstr "Não foi possível determinar o utilizador de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar o utilizador de destino." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Utilizador já é usado. Tente outro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Utilizador não é válido." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Página de ínicio não é uma URL válida." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição demasiado longa (máx. %d caracteres)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Localidade demasiado longa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Demasiados nomes alternativos! Máx. %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Nome alternativo inválido: \"%s\"" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nome alternativo \"%s\" já em uso. Tente outro." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Um nome alternativo não pode ser igual ao nome do utilizador." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Foi bloqueado desse grupo pelo gestor." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível adicionar %1$s ao grupo %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -519,7 +523,7 @@ msgstr "Grupos de %s" msgid "groups on %s" msgstr "Grupos em %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "O upload falhou." @@ -533,9 +537,9 @@ msgstr "Chave inválida." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -578,8 +582,8 @@ msgstr "A chave de pedido %s foi negada e retirada." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -643,18 +647,18 @@ msgstr "Este método requer um POST ou DELETE." msgid "You may not delete another user's status." msgstr "Não pode apagar o estado de outro utilizador." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Nota não foi encontrada." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Não pode repetir a sua própria nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Já repetiu essa nota." @@ -666,21 +670,21 @@ msgstr "Estado apagado." msgid "No status with that ID found." msgstr "Não foi encontrado um estado com esse ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Não encontrado." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo." @@ -880,7 +884,9 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -922,11 +928,13 @@ msgstr "Uma lista dos utilizadores com entrada bloqueada neste grupo." msgid "Unblock user from group" msgstr "Desbloquear utilizador do grupo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Desbloquear este utilizador" @@ -965,9 +973,9 @@ msgstr "Esse endereço já tinha sido confirmado." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -975,7 +983,7 @@ msgstr "Não foi possível actualizar o utilizador." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do endereço electrónico." @@ -1011,9 +1019,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1047,7 +1056,7 @@ msgstr "Apagar esta aplicação" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Não iniciou sessão." @@ -1110,7 +1119,6 @@ msgstr "Apagar este utilizador" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Estilo" @@ -1233,13 +1241,13 @@ msgstr "Repor estilos predefinidos" msgid "Reset back to default" msgstr "Repor predefinição" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" @@ -1395,7 +1403,7 @@ msgstr "Endereço de correio já confirmado." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1413,15 +1421,19 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "" "Endereço de correio electrónico, por ex. \"nomedeutilizador@exemplo.pt\"" @@ -1429,7 +1441,7 @@ msgstr "" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1437,114 +1449,114 @@ msgstr "Adicionar" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Correio recebido" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie mensagens electrónicas para este endereço para publicar notas." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crie um endereço electrónico novo para publicações; cancela o antigo." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Novo" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferências de correio electrónico" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Enviem-me notificação electrónica das novas subscrições." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviem-me notificação electrónica quando uma nota minha é adicionada às " "favoritas." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "Enviem-me notificação electrónica quando me enviarem uma mensagem privada." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Enviem-me notificação electrónica quando me enviarem uma \"resposta-@\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me toquem e enviem mensagens electrónicas." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Quero publicar notas por correio electrónico." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicar um MicroID para o meu endereço electrónico." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Preferências de correio electrónico foram gravadas." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Sem endereço de correio electrónico." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Não é possível normalizar esse endereço electrónico" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Esse já é o seu endereço electrónico." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Esse endereço electrónico já pertence a outro utilizador." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1556,50 +1568,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Esse endereço de correio electrónico está errado." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Confirmação de correio electrónico cancelada." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Esse não é o seu endereço electrónico." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "O endereço de correio electrónico foi removido." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Sem endereço electrónico de entrada." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Não foi possível actualizar o registo do utilizador." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Endereço electrónico de entrada foi removido." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Adicionado endereço electrónico de entrada novo." @@ -1717,7 +1729,7 @@ msgstr "Não foi possível converter a chave de pedido numa chave de acesso." msgid "Remote service uses unknown version of OMB protocol." msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Erro ao actualizar o perfil remoto." @@ -1774,7 +1786,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado." msgid "User is not a member of group." msgstr "Utilizador não é membro do grupo." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloquear acesso do utilizador ao grupo" @@ -1856,40 +1868,32 @@ msgstr "Logotipo actualizado." msgid "Failed updating logo." msgstr "Não foi possível actualizar o logotipo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membros do grupo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros do grupo %1$s, página %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Uma lista dos utilizadores neste grupo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Gestor" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloquear" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Tornar Gestor" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Tornar este utilizador um gestor" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2028,7 +2032,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2039,63 +2046,63 @@ msgstr "" "MI ou no GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferências de MI" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Enviar-me notas via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma nota quando o meu estado no Jabber/GTalk se altera." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Enviar-me via Jabber/GTalk respostas de pessoas que não subscrevo." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar um MicroID para o meu endereço Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Preferências gravadas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Não introduziu o Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Não é possível normalizar esse Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Jabber ID não é válido" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Esse já é o seu Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2105,28 +2112,28 @@ msgstr "" "aprovar que %s envie mensagens para si." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Esse endereço de mensagens instantâneas está errado." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Não foi possível apagar a confirmação do mensageiro instantâneo." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Confirmação do mensageiro instantâneo cancelada." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Esse não é o seu Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "O endereço do mensageiro instantâneo foi removido." @@ -2595,8 +2602,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só URLs %s sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2737,7 +2744,7 @@ msgid "Password saved." msgstr "Senha gravada." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Localizações" @@ -2950,7 +2957,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página pessoal" @@ -3055,7 +3062,7 @@ msgid "Couldn't save tags." msgstr "Não foi possível gravar as categorias." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Configurações gravadas." @@ -3599,7 +3606,7 @@ msgstr "Utilizador já está impedido de criar notas públicas." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessões" @@ -3637,24 +3644,24 @@ msgid "Application profile" msgstr "Perfil da aplicação" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ícone" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -3770,7 +3777,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta é uma forma de partilhar aquilo de que gosta." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" @@ -3822,7 +3829,7 @@ msgstr "Fonte de notas do grupo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membros" @@ -4276,7 +4283,7 @@ msgstr "Nenhum código introduzido" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Instantâneos" @@ -5009,7 +5016,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. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Foi bloqueado de fazer subscrições" @@ -5157,7 +5164,8 @@ msgid "Change site configuration" msgstr "Alterar a configuração do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Gestor" @@ -5234,7 +5242,7 @@ msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso do site" @@ -5298,7 +5306,10 @@ msgid "StatusNet software license" msgstr "Licença de software do StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5308,13 +5319,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblogues." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5326,20 +5340,20 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licença de conteúdos do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e dados do site %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5347,14 +5361,15 @@ msgstr "" "direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Direitos de autor sobre o conteúdo e dados detidos pelos contribuidores. " "Todos os direitos reservados." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5362,19 +5377,19 @@ msgstr "" "licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Anteriores" @@ -5385,205 +5400,224 @@ msgstr "" "Era esperado um elemento raiz da fonte, mas foi recebido um documento XML " "inteiro." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Ainda não é possível processar conteúdos remotos." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível processar conteúdo XML embutido." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível processar conteúdo Base64 embutido." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Não pode fazer alterações a este site." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Não foi possível apagar a configuração do estilo." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuração do estilo" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuração do utilizador" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilizador" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuração de acesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuração das localizações" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuração das sessões" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Editar aviso do site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuração dos instântaneos" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 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." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Editar aplicação" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Descreva a sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL da página desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL de origem" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL da página desta organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL para onde reencaminhar após autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipo da aplicação, browser ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "leitura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado a %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Retirar" @@ -5603,11 +5637,13 @@ msgstr "Autor" msgid "Provider" msgstr "Fornecedor" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notas em que este anexo aparece" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Categorias para este anexo" @@ -5619,6 +5655,11 @@ msgstr "Não foi possível mudar a palavra-chave" msgid "Password changing is not allowed" msgstr "Não é permitido mudar a palavra-chave" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloquear" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultados do comando" @@ -5867,7 +5908,7 @@ msgid "You are not subscribed to anyone." msgstr "Não subscreveu ninguém." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5882,7 +5923,7 @@ msgid "No one is subscribed to you." msgstr "Ninguém subscreve as suas notas." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5897,7 +5938,7 @@ msgid "You are not a member of any groups." msgstr "Não está em nenhum grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5905,6 +5946,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6125,38 +6167,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Nomes adicionais para o grupo, separados por vírgulas ou espaços, máx. %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloqueado" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s utilizadores bloqueados" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Editar propriedades do grupo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logotipo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Adicionar ou editar o logotipo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Adicionar ou editar o design de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos com mais membros" @@ -6188,7 +6198,8 @@ msgstr "Esse ficheiro é demasiado grande. O tamanho máximo de ficheiro é %s." msgid "Partial upload." msgstr "Transferência parcial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Ocorreu um erro de sistema ao transferir o ficheiro." @@ -6591,17 +6602,20 @@ msgstr "Desculpe, não lhe é permitido receber correio electrónico." msgid "Unsupported message type: %s" msgstr "Tipo de mensagem não suportado: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Ocorreu um erro na base de dados ao gravar o seu ficheiro. Por favor, tente " "novamente." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Ficheiro carregado excede a directiva upload_max_filesize no php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6609,44 +6623,43 @@ msgstr "" "Ficheiro carregado excede a directiva MAX_FILE_SIZE especificada no " "formulário HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Ficheiro só foi parcialmente carregado." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Falta um directório temporário." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Não foi possível gravar o ficheiro no disco." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Transferência do ficheiro interrompida pela extensão." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Ficheiro excede quota do utilizador." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Não foi possível mover o ficheiro para o directório de destino." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Não foi possível determinar o tipo MIME do ficheiro." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Tente usar outro tipo de %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s não é um tipo de ficheiro suportado neste servidor." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma nota directa" @@ -6762,27 +6775,7 @@ msgstr "Tocar" msgid "Send a nudge to this user" msgstr "Enviar toque a este utilizador" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erro ao inserir perfil novo" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erro ao inserir avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Erro ao actualizar o perfil remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erro ao inserir perfil remoto" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Nota duplicada" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." @@ -6819,7 +6812,8 @@ msgstr "Mensagens enviadas" msgid "Tags in %s's notices" msgstr "Categorias nas notas de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Desconhecida" @@ -6913,19 +6907,19 @@ msgstr "Bloquear notas públicas" msgid "Sandbox this user" msgstr "Impedir que notas deste utilizador sejam públicas" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Pesquisar site" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Categorias" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Pesquisa" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Pesquisar ajuda" @@ -7125,56 +7119,32 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "há alguns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "há cerca de um minuto" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "há cerca de %d minutos" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "há cerca de uma hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "há cerca de %d horas" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "há cerca de um dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "há cerca de %d dias" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "há cerca de um mês" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "há cerca de %d meses" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 259149cc01..56a02e2bbd 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -1,12 +1,13 @@ -# Translation of StatusNet to Brazilian Portuguese +# Translation of StatusNet to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net # -# Author@translatewiki.net: Aracnus -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Ewout -# Author@translatewiki.net: Giro720 -# Author@translatewiki.net: Luckas Blade -# Author@translatewiki.net: McDutchie -# Author@translatewiki.net: Vuln +# Author: Aracnus +# Author: Brion +# Author: Ewout +# Author: Giro720 +# Author: Luckas Blade +# Author: McDutchie +# Author: Vuln # -- # This file is distributed under the same license as the StatusNet package. # @@ -14,20 +15,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:17+0000\n" -"Language-Team: Brazilian Portuguese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:17+0000\n" +"Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Acesso" @@ -80,10 +83,10 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -96,15 +99,15 @@ msgstr "Esta página não existe." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -204,16 +207,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -228,21 +231,23 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" msgid "API method not found." msgstr "O método da API não foi encontrado!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Este método requer um POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -250,27 +255,27 @@ msgstr "" "Você tem que especificar um parâmetro denominado 'device', com um desses " "valores: sms, im, none" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Não foi possível atualizar o usuário." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "O usuário não tem perfil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Não foi possível salvar o perfil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -282,30 +287,30 @@ msgstr "" "O servidor não conseguiu manipular a quantidade de dados do POST (%s bytes) " "devido à sua configuração atual." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Não foi possível salvar suas configurações de aparência." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Não foi possível atualizar a sua aparência." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Você não pode bloquear a si mesmo!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Não foi possível bloquear o usuário." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." @@ -329,61 +334,61 @@ msgstr "Mensagens diretas para %s" msgid "All the direct messages sent to %s" msgstr "Todas as mensagens diretas enviadas para %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Nenhuma mensagem de texto!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "O usuário destinatário não foi encontrado." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Não é possível enviar mensagens diretas para usuários que não sejam seus " "amigos." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Não foi encontrado nenhum status com esse ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Esta mensagem já é favorita!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Essa mensagem não é favorita!" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Não foi possível excluir a favorita." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Não é possível deixar de seguir o usuário: Usuário não encontrado." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não é possível seguir o usuário: %s já está na sua lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Não é possível deixar de seguir o usuário: Usuário não encontrado." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Você não pode deixar de seguir você mesmo!" @@ -399,7 +404,7 @@ msgstr "Não foi possível determinar o usuário de origem." msgid "Could not find target user." msgstr "Não foi possível encontrar usuário de destino." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -407,95 +412,95 @@ msgstr "" "A identificação deve conter apenas letras minúsculas e números e não pode " "ter e espaços." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Esta identificação já está em uso. Tente outro." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Não é uma identificação válida." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "A URL informada não é válida." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo muito extenso (máx. 255 caracteres)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Descrição muito extensa (máximo %d caracteres)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Localização muito extensa (máx. 255 caracteres)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Muitos apelidos! O máximo são %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Apelido inválido: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O apelido \"%s\" já está em uso. Tente outro." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "O apelido não pode ser igual à identificação." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "O grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Você não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -525,7 +530,7 @@ msgstr "Grupos de %s" msgid "groups on %s" msgstr "grupos no %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "O upload falhou." @@ -539,9 +544,9 @@ msgstr "Token inválido." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -589,8 +594,8 @@ msgstr "O token %s solicitado foi negado e revogado." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -655,18 +660,18 @@ msgstr "Esse método requer um POST ou DELETE." msgid "You may not delete another user's status." msgstr "Você não pode excluir uma mensagem de outro usuário." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Essa mensagem não existe." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Você não pode repetir a sua própria mensagem." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Você já repetiu essa mensagem." @@ -678,21 +683,21 @@ msgstr "A mensagem foi excluída." msgid "No status with that ID found." msgstr "Não foi encontrada nenhuma mensagem com esse ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Está muito extenso. O tamanho máximo é de %d caracteres." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Não encontrado." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "O tamanho máximo da mensagem é de %d caracteres" @@ -894,7 +899,9 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuário" @@ -936,11 +943,13 @@ msgstr "Uma lista dos usuários proibidos de se associarem a este grupo." msgid "Unblock user from group" msgstr "Desbloquear o usuário do grupo" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Desbloquear este usuário" @@ -979,9 +988,9 @@ msgstr "Esse endereço já foi confirmado." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -989,7 +998,7 @@ msgstr "Não foi possível atualizar o usuário." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." @@ -1025,9 +1034,10 @@ 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 text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1061,7 +1071,7 @@ msgstr "Excluir esta aplicação" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Você não está autenticado." @@ -1124,7 +1134,6 @@ msgstr "Excluir este usuário" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Aparência" @@ -1247,13 +1256,13 @@ msgstr "Restaura a aparência padrão" msgid "Reset back to default" msgstr "Restaura de volta ao padrão" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" @@ -1409,7 +1418,7 @@ msgstr "Endereço de e-mail já confirmado." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1427,22 +1436,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1450,114 +1463,114 @@ msgstr "Adicionar" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "E-mail de recebimento" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Envie e-mails para esse endereço para publicar novas mensagens." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Novo" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Preferências de e-mail" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Envie-me notificações de novos assinantes por e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " "favorita." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Envie-me um e-mail quando alguém me mandar uma mensagem particular." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Envie-me um e-mail quando alguém mandar uma mensagem citando meu nome " "(\"@nome\")." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Permita que meus amigos chamem minha atenção e enviem-me e-mails." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Eu quero publicar mensagens por e-mail." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publique um MicroID para meu endereço de e-mail." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "As configurações de e-mail foram salvas." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Nenhum endereço de e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Esse já é seu endereço de e-mail." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." 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 IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1569,50 +1582,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Esse é o endereço de e-mail errado." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "A confirmação por e-mail foi cancelada." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Esse não é seu endereço de email." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "O endereço de e-mail foi removido." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." 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. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Não foi possível atualizar o registro do usuário." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "O endereço de e-mail de recebimento foi removido." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." @@ -1732,7 +1745,7 @@ msgstr "Não foi possível converter o token de requisição para token de acess msgid "Remote service uses unknown version of OMB protocol." msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Ocorreu um erro durante a atualização do perfil remoto." @@ -1789,7 +1802,7 @@ msgstr "O usuário já está bloqueado no grupo." msgid "User is not a member of group." msgstr "O usuário não é um membro do grupo" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Bloquear o usuário no grupo" @@ -1872,40 +1885,32 @@ msgstr "A logo foi atualizada." msgid "Failed updating logo." msgstr "Não foi possível atualizar a logo." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Membros do grupo %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Membros do grupo %1$s, pág. %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Uma lista dos usuários deste grupo." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Bloquear" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Tornar administrador" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Torna este usuário um administrador" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2044,7 +2049,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2055,65 +2063,65 @@ msgstr "" "ou no GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Preferências do mensageiro instantâneo" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Envie-me mensagens via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envie-me respostas de pessoas que eu não estou assinando através do Jabber/" "GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "As preferências foram salvas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Nenhuma ID de Jabber." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Não foi possível normalizar essa ID do Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Não é uma ID de Jabber válida" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Essa já é sua ID do Jabber." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Esta ID do Jabber já pertence à outro usuário." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2123,28 +2131,28 @@ msgstr "" "informou. Você deve permitir que %s envie mensagens para você." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 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. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." 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. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Essa não é sua ID do Jabber." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "O endereço de mensageiro instantâneo foi removido." @@ -2621,8 +2629,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Por favor, somente URLs %s sobre HTTP puro." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2764,7 +2772,7 @@ msgid "Password saved." msgstr "A senha foi salva." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Caminhos" @@ -2977,7 +2985,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site" @@ -3083,7 +3091,7 @@ msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -3626,7 +3634,7 @@ msgstr "O usuário já está em isolamento." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessões" @@ -3664,24 +3672,24 @@ msgid "Application profile" msgstr "Perfil da aplicação" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ícone" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -3795,7 +3803,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Esta é uma forma de compartilhar o que você gosta." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" @@ -3847,7 +3855,7 @@ msgstr "Fonte de mensagens do grupo %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Membros" @@ -4301,7 +4309,7 @@ msgstr "Não foi digitado nenhum código" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Estatísticas" @@ -5036,7 +5044,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. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Você está proibido de assinar." @@ -5184,7 +5192,8 @@ msgid "Change site configuration" msgstr "Altere as configurações do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrar" @@ -5261,9 +5270,9 @@ msgstr "Pesquisar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" -msgstr "Mensagem do site" +msgstr "Avisos do site" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 @@ -5325,7 +5334,10 @@ msgid "StatusNet software license" msgstr "Licença do software StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5335,13 +5347,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5353,51 +5368,52 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licença do conteúdo do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Próximo" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Anterior" @@ -5408,208 +5424,227 @@ msgstr "" "Era esperado um elemento raiz da fonte, mas foi obtido o documento XML " "inteiro." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Ainda não é possível manipular conteúdo remoto." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível manipular conteúdo XML incorporado." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível manipular conteúdo Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Você não pode fazer alterações neste site." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Não foi possível excluir as configurações da aparência." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Configuração da aparência" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Aparência" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Configuração do usuário" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Configuração do acesso" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Configuração dos caminhos" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Configuração das sessões" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Editar os avisos do site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configurações das estatísticas" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "Os recursos de API exigem acesso de leitura e escrita, mas você possui " "somente acesso de leitura." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Editar a aplicação" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Descreva sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL do site desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL da fonte" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL para o site da organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL para o redirecionamento após a autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicação: navegador ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Somente leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "somente leitura" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado em %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" @@ -5629,11 +5664,13 @@ msgstr "Autor" msgid "Provider" msgstr "Operadora" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Mensagens onde este anexo aparece" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Etiquetas para este anexo" @@ -5645,6 +5682,11 @@ msgstr "Não foi possível alterar a senha" msgid "Password changing is not allowed" msgstr "Não é permitido alterar a senha" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Bloquear" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultados do comando" @@ -5898,7 +5940,7 @@ msgid "You are not subscribed to anyone." msgstr "Você não está assinando ninguém." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5913,7 +5955,7 @@ msgid "No one is subscribed to you." msgstr "Ninguém o assinou ainda." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5928,7 +5970,7 @@ msgid "You are not a member of any groups." msgstr "Você não é membro de nenhum grupo." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5936,6 +5978,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6158,38 +6201,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Apelidos extras para o grupo, separado por vírgulas ou espaços, no máximo %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupo" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Bloqueados" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s usuários bloqueados" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Editar propriedades do grupo %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Adicionar ou editar logo de %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Adicionar ou editar a aparência de %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos com mais membros" @@ -6221,7 +6232,8 @@ msgstr "O arquivo é muito grande. O tamanho máximo é de %s." msgid "Partial upload." msgstr "Envio parcial." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." @@ -6625,19 +6637,22 @@ msgstr "Desculpe-me, mas não é permitido o recebimento de e-mails." msgid "Unsupported message type: %s" msgstr "Tipo de mensagem não suportado: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Ocorreu um erro no banco de dados durante o salvamento do seu arquivo. Por " "favor, tente novamente." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo a ser enviado é maior do que o limite definido no parâmetro " "upload_max_filesize do php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6645,44 +6660,43 @@ msgstr "" "O arquivo a ser enviado é maior do que o limite definido no parâmetro " "MAX_FILE_SIZE do formulário HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "O arquivo foi apenas parcialmente enviado." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Falta uma pasta temporária." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Erro ao salvar o arquivo no disco." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "O arquivo a ser enviado foi barrado por causa de sua extensão." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "O arquivo excede a quota do usuário." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Não foi possível mover o arquivo para o diretório de destino." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Não foi possível determinar o tipo MIME do arquivo." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Tente usar outro formato %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s não é um tipo de arquivo suportado neste servidor." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" @@ -6798,27 +6812,7 @@ msgstr "Chamar a atenção" msgid "Send a nudge to this user" msgstr "Chame a atenção deste usuário" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Erro na inserção do novo perfil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Erro na inserção do avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Ocorreu um erro na atualização do perfil remoto" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Erro na inserção do perfil remoto" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicar a mensagem" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." @@ -6855,7 +6849,8 @@ msgstr "Suas mensagens enviadas" msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Desconhecido" @@ -6949,19 +6944,19 @@ msgstr "Isolamento" msgid "Sandbox this user" msgstr "Colocar este usuário em isolamento" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Procurar no site" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Palavra(s)-chave" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Procurar" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Ajuda da procura" @@ -7160,56 +7155,32 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "alguns segundos atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "cerca de %d minutos atrás" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "cerca de %d horas atrás" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "cerca de 1 dia atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "cerca de %d dias atrás" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "cerca de 1 mês atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "cerca de %d meses atrás" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index f219931c7b..6bc2578872 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -1,11 +1,12 @@ -# Translation of StatusNet to Russian +# Translation of StatusNet to Russian (Русский) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Eleferen -# Author@translatewiki.net: Kirill -# Author@translatewiki.net: Lockal -# Author@translatewiki.net: Rubin -# Author@translatewiki.net: Александр Сигачёв +# Author: Brion +# Author: Eleferen +# Author: Kirill +# Author: Lockal +# Author: Rubin +# Author: Александр Сигачёв # -- # This file is distributed under the same license as the StatusNet package. # @@ -13,21 +14,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:19+0000\n" -"Language-Team: Russian\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:18+0000\n" +"Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" -"X-Message-Group: out-statusnet\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-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Доступ" @@ -81,10 +83,10 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -97,15 +99,15 @@ msgstr "Нет такой страницы." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -203,16 +205,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -227,21 +229,23 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" msgid "API method not found." msgstr "Метод API не найден." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Этот метод требует POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." @@ -249,27 +253,27 @@ msgstr "" "Вы должны указать параметр с именем «device» и одним из значений: sms, im, " "none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Не удаётся обновить пользователя." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "У пользователя нет профиля." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Не удаётся сохранить профиль." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -281,30 +285,30 @@ msgstr "" "Сервер не смог обработать столько POST-данных (%s байт) из-за текущей " "конфигурации." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Не удаётся сохранить ваши настройки оформления!" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Не удаётся обновить ваше оформление." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Вы не можете заблокировать самого себя!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Неудача при блокировке пользователя." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Неудача при разблокировке пользователя." @@ -328,63 +332,63 @@ msgstr "Прямые сообщения для %s" msgid "All the direct messages sent to %s" msgstr "Все прямые сообщения посланные для %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Отсутствует текст сообщения!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Получатель не найден." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не удаётся посылать прямые сообщения пользователям, которые не являются " "Вашими друзьями." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Нет статуса с таким ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Этот статус уже входит в число любимых." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Этот статус не входит в число ваших любимых." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не удаётся удалить любимую запись." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Не удаётся следовать за пользователем: профиль не найден." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не удается включить %s в список поддержки, он уже в Вашем списке." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" "Не удаётся следовать за пользователем, т. к. такого пользователя не " "существует." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Вы не можете перестать следовать за собой." @@ -400,102 +404,102 @@ msgstr "Не удаётся определить исходного пользо msgid "Could not find target user." msgstr "Не удаётся найти целевого пользователя." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Неверное имя." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум %d символов)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Слишком много алиасов! Максимальное число — %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ошибочный псевдоним: «%s»." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Алиас «%s» уже используется. Попробуйте какой-нибудь другой." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Алиас не может совпадать с именем." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Группа не найдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Вы заблокированы из этой группы администратором." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Вы не являетесь членом этой группы." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -525,7 +529,7 @@ msgstr "Группы %s" msgid "groups on %s" msgstr "группы на %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Загрузка не удалась." @@ -539,9 +543,9 @@ msgstr "Неправильный токен" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -585,8 +589,8 @@ msgstr "Запрос токена %s был запрещен и аннулиро #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -651,18 +655,18 @@ msgstr "Этот метод требует POST или DELETE." msgid "You may not delete another user's status." msgstr "Вы не можете удалять статус других пользователей." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Нет такой записи." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Невозможно повторить собственную запись." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Запись уже повторена." @@ -674,21 +678,21 @@ msgstr "Статус удалён." msgid "No status with that ID found." msgstr "Не найдено статуса с таким ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Клиент должен предоставить параметр «status» со значением." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Слишком длинная запись. Максимальная длина — %d знаков." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Не найдено." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Максимальная длина записи — %d символов, включая URL вложения." @@ -889,7 +893,9 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -931,11 +937,13 @@ msgstr "Список пользователей, заблокированных msgid "Unblock user from group" msgstr "Разблокировать пользователя в группе." -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Разблокировать" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Разблокировать пользователя." @@ -974,9 +982,9 @@ msgstr "Этот адрес уже подтверждён." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -984,7 +992,7 @@ msgstr "Не удаётся обновить пользователя." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." @@ -1020,9 +1028,10 @@ msgstr "Приложение не найдено." msgid "You are not the owner of this application." msgstr "Вы не являетесь владельцем этого приложения." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -1056,7 +1065,7 @@ msgstr "Удалить это приложение" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не авторизован." @@ -1119,7 +1128,6 @@ msgstr "Удалить этого пользователя" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Оформление" @@ -1240,13 +1248,13 @@ msgstr "Восстановить оформление по умолчанию" msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" @@ -1402,7 +1410,7 @@ msgstr "Подтверждённый в настоящее время элект #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1420,22 +1428,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Отмена" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Электронный адрес вида \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1443,20 +1455,20 @@ msgstr "Добавить" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Входящий электронный адрес" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" "Отправляйте электронные письма на этот адрес для отсылки новых записей." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создать новый адрес электронной почты для отсылки сообщений; отменяет старый " @@ -1464,99 +1476,99 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Новый" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Настройки эл. почты" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Уведомлять меня о новых подписчиках по почте." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " "приватное сообщение." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне «@-" "ответ»." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" "Разрешить друзьям «подталкивать» меня и посылать мне электронные сообщения." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Я хочу отправлять записи по электронной почте." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Опубликовать MicroID для моего электронного адреса." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Настройки эл. почты сохранены." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Нет электронного адреса." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Неверный электронный адрес." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Это уже Ваш электронный адрес." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Этот электронный адрес уже задействован другим пользователем." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не удаётся вставить код подтверждения." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1568,50 +1580,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Нет подтверждения отказа." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Это неверный адрес эл. почты." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Подтверждение эл. почты отменено." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Это не Ваш электронный адрес." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Адрес эл. почты удалён." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Нет входящего электронного адреса." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не удаётся обновить пользовательскую запись." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Входящий электронный адрес удалён." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." @@ -1730,7 +1742,7 @@ msgstr "Не удаётся преобразовать ключ запроса msgid "Remote service uses unknown version of OMB protocol." msgstr "Удалённый сервис использует неизвестную версию протокола OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Ошибка обновления удалённого профиля." @@ -1787,7 +1799,7 @@ msgstr "Пользователь уже заблокирован из групп msgid "User is not a member of group." msgstr "Пользователь не является членом этой группы." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Заблокировать пользователя из группы." @@ -1869,40 +1881,32 @@ msgstr "Логотип обновлён." msgid "Failed updating logo." msgstr "Неудача при обновлении логотипа." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Участники группы %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Участники группы %1$s, страница %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Список пользователей, являющихся членами этой группы." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Настройки" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Блокировать" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Сделать администратором" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Сделать этого пользователя администратором" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2041,7 +2045,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2052,64 +2059,64 @@ msgstr "" "мессенджере или в GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Настройки IM" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Посылать мне записи через Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Предпочтения сохранены." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Не Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Не удаётся стандартизировать этот Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Неверный код Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Это уже Ваш Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Этот Jabber ID уже используется другим пользователем." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2119,28 +2126,28 @@ msgstr "" "%s для отправки вам сообщений." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Это неверный IM-адрес." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Не удаётся удалить подверждение IM." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Подтверждение IM отменено." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Это не Ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Адрес IM удалён." @@ -2610,8 +2617,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Только %s URL в простом HTTP, пожалуйста." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -2753,7 +2760,7 @@ msgid "Password saved." msgstr "Пароль сохранён." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Пути" @@ -2964,7 +2971,7 @@ msgstr "Полное имя" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Главная" @@ -3069,7 +3076,7 @@ msgid "Couldn't save tags." msgstr "Не удаётся сохранить теги." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Настройки сохранены." @@ -3607,7 +3614,7 @@ msgstr "Пользователь уже в режиме песочницы." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Сессии" @@ -3645,24 +3652,24 @@ msgid "Application profile" msgstr "Профиль приложения" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Иконка" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Имя" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -3777,7 +3784,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Это способ поделиться тем, что вам нравится." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Группа %s" @@ -3829,7 +3836,7 @@ msgstr "Лента записей группы %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF для группы %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Участники" @@ -4286,7 +4293,7 @@ msgstr "Код не введён" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Снимки" @@ -5021,7 +5028,7 @@ msgid "Unable to save tag." msgstr "Не удаётся сохранить тег." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Вы заблокированы от подписки." @@ -5169,7 +5176,8 @@ msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Настройки" @@ -5246,7 +5254,7 @@ msgstr "Поиск" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Уведомление сайта" @@ -5310,7 +5318,10 @@ msgid "StatusNet software license" msgstr "StatusNet лицензия" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5320,13 +5331,16 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — сервис микроблогинга." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5339,52 +5353,53 @@ msgstr "" "licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Лицензия содержимого сайта" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " "защищены." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Разбиение на страницы" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Туда" @@ -5393,208 +5408,227 @@ msgstr "Туда" msgid "Expecting a root feed element but got a whole XML document." msgstr "Ожидался корневой элемент потока, а получен XML-документ целиком." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Пока ещё нельзя обрабатывать встроенный XML." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Вы не можете изменять этот сайт." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Изменения для этой панели недопустимы." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() не реализована." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Основная конфигурация сайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Конфигурация оформления" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Оформление" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Конфигурация пользователя" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Конфигурация доступа" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Конфигурация путей" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Конфигурация сессий" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Изменить уведомление сайта" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Конфигурация снимков" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API ресурса требует доступ для чтения и записи, но у вас есть только доступ " "для чтения." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Изменить приложение" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Иконка для этого приложения" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Опишите ваше приложение при помощи %d символов" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Опишите ваше приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL-адрес домашней страницы этого приложения" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL источника" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Организация, ответственная за это приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL-адрес домашней страницы организации" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL для перенаправления после проверки подлинности" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Операционная система" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Среда выполнения приложения: браузер или операционная система" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Только чтение" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Чтение и запись" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Отменить" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "чтение/запись" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Подтверждён доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" @@ -5614,11 +5648,13 @@ msgstr "Автор" msgid "Provider" msgstr "Сервис" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Сообщает, где появляется это вложение" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Теги для этого вложения" @@ -5630,6 +5666,11 @@ msgstr "Изменение пароля не удалось" msgid "Password changing is not allowed" msgstr "Смена пароля не разрешена" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Блокировать" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Команда исполнена" @@ -5881,7 +5922,7 @@ msgid "You are not subscribed to anyone." msgstr "Вы ни на кого не подписаны." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5897,7 +5938,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5913,7 +5954,7 @@ msgid "You are not a member of any groups." msgstr "Вы не состоите ни в одной группе." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5922,6 +5963,7 @@ msgstr[0] "Вы являетесь участником следующих гр msgstr[1] "Вы являетесь участником следующих групп:" msgstr[2] "Вы являетесь участником следующих групп:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6143,38 +6185,6 @@ msgstr "" "Дополнительные имена для группы, разделённые запятой или пробелом, максимум %" "d имён" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Группа" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Заблокированные" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s заблокированных пользователей" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Редактировать информацию о группе %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Логотип" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Добавить или изменить логотип группы %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Добавить или изменить оформление %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Группы с наибольшим количеством участников" @@ -6206,7 +6216,8 @@ msgstr "Этот файл слишком большой. Максимальны msgid "Partial upload." msgstr "Частичная загрузка." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." @@ -6608,61 +6619,63 @@ msgstr "Простите, входящих писем нет." msgid "Unsupported message type: %s" msgstr "Неподдерживаемый формат файла изображения: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "При сохранении вашего файла возникла ошибка базы данных. Пожалуйста, " "попробуйте ещё раз." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Загружаемый файл превышает директиву upload_max_filesize в php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Загружаемый файл превышает директиву MAX_FILE_SIZE, указанную в HTML-форме." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Загружаемый файл загружен только частично." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Отсутствует временной каталог." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Не удаётся записать файл на диск." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена по расширению." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Файл превышает пользовательскую квоту." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Файл не может быть перемещён в целевую директорию." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Не удаётся определить mime-тип файла." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Попробуйте использовать другой формат %s." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "Тип файла %s не поддерживается не этом сервере." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Послать прямую запись" @@ -6778,27 +6791,7 @@ msgstr "«Подтолкнуть»" msgid "Send a nudge to this user" msgstr "«Подтолкнуть» этого пользователя" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Ошибка при вставке нового профиля" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Ошибка при вставке аватары" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Ошибка обновления удалённого профиля" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Ошибка вставки удалённого профиля" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Дублировать запись" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." @@ -6835,7 +6828,8 @@ msgstr "Ваши исходящие сообщения" msgid "Tags in %s's notices" msgstr "Теги записей пользователя %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Неизвестно" @@ -6929,19 +6923,19 @@ msgstr "Песочница" msgid "Sandbox this user" msgstr "Установить режим песочницы для этого пользователя" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Поиск по сайту" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Ключевые слова" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Поиск" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Справка по поиску" @@ -7140,56 +7134,32 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "пару секунд назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "около минуты назад" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "около %d минут(ы) назад" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "около часа назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "около %d часа(ов) назад" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "около дня назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "около %d дня(ей) назад" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "около месяца назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "около %d месяца(ев) назад" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 4656cdd1fc..0289924243 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-09 18:07+0000\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,7 +19,7 @@ msgstr "" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "" @@ -72,10 +72,10 @@ msgstr "" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -88,15 +88,15 @@ msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -188,16 +188,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -212,47 +212,49 @@ msgstr "" msgid "API method not found." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "" -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -262,30 +264,30 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "" -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "" @@ -309,59 +311,59 @@ msgstr "" msgid "All the direct messages sent to %s" msgstr "" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "" -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "" -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "" @@ -377,101 +379,101 @@ msgstr "" msgid "Could not find target user." msgstr "" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "" -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -501,7 +503,7 @@ msgstr "" msgid "groups on %s" msgstr "" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "" @@ -515,9 +517,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -560,8 +562,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -622,18 +624,18 @@ msgstr "" msgid "You may not delete another user's status." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "" @@ -645,21 +647,21 @@ msgstr "" msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -856,7 +858,9 @@ msgid "Yes" msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "" @@ -898,11 +902,13 @@ msgstr "" msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "" @@ -941,9 +947,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -951,7 +957,7 @@ msgstr "" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "" @@ -987,9 +993,10 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -1020,7 +1027,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "" @@ -1079,7 +1086,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -1198,13 +1204,13 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1360,7 +1366,7 @@ msgstr "" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1376,22 +1382,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1399,110 +1409,110 @@ msgstr "" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "" #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "" #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "" #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1511,50 +1521,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "" #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "" -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "" @@ -1667,7 +1677,7 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "" @@ -1724,7 +1734,7 @@ msgstr "" msgid "User is not a member of group." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "" @@ -1799,37 +1809,47 @@ msgstr "" msgid "Failed updating logo." msgstr "" -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:392 lib/blockform.php:69 +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" msgid "Block" msgstr "" -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" @@ -1955,7 +1975,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1963,63 +1986,63 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2027,28 +2050,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "" @@ -2471,8 +2494,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "" @@ -2612,7 +2635,7 @@ msgid "Password saved." msgstr "" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -2819,7 +2842,7 @@ msgstr "" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "" @@ -2922,7 +2945,7 @@ msgid "Couldn't save tags." msgstr "" #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "" @@ -3408,7 +3431,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -3446,24 +3469,24 @@ msgid "Application profile" msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -3568,7 +3591,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" @@ -3620,7 +3643,7 @@ msgstr "" msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "" @@ -4040,7 +4063,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -4725,7 +4748,7 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -4873,7 +4896,8 @@ msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -4950,7 +4974,7 @@ msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "" @@ -5014,7 +5038,10 @@ msgid "StatusNet software license" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5022,13 +5049,16 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5037,49 +5067,50 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "" @@ -5088,205 +5119,240 @@ msgstr "" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "" @@ -5306,11 +5372,13 @@ msgstr "" msgid "Provider" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "" @@ -5322,6 +5390,11 @@ msgstr "" msgid "Password changing is not allowed" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "" @@ -5565,7 +5638,7 @@ msgid "You are not subscribed to anyone." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5580,7 +5653,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5595,7 +5668,7 @@ msgid "You are not a member of any groups." msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5603,6 +5676,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5782,35 +5856,75 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" msgid "Group" msgstr "" -#: lib/groupnav.php:101 +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" msgid "Blocked" msgstr "" -#: lib/groupnav.php:102 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 #, php-format +msgctxt "TOOLTIP" msgid "%s blocked users" msgstr "" -#: lib/groupnav.php:108 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 #, php-format +msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:113 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" msgid "Logo" msgstr "" -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -5845,7 +5959,8 @@ msgstr "" msgid "Partial upload." msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -6144,56 +6259,75 @@ msgstr "" msgid "Unsupported message type: %s" msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -6310,26 +6444,23 @@ msgid "Send a nudge to this user" msgstr "" #: lib/oauthstore.php:283 -msgid "Error inserting new profile" +msgid "Error inserting new profile." msgstr "" #: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" +msgid "Error inserting avatar." msgstr "" #: lib/oauthstore.php:311 -msgid "Error inserting remote profile" +msgid "Error inserting remote profile." msgstr "" -#: lib/oauthstore.php:345 -msgid "Duplicate notice" +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." msgstr "" -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "" @@ -6366,7 +6497,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -6460,19 +6592,24 @@ msgstr "" msgid "Sandbox this user" msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 +#: lib/searchaction.php:130 +msgctxt "BUTTON" msgid "Search" msgstr "" -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "" @@ -6667,20 +6804,22 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1109 #, php-format -msgid "about %d minutes ago" -msgstr "" +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 @@ -6688,35 +6827,41 @@ msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 +#: lib/util.php:1115 #, php-format -msgid "about %d hours ago" -msgstr "" +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 +#: lib/util.php:1121 #, php-format -msgid "about %d days ago" -msgstr "" +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1127 #, php-format -msgid "about %d months ago" -msgstr "" +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index ceb7de7362..f02e50ac44 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -1,8 +1,9 @@ -# Translation of StatusNet to Swedish +# Translation of StatusNet to Swedish (Svenska) +# Expored from translatewiki.net # -# Author@translatewiki.net: Jamminjohn -# Author@translatewiki.net: Kjell -# Author@translatewiki.net: McDutchie +# Author: Jamminjohn +# Author: Kjell +# Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,20 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:26+0000\n" -"Language-Team: Swedish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:20+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Åtkomst" @@ -77,10 +79,10 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -93,15 +95,15 @@ msgstr "Ingen sådan sida" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -199,16 +201,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -223,47 +225,49 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!" msgid "API method not found." msgstr "API-metod hittades inte." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Denna metod kräver en POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "Du måste ange ett värdet på parametern 'device': sms, im, none" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Kunde inte uppdatera användare." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Användaren har ingen profil." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Kunde inte spara profil." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -275,30 +279,30 @@ msgstr "" "Servern kunde inte hantera så mycket POST-data (%s byte) på grund av sin " "nuvarande konfiguration." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Kunde inte spara dina utseendeinställningar." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Kunde inte uppdatera din profils utseende." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Du kan inte blockera dig själv!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blockering av användare misslyckades." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Hävning av blockering av användare misslyckades." @@ -322,65 +326,65 @@ msgstr "Direktmeddelande till %s" msgid "All the direct messages sent to %s" msgstr "Alla direktmeddelanden skickade till %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Ingen meddelandetext!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Mottagare hittades inte." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Ingen status hittad med det ID:t." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Denna status är redan en favorit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Denna status är inte en favorit." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunde inte ta bort favoriten." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Kunde inte sluta följa användaren: användaren hittades inte." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kunde inte följa användare: %s finns redan i din lista." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Kunde inte sluta följa användaren: användaren hittades inte." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Du kan inte sluta följa dig själv." #: actions/apifriendshipsexists.php:91 msgid "Two valid IDs or screen_names must be supplied." -msgstr "" +msgstr "Två giltiga användar-ID:n eller screen_names måste tillhandahållas." #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." @@ -390,102 +394,102 @@ msgstr "Kunde inte fastställa användare hos källan." msgid "Could not find target user." msgstr "Kunde inte hitta målanvändare." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Smeknamnet används redan. Försök med ett annat." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Hemsida är inte en giltig webbadress." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Fullständigt namn är för långt (max 255 tecken)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Beskrivning är för lång (max %d tecken)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Beskrivning av plats är för lång (max 255 tecken)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "För många alias! Maximum %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Ogiltigt alias: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" används redan. Försök med ett annat." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias kan inte vara samma som smeknamn." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Grupp hittades inte." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Du är inte en medlem i denna grupp." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -515,6 +519,10 @@ msgstr "%s grupper" msgid "groups on %s" msgstr "grupper på %s" +#: actions/apimediaupload.php:100 +msgid "Upload failed." +msgstr "Uppladdning misslyckades." + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "Ingen oauth_token-parameter angiven." @@ -525,9 +533,9 @@ msgstr "Ogiltig token." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -570,8 +578,8 @@ msgstr "Begäran-token %s har nekats och återkallats." #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -635,18 +643,18 @@ msgstr "Denna metod kräver en POST eller en DELETE." msgid "You may not delete another user's status." msgstr "Du kan inte ta bort en annan användares status." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Ingen sådan notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Kan inte upprepa din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Redan upprepat denna notis." @@ -658,21 +666,21 @@ msgstr "Status borttagen." msgid "No status with that ID found." msgstr "Ingen status med det ID:t hittades." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." -msgstr "" +msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Det är för långt. Maximal notisstorlek är %d tecken." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Hittades inte." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." @@ -873,7 +881,9 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Blockera denna användare" @@ -916,11 +926,13 @@ msgstr "" msgid "Unblock user from group" msgstr "Häv blockering av användare från grupp" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Häv blockering" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Häv blockering av denna användare" @@ -959,9 +971,9 @@ msgstr "Denna adress har redan blivit bekräftad." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -969,7 +981,7 @@ msgstr "Kunde inte uppdatera användare." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Kunde inte ta bort e-postbekräftelse." @@ -1005,9 +1017,10 @@ msgstr "Applikation hittades inte." msgid "You are not the owner of this application." msgstr "Du är inte ägaren av denna applikation." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1041,7 +1054,7 @@ msgstr "Ta bort denna applikation" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Inte inloggad." @@ -1104,7 +1117,6 @@ msgstr "Ta bort denna användare" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Utseende" @@ -1225,13 +1237,13 @@ msgstr "Återställ standardutseende" msgid "Reset back to default" msgstr "Återställ till standardvärde" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Spara" @@ -1387,7 +1399,7 @@ msgstr "Aktuell, bekräftad e-postadress." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1405,22 +1417,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "E-postadress, såsom \"användarnamn@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1428,111 +1444,111 @@ msgstr "Lägg till" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Inkommande e-post" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Skicka e-post till denna adress för att posta nya notiser." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Ange en ny e-postadress för att posta till; detta inaktiverar den gamla." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Ny" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "E-postinställningar" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Skicka notiser om nya prenumerationer till mig genom e-post." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Skicka mig e-post när någon lägger till min notis som en favorit." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Skicka mig e-post när någon skickar mig ett privat meddelande." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Skicka mig e-post när någon skickar ett \"@-svar\"." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Tillåt vänner att knuffa mig och skicka e-post till mig." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Jag vill posta notiser genom min e-post." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Publicera ett MicroID för min e-postadress." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "E-postinställningar sparade." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Ingen e-postadress." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den e-postadressen" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Det är redan din e-postadress." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Den e-postadressen tillhör redan en annan användare." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Kunde inte infoga bekräftelsekod." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1544,50 +1560,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Ingen väntande bekräftelse att avbryta." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Detta är fel e-postadress." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "E-postbekräftelse avbruten." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Det är inte din e-postadress." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "E-postadressen togs bort." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Ingen inkommande e-postadress." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Kunde inte uppdatera användaruppgift." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Inkommande e-postadress borttagen." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Ny inkommande e-postadress tillagd." @@ -1706,7 +1722,7 @@ msgstr "Kunde inte konvertera token för begäran till token för åtkomst." msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Fel vid uppdatering av fjärrprofil." @@ -1763,7 +1779,7 @@ msgstr "Användaren är redan blockerad från grupp." msgid "User is not a member of group." msgstr "Användare är inte en gruppmedlem." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blockera användare från grupp" @@ -1844,40 +1860,32 @@ msgstr "Logtyp uppdaterad." msgid "Failed updating logo." msgstr "Misslyckades uppdatera logtyp." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s gruppmedlemmar" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s gruppmedlemmar, sida %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "En lista av användarna i denna grupp." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Administratör" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Blockera" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Gör till administratör" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Gör denna användare till administratör" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2016,7 +2024,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2026,65 +2037,65 @@ msgstr "" "att lägga till %s i din kompislista i din IM-klient eller hos GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Inställningar för snabbmeddelanden" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Skicka notiser till mig genom Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Posta en notis när min Jabber/GTalk-status ändras." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Skicka svar till mig genom Jabber/GTalk från personer som jag inte " "prenumererar på." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicera ett MicroID för min Jabber/GTalk-adress." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Inställningar sparade." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Inget Jabber-ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Kan inte normalisera detta Jabber-ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Inte ett giltigt Jabber-ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Detta är redan ditt Jabber-ID" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID:t tillhör redan en annan användare." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2094,28 +2105,28 @@ msgstr "" "att %s får skicka meddelanden till dig." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Detta är fel IM-adress." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Kunde inte ta bort bekräftelse för snabbmeddelanden." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Bekräftelse för snabbmeddelanden avbruten." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Detta är inte ditt Jabber-ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Adressen för snabbmeddelanden togs bort." @@ -2510,6 +2521,8 @@ msgstr "Uppdateringar som matchar söksträngen \"%1$s\" på %2$s!" msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" +"Denna användare tillåter inte knuffar eller har inte bekräftat eller angett " +"sin e-post än." #: actions/nudge.php:94 msgid "Nudge sent" @@ -2584,8 +2597,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Endast %s-webbadresser över vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2725,7 +2738,7 @@ msgid "Password saved." msgstr "Lösenord sparat." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Sökvägar" @@ -2937,7 +2950,7 @@ msgstr "Fullständigt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hemsida" @@ -3044,7 +3057,7 @@ msgid "Couldn't save tags." msgstr "Kunde inte spara taggar." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Inställningar sparade." @@ -3583,7 +3596,7 @@ msgstr "Användare är redan flyttad till sandlådan." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessioner" @@ -3621,24 +3634,24 @@ msgid "Application profile" msgstr "Applikationsprofil" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Ikon" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Namn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivning" @@ -3730,6 +3743,15 @@ msgstr "" "bredvid någon notis du skulle vilja bokmärka för senare tillfälle eller för " "att sätta strålkastarljuset på." +#: actions/showfavorites.php:208 +#, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" +"%s har inte lagt till några favoritnotiser ännu. Posta något intressant de " +"skulle lägga till sina favoriter :)" + #: actions/showfavorites.php:212 #, php-format msgid "" @@ -3744,7 +3766,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Detta är ett sätt att dela med av det du gillar." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s grupp" @@ -3796,7 +3818,7 @@ msgstr "Flöde av notiser för %s grupp (Atom)" msgid "FOAF for %s group" msgstr "FOAF för %s grupp" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Medlemmar" @@ -4246,7 +4268,7 @@ msgstr "Ingen kod ifylld" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Ögonblicksbilder" @@ -4817,6 +4839,8 @@ msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" +"Ingen fil får vara större än %1$d byte och filen du skickade var %2$d byte. " +"Prova att ladda upp en mindre version." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. @@ -4832,6 +4856,11 @@ msgstr "En så här stor fil skulle överskrida din användarkvot på %d byte." msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "En sådan här stor fil skulle överskrida din månatliga kvot på %d byte." +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +msgid "Invalid filename." +msgstr "Ogiltigt filnamn." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -4862,7 +4891,7 @@ msgstr "Kunde inte skapa inloggnings-token för %s" #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "Inget databasnamn eller DSN funnen någonstans." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. #: classes/Message.php:46 @@ -4884,7 +4913,7 @@ msgstr "Kunde inte uppdatera meddelande med ny URI." #: classes/Notice.php:98 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "Ingen sådan profil (%1$d) för notis (%2$d)." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:193 @@ -4933,7 +4962,7 @@ msgstr "Problem med att spara notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). #: classes/Notice.php:899 msgid "Bad type provided to saveKnownGroups" -msgstr "" +msgstr "Dålig typ tillhandahållen saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. #: classes/Notice.php:998 @@ -4952,17 +4981,27 @@ msgstr "RT @%1$s %2$s" #: classes/Profile.php:737 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." -msgstr "" +msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; finns inte." #. 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:746 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." -msgstr "" +msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; databasfel." + +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +msgid "Missing profile." +msgstr "Saknar profil." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:339 +msgid "Unable to save tag." +msgstr "Kunde inte spara tagg." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Du har blivit utestängd från att prenumerera." @@ -5110,7 +5149,8 @@ msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administratör" @@ -5187,7 +5227,7 @@ msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Webbplatsnotis" @@ -5251,7 +5291,10 @@ msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5261,13 +5304,16 @@ msgstr "" "%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** är en mikrobloggtjänst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5279,50 +5325,51 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Innehåll och data av %1$s är privat och konfidensiell." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Numrering av sidor" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 msgid "After" msgstr "Senare" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Tidigare" @@ -5331,207 +5378,226 @@ msgstr "Tidigare" msgid "Expecting a root feed element but got a whole XML document." msgstr "Förväntade ett flödes rotelement, men fick ett helt XML-dokument." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Kan inte hantera fjärrinnehåll ännu." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Kan inte hantera inbäddat XML-innehåll ännu." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Du kan inte göra förändringar av denna webbplats." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Ändringar av den panelen tillåts inte." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() är inte implementerat." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Webbplats" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Konfiguration av utseende" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Utseende" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Användare" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Konfiguration av åtkomst" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Konfiguration av sessioner" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Redigera webbplatsnotis" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Redigera applikation" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Ikon för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Beskriv din applikation med högst %d tecken" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beskriv din applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL till hemsidan för denna applikation" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL för källa" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Organisation som ansvarar för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL till organisationens hemsidan" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL att omdirigera till efter autentisering" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Webbläsare" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Skrivbord" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Typ av applikation, webbläsare eller skrivbord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Skrivskyddad" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Läs och skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "läs och skriv" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 msgid "read-only" msgstr "skrivskyddad" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Godkänd %1$s - \"%2$s\" åtkomst." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" @@ -5551,11 +5617,13 @@ msgstr "Författare" msgid "Provider" msgstr "Tillhandahållare" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Notiser där denna bilaga förekommer" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Taggar för denna billaga" @@ -5567,6 +5635,11 @@ msgstr "Byte av lösenord misslyckades" msgid "Password changing is not allowed" msgstr "Byte av lösenord är inte tillåtet" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blockera" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Resultat av kommando" @@ -5579,6 +5652,31 @@ msgstr "Kommando komplett" msgid "Command failed" msgstr "Kommando misslyckades" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "Notis med den ID:n finns inte." + +#. 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:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "Användare har ingen sista notis." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "Kunde inte hitta en användare med smeknamnet %s." + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "Kunde inte hitta en lokal användare med smeknamnet %s." + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -5589,6 +5687,13 @@ msgstr "Tyvärr, detta kommando är inte implementerat än." msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det verkar inte vara särskilt meningsfullt att knuffa dig själv!" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "Knuff skickad till %s." + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5609,6 +5714,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "Notis markerad som favorit." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "%1$s gick med i grupp %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. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "%1$s lämnade grupp %2$s." + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -5657,11 +5776,32 @@ msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." msgid "Error sending direct message." msgstr "Fel vid sändning av direktmeddelande." +#. 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:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "Notis från %s upprepad." + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Fel vid upprepning av notis." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Notis för långt - maximum är %1$d tecken, du skickade %2$d." + +#. 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:603 +#, php-format +msgid "Reply to %s sent." +msgstr "Svar på %s skickat." + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -5670,18 +5810,32 @@ msgstr "Fel vid sparande av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." -msgstr "" +msgstr "Ange namnet på användaren att prenumerara på." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. #: lib/command.php:664 msgid "Can't subscribe to OMB profiles by command." msgstr "Kan inte prenumera på OMB-profiler via kommando." +#. 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:672 +#, php-format +msgid "Subscribed to %s." +msgstr "Prenumererar på %s." + #. 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:694 lib/command.php:804 msgid "Specify the name of the user to unsubscribe from." -msgstr "" +msgstr "Ange namnet på användaren att avsluta prenumeration på." + +#. 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "Prenumeration på %s avslutad." #. 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. @@ -5712,7 +5866,7 @@ msgstr "Kan inte stänga av notifikation." #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." -msgstr "" +msgstr "Inloggningskommando är inaktiverat." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. @@ -5720,6 +5874,14 @@ msgstr "" #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" +"Denna länk är bara användbar en gång och är bara giltig i 2 minuter: %s. " + +#. 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "%ss prenumeration avslutad." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. #: lib/command.php:831 @@ -5727,7 +5889,7 @@ msgid "You are not subscribed to anyone." msgstr "Du prenumererar inte på någon." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5742,7 +5904,7 @@ msgid "No one is subscribed to you." msgstr "Ingen prenumerar på dig." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5757,7 +5919,7 @@ msgid "You are not a member of any groups." msgstr "Du är inte medlem i några grupper." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5765,6 +5927,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5984,38 +6147,6 @@ msgstr "Plats för gruppen, om den finns, såsom \"Stad, Län, Land\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Extra smeknamn för gruppen, komma- eller mellanslagsseparerade, max &d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Grupp" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Blockerad" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s blockerade användare" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Redigera %s gruppegenskaper" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logotyp" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Lägg till eller redigera %s logotyp" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Lägg till eller redigera %s utseende" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmar" @@ -6047,7 +6178,8 @@ msgstr "Denna fil är för stor. Den maximala filstorleken är %s." msgid "Partial upload." msgstr "Bitvis uppladdad." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Systemfel vid uppladdning av fil." @@ -6448,17 +6580,20 @@ msgstr "Tyvärr, ingen inkommande e-post tillåts." msgid "Unsupported message type: %s" msgstr "Formatet %s för meddelande stödjs inte." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" "Det var ett databasfel vid sparandet av din profil. Var vänlig försök igen." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Den uppladdade filen överstiger upload_max_filesize-direktivet i php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6466,44 +6601,43 @@ msgstr "" "Den uppladdade filen överstiger MAX_FILE_SIZE-direktivet som var angivet i " "HTML-formuläret." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen var bara delvis uppladdad." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Saknar en tillfällig mapp." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Filuppladdningen stoppad pga filändelse" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Fil överstiger användaren kvot." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Fil kunde inte flyttas till destinationskatalog." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Kunde inte fastställa filens MIME-typ." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "Försök använda ett annat %s-format." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s är en filtyp som saknar stöd på denna server." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Skicka en direktnotis" @@ -6585,7 +6719,7 @@ msgstr "på" #: lib/noticelist.php:502 msgid "web" -msgstr "" +msgstr "webb" #: lib/noticelist.php:568 msgid "in context" @@ -6619,27 +6753,7 @@ msgstr "Knuffa" msgid "Send a nudge to this user" msgstr "Skicka en knuff till denna användare" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Fel vid infogning av ny profil" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Fel vid infogning av avatar" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Fel vid uppdatering av fjärrprofil" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Fel vid infogning av fjärrprofilen" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Duplicerad notis" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kunde inte infoga ny prenumeration." @@ -6676,7 +6790,8 @@ msgstr "Dina skickade meddelanden" msgid "Tags in %s's notices" msgstr "Taggar i %ss notiser" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Okänd" @@ -6770,19 +6885,19 @@ msgstr "Flytta till sandlådan" msgid "Sandbox this user" msgstr "Flytta denna användare till sandlådan" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Sök webbplats" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Nyckelord" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Sök" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Sök hjälp" @@ -6894,7 +7009,7 @@ msgstr "" #: lib/themeuploader.php:224 msgid "Theme contains unsafe file extension names; may be unsafe." -msgstr "" +msgstr "Tema innehåller osäkra filtilläggsnamn; kan vara osäkert." #: lib/themeuploader.php:241 #, php-format @@ -6980,56 +7095,32 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "ett par sekunder sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "för nån minut sedan" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "för %d minuter sedan" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "för en timma sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "för %d timmar sedan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "för en dag sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "för %d dagar sedan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "för en månad sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "för %d månader sedan" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "för ett år sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index e1390e1140..5fe86483d6 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Telugu +# Translation of StatusNet to Telugu (తెలుగు) +# Expored from translatewiki.net # -# Author@translatewiki.net: Brion -# Author@translatewiki.net: Veeven +# Author: Brion +# Author: Veeven # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,20 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-09 17:35+0000\n" -"PO-Revision-Date: 2010-09-09 17:38:05+0000\n" -"Language-Team: Telugu\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:21+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "అందుబాటు" @@ -75,10 +77,10 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -91,15 +93,15 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -175,39 +177,41 @@ msgstr "మీరు మరియు మీ స్నేహితులు" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -217,21 +221,21 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "మిమ్మల్ని మీరే నిరోధించుకోలేరు!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "వాడుకరి నిరోధం విఫలమైంది." @@ -255,59 +259,59 @@ msgstr "%s కి నేరు సందేశాలు" msgid "All the direct messages sent to %s" msgstr "%sకి పంపిన అన్ని నేరు సందేశాలు" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "సందేశపు పాఠ్యం లేదు!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "ఆ నోటీసు ఇష్టాంశం కాదు." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "వాడుకరిని అనుసరించలేకపోయాం: %s ఇప్పటికే మీ జాబితాలో ఉన్నారు." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "మిమ్మల్ని మీరే అననుసరించలేరు." @@ -323,101 +327,101 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన msgid "Could not find target user." msgstr "లక్ష్యిత వాడుకరిని కనుగొనలేకపోయాం." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "చాలా మారుపేర్లు! %d గరిష్ఠం." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "తప్పుడు మారుపేరు: \"%s\"." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "గుంపు దొరకలేదు." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "మీరు ఈ గుంపులో సభ్యులు కాదు." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -447,7 +451,7 @@ msgstr "%s గుంపులు" msgid "groups on %s" msgstr "%s పై గుంపులు" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "ఎక్కింపు విఫలమైంది." @@ -461,9 +465,9 @@ msgstr "తప్పుడు పాత్ర." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -502,8 +506,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -564,18 +568,18 @@ msgstr "" msgid "You may not delete another user's status." msgstr "ఇతర వాడుకరుల స్థితిని మీరు తొలగించలేరు." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." @@ -587,21 +591,21 @@ msgstr "స్థితిని తొలగించాం." msgid "No status with that ID found." msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "కనబడలేదు." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." @@ -711,6 +715,10 @@ msgstr "ఏ దస్త్రమూ ఎక్కింపబడలేదు." msgid "Pick a square area of the image to be your avatar" msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:370 msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." @@ -771,7 +779,9 @@ msgid "Yes" msgstr "అవును" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -813,11 +823,13 @@ msgstr "ఈ గుంపు లోనికి చేరకుండా ని msgid "Unblock user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "నిరోధాన్ని ఎత్తివేయి" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -856,9 +868,9 @@ msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధా #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -866,7 +878,7 @@ msgstr "వాడుకరిని తాజాకరించలేకున #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." @@ -902,9 +914,10 @@ msgstr "ఉపకరణం కనబడలేదు." msgid "You are not the owner of this application." msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -937,7 +950,7 @@ msgstr "ఈ ఉపకరణాన్ని తొలగించు" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." @@ -998,7 +1011,6 @@ msgstr "ఈ వాడుకరిని తొలగించు" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "రూపురేఖలు" @@ -1097,13 +1109,13 @@ msgstr "ప్రత్యేక CSS" msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" @@ -1251,7 +1263,7 @@ msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిల #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1269,22 +1281,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1292,77 +1308,77 @@ msgstr "చేర్చు" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "కొత్తది" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "ఈమెయిలు అభిరుచులు" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "నేను ఈమెయిలు ద్వారా నోటీసులు పంపాలనుకుంటున్నాను." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "ఈమెయిలు అభిరుచులు భద్రమయ్యాయి." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "ఈమెయిలు చిరునామా లేదు." #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." @@ -1370,29 +1386,29 @@ msgstr "నిర్ధారణ సంకేతాన్ని చేర్చ #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "ఆ ఈమెయిలు చిరునామా సరైనది కాదు." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "ఈమెయిలు నిర్ధారణ రద్దయింది." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "అది మీ ఈమెయిలు చిరునామా కాదు." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." @@ -1535,7 +1551,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున msgid "User is not a member of group." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" @@ -1608,40 +1624,32 @@ msgstr "చిహ్నాన్ని తాజాకరించాం." msgid "Failed updating logo." msgstr "చిహ్నపు తాజాకరణ విఫలమైంది." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s గుంపు సభ్యులు" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "ఈ గుంపులో వాడుకరులు జాబితా." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "నిర్వాహకులు" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "నిరోధించు" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "నిర్వాహకున్ని చేయి" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1764,7 +1772,10 @@ msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/ #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1772,53 +1783,53 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM అభిరుచులు" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Jabber ID లేదు." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "సరైన Jabber ఐడీ కాదు" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1826,23 +1837,23 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM నిర్ధారణ రద్దయింది." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "ఆ IM చిరునామాని తొలగించాం." @@ -2271,12 +2282,6 @@ msgstr "నోటీసుకి ప్రొఫైలు లేదు." msgid "%1$s's status on %2$s" msgstr "%2$sలో %1$s యొక్క స్థితి" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2284,8 +2289,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "" @@ -2399,7 +2404,7 @@ msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "త్రోవలు" @@ -2567,7 +2572,7 @@ msgstr "పూర్తి పేరు" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -2662,7 +2667,7 @@ msgid "Couldn't save tags." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -3129,24 +3134,24 @@ msgid "Application profile" msgstr "ఉపకరణ ప్రవర" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "ప్రతీకం" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "పేరు" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "సంస్ధ" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "వివరణ" @@ -3231,7 +3236,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "మీకు నచ్చినవి పంచుకోడానికి ఇదొక మార్గం." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s గుంపు" @@ -3283,7 +3288,7 @@ msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" msgid "FOAF for %s group" msgstr "%s గుంపు" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "సభ్యులు" @@ -3560,13 +3565,6 @@ msgstr "ఇది ఇప్పటికే మీ ఫోను నెంబర 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:384 -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" - #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. #: actions/smssettings.php:413 msgid "That is the wrong confirmation number." @@ -3609,7 +3607,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3970,16 +3968,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:76 lib/designsettings.php:65 msgid "Profile design" msgstr "ఫ్రొఫైలు రూపురేఖలు" @@ -4191,7 +4179,7 @@ msgid "Unable to save tag." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." @@ -4323,7 +4311,8 @@ msgid "Change site configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" @@ -4400,7 +4389,7 @@ msgstr "వెతుకు" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "సైటు గమనిక" @@ -4464,7 +4453,10 @@ msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4474,13 +4466,16 @@ msgstr "" "అందిస్తున్న సూక్ష్మ బ్లాగింగు సేవ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4492,49 +4487,50 @@ msgstr "" "పై నడుస్తుంది." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "పేజీకరణ" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "ఇంతక్రితం" @@ -4543,178 +4539,207 @@ msgstr "ఇంతక్రితం" msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "సైటు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "రూపురేఖలు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "వాడుకరి స్వరూపణం" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "సైటు గమనికని భద్రపరచు" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "వాడుకరి స్వరూపణం" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "ఉపకరణాన్ని మార్చు" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "ఈ ఉపకరణానికి ప్రతీకం" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "మీ ఉపకరణాన్ని వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "ఈ ఉపకరణానికి బాధ్యతాయుతమైన సంస్థ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "విహారిణి" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "మేజోపరి" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "ఉపకరణ రకం, విహారిణి లేదా మేజోపరి" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "చదవడం-మాత్రమే" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "రద్దుచేయి" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" @@ -4734,7 +4759,8 @@ msgstr "రచయిత" msgid "Provider" msgstr "మునుజూపు" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -4742,6 +4768,11 @@ msgstr "" msgid "Password changing failed" msgstr "సంకేతపదం మార్పు విఫలమైంది" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "నిరోధించు" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "ఆదేశ ఫలితాలు" @@ -4754,6 +4785,13 @@ msgstr "ఆదేశం పూర్తయ్యింది" msgid "Command failed" msgstr "ఆదేశం విఫలమైంది" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4791,6 +4829,20 @@ msgstr "" msgid "Notice marked as fave." msgstr "నోటీసుని ఇష్టాంశంగా గుర్తించాం." +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:434 #, php-format @@ -4865,6 +4917,13 @@ msgstr "%sకి చందా చేరారు." 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:705 +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." @@ -4882,13 +4941,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "మీరు ఎవరికీ చందాచేరలేదు." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4903,7 +4969,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4918,7 +4984,7 @@ msgid "You are not a member of any groups." msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -4926,6 +4992,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5013,6 +5080,10 @@ msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "" + #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -5089,35 +5160,19 @@ msgstr "గుంపు యొక్క ప్రాంతం, ఉంటే, \" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "గుంపు" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "నిరోధించారు" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s నిరోధిత వాడుకరులు" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "%s గుంపు లక్షణాలను మార్చు" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "చిహ్నం" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -5142,7 +5197,8 @@ msgstr "" msgid "Partial upload." msgstr "పాక్షిక ఎగుమతి." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -5512,56 +5568,75 @@ msgstr "నమోదైన వాడుకరి కాదు." msgid "Sorry, that is not your incoming email address." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "ఎక్కించిన ఫైలు కేవలం పాక్షికంగా మాత్రమే ఎక్కింది." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "తాత్కాలిక సంచయం కనబడటంలేదు." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం." -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 @@ -5663,27 +5738,7 @@ msgstr "స్పందించండి" msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "నోటీసుని తొలగించు" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." @@ -5801,19 +5856,19 @@ msgstr "" msgid "Sandbox this user" msgstr "ఈ వాడుకరిని నిరోధించు" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "సైటుని వెతుకు" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "కీపదము(లు)" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "వెతుకు" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "సహాయంలో వెతుకు" @@ -5825,6 +5880,10 @@ msgstr "ప్రజలు" msgid "Find people on this site" msgstr "ఈ సైటులోని వ్యక్తులని కనుగొనండి" +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + #: lib/searchgroupnav.php:85 msgid "Find groups on this site" msgstr "ఈ సైటులోని గుంపులని కనుగొనండి" @@ -5927,10 +5986,18 @@ msgstr "నిరోధాన్ని తొలగించడంలో పొ msgid "Top posters" msgstr "" +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "ఈ వాడుకరి నుండి చందామాను" +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "ఈ వాడుకరిని తొలగించు" @@ -5986,56 +6053,32 @@ msgid "Moderator" msgstr "సమన్వయకర్త" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "%d నిమిషాల క్రితం" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "%d గంటల క్రితం" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "%d రోజుల క్రితం" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "ఓ నెల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "%d నెలల క్రితం" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index b1ce8405e6..56f93209eb 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -1,7 +1,8 @@ -# Translation of StatusNet to Turkish +# Translation of StatusNet to Turkish (Türkçe) +# Expored from translatewiki.net # -# Author@translatewiki.net: Joseph -# Author@translatewiki.net: McDutchie +# Author: Joseph +# Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,16 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:34+0000\n" -"Language-Team: Turkish\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:22+0000\n" +"Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -45,11 +47,6 @@ msgstr "" msgid "Disable new registrations." msgstr "" -#. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 -msgid "Closed" -msgstr "" - #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 @@ -58,15 +55,15 @@ msgstr "Böyle bir kullanıcı yok." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -91,18 +88,6 @@ msgstr "Böyle bir kullanıcı yok." msgid "%s and friends" msgstr "%s ve arkadaşları" -#. TRANS: %1$s is user nickname -#: actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" - -#. TRANS: %1$s is user nickname -#: actions/all.php:116 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "" - #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -140,39 +125,41 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Kullanıcının profili yok." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -182,25 +169,21 @@ msgid "" "current configuration." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "" -#: actions/apiblockcreate.php:105 -msgid "You cannot block yourself!" -msgstr "" - -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "" @@ -224,36 +207,37 @@ msgstr "" msgid "All the direct messages sent to %s" msgstr "" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Profil kaydedilemedi." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself." +#: actions/apifriendshipscreate.php:119 +#, php-format +msgid "Could not follow user: %s is already on your list." msgstr "" #: actions/apifriendshipsexists.php:91 msgid "Two valid IDs or screen_names must be supplied." msgstr "" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -261,85 +245,80 @@ msgstr "" "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " "kullanılamaz. " -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Tam isim çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Yer bilgisi çok uzun (azm: %d karakter)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Geçersiz büyüklük." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Onay kodu bulunamadı." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Bize o profili yollamadınız" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:92 actions/usergroups.php:63 #, php-format -msgid "%s's groups" -msgstr "" - -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." +msgid "%s groups" msgstr "" #: actions/apigrouplistall.php:96 @@ -353,9 +332,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -386,8 +365,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -443,7 +422,7 @@ msgstr "" msgid "You may not delete another user's status." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." @@ -452,20 +431,15 @@ msgstr "Böyle bir durum mesajı yok." msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" - #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -481,11 +455,6 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Böyle bir durum mesajı yok." @@ -562,18 +531,6 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#. TRANS: Button label on the user block form. -#. TRANS: Button label on the delete application form. -#. TRANS: Button label on the delete notice form. -#. TRANS: Button label on the delete user form. -#. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 -#: actions/deletenotice.php:147 actions/deleteuser.php:152 -#: actions/groupblock.php:178 -msgctxt "BUTTON" -msgid "No" -msgstr "" - #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. #. TRANS: Button label on the delete notice form. @@ -586,11 +543,6 @@ msgctxt "BUTTON" msgid "Yes" msgstr "" -#. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 -msgid "Block this user" -msgstr "" - #: actions/block.php:187 msgid "Failed to save block information." msgstr "" @@ -611,25 +563,12 @@ msgstr "" msgid "No such group." msgstr "Böyle bir kullanıcı yok." -#: actions/blockedfromgroup.php:97 -#, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:100 -#, php-format -msgid "%1$s blocked profiles, page %2$d" -msgstr "" - #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:288 -msgid "Unblock user from group" -msgstr "" - -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "" @@ -645,12 +584,6 @@ msgstr "Onay kodu bulunamadı." msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -662,9 +595,9 @@ msgstr "O adres daha önce onaylanmış." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -672,7 +605,7 @@ msgstr "Kullanıcı güncellenemedi." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." @@ -695,9 +628,10 @@ msgstr "Durum mesajları" msgid "Application not found." msgstr "Onay kodu bulunamadı." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -714,7 +648,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Giriş yapılmadı." @@ -729,11 +663,6 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:151 -msgid "Do not delete this notice" -msgstr "" - #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" @@ -752,7 +681,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -760,11 +688,6 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "Değiştir" @@ -773,10 +696,6 @@ msgstr "Değiştir" msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -832,17 +751,21 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" +#: actions/designadminpanel.php:686 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -856,14 +779,18 @@ msgstr "" msgid "No such document \"%s\"" msgstr "Böyle bir durum mesajı yok." -#: actions/editapplication.php:54 -msgid "Edit Application" +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." msgstr "" #: actions/editapplication.php:161 msgid "Use this form to edit your application." msgstr "" +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "" + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "Abonelik reddedildi." @@ -872,6 +799,14 @@ msgstr "Abonelik reddedildi." msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "" + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "" + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" @@ -885,6 +820,10 @@ msgstr "" msgid "Edit %s group" msgstr "" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." @@ -916,79 +855,74 @@ msgstr "" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" msgid "Remove" msgstr "Geri al" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -996,7 +930,7 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." @@ -1004,21 +938,26 @@ msgstr "Onay kodu eklenemedi." #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "İptal etmek için beklenen onay yok." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Eposta adresi zaten var." +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +msgid "Incoming email address removed." +msgstr "" + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" @@ -1027,11 +966,6 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - #: actions/favorited.php:79 msgid "The most popular notices on the site right now." msgstr "" @@ -1059,11 +993,6 @@ msgstr "" msgid "%s's favorite notices" msgstr "" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1111,10 +1040,6 @@ msgstr "Takip talebine izin verildi" msgid "Could not convert request token to access token." msgstr "" -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:83 msgid "Cannot read file." msgstr "Profil kaydedilemedi." @@ -1123,10 +1048,6 @@ msgstr "Profil kaydedilemedi." msgid "This role is reserved and cannot be set." msgstr "" -#: actions/grantrole.php:75 -msgid "You cannot grant user roles on this site." -msgstr "" - #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1148,10 +1069,6 @@ msgstr "" msgid "Only an admin can block group members." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 -msgid "Block user from group" -msgstr "" - #: actions/groupblock.php:160 #, php-format msgid "" @@ -1160,16 +1077,6 @@ msgid "" "the group in the future." msgstr "" -#. TRANS: Submit button title for 'No' when blocking a user from a group. -#: actions/groupblock.php:182 -msgid "Do not block this user from this group" -msgstr "" - -#. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#: actions/groupblock.php:189 -msgid "Block this user from this group" -msgstr "" - #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1192,45 +1099,52 @@ msgid "" "palette of your choice." msgstr "" +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 +#, php-format +msgid "%s group members" +msgstr "" + +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" -#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#: actions/grouprss.php:142 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1251,15 +1165,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - #: actions/groupsearch.php:82 #, php-format msgid "" @@ -1278,10 +1183,6 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - #. TRANS: Title for instance messaging settings. #: actions/imsettings.php:60 msgid "IM settings" @@ -1299,11 +1200,6 @@ msgstr "" "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " "ayarlarinizi aşağıda yapın." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." @@ -1321,7 +1217,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1331,54 +1230,54 @@ msgstr "" "IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Tercihler kaydedildi." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Tercihler kaydedildi." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "JabberID yok." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Geçersiz bir Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID başka bir kullanıcıya ait." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1388,18 +1287,18 @@ msgstr "" "mesaj yollanabilmesi için onaylamanız gerekmektedir." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Onay kodu yok." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." @@ -1421,11 +1320,6 @@ msgstr "" msgid "Invites have been disabled." msgstr "" -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s." -msgstr "" - #: actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" @@ -1469,12 +1363,6 @@ msgstr "" msgid "Optionally add a personal message to the invitation." msgstr "" -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:231 #, php-format @@ -1561,37 +1449,12 @@ msgstr "" msgid "Login with your username and password." msgstr "Yanlış kullanıcı adı veya parola." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:96 -#, php-format -msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "" - -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/makeadmin.php:146 -#, php-format -msgid "Can't make %1$s an admin for group %2$s." -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status." -msgstr "" - -#: actions/newapplication.php:52 -msgid "New Application" +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." msgstr "" #: actions/newapplication.php:143 @@ -1606,6 +1469,10 @@ msgstr "" msgid "Could not create application." msgstr "Eposta onayı silinemedi." +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + #: actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" @@ -1663,11 +1530,6 @@ msgstr "" msgid "Text search" msgstr "Metin arama" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%1$s\" on %2$s" -msgstr "" - #: actions/noticesearch.php:121 #, php-format msgid "" @@ -1682,16 +1544,6 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:98 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -1717,6 +1569,15 @@ msgstr "" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1743,12 +1604,6 @@ msgstr "Kullanıcının profili yok." msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1779,18 +1634,6 @@ msgstr "" msgid "Show or hide profile designs." msgstr "" -#: actions/otp.php:69 -msgid "No user ID specified." -msgstr "" - -#: actions/otp.php:83 -msgid "No login token specified." -msgstr "" - -#: actions/otp.php:95 -msgid "Invalid login token specified." -msgstr "" - #: actions/otp.php:104 msgid "Login token expired." msgstr "" @@ -1859,7 +1702,7 @@ msgid "Password saved." msgstr "Parola kaydedildi." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1867,26 +1710,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -1927,6 +1750,10 @@ msgstr "" msgid "Theme" msgstr "" +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + #: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" @@ -1943,6 +1770,10 @@ msgstr "Avatar" msgid "Backgrounds" msgstr "" +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "" + #: actions/pathsadminpanel.php:309 msgid "Background path" msgstr "" @@ -1979,10 +1810,6 @@ msgstr "Sunucu" msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -1997,11 +1824,6 @@ msgstr "" msgid "People search" msgstr "Kişi Arama" -#: actions/peopletag.php:142 -#, php-format -msgid "Users self-tagged with %1$s - page %2$d" -msgstr "" - #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Geçersiz büyüklük." @@ -2040,7 +1862,7 @@ msgstr "Tam İsim" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -2049,15 +1871,6 @@ msgid "URL of your homepage, blog, or profile on another site" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Hakkında" @@ -2128,7 +1941,7 @@ msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2141,18 +1954,6 @@ msgstr "" msgid "Public timeline" msgstr "Genel zaman çizgisi" -#: actions/public.php:160 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:164 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" - -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2187,10 +1988,6 @@ msgid "" "tool." msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2386,14 +2183,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - #: actions/register.php:583 #, php-format msgid "" @@ -2456,10 +2245,6 @@ msgstr "Abone ol" msgid "Invalid profile URL (bad format)" msgstr "" -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" @@ -2508,29 +2293,13 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/revokerole.php:75 -msgid "You cannot revoke user roles on this site." -msgstr "" - -#: actions/revokerole.php:82 -msgid "User doesn't have this role." -msgstr "" - #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "İstatistikler" -#: actions/sandbox.php:65 actions/unsandbox.php:65 -msgid "You cannot sandbox users on this site." -msgstr "" - -#: actions/sandbox.php:72 -msgid "User is already sandboxed." -msgstr "" - #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2559,14 +2328,13 @@ msgstr "" msgid "Save site settings" msgstr "Profil ayarları" -#. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 -msgid "Icon" +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." msgstr "" -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 -msgid "Organization" +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:173 +msgid "Icon" msgstr "" #: actions/showapplication.php:192 actions/showgroup.php:436 @@ -2579,10 +2347,18 @@ msgstr "İstatistikler" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2613,21 +2389,6 @@ msgstr "" msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%1$s's favorite notices, page %2$d" -msgstr "" - -#: actions/showfavorites.php:171 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:178 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -2653,9 +2414,9 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:84 +#: actions/showgroup.php:82 #, php-format -msgid "%1$s group, page %2$d" +msgid "%s group" msgstr "" #: actions/showgroup.php:227 @@ -2671,19 +2432,8 @@ msgstr "" msgid "Aliases" msgstr "" -#: actions/showgroup.php:338 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:344 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:355 -#, php-format -msgid "FOAF for %s group" +#: actions/showgroup.php:302 +msgid "Group actions" msgstr "" #: actions/showgroup.php:398 lib/profileaction.php:117 @@ -2733,25 +2483,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - #: actions/showstream.php:73 #, php-format msgid " tagged %s" msgstr "" -#: actions/showstream.php:79 -#, php-format -msgid "%1$s, page %2$d" -msgstr "" - -#: actions/showstream.php:122 -#, php-format -msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "" - #: actions/showstream.php:148 #, php-format msgid "FOAF for %s" @@ -2796,10 +2532,6 @@ msgstr "" msgid "You cannot silence users on this site." msgstr "" -#: actions/silence.php:72 -msgid "User is already silenced." -msgstr "" - #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -2909,11 +2641,6 @@ msgstr "Profil ayarları" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." @@ -2986,7 +2713,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -2994,6 +2721,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Eposta adresi onayı" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3043,15 +2774,6 @@ msgstr "Yeni abonelik eklenemedi." msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribe.php:117 -msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%1$s subscribers, page %2$d" -msgstr "" - #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Sizin durumunuzu takip edenler" @@ -3102,25 +2824,6 @@ msgstr "" msgid "SMS" msgstr "" -#: actions/tag.php:69 -#, php-format -msgid "Notices tagged with %1$s, page %2$d" -msgstr "" - -#: actions/tag.php:87 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:93 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/tagother.php:39 -msgid "No ID argument." -msgstr "" - #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3209,10 +2912,6 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:251 -msgid "Invitations" -msgstr "" - #: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" @@ -3225,13 +2924,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Takip isteğini onayla" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "" @@ -3304,16 +2996,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3324,12 +3006,6 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. -#: actions/usergroups.php:66 -#, php-format -msgid "%1$s groups, page %2$d" -msgstr "" - #: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" @@ -3500,7 +3176,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3551,6 +3227,11 @@ msgstr "Profil kaydedilemedi." msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" @@ -3572,25 +3253,14 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 -msgctxt "TOOLTIP" -msgid "Change your email, avatar, password, profile" -msgstr "" - -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Bağlan" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -3602,24 +3272,12 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 -msgctxt "MENU" -msgid "Invite" -msgstr "" - #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" @@ -3637,11 +3295,6 @@ msgstr "" msgid "Local views" msgstr "" -#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 -msgid "Secondary site navigation" -msgstr "" - #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3686,22 +3339,17 @@ msgstr "" msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3714,215 +3362,225 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "" -#. TRANS: Pagination message to go to a page displaying information more in the -#. TRANS: present than the currently displayed information. -#: lib/action.php:1247 -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:1257 -msgid "Before" -msgstr "" - #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 -msgctxt "MENU" -msgid "Site" -msgstr "" - -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Onay kodu yok." #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 -#, php-format -msgid "Describe your application in %d characters" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 -msgid "Describe your application" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 -msgid "URL of the homepage of this application" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 -msgid "URL for the homepage of the organization" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "İptal et" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Geri al" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "" + +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "" + +#: lib/channel.php:157 lib/channel.php:177 +msgid "Command results" msgstr "" #: lib/channel.php:229 lib/mailhandler.php:142 @@ -3938,13 +3596,6 @@ msgstr "" msgid "Notice with that id does not exist." msgstr "" -#. TRANS: Message given requesting a profile for a non-existing user. -#. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 -#, php-format -msgid "Could not find a user with nickname %s." -msgstr "" - #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -3993,6 +3644,13 @@ msgstr "" msgid "%1$s joined group %2$s." msgstr "" +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 #, php-format @@ -4008,13 +3666,6 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." 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:554 -#, php-format -msgid "Notice from %s repeated." -msgstr "" - #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -4032,9 +3683,11 @@ msgstr "" 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:664 -msgid "Can't subscribe to OMB profiles by command." +#. 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:672 +#, php-format +msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. @@ -4043,6 +3696,13 @@ msgstr "" 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:705 +#, 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:724 lib/command.php:750 @@ -4071,8 +3731,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4080,7 +3747,7 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4088,13 +3755,14 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4161,6 +3829,10 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "" @@ -4226,49 +3898,38 @@ msgstr "" msgid "Grant this user the \"%s\" role" msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" msgid "Group" msgstr "" -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:108 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 #, php-format +msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Giriş" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4298,7 +3959,8 @@ msgstr "Desteklenmeyen görüntü dosyası biçemi." msgid "Partial upload." msgstr "Kısmi yükleme." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." @@ -4328,10 +3990,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" @@ -4368,22 +4026,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -4459,12 +4101,6 @@ msgid "" "%5$s\n" msgstr "" -#. TRANS: Subject for favorite notification email -#: lib/mail.php:589 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -4547,56 +4183,69 @@ msgstr "" msgid "Sorry, no incoming email allowed." msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:202 lib/mediafile.php:238 -msgid "Could not determine file's MIME type." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid " Try using another %s format." -msgstr "" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -4607,11 +4256,6 @@ msgstr "" msgid "To" msgstr "" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -4625,10 +4269,6 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -4676,27 +4316,19 @@ msgstr "" msgid "Reply" msgstr "Cevaplar" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + #: lib/nudgeform.php:128 msgid "Nudge" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Yeni profil eklemede hata oluştu" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Avatar eklemede hata oluştu" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Uzaktaki profili güncellemede hata oluştu" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Uzak profil eklemede hata oluştu" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." @@ -4733,7 +4365,8 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -4782,19 +4415,14 @@ msgstr "" msgid "Recent tags" msgstr "" -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" #: lib/repeatform.php:132 msgid "Yes" msgstr "" -#: lib/revokeroleform.php:91 -#, php-format -msgid "Revoke the \"%s\" role from this user" -msgstr "" - #: lib/router.php:709 msgid "No single user defined for single-user mode." msgstr "" @@ -4803,14 +4431,12 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Ara" - #: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "" @@ -4831,10 +4457,6 @@ msgstr "" msgid "More..." msgstr "" -#: lib/silenceform.php:67 -msgid "Silence" -msgstr "" - #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -4915,6 +4537,10 @@ msgstr "" msgid "Unsubscribe" msgstr "Aboneliği sonlandır" +#: lib/userprofile.php:234 lib/userprofile.php:248 +msgid "User actions" +msgstr "" + #: lib/userprofile.php:237 msgid "User deletion in progress..." msgstr "" @@ -4946,56 +4572,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "birkaç saniye önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "yaklaşık %d dakika önce" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "yaklaşık %d saat önce" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "yaklaşık bir gün önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "yaklaşık %d gün önce" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "yaklaşık bir ay önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "yaklaşık %d ay önce" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index de3b519668..2a3d54b7a2 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -1,9 +1,10 @@ -# Translation of StatusNet to Ukrainian +# Translation of StatusNet to Ukrainian (Українська) +# Expored from translatewiki.net # -# Author@translatewiki.net: AS -# Author@translatewiki.net: Boogie -# Author@translatewiki.net: Prima klasy4na -# Author@translatewiki.net: Тест +# Author: AS +# Author: Boogie +# Author: Prima klasy4na +# Author: Тест # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,21 +12,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:39+0000\n" -"Language-Team: Ukrainian\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:23+0000\n" +"Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" -"X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10< =4 && (n%100<10 or n%100>=20) ? 1 : 2);\n" +"X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Погодитись" @@ -80,10 +82,10 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -96,15 +98,15 @@ msgstr "Немає такої сторінки." #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -202,16 +204,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -226,48 +228,50 @@ msgstr "Оновлення від %1$s та друзів на %2$s!" msgid "API method not found." msgstr "API метод не знайдено." -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Цей метод потребує POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "Ви мусите встановити параметр «device» з одним зі значень: sms, im, none." -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "Не вдалося оновити користувача." -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Користувач не має профілю." -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "Не вдалося зберегти профіль." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -279,30 +283,30 @@ msgstr "" "Сервер нездатен обробити таку кількість даних (%s байтів) за поточної " "конфігурації." -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "Не маю можливості зберегти налаштування дизайну." -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "Не вдалося оновити Ваш дизайн." -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Ви не можете блокувати самого себе!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Спроба заблокувати користувача невдала." -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "Спроба розблокувати користувача невдала." @@ -326,60 +330,60 @@ msgstr "Пряме повідомлення до %s" msgid "All the direct messages sent to %s" msgstr "Всі прямі повідомлення надіслані до %s" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "Повідомлення без тексту!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "Надто довго. Максимальний розмір %d знаків." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Отримувача не знайдено." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не можна надіслати пряме повідомлення користувачеві, який не є Вашим другом." -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Жодних статусів з таким ID." -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "Цей статус вже є обраним." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Не можна позначити як обране." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Цей статус не є обраним." -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Не можна видалити зі списку обраних." -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "Не вдалося додати користувача: користувача не знайдено." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не вдалося додати користувача: %s вже присутній у Вашому списку." -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "Не вдалося відмінити підписку: користувача не знайдено." -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Ви не можете відписатись від самого себе." @@ -395,7 +399,7 @@ msgstr "Не вдалось встановити джерело користув msgid "Could not find target user." msgstr "Не вдалося знайти цільового користувача." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." @@ -403,95 +407,95 @@ msgstr "" "Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Це ім’я вже використовується. Спробуйте інше." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Повне ім’я задовге (255 знаків максимум)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Опис надто довгий (%d знаків максимум)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Розташування надто довге (255 знаків максимум)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Забагато додаткових імен! Максимум становить %d." -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Помилкове додаткове ім’я: «%s»." -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Додаткове ім’я «%s» вже використовується. Спробуйте інше." -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Додаткове ім’я не може бути таким самим що й основне." -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Групу не знайдено." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Ви вже є учасником цієї групи." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "Адмін цієї групи заблокував Вашу присутність в ній." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не вдалось долучити користувача %1$s до групи %2$s." -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Ви не є учасником цієї групи." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -521,7 +525,7 @@ msgstr "%s групи" msgid "groups on %s" msgstr "групи на %s" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Збій при завантаженні." @@ -535,9 +539,9 @@ msgstr "Невірний токен." #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -583,8 +587,8 @@ msgstr "Токен запиту %s було скасовано і відхиле #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -649,18 +653,18 @@ msgstr "Цей метод потребує або НАПИСАТИ, або ВИ msgid "You may not delete another user's status." msgstr "Ви не можете видалити статус іншого користувача." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Такого допису немає." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Не можу повторити Ваш власний допис." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Цей допис вже повторено." @@ -672,21 +676,21 @@ msgstr "Статус видалено." msgid "No status with that ID found." msgstr "Не знайдено жодних статусів з таким ID." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "Клієнт мусить надати параметр «статус» зі значенням." -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Надто довго. Максимальний розмір допису — %d знаків." -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Не знайдено." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -888,7 +892,9 @@ msgid "Yes" msgstr "Так" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Блокувати користувача" @@ -930,11 +936,13 @@ msgstr "Список користувачів блокованих в цій г msgid "Unblock user from group" msgstr "Розблокувати користувача" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Розблокувати" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Розблокувати цього користувача" @@ -973,9 +981,9 @@ msgstr "Цю адресу вже підтверджено." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -983,7 +991,7 @@ msgstr "Не вдалося оновити користувача." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." @@ -1019,9 +1027,10 @@ msgstr "Додаток не виявлено." msgid "You are not the owner of this application." msgstr "Ви не є власником цього додатку." +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1055,7 +1064,7 @@ msgstr "Видалити додаток" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Не увійшли." @@ -1116,7 +1125,6 @@ msgstr "Видалити цього користувача" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "Дизайн" @@ -1237,13 +1245,13 @@ msgstr "Оновити налаштування за замовчуванням" msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" @@ -1399,7 +1407,7 @@ msgstr "Поточна підтверджена поштова адреса." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1417,22 +1425,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "Електронна адреса, на зразок «UserName@example.org»" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1440,110 +1452,110 @@ msgstr "Додати" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "Вхідна пошта" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Надсилайте дописи на цю адресу і їх буде опубліковано на сайті." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "Нове" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Преференції ел. пошти" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Поівдомляти мене поштою про нові підписки." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "Надсилати мені листа, коли хтось додає мій допис до списку обраних." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Надсилати мені листа, коли хтось має приватне повідомлення для мене." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Надсилати мені листа, коли на мій допис з’являється «@-відповідь»." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "Дозволити друзям «розштовхати» мене, надіславши мені листа." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Я хочу надсилати дописи поштою." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Позначати міткою MicroID мою електронну адресу." #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Преференції пошти збережно." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Немає електронної адреси." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Це і є Вашою адресою." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Ця електронна адреса належить іншому користувачу." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Не вдалося додати код підтвердження." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1555,50 +1567,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Не очікується підтвердження для скасування." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "Це помилкова адреса електронної пошти." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Підтвердження електронної пошти скасовано." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "Це не є Вашою адресою." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Адреса була видалена." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Немає адреси для вхідної пошти." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "Не вдалося оновити запис користувача." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Адресу вхідної пошти видалено." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." @@ -1715,7 +1727,7 @@ msgstr "Не вдалося перетворити токени запиту н msgid "Remote service uses unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "Помилка при оновленні віддаленого профілю." @@ -1772,7 +1784,7 @@ msgstr "Користувача заблоковано в цій групі." msgid "User is not a member of group." msgstr "Користувач не є учасником групи." -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Блокувати користувача в групі" @@ -1854,40 +1866,32 @@ msgstr "Логотип оновлено." msgid "Failed updating logo." msgstr "Оновлення логотипу завершилось невдачею." -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "Учасники групи %s" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "Учасники групи %1$s, сторінка %2$d" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "Список учасників цієї групи." -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "Блок" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "Зробити адміном" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "Надати цьому користувачеві права адміністратора" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -2027,7 +2031,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2038,65 +2045,65 @@ msgstr "" "GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Преференції ІМ" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Повідомляти мене через Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Надсилати дописи на сайт, коли мій статус Jabber/GTalk змінюється." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " "підписаний." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Преференції збережно." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Немає Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Не можна полагодити цей Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Це недійсний Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Це і є Ваш Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID вже належить іншому користувачу." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2106,28 +2113,28 @@ msgstr "" "затведити %s для відправлення вам повідомлень." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Це помилкова адреса IM." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "Не вдалося видалити підтвердження ІМ." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Підтвердження ІМ скасовано." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Це не Ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "Адреса ІМ була видалена." @@ -2600,8 +2607,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "URL-адреса %s лише в простому HTTP, будь ласка." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2743,7 +2750,7 @@ msgid "Password saved." msgstr "Пароль збережено." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "Шлях" @@ -2955,7 +2962,7 @@ msgstr "Повне ім’я" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Веб-сторінка" @@ -3061,7 +3068,7 @@ msgid "Couldn't save tags." msgstr "Не вдалося зберегти теґи." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Налаштування збережено." @@ -3598,7 +3605,7 @@ msgstr "Користувача ізольовано доки наберетьс #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Сесії" @@ -3636,24 +3643,24 @@ msgid "Application profile" msgstr "Профіль додатку" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "Іконка" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "Ім’я" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "Організація" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -3768,7 +3775,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "Це спосіб поділитись з усіма тим, що вам подобається." -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Група %s" @@ -3820,7 +3827,7 @@ msgstr "Стрічка дописів групи %s (Atom)" msgid "FOAF for %s group" msgstr "FOAF для групи %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Учасники" @@ -4276,7 +4283,7 @@ msgstr "Код не введено" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "Снепшоти" @@ -5007,7 +5014,7 @@ msgid "Unable to save tag." msgstr "Не вдається зберегти теґ." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "Вас позбавлено можливості підписатись." @@ -5155,7 +5162,8 @@ msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Адмін" @@ -5232,7 +5240,7 @@ msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Об’яви на сайті" @@ -5296,7 +5304,10 @@ msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5306,13 +5317,16 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — це сервіс мікроблоґів." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5324,50 +5338,51 @@ msgstr "" "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "Ліцензія змісту сайту" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторські права на зміст і дані належать розробникам. Всі права захищено." -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "Нумерація сторінок" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "Назад" @@ -5377,208 +5392,227 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "" "В очікуванні кореневого елементу веб-стрічки, отримали цілий документ XML." -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "Поки що не можу обробити віддалений контент." -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "Поки що не можу обробити вбудований XML контент." -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "Ви не можете щось змінювати на цьому сайті." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "Для цієї панелі зміни не припустимі." #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() не виконано." #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "Основна конфігурація сайту" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "Конфігурація дизайну" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "Дизайн" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "Конфігурація користувача" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Користувач" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "Прийняти конфігурацію" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Конфігурація шляху" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "Конфігурація сесій" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Редагувати повідомлення сайту" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Конфігурація знімків" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" "API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " "читання." +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "Керувати додатками" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "Іконка для цього додатку" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "Опишіть додаток, вкладаючись у %d знаків" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Опишіть Ваш додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "URL-адреса веб-сторінки цього додатку" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "Організація, відповідальна за цей додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "URL-адреса веб-сторінки організації" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "URL-адреса, на яку перенаправляти після автентифікації" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "Десктоп" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "Тип додатку, браузер або десктоп" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "Лише читання" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "Читати-писати" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Скасувати" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "читання/запис" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Підтверджено доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" @@ -5598,11 +5632,13 @@ msgstr "Автор" msgid "Provider" msgstr "Провайдер" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "Дописи, до яких прикріплено це вкладення" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "Теґи для цього вкладення" @@ -5614,6 +5650,11 @@ msgstr "Не вдалося змінити пароль" msgid "Password changing is not allowed" msgstr "Змінювати пароль не дозволено" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Блок" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "Результати команди" @@ -5864,7 +5905,7 @@ msgid "You are not subscribed to anyone." msgstr "Ви не маєте жодних підписок." #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5880,7 +5921,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5896,7 +5937,7 @@ msgid "You are not a member of any groups." msgstr "Ви не є учасником жодної групи." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" @@ -5905,6 +5946,7 @@ msgstr[0] "Ви є учасником групи:" msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6122,38 +6164,6 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Додаткові імена для групи, відокремлювати комами або пробілами, максимум %d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Група" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Блок" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s заблокувані користувачі" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "Редагувати властивості групи %s" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Лого" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "Додати або редагувати логотип %s" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "Додати або редагувати дизайн %s" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи з найбільшою кількістю учасників" @@ -6185,7 +6195,8 @@ msgstr "Цей файл завеликий. Максимальний розмі msgid "Partial upload." msgstr "Часткове завантаження." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." @@ -6590,15 +6601,18 @@ msgstr "" msgid "Unsupported message type: %s" msgstr "Формат повідомлення не підтримується: %s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "Виникла помилка під час завантаження Вашого файлу. Спробуйте ще." -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Завантажений файл перевищив UPLOAD_MAX_FILESIZE вказаний у php.ini." -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -6606,44 +6620,43 @@ msgstr "" "Завантажений файл перевищив MAX_FILE_SIZE котрий було встановлено для форми " "HTML." -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "Файл було завантажено частково." -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "Загублено тимчасову теку." -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "Запис файлу на диск скасовано." -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "Завантаження файлу зупинено розширенням." -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "Файл перевищив квоту користувача." -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "Файл не може бути переміщений у директорію призначення." -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "Не вдається визначити MIME-тип файлу." -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr " Спробуйте використати інший %s формат." - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "%s не підтримується як тип файлів на цьому сервері." - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Надіслати прямий допис" @@ -6759,27 +6772,7 @@ msgstr "«Розштовхати»" msgid "Send a nudge to this user" msgstr "Спробувати «розштовхати» цього користувача" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Помилка при додаванні нового профілю" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Помилка при додаванні аватари" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Помилка при оновленні віддаленого профілю" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Помилка при додаванні віддаленого профілю" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Дублікат допису" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." @@ -6816,7 +6809,8 @@ msgstr "Надіслані вами повідомлення" msgid "Tags in %s's notices" msgstr "Теґи у дописах %s" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "Невідомо" @@ -6910,19 +6904,19 @@ msgstr "Пісочниця" msgid "Sandbox this user" msgstr "Ізолювати, відіслати користувача гратися у пісочниці" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "Пошук" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "Ключові слова" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Пошук" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "Пошук" @@ -7123,56 +7117,32 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "хвилину тому" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "близько %d хвилин тому" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "близько %d годин тому" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "близько %d днів тому" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "близько %d місяців тому" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index bd15203297..4759a8edc4 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ -# Translation of StatusNet to Vietnamese +# Translation of StatusNet to Vietnamese (Tiếng Việt) +# Expored from translatewiki.net # -# Author@translatewiki.net: Minh Nguyen +# Author: Minh Nguyen # -- # This file is distributed under the same license as the StatusNet package. # @@ -8,20 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:41+0000\n" -"Language-Team: Vietnamese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:24+0000\n" +"Language-Team: Vietnamese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "Truy cập" @@ -59,25 +61,25 @@ msgstr "Đóng" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "Lưu" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -136,39 +138,41 @@ msgstr "" msgid "You and friends" msgstr "Bạn và bạn bè" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "Phương thức này yêu cầu là POST." -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "Người dùng không có thông tin." -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -178,10 +182,6 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockcreate.php:105 -msgid "You cannot block yourself!" -msgstr "" - #: actions/apidirectmessage.php:89 #, php-format msgid "Direct messages from %s" @@ -192,44 +192,45 @@ msgstr "Bạn có tin nhắn riêng từ %s" msgid "Direct messages to %s" msgstr "Bạn có tin nhắn riêng từ %s" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " "về bạn." -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Không tìm thấy mã xác nhận." -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Không thể tạo favorite." -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "Không thể tạo favorite." -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself." -msgstr "" - #: actions/apifriendshipsexists.php:91 msgid "Two valid IDs or screen_names must be supplied." msgstr "" @@ -242,87 +243,81 @@ msgstr "Không thể cập nhật thành viên." msgid "Could not find target user." msgstr "Không thể cập nhật thành viên." -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "Biệt hiệu không hợp lệ." -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "Trang chủ không phải là URL" -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "Tên khu vực quá dài (không quá %d ký tự)." -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "Địa chỉ email không đúng:%s" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "Không tìm thấy nhóm." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "Bạn chưa cập nhật thông tin riêng" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "" -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." -msgstr "" - #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -336,9 +331,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -369,8 +364,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -431,18 +426,18 @@ msgstr "Phương thức này yêu cầu là POST hoặc DELETE" msgid "You may not delete another user's status." msgstr "Bạn đã không xóa trạng thái của những người khác." -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Không có tin nhắn nào." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "Không thể xóa tin nhắn này." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Không thể xóa tin nhắn này." @@ -450,15 +445,15 @@ msgstr "Không thể xóa tin nhắn này." msgid "No status with that ID found." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Không tìm thấy." -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -478,6 +473,11 @@ msgstr "Dòng tin nhắn cho %s" msgid "%1$s / Updates mentioning %2$s" msgstr "Trạng thái của %1$s vào %2$s" +#: actions/apitimelinementions.php:131 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + #: actions/apitimelinepublic.php:202 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" @@ -574,20 +574,10 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#. TRANS: Button label on the user block form. -#. TRANS: Button label on the delete application form. -#. TRANS: Button label on the delete notice form. -#. TRANS: Button label on the delete user form. -#. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:153 actions/deleteapplication.php:154 -#: actions/deletenotice.php:147 actions/deleteuser.php:152 -#: actions/groupblock.php:178 -msgctxt "BUTTON" -msgid "No" -msgstr "" - #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "Bỏ chặn người dùng này" @@ -611,20 +601,17 @@ msgstr "" msgid "No such group." msgstr "Không có user nào." -#: actions/blockedfromgroup.php:100 -#, php-format -msgid "%1$s blocked profiles, page %2$d" -msgstr "" - #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Bỏ chặn" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "Bỏ chặn người dùng này" @@ -646,12 +633,6 @@ msgstr "Không tìm thấy mã xác nhận." msgid "That confirmation code is not for you!" msgstr "Mã xác nhận này không phải của bạn!" -#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:91 -#, php-format -msgid "Unrecognized address type %s." -msgstr "" - #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -663,9 +644,9 @@ msgstr "Địa chỉ đó đã được xác nhận rồi." #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -673,7 +654,7 @@ msgstr "Không thể cập nhật thành viên." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." @@ -713,7 +694,7 @@ msgstr "" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "Chưa đăng nhập." @@ -722,12 +703,6 @@ msgstr "Chưa đăng nhập." msgid "Can't delete this notice." msgstr "Không thể xóa tin nhắn này." -#: actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Xóa tin nhắn" @@ -749,7 +724,6 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -757,11 +731,6 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "Thay đổi" @@ -770,23 +739,10 @@ msgstr "Thay đổi" msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:527 lib/designsettings.php:139 msgid "On" @@ -801,10 +757,6 @@ msgstr "" msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: actions/designadminpanel.php:613 lib/designsettings.php:217 msgid "Text" msgstr "Chuỗi bất kỳ" @@ -829,21 +781,17 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "Lưu" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 -msgid "Save design" -msgstr "" - #: actions/disfavor.php:94 msgid "Add to favorites" msgstr "Ưa thích" @@ -853,8 +801,8 @@ msgstr "Ưa thích" msgid "No such document \"%s\"" msgstr "Không có tin nhắn nào." -#: actions/editapplication.php:54 -msgid "Edit Application" +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." msgstr "" #: actions/editapplication.php:194 @@ -918,7 +866,7 @@ msgstr "Đã xác nhận địa chỉ này." #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -933,112 +881,97 @@ msgstr "" "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " "để nhận tin nhắn và lời hướng dẫn." -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:151 actions/smssettings.php:171 +msgid "Incoming email" msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " -#. TRANS: Button label for adding an e-mail address to send notices from. -#. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 -msgctxt "BUTTON" -msgid "New" -msgstr "" - #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Địa chỉ email" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " "thích của họ." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "Tôi muốn đưa tin nhắn lên bằng email." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "Không có địa chỉ email." #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa Jabber ID" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "Jabber ID này đã thuộc về người khác rồi." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "Không thể chèn mã xác nhận." #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1049,32 +982,32 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "Sự xác nhận chưa được hủy bỏ." #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Sự xác nhận chưa được hủy bỏ." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Không có địa chỉ email." -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "Không có địa chỉ email." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "Không có địa chỉ email." #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "Không có địa chỉ email." @@ -1087,10 +1020,6 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b msgid "Popular notices" msgstr "Không có tin nhắn nào." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" @@ -1119,6 +1048,11 @@ msgstr "Những tin nhắn ưa thích của %s" msgid "Updates favored by %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" + #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" @@ -1141,10 +1075,6 @@ msgstr "Không có tin nhắn nào." msgid "Not expecting this response!" msgstr "Không mong đợi trả lời lại!" -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Bạn có thể đăng ký tại nơi bạn ở!" @@ -1157,14 +1087,6 @@ msgstr "" msgid "You are not authorized." msgstr "Đăng nhận được phép" -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:118 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:83 msgid "Cannot read file." msgstr "Không thể tạo favorite." @@ -1173,6 +1095,12 @@ msgstr "Không thể tạo favorite." msgid "This role is reserved and cannot be set." msgstr "" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:79 +msgid "No profile specified." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1182,11 +1110,7 @@ msgstr "" msgid "Only an admin can block group members." msgstr "" -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" - -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Chặn người dùng" @@ -1198,6 +1122,10 @@ msgid "" "the group in the future." msgstr "" +#: actions/groupblock.php:206 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "Không có Jabber ID." @@ -1216,31 +1144,20 @@ msgstr "Nhóm" msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/groupmembers.php:103 -#, php-format -msgid "%1$s group members, page %2$d" -msgstr "" - -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:487 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1250,11 +1167,6 @@ msgstr "" msgid "%s timeline" msgstr "Dòng tin công cộng" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - #: actions/groups.php:90 #, php-format msgid "" @@ -1265,15 +1177,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - #: actions/groupsearch.php:82 #, php-format msgid "" @@ -1309,11 +1212,6 @@ msgstr "" "Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" "(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1337,7 +1235,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1347,65 +1248,65 @@ msgstr "" "tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "Các tính năng đã được lưu." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTalk " #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " "Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "Các tính năng đã được lưu." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "Không có Jabber ID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "Không thể bình thường hóa Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "Jabber ID không hợp lệ" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID này đã thuộc về người khác rồi." #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1415,18 +1316,18 @@ msgstr "" "tin nhắn đến bạn." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "Sai IM." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "Không có mã số xác nhận." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "Đây không phải Jabber ID của bạn." @@ -1515,12 +1416,6 @@ msgstr "Tin nhắn cá nhân" msgid "Optionally add a personal message to the invitation." msgstr "Không bắt buộc phải thêm thông điệp vào thư mời." -#. TRANS: Send button for inviting friends -#: actions/invite.php:198 -msgctxt "BUTTON" -msgid "Send" -msgstr "" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1626,30 +1521,10 @@ msgstr "" "Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " "đổi trong điều chỉnh." -#: actions/login.php:295 -#, php-format -msgid "" -"Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" - #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/makeadmin.php:146 -#, php-format -msgid "Can't make %1$s an admin for group %2$s." -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status." -msgstr "" - #: actions/newapplication.php:143 msgid "Use this form to register a new application." msgstr "" @@ -1688,14 +1563,6 @@ msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" -#: actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 -msgid "Ajax Error" -msgstr "" - #: actions/newnotice.php:69 msgid "New notice" msgstr "Thông báo mới" @@ -1736,11 +1603,6 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" @@ -1751,6 +1613,10 @@ msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -1760,6 +1626,10 @@ msgstr "" msgid "You have not registered any applications yet." msgstr "" +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access you account." msgstr "" @@ -1786,12 +1656,6 @@ msgstr "Người dùng không có thông tin." msgid "%1$s's status on %2$s" msgstr "Trạng thái của %1$s vào %2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1799,8 +1663,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." @@ -1832,14 +1696,14 @@ msgstr "" msgid "Show or hide profile designs." msgstr "" -#: actions/otp.php:69 -msgid "No user ID specified." -msgstr "" - #: actions/otp.php:90 msgid "No login token requested." msgstr "Không có yêu cầu!" +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -1901,7 +1765,7 @@ msgid "Password saved." msgstr "Đã lưu mật khẩu." #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1909,26 +1773,6 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:163 -#, php-format -msgid "Avatar directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -1973,26 +1817,6 @@ msgstr "" msgid "Theme directory" msgstr "" -#: actions/pathsadminpanel.php:292 -msgid "Avatar directory" -msgstr "" - -#: actions/pathsadminpanel.php:301 -msgid "Backgrounds" -msgstr "" - -#: actions/pathsadminpanel.php:305 -msgid "Background server" -msgstr "" - -#: actions/pathsadminpanel.php:309 -msgid "Background path" -msgstr "" - -#: actions/pathsadminpanel.php:313 -msgid "Background directory" -msgstr "" - #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2005,18 +1829,10 @@ msgstr "" msgid "When to use SSL" msgstr "" -#: actions/pathsadminpanel.php:335 -msgid "SSL server" -msgstr "" - #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2066,7 +1882,7 @@ msgstr "Tên đầy đủ" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "Trang chủ hoặc Blog" @@ -2074,15 +1890,6 @@ msgstr "Trang chủ hoặc Blog" msgid "URL of your homepage, blog, or profile on another site" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Lý lịch" @@ -2157,7 +1964,7 @@ msgid "Couldn't save profile." msgstr "Không thể lưu hồ sơ cá nhân." #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2170,10 +1977,6 @@ msgstr "" msgid "Public timeline" msgstr "Dòng tin công cộng" -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2208,10 +2011,6 @@ msgid "" "tool." msgstr "" -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2429,33 +2228,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - -#: actions/register.php:583 -#, php-format -msgid "" -"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%2$s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2509,18 +2281,10 @@ msgstr "Theo bạn này" msgid "Invalid profile URL (bad format)" msgstr "URL hồ sơ cá nhân không đúng định dạng." -#: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "" - #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "" @@ -2580,13 +2344,9 @@ msgstr "%s chào mừng bạn " msgid "StatusNet" msgstr "Số liệu thống kê" -#: actions/sandbox.php:72 -msgid "User is already sandboxed." -msgstr "" - #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2611,18 +2371,13 @@ msgid "Turn on debugging output for sessions." msgstr "" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 -msgid "Organization" -msgstr "" - #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "Mô tả" @@ -2636,10 +2391,18 @@ msgstr "Số liệu thống kê" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -2710,7 +2473,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Hộp thư đi của %s" @@ -2747,7 +2510,7 @@ msgstr "Chọn những người bạn của %s" msgid "FOAF for %s group" msgstr "Hộp thư đi của %s" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Thành viên" @@ -2784,10 +2547,6 @@ msgstr "" msgid "No such message." msgstr "Không có tin nhắn nào." -#: actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "Không có mã nào được nhập" @@ -2847,10 +2606,6 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/silence.php:72 -msgid "User is already silenced." -msgstr "" - #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -2960,11 +2715,6 @@ msgstr "Thay đổi hình đại diện" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3049,7 +2799,7 @@ msgstr "Không có mã nào được nhập" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3057,6 +2807,10 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Xac nhan dia chi email" +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" @@ -3110,11 +2864,6 @@ msgstr "Không thể chèn thêm vào đăng nhận." msgid "This action only accepts POST requests." msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%1$s subscribers, page %2$d" -msgstr "" - #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Có nhiều người nghe theo lời nhắn của bạn." @@ -3190,10 +2939,6 @@ msgstr "Chọn những người bạn của %s" msgid "Notice feed for tag %s (Atom)" msgstr "Chọn những người bạn của %s" -#: actions/tagother.php:39 -msgid "No ID argument." -msgstr "" - #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" msgstr "Người dùng không có thông tin." @@ -3228,6 +2973,12 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" +msgid "User" +msgstr "" + #: actions/useradminpanel.php:70 msgid "User settings for this StatusNet site." msgstr "" @@ -3275,13 +3026,6 @@ msgstr "" msgid "Authorize subscription" msgstr "Đăng nhận cho phép" -#: actions/userauthorization.php:110 -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 "" - #: actions/userauthorization.php:196 actions/version.php:167 msgid "License" msgstr "" @@ -3311,24 +3055,10 @@ msgstr "Không có yêu cầu!" msgid "Subscription authorized" msgstr "Đăng nhận được phép" -#: actions/userauthorization.php:256 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Đăng nhận từ chối" -#: actions/userauthorization.php:268 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3354,16 +3084,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:355 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3505,6 +3225,11 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +msgid "You are banned from posting notices on this site." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -3538,7 +3263,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3592,9 +3317,9 @@ msgstr "Đang thực hiện việc thay đổi email" msgid "Design your profile" msgstr "Người dùng không có thông tin." -#. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 -msgid "Other" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. @@ -3619,19 +3344,14 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Kết nối" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -3642,12 +3362,6 @@ msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" @@ -3665,11 +3379,6 @@ msgstr "" msgid "Local views" msgstr "" -#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 -msgid "Secondary site navigation" -msgstr "" - #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3705,200 +3414,200 @@ msgstr "Nguồn" msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:810 -msgid "Badge" -msgstr "" - #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn." -#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, 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:1247 -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:1257 -msgid "Before" -msgstr "" - #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 +msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Xóa tin nhắn" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Mô tả" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 -msgid "URL of the homepage of this application" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 -msgid "URL for the homepage of the organization" -msgstr "" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "Hủy" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "Khôi phục" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" @@ -3909,18 +3618,31 @@ msgstr "" msgid "Provider" msgstr "Xem trước" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "" + +#: lib/channel.php:229 lib/mailhandler.php:142 +msgid "Command complete" msgstr "" #: lib/channel.php:240 msgid "Command failed" msgstr "Bạn và bạn bè" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -3931,13 +3653,6 @@ msgstr "" msgid "It does not make a lot of sense to nudge yourself!" msgstr "" -#. TRANS: Message given having nudged another user. -#. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 -#, php-format -msgid "Nudge sent to %s." -msgstr "" - #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -3950,6 +3665,20 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/command.php:438 lib/mail.php:268 @@ -3996,12 +3725,26 @@ msgstr "" msgid "Specify the name of the user to subscribe to." 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:672 +#, 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:694 lib/command.php:804 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:705 +#, 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:724 lib/command.php:750 @@ -4013,6 +3756,11 @@ msgstr "" msgid "Can't turn off notification." msgstr "" +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +msgid "Can't turn on notification." +msgstr "" + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -4025,13 +3773,20 @@ msgstr "" 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:813 +#, 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:831 msgid "You are not subscribed to anyone." msgstr "Bạn đã theo những người này:" #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4039,7 +3794,7 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "Bạn đã theo những người này:" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4047,13 +3802,14 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "Không thể tạo favorite." #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bạn chưa cập nhật thông tin riêng" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4181,47 +3937,27 @@ msgstr "" msgid "Grant this user the \"%s\" role" msgstr "" -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "Nhóm" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "Chặn người dùng" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "Chặn người dùng" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Đăng nhập" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" msgstr "" @@ -4244,7 +3980,8 @@ msgstr "Không hỗ trợ kiểu file ảnh này." msgid "Partial upload." msgstr "Upload từng phần." -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "Hệ thống xảy ra lỗi trong khi tải file." @@ -4252,10 +3989,6 @@ msgstr "Hệ thống xảy ra lỗi trong khi tải file." msgid "Not an image or corrupt file." msgstr "File hỏng hoặc không phải là file ảnh." -#: lib/imagefile.php:163 lib/imagefile.php:224 -msgid "Unknown file type" -msgstr "" - #: lib/imagefile.php:244 msgid "MB" msgstr "" @@ -4278,33 +4011,11 @@ msgstr "" msgid "Login with a username and password" msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" msgstr "Xac nhan dia chi email" -#. TRANS: Body for address confirmation email. -#: lib/mail.php:177 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 #, php-format @@ -4318,22 +4029,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -4373,12 +4068,6 @@ msgstr "" msgid "SMS confirmation" msgstr "Xác nhận SMS" -#. TRANS: Main body heading for SMS-by-email address confirmation message -#: lib/mail.php:463 -#, php-format -msgid "%s: confirm you own this phone number with this code:" -msgstr "" - #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -4450,28 +4139,6 @@ msgstr "" "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " "thích của họ." -#. TRANS: Body for favorite notification email -#: lib/mail.php:592 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 #, php-format @@ -4481,6 +4148,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -4519,10 +4191,6 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 -msgid "from" -msgstr "" - #: lib/mailhandler.php:42 msgid "Not a registered user." msgstr "Không có người dùng nào đăng ký" @@ -4535,63 +4203,75 @@ msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập v msgid "Sorry, no incoming email allowed." msgstr "Xin lỗi, không có địa chỉ email cho phép." -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:146 msgid "To" msgstr "" -#: lib/messageform.php:178 lib/noticeform.php:237 -msgctxt "Send button for sending notice" -msgid "Send" -msgstr "" - #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -4605,25 +4285,12 @@ msgstr "" msgid "Attach a file" msgstr "" -#: lib/noticeform.php:213 -msgid "Share my location" -msgstr "" - -#: lib/noticeform.php:216 -msgid "Do not share my location" -msgstr "" - #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 -msgid "N" -msgstr "" - #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4668,27 +4335,7 @@ msgstr "Tìm kiếm thông báo" msgid "Nudge this user" msgstr "Bỏ chặn người dùng này" -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "Lỗi xảy ra khi thêm mới hình đại diện" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." @@ -4720,11 +4367,6 @@ msgstr "Hộp thư đi" msgid "Your sent messages" msgstr "Thư bạn đã gửi" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn này" @@ -4737,6 +4379,10 @@ msgstr "Tất cả đăng nhận" msgid "Subscribers" msgstr "Bạn này theo tôi" +#: lib/profileaction.php:191 +msgid "User ID" +msgstr "" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Gia nhập từ" @@ -4754,12 +4400,8 @@ msgstr "" msgid "Public" msgstr "Công cộng" -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/redirectingaction.php:95 -msgid "No return-to arguments." +#: lib/publicgroupnav.php:88 +msgid "Featured" msgstr "" #: lib/repeatform.php:107 @@ -4774,23 +4416,16 @@ msgstr "Có" msgid "Repeat this notice" msgstr "Không thể xóa tin nhắn này." -#: lib/revokeroleform.php:91 -#, php-format -msgid "Revoke the \"%s\" role from this user" -msgstr "" - #: lib/router.php:709 msgid "No single user defined for single-user mode." msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "Tìm kiếm" - #: lib/searchgroupnav.php:80 msgid "People" msgstr "Tên tài khoản" @@ -4811,10 +4446,6 @@ msgstr "" msgid "More..." msgstr "" -#: lib/silenceform.php:67 -msgid "Silence" -msgstr "" - #: lib/silenceform.php:78 msgid "Silence this user" msgstr "Bỏ chặn người dùng này" @@ -4843,10 +4474,6 @@ msgstr "" msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" @@ -4883,10 +4510,6 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" @@ -4930,56 +4553,32 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "vài giây trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "1 phút trước" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "%d phút trước" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1 giờ trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "%d giờ trước" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "1 ngày trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "%d ngày trước" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "1 tháng trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "%d tháng trước" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "1 năm trước" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 12a240ef68..eec5bb093e 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -1,33 +1,34 @@ -# Translation of StatusNet to Simplified Chinese +# Translation of StatusNet to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net # -# Author@translatewiki.net: Chenxiaoqino -# Author@translatewiki.net: Shizhao -# Author@translatewiki.net: Sweeite012f -# Author@translatewiki.net: Tommyang -# Author@translatewiki.net: ZhengYiFeng +# Author: Chenxiaoqino +# Author: Shizhao +# Author: Sweeite012f +# Author: Tommyang +# Author: ZhengYiFeng # -- -# Messages of identi.ca -# Copyright (C) 2008 Gouki # This file is distributed under the same license as the StatusNet package. # msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-09 17:38:22+0000\n" -"Language-Team: Simplified Chinese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:26+0000\n" +"Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:376 +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 msgid "Access" msgstr "访问" @@ -80,10 +81,10 @@ msgstr "保存访问设置" #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "保存" @@ -96,15 +97,15 @@ msgstr "没有这个页面。" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -200,16 +201,16 @@ msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s上%1$s和好友们的更新!" #: actions/apiaccountratelimitstatus.php:72 -#: actions/apiaccountupdatedeliverydevice.php:94 -#: actions/apiaccountupdateprofile.php:97 -#: actions/apiaccountupdateprofilebackgroundimage.php:94 -#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 -#: actions/apifavoritecreate.php:100 actions/apifavoritedestroy.php:101 -#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 -#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:139 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:156 -#: actions/apigroupleave.php:142 actions/apigrouplist.php:137 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 #: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 #: actions/apigroupshow.php:116 actions/apihelptest.php:88 #: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 @@ -224,48 +225,50 @@ msgstr "%2$s上%1$s和好友们的更新!" msgid "API method not found." msgstr "API方法没有找到。" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "此方法接受POST请求。" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" "你必须指定一个名为'device'的参数,值可以是以下中的一个:sms, im, none。" -#: actions/apiaccountupdatedeliverydevice.php:133 +#: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "无法更新用户。" -#: actions/apiaccountupdateprofile.php:112 -#: actions/apiaccountupdateprofilebackgroundimage.php:194 -#: actions/apiaccountupdateprofilecolors.php:185 -#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 #: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 #: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 #: lib/profileaction.php:84 msgid "User has no profile." msgstr "用户没有个人信息。" -#: actions/apiaccountupdateprofile.php:147 +#: actions/apiaccountupdateprofile.php:148 msgid "Could not save profile." msgstr "无法保存个人信息。" -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -275,30 +278,30 @@ msgid "" "current configuration." msgstr "服务器当前的设置无法处理这么多的 POST 数据(%s bytes)。" -#: actions/apiaccountupdateprofilebackgroundimage.php:136 -#: actions/apiaccountupdateprofilebackgroundimage.php:146 -#: actions/apiaccountupdateprofilecolors.php:164 -#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 #: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." msgstr "无法保存你的外观设置。" -#: actions/apiaccountupdateprofilebackgroundimage.php:187 -#: actions/apiaccountupdateprofilecolors.php:142 +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." msgstr "无法更新你的外观。" -#: actions/apiblockcreate.php:105 +#: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "你不能屏蔽自己!" -#: actions/apiblockcreate.php:126 +#: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "屏蔽用户失败。" -#: actions/apiblockdestroy.php:114 +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "取消屏蔽用户失败。" @@ -322,59 +325,59 @@ msgstr "发给%s的私信" msgid "All the direct messages sent to %s" msgstr "所有发给%s的私信" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "消息没有正文!" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "太长了。最长的信息长度是%d个字符。" -#: actions/apidirectmessagenew.php:138 +#: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "未找到收件人。" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "不能给未成为好友的用户发送私信。" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "没有找到此 ID 的消息。" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "已收藏此状态。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "无法创建收藏。" -#: actions/apifavoritedestroy.php:123 +#: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." msgstr "此状态未被收藏。" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "无法删除收藏。" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "无法关注用户:未找到用户。" -#: actions/apifriendshipscreate.php:118 +#: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "无法关注用户:你已经关注了%s。" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "无法取消关注用户:未找到用户。" -#: actions/apifriendshipsdestroy.php:120 +#: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "你不能取消关注自己。" @@ -390,101 +393,101 @@ msgstr "无法确定源用户。" msgid "Could not find target user." msgstr "无法找到目标用户。" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字且不能使用空格。" -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: actions/apigroupcreate.php:183 actions/editgroup.php:193 +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." msgstr "不是有效的昵称。" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "全名过长(不能超过 255 个字符)。" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "描述过长(不能超过%d 个字符)。" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "位置过长(不能超过255个字符)。" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "太多别名了!最多%d 个。" -#: actions/apigroupcreate.php:267 +#: actions/apigroupcreate.php:268 #, php-format msgid "Invalid alias: \"%s\"." msgstr "无效的别名:“%s”。" -#: actions/apigroupcreate.php:276 actions/editgroup.php:232 +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "%s这个别名已被使用,换一个吧。" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "别名不能和昵称相同。" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "小组未找到。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 msgid "You are already a member of that group." msgstr "你已经是该小组成员。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:120 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." msgstr "你已经被管理员从该小组中屏蔽。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "无法把用户%1$s添加到%2$s小组" -#: actions/apigroupleave.php:115 +#: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "你不是该小组成员。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." @@ -514,7 +517,7 @@ msgstr "%s 的小组" msgid "groups on %s" msgstr "在%s上的小组" -#: actions/apimediaupload.php:99 +#: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "上传失败" @@ -528,9 +531,9 @@ msgstr "无效的 token。" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -573,8 +576,8 @@ msgstr "%s的 request token 被拒绝并被取消。" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -637,18 +640,18 @@ msgstr "此方法接受POST或DELETE请求。" msgid "You may not delete another user's status." msgstr "你不能删除其他用户的消息。" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "没有这条消息。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." msgstr "不能转发你自己的消息。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:91 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "已转发了该消息。" @@ -660,21 +663,21 @@ msgstr "消息已删除。" msgid "No status with that ID found." msgstr "没有找到此 ID 的消息。" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "客户端必须提供一个包含内容的“状态”参数。" -#: actions/apistatusesupdate.php:242 actions/newnotice.php:157 +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "太长了。最长的消息长度是%d个字符。" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "未找到。" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "每条消息最长%d字符,包括附件的链接 URL。" @@ -873,7 +876,9 @@ msgid "Yes" msgstr "是" #. TRANS: Submit button title for 'Yes' when blocking a user. -#: actions/block.php:164 actions/groupmembers.php:392 lib/blockform.php:80 +#. TRANS: Submit button title. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 msgid "Block this user" msgstr "屏蔽这个用户" @@ -915,11 +920,13 @@ msgstr "被屏蔽加入此小组的用户列表。" msgid "Unblock user from group" msgstr "取消小组对用户的屏蔽。" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "取消屏蔽" -#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 msgid "Unblock this user" msgstr "取消屏蔽这个用户。" @@ -958,9 +965,9 @@ msgstr "此地址已被确认过了。" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -968,7 +975,7 @@ msgstr "无法更新用户。" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" @@ -1004,9 +1011,10 @@ msgstr "未找到应用。" msgid "You are not the owner of this application." msgstr "你不是该应用的拥有者。" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1039,7 +1047,7 @@ msgstr "删除这个应用" #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 #: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:73 lib/profileformaction.php:64 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 #: lib/settingsaction.php:72 msgid "Not logged in." msgstr "未登录。" @@ -1099,7 +1107,6 @@ msgstr "删除这个用户" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "外观" @@ -1218,13 +1225,13 @@ msgstr "恢复默认外观" msgid "Reset back to default" msgstr "重置到默认" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1380,7 +1387,7 @@ msgstr "当前确认的电子邮件。" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" @@ -1398,22 +1405,26 @@ msgstr "" #. TRANS: Button label to cancel an e-mail address confirmation procedure. #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. -#. TRANS: Button label +#. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:357 +#: actions/smssettings.php:137 lib/applicationeditform.php:347 msgctxt "BUTTON" msgid "Cancel" msgstr "取消" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "电子邮件,类似 \"UserName@example.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 +#: actions/emailsettings.php:143 actions/imsettings.php:151 #: actions/smssettings.php:162 msgctxt "BUTTON" msgid "Add" @@ -1421,110 +1432,110 @@ msgstr "添加" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "接收用 email" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "通过发送电子邮件到这个地址来发布新的消息。" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "生成新的电子邮件地址用于发布消息;取消旧的。" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "新增" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 +#: actions/emailsettings.php:178 msgid "Email preferences" msgstr "Email 偏好" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "将新的关注通过电子邮件发送给我。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "有人收藏我的消息时,发邮件通知我。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "有人给我发送私信时,发邮件通知我。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "有人给我发送 @ 消息时,发邮件通知我。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "允许朋友们呼叫我并给我发送邮件。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "我希望通过邮件发布信息。" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:219 +#: actions/emailsettings.php:223 msgid "Publish a MicroID for my email address." msgstr "公开电子邮件的 MicroID。" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "Email 偏好已保存。" #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:353 +#: actions/emailsettings.php:357 msgid "No email address." msgstr "没有电子邮件地址。" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:361 +#: actions/emailsettings.php:365 msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:370 +#: actions/emailsettings.php:374 msgid "That is already your email address." msgstr "你已登记此电子邮件。" #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:378 msgid "That email address already belongs to another user." msgstr "此电子邮件属于其他用户。" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "无法插入确认码。" #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:398 +#: actions/emailsettings.php:402 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -1535,50 +1546,50 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:419 actions/imsettings.php:383 +#: actions/emailsettings.php:423 actions/imsettings.php:386 #: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "没有可以取消的确认。" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:424 +#: actions/emailsettings.php:428 msgid "That is the wrong email address." msgstr "这是错误的电子邮件地址。" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "Email 确认已取消。" #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:458 +#: actions/emailsettings.php:462 msgid "That is not your email address." msgstr "这个不是你的电子邮件地址。" #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:479 +#: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "电子邮件地址已被删除。" -#: actions/emailsettings.php:493 actions/smssettings.php:568 +#: actions/emailsettings.php:497 actions/smssettings.php:568 msgid "No incoming email address." msgstr "没有发布用的电子邮件地址。" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:504 actions/emailsettings.php:528 +#: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." msgstr "无法更新用户记录。" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "发布用的电子邮件被删除。" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:532 actions/smssettings.php:605 +#: actions/emailsettings.php:536 actions/smssettings.php:605 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" @@ -1691,7 +1702,7 @@ msgstr "无法将 request token 转换为 access token。" msgid "Remote service uses unknown version of OMB protocol." msgstr "远程服务使用了未知版本的 OMB 协议。" -#: actions/finishremotesubscribe.php:138 +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 msgid "Error updating remote profile." msgstr "更新远程的个人信息时出错。" @@ -1748,7 +1759,7 @@ msgstr "用户已经被小组屏蔽。" msgid "User is not a member of group." msgstr "用户不是小组成员。" -#: actions/groupblock.php:134 actions/groupmembers.php:360 +#: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "从小组中屏蔽用户" @@ -1825,40 +1836,32 @@ msgstr "logo已更新。" msgid "Failed updating logo." msgstr "更新 logo 失败。" -#: actions/groupmembers.php:100 lib/groupnav.php:92 +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "%s 的小组成员" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "%s 的小组成员,第%2$d页" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "该小组的成员列表。" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "管理" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "屏蔽" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "使用户成为小组的管理员" -#: actions/groupmembers.php:519 -msgid "Make Admin" -msgstr "设置管理员" - -#: actions/groupmembers.php:519 -msgid "Make this user an admin" -msgstr "使这个用户成为管理员" - #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -1993,7 +1996,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -2003,63 +2009,63 @@ msgstr "" "或 GTalk 中将 %s 加为好友。" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "IM 首选项已保存。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "通过 Jabber/GTalk 发送通告。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "当我的 Jabber/GTalk 状态改变时自动发布消息。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "将我没有关注的用户给我的回复通过 Jabber/GTalk 发送给我。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:179 +#: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "公开 Jabber/GTalk 帐号的 MicroID。" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "首选项已保存。" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "没有 Jabber ID。" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "无法识别此 Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "不是有效的 Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:326 +#: actions/imsettings.php:329 msgid "That is already your Jabber ID." msgstr "这个已经是你的 Jabber 帐号了。" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID 属于另一用户。" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2067,28 +2073,28 @@ msgid "" msgstr "验证码已被发送到你新增的 IM 地址。你必须允许 %s 向你发送信息。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "IM 地址错误。" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:397 +#: actions/imsettings.php:400 msgid "Couldn't delete IM confirmation." msgstr "无法删除 IM 确认。" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "IM 确认已取消。" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:424 +#: actions/imsettings.php:427 msgid "That is not your Jabber ID." msgstr "这不是你的 Jabber ID。" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "IM 地址已删除。" @@ -2524,7 +2530,7 @@ msgstr "消息没有对应用户。" #: actions/oembed.php:87 actions/shownotice.php:175 #, php-format msgid "%1$s's status on %2$s" -msgstr "%1$s在的%2$s上的消息" +msgstr "%1$s在%2$s时发的消息" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:159 @@ -2539,8 +2545,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "请只用HTTP明文的%sURLs的地址。" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -2680,7 +2686,7 @@ msgid "Password saved." msgstr "密码已保存。" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "路径" @@ -2889,7 +2895,7 @@ msgstr "全名" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "主页" @@ -2992,7 +2998,7 @@ msgid "Couldn't save tags." msgstr "无法保存标签。" #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "设置已保存。" @@ -3505,7 +3511,7 @@ msgstr "用于已经在沙盒中了。" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "Sessions" @@ -3543,24 +3549,24 @@ msgid "Application profile" msgstr "未找到应用。" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "图标" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:199 +#: lib/applicationeditform.php:190 msgid "Name" msgstr "名称" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 +#: actions/showapplication.php:178 lib/applicationeditform.php:226 msgid "Organization" msgstr "组织名称必填。" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:216 lib/groupeditform.php:172 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 msgid "Description" msgstr "描述" @@ -3669,7 +3675,7 @@ msgstr "" msgid "This is a way to share what you like." msgstr "这是一种分享你喜欢的内容的方式。" -#: actions/showgroup.php:82 lib/groupnav.php:86 +#: actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 小组" @@ -3721,7 +3727,7 @@ msgstr "%s小组的消息聚合 (Atom)" msgid "FOAF for %s group" msgstr "%s 的发件箱" -#: actions/showgroup.php:393 actions/showgroup.php:445 lib/groupnav.php:91 +#: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "小组成员" @@ -4162,7 +4168,7 @@ msgstr "没有输入验证码" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "快照" @@ -4864,7 +4870,7 @@ msgid "Unable to save tag." msgstr "无法保存标签。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "你被禁止添加关注。" @@ -5012,7 +5018,8 @@ msgid "Change site configuration" msgstr "更改网站配置" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "管理" @@ -5089,7 +5096,7 @@ msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:400 +#: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "网站消息" @@ -5153,7 +5160,10 @@ msgid "StatusNet software license" msgstr "StatusNet 软件许可证" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 +#. 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:846 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5163,13 +5173,16 @@ msgstr "" "broughtbyurl%%)。" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 是一个微博客服务。" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5180,49 +5193,50 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 +#: lib/action.php:872 msgid "Site content license" msgstr "网站内容许可协议" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s的内容和数据是私人且保密的。" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:880 +#: lib/action.php:886 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "内容和数据%1$s版权所有并保留所有权利。" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "内容和数据贡献者版权所有并保留所有权利。" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "所有%1$s的内容和数据在%2$s许可下有效。" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "分页" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 +#: lib/action.php:1264 msgid "Before" msgstr "之前" @@ -5231,205 +5245,224 @@ msgstr "之前" msgid "Expecting a root feed element but got a whole XML document." msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "还不能处理远程内容。" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "还不能处理嵌入式 XML 内容。" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "还不能处理嵌入式 Base64 内容。" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:98 +#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "你不能在这个站点上修改。" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "不允许对该面板进行修改。" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "showForm() 尚未实现。" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "saveSettings() 尚未实现。" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "无法删除外观设置。" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "基本网站配置" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:352 +#: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "网站" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "外观配置" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 msgctxt "MENU" msgid "Design" msgstr "外观" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "用户配置" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "访问配置" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "路径配置" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "会话配置" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:398 +#: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "编辑网站消息" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "更改站点配置" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "API 资源需要读写的访问权限,但是你只有只读的权限。" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +#: lib/apiauth.php:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + #. TRANS: Form legend. -#: lib/applicationeditform.php:137 +#: lib/applicationeditform.php:129 msgid "Edit application" msgstr "编辑应用" #. TRANS: Form guide. -#: lib/applicationeditform.php:187 +#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "该应用的图标" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 +#: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "用不超过%d个字符描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:213 +#: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:215 msgid "URL of the homepage of this application" msgstr "这个应用的主页 URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "来源网址" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "该应用的负责组织" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "这个组织的主页 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "通过授权后转向的 URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "浏览器" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "桌面" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "应用的类型,浏览器或桌面" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "只读" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "读写" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "该应用默认的访问权限:只读或读写" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "取消" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "读写" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "通过了%1$s - \"%2$s\"的访问权限。" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "取消" @@ -5449,11 +5482,13 @@ msgstr "作者" msgid "Provider" msgstr "提供者" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "出现这个附件的消息" -#: lib/attachmenttagcloudsection.php:48 +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" msgstr "此附件的标签" @@ -5465,6 +5500,11 @@ msgstr "不允许更改密码" msgid "Password changing is not allowed" msgstr "不允许更改密码" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "屏蔽" + #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" msgstr "执行结果" @@ -5711,7 +5751,7 @@ msgid "You are not subscribed to anyone." msgstr "你没有关注任何人。" #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -5725,7 +5765,7 @@ 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 support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -5739,13 +5779,14 @@ msgid "You are not a member of any groups." msgstr "你还未成为任何一个小组的成员。" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "你是该小组成员:" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5963,38 +6004,6 @@ msgstr "小组的地理位置,例如“国家、省份、城市”" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "该小组额外的昵称,用逗号或者空格分隔开,最长%d" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "小组" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "屏蔽用户" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "%s屏蔽的用户" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "编辑 %s群选项" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "Logo" - -#: lib/groupnav.php:114 -#, php-format -msgid "Add or edit %s logo" -msgstr "添加或编辑 %s 图标" - -#: lib/groupnav.php:120 -#, php-format -msgid "Add or edit %s design" -msgstr "添加或编辑%s外观" - #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "人气最旺的小组" @@ -6026,7 +6035,8 @@ msgstr "文件太大。文件大小限制在%s以下。" msgid "Partial upload." msgstr "部分上传。" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "上传文件时出错。" @@ -6402,7 +6412,7 @@ msgstr "" #: lib/mailbox.php:228 lib/noticelist.php:506 msgid "from" -msgstr "来自" +msgstr "通过" #: lib/mailhandler.php:37 msgid "Could not parse message." @@ -6425,58 +6435,60 @@ msgstr "抱歉,现在不允许电子邮件发布。" msgid "Unsupported message type: %s" msgstr "不支持的信息格式:%s" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "保存你的文件时数据库出现了一个错误。请重试。" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件大小超过了 php.ini 中 upload_max_filesize 的设置限制。" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上传文件大小超过了 HTML 表单中 MAX_FILE_SIZE 的设置限制。" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "上传的文件只有部分被上传。" -#: lib/mediafile.php:159 +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 msgid "Missing a temporary folder." msgstr "缺少一个临时文件夹。" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "写入磁盘失败。" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "文件上传被扩展停止了。" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "文件超过了用户的配额。" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "文件不能被移动到目标目录。" -#: lib/mediafile.php:202 lib/mediafile.php:238 +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 msgid "Could not determine file's MIME type." msgstr "无法判断文件的 MIME 类型。" -#: lib/mediafile.php:318 -#, php-format -msgid " Try using another %s format." -msgstr "试一下其他的%s格式。" - -#: lib/mediafile.php:323 -#, php-format -msgid "%s is not a supported file type on this server." -msgstr "这个服务器不支持%s的文件格式。" - #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "发送一条私信" @@ -6590,27 +6602,7 @@ msgstr "呼叫" msgid "Send a nudge to this user" msgstr "呼叫这个用户" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "添加个人信息出错" - -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "添加头像出错" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "更新远程的个人信息时出错" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "添加远程的个人信息出错" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "转发消息" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "无法添加新的关注。" @@ -6647,7 +6639,8 @@ msgstr "你发送的私信" msgid "Tags in %s's notices" msgstr "%s的消息中的标签" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "未知的" @@ -6741,19 +6734,19 @@ msgstr "沙盒" msgid "Sandbox this user" msgstr "将这个用户放入沙盒。" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "搜索帮助" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "关键词" -#: lib/searchaction.php:127 -msgid "Search" -msgstr "搜索" - -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "搜索帮助" @@ -6949,56 +6942,32 @@ msgid "Moderator" msgstr "审核员" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "几秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "约1分钟前" -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 -#, php-format -msgid "about %d minutes ago" -msgstr "约%d分钟前" - #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "约1小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 -#, php-format -msgid "about %d hours ago" -msgstr "约%d小时前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 -#, php-format -msgid "about %d days ago" -msgstr "约%d天前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 -#, php-format -msgid "about %d months ago" -msgstr "约%d个月前" - -#. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 msgid "about a year ago" msgstr "约1年前" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 8e8217901e..ab5d0466ad 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -1,4 +1,5 @@ -# Translation of StatusNet to Traditional Chinese +# Translation of StatusNet to Traditional Chinese (‪中文(繁體)‬) +# Expored from translatewiki.net # # -- # This file is distributed under the same license as the StatusNet package. @@ -7,27 +8,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-08 22:33+0000\n" -"PO-Revision-Date: 2010-09-08 22:35:48+0000\n" -"Language-Team: Traditional Chinese\n" +"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"PO-Revision-Date: 2010-09-14 19:54:27+0000\n" +"Language-Team: Traditional Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r72348); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" -"X-Message-Group: out-statusnet\n" +"X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-POT-Import-Date: 1284-49-16 34::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "使用者設定發生錯誤" -#. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:161 -msgid "Registration" -msgstr "" - #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" @@ -54,18 +52,13 @@ msgstr "" msgid "Disable new registrations." msgstr "" -#. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:185 -msgid "Closed" -msgstr "" - #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. -#. TRANS: Button label -#: actions/accessadminpanel.php:203 actions/emailsettings.php:224 -#: actions/imsettings.php:184 actions/smssettings.php:209 -#: lib/applicationeditform.php:361 +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -78,15 +71,15 @@ msgstr "無此使用者" #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 -#: actions/apiaccountupdatedeliverydevice.php:114 -#: actions/apiaccountupdateprofile.php:105 -#: actions/apiaccountupdateprofilebackgroundimage.php:116 -#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:113 -#: actions/apigroupismember.php:91 actions/apigroupjoin.php:100 -#: actions/apigroupleave.php:100 actions/apigrouplist.php:73 -#: actions/apistatusesupdate.php:229 actions/apisubscriptions.php:87 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 #: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 #: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 @@ -111,24 +104,6 @@ msgstr "無此使用者" msgid "%s and friends" msgstr "%s與好友" -#. TRANS: %1$s is user nickname -#: actions/all.php:107 -#, php-format -msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" - -#. TRANS: %1$s is user nickname -#: actions/all.php:116 -#, php-format -msgid "Feed for friends of %s (RSS 2.0)" -msgstr "" - -#. TRANS: %1$s is user nickname -#: actions/all.php:125 -#, php-format -msgid "Feed for friends of %s (Atom)" -msgstr "" - #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -166,29 +141,31 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:86 -#: actions/apiaccountupdateprofile.php:89 -#: actions/apiaccountupdateprofilebackgroundimage.php:86 -#: actions/apiaccountupdateprofilecolors.php:110 -#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 -#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109 -#: actions/apifavoritecreate.php:91 actions/apifavoritedestroy.php:92 -#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 -#: actions/apigroupcreate.php:105 actions/apigroupjoin.php:92 -#: actions/apigroupleave.php:92 actions/apimediaupload.php:67 -#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:198 +#. 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:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 msgid "This method requires a POST." msgstr "" -#: actions/apiaccountupdatedeliverydevice.php:106 +#: actions/apiaccountupdatedeliverydevice.php:107 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 -#: actions/apistatusesupdate.php:212 actions/avatarsettings.php:257 +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 #: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/newapplication.php:101 actions/newnotice.php:94 #: lib/designsettings.php:283 @@ -198,7 +175,21 @@ msgid "" "current configuration." msgstr "" -#: actions/apiblockdestroy.php:114 +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings." +msgstr "" + +#: actions/apiblockcreate.php:127 +msgid "Block user failed." +msgstr "" + +#: actions/apiblockdestroy.php:115 msgid "Unblock user failed." msgstr "" @@ -222,42 +213,46 @@ msgstr "" msgid "All the direct messages sent to %s" msgstr "" -#: actions/apidirectmessagenew.php:118 +#: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "" -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:150 +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." msgstr "" -#: actions/apidirectmessagenew.php:142 +#: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -#: actions/apifavoritecreate.php:109 actions/apifavoritedestroy.php:110 +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "" -#: actions/apifavoritecreate.php:120 +#: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:131 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "無法更新使用者" -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 +#: actions/apifavoritedestroy.php:124 +msgid "That status is not a favorite." +msgstr "" + +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "無法新增訂閱" -#: actions/apifriendshipscreate.php:109 +#: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." msgstr "無法儲存個人資料" -#: actions/apifriendshipsdestroy.php:109 +#: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." msgstr "無法儲存個人資料" @@ -265,87 +260,80 @@ msgstr "無法儲存個人資料" msgid "Two valid IDs or screen_names must be supplied." msgstr "" -#: actions/apigroupcreate.php:167 actions/editgroup.php:186 +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "暱稱請用小寫字母或數字,勿加空格。" -#: actions/apigroupcreate.php:176 actions/editgroup.php:190 +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" -#: actions/apigroupcreate.php:199 actions/editapplication.php:215 +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 #: actions/newgroup.php:139 actions/profilesettings.php:222 #: actions/register.php:224 msgid "Homepage is not a valid URL." msgstr "個人首頁位址錯誤" -#: actions/apigroupcreate.php:208 actions/editgroup.php:202 +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 #: actions/newgroup.php:142 actions/profilesettings.php:225 #: actions/register.php:227 msgid "Full name is too long (max 255 chars)." msgstr "全名過長(最多255字元)" -#: actions/apigroupcreate.php:216 actions/editapplication.php:190 +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 #: actions/newapplication.php:172 #, php-format msgid "Description is too long (max %d chars)." msgstr "地點過長(共%d個字)" -#: actions/apigroupcreate.php:227 actions/editgroup.php:208 +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 #: actions/newgroup.php:148 actions/profilesettings.php:232 #: actions/register.php:234 msgid "Location is too long (max 255 chars)." msgstr "地點過長(共255個字)" -#: actions/apigroupcreate.php:246 actions/editgroup.php:219 +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" -#: actions/apigroupcreate.php:289 actions/editgroup.php:238 +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" -#: actions/apigroupismember.php:96 actions/apigroupjoin.php:105 -#: actions/apigroupleave.php:105 actions/apigroupmembership.php:92 +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." msgstr "確認碼遺失" +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "" + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:139 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "無法更新使用者" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:125 actions/leavegroup.php:129 +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 #: lib/command.php:401 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "無法更新使用者" -#. TRANS: %s is a user name -#: actions/apigrouplist.php:98 -#, php-format -msgid "%s's groups" -msgstr "" - -#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s -#: actions/apigrouplist.php:108 -#, php-format -msgid "%1$s groups %2$s is a member of." -msgstr "" - #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" @@ -357,9 +345,9 @@ msgstr "" #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 -#: actions/emailsettings.php:267 actions/favor.php:75 actions/geocode.php:55 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 #: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:66 actions/imsettings.php:227 +#: actions/groupunblock.php:66 actions/imsettings.php:230 #: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 #: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 #: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 @@ -398,8 +386,8 @@ msgstr "" #. TRANS: Message given submitting a form with an unknown action in SMS settings. #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/designadminpanel.php:104 actions/editapplication.php:139 -#: actions/emailsettings.php:286 actions/grouplogo.php:322 -#: actions/imsettings.php:242 actions/newapplication.php:121 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 #: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 #: actions/smssettings.php:277 lib/designsettings.php:304 msgid "Unexpected form submission." @@ -449,33 +437,24 @@ msgstr "" msgid "You may not delete another user's status." msgstr "" -#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "無此通知" -#. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:538 -msgid "Cannot repeat your own notice." -msgstr "" - -#: actions/apistatusesshow.php:139 -msgid "Status deleted." -msgstr "" - #: actions/apistatusesshow.php:145 msgid "No status with that ID found." msgstr "" -#: actions/apistatusesupdate.php:221 +#: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" -#: actions/apistatusesupdate.php:283 actions/apiusershow.php:96 +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "確認碼遺失" -#: actions/apistatusesupdate.php:306 actions/newnotice.php:181 +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" @@ -484,11 +463,6 @@ msgstr "" msgid "Unsupported format." msgstr "" -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "" - #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -519,11 +493,6 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" -#: actions/apitimelinetag.php:107 actions/tagrss.php:65 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "無此通知" @@ -596,6 +565,10 @@ msgstr "" msgid "Pick a square area of the image to be your avatar" msgstr "" +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:370 msgid "Avatar updated." msgstr "更新個人圖像" @@ -665,20 +638,12 @@ msgstr "" msgid "No such group." msgstr "無此使用者" -#: actions/blockedfromgroup.php:100 -#, php-format -msgid "%1$s blocked profiles, page %2$d" -msgstr "" - #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" -#: actions/blockedfromgroup.php:288 -msgid "Unblock user from group" -msgstr "" - -#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "" @@ -708,9 +673,9 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered IM address. #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:116 actions/emailsettings.php:327 -#: actions/emailsettings.php:473 actions/imsettings.php:280 -#: actions/imsettings.php:439 actions/othersettings.php:174 +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 #: actions/profilesettings.php:283 actions/smssettings.php:308 #: actions/smssettings.php:464 msgid "Couldn't update user." @@ -718,7 +683,7 @@ msgstr "無法更新使用者" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/confirmaddress.php:128 actions/emailsettings.php:433 +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 #: actions/smssettings.php:422 msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" @@ -746,9 +711,10 @@ msgstr "無法取消信箱確認" msgid "You are not the owner of this application." msgstr "無法取消信箱確認" +#. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1307 +#: lib/action.php:1315 msgid "There was a problem with your session token." msgstr "" @@ -783,8 +749,13 @@ msgstr "" msgid "Are you sure you want to delete this notice?" msgstr "" -#: actions/deleteuser.php:74 -msgid "You can only delete local users." +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:657 +msgid "Delete this notice" +msgstr "" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" msgstr "" #: actions/deleteuser.php:136 @@ -801,7 +772,6 @@ msgstr "註冊確認" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 -#: lib/groupnav.php:119 msgid "Design" msgstr "" @@ -809,11 +779,6 @@ msgstr "" msgid "Design settings for this StatusNet site." msgstr "" -#: actions/designadminpanel.php:322 -#, php-format -msgid "Theme not available: %s." -msgstr "" - #: actions/designadminpanel.php:426 msgid "Change logo" msgstr "更改" @@ -822,18 +787,10 @@ msgstr "更改" msgid "Site logo" msgstr "更改" -#: actions/designadminpanel.php:460 -msgid "Site theme" -msgstr "" - #: actions/designadminpanel.php:461 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 -msgid "Custom theme" -msgstr "" - #: actions/designadminpanel.php:471 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -904,17 +861,21 @@ msgstr "" msgid "Reset back to default" msgstr "" -#. TRANS: Submit button title +#. TRANS: Submit button title. #: actions/designadminpanel.php:685 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 #: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:363 +#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 #: lib/designsettings.php:256 lib/groupeditform.php:202 msgid "Save" msgstr "" +#: actions/designadminpanel.php:686 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -941,10 +902,6 @@ msgstr "" msgid "Name is required." msgstr "" -#: actions/editapplication.php:186 actions/newapplication.php:168 -msgid "Description is required." -msgstr "" - #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" @@ -1019,94 +976,84 @@ msgstr "" #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:115 actions/emailsettings.php:158 +#: actions/emailsettings.php:115 actions/emailsettings.php:162 #: actions/imsettings.php:116 actions/smssettings.php:124 #: actions/smssettings.php:180 msgctxt "BUTTON" msgid "Remove" msgstr "" -#. TRANS: Instructions for e-mail address input form. -#: actions/emailsettings.php:135 +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" msgstr "" -#. TRANS: Button label for adding an e-mail address in e-mail settings form. -#. TRANS: Button label for adding an IM address in IM settings form. -#. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:139 actions/imsettings.php:148 -#: actions/smssettings.php:162 -msgctxt "BUTTON" -msgid "Add" -msgstr "" - #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:147 actions/smssettings.php:171 +#: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:155 actions/smssettings.php:178 +#: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:164 actions/smssettings.php:186 +#: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:168 actions/smssettings.php:189 +#: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" msgstr "" -#. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:174 -msgid "Email preferences" -msgstr "" - #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:180 +#: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:186 +#: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:193 +#: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:199 +#: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:205 +#: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:212 +#: actions/emailsettings.php:216 msgid "I want to post notices by email." msgstr "" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:334 +#: actions/emailsettings.php:338 msgid "Email preferences saved." msgstr "" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:366 actions/register.php:208 +#: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "此信箱無效" @@ -1114,18 +1061,18 @@ msgstr "此信箱無效" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:391 actions/imsettings.php:348 +#: actions/emailsettings.php:395 actions/imsettings.php:351 #: actions/smssettings.php:373 msgid "Couldn't insert confirmation code." msgstr "無法輸入確認碼" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:438 +#: actions/emailsettings.php:442 msgid "Email confirmation cancelled." msgstr "無確認碼" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:508 actions/smssettings.php:581 +#: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." msgstr "" @@ -1137,11 +1084,6 @@ msgstr "" msgid "Disfavor favorite" msgstr "" -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - #: actions/favorited.php:79 msgid "The most popular notices on the site right now." msgstr "" @@ -1169,11 +1111,6 @@ msgstr "" msgid "%s's favorite notices" msgstr "" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1221,10 +1158,6 @@ msgstr "" msgid "You are not authorized." msgstr "" -#: actions/finishremotesubscribe.php:113 -msgid "Could not convert request token to access token." -msgstr "" - #: actions/finishremotesubscribe.php:118 msgid "Remote service uses unknown version of OMB protocol." msgstr "" @@ -1241,18 +1174,25 @@ msgstr "" msgid "User already has this role." msgstr "" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:79 +msgid "No profile specified." +msgstr "" + #: actions/groupblock.php:76 actions/groupunblock.php:76 #: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 #: actions/unsubscribe.php:84 lib/profileformaction.php:86 msgid "No profile with that ID." msgstr "" -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." msgstr "" -#: actions/groupblock.php:134 actions/groupmembers.php:360 -msgid "Block user from group" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." msgstr "" #: actions/groupblock.php:160 @@ -1263,11 +1203,6 @@ msgid "" "the group in the future." msgstr "" -#. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#: actions/groupblock.php:189 -msgid "Block this user from this group" -msgstr "" - #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1276,6 +1211,10 @@ msgstr "" msgid "No ID." msgstr "無此通知" +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + #: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" @@ -1300,32 +1239,34 @@ msgstr "" msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/groupmembers.php:103 +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:118 +#: actions/groupmembers.php:122 msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:182 lib/groupnav.php:107 +#: actions/groupmembers.php:186 msgid "Admin" msgstr "" -#: actions/groupmembers.php:392 lib/blockform.php:69 -msgid "Block" -msgstr "" - -#: actions/groupmembers.php:487 +#: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:519 +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" @@ -1338,12 +1279,6 @@ msgstr "" msgid "%s timeline" msgstr "" -#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#: actions/grouprss.php:142 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1364,10 +1299,6 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - #: actions/groupsearch.php:52 #, php-format msgid "" @@ -1416,11 +1347,6 @@ msgid "" "doc.im%%). Configure your address and settings below." msgstr "" -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -msgid "IM is not available." -msgstr "" - #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1444,7 +1370,10 @@ msgstr "" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:140 +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1452,53 +1381,53 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:155 +#: actions/imsettings.php:158 msgid "IM preferences" msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:160 +#: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:166 +#: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:172 +#: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:287 actions/othersettings.php:180 +#: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." msgstr "" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:309 +#: actions/imsettings.php:312 msgid "No Jabber ID." msgstr "查無此Jabber ID" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:317 +#: actions/imsettings.php:320 msgid "Cannot normalize that Jabber ID" msgstr "此JabberID錯誤" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:322 +#: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "此JabberID無效" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:330 +#: actions/imsettings.php:333 msgid "Jabber ID already belongs to another user." msgstr "此Jabber ID已有人使用" #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:358 +#: actions/imsettings.php:361 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -1506,17 +1435,17 @@ msgid "" msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:388 +#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:402 +#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "無確認碼" #. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:447 +#: actions/imsettings.php:450 msgid "The IM address was removed." msgstr "" @@ -1623,11 +1552,19 @@ msgid "" "Sincerely, %2$s\n" msgstr "" +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "" +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "已登入" @@ -1681,15 +1618,6 @@ msgstr "" msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" -#: actions/makeadmin.php:133 -#, php-format -msgid "Can't get membership record for %1$s in group %2$s." -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status." -msgstr "" - #: actions/newapplication.php:143 msgid "Use this form to register a new application." msgstr "" @@ -1717,6 +1645,10 @@ msgstr "" msgid "No content!" msgstr "無內容" +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + #. TRANS: Error text shown when trying to send a direct message to self. #: actions/newmessage.php:164 lib/command.php:506 msgid "" @@ -1742,6 +1674,10 @@ msgstr "" msgid "New notice" msgstr "新訊息" +#: actions/newnotice.php:227 +msgid "Notice posted" +msgstr "" + #: actions/noticesearch.php:68 #, php-format msgid "" @@ -1753,11 +1689,6 @@ msgstr "" msgid "Text search" msgstr "" -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%1$s\" on %2$s" -msgstr "" - #: actions/noticesearch.php:121 #, php-format msgid "" @@ -1772,16 +1703,6 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -#: actions/noticesearchrss.php:96 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - -#: actions/noticesearchrss.php:98 -#, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -1795,6 +1716,14 @@ msgstr "" msgid "Nudge sent!" msgstr "" +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -1829,12 +1758,6 @@ msgstr "新的更人資料輸入錯誤" msgid "%1$s's status on %2$s" msgstr "%1$s的狀態是%2$s" -#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:159 -#, php-format -msgid "Content type %s not supported." -msgstr "" - #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1842,8 +1765,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1215 -#: lib/apiaction.php:1243 lib/apiaction.php:1366 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." msgstr "" @@ -1851,6 +1774,10 @@ msgstr "" msgid "People Search" msgstr "" +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: actions/othersettings.php:60 msgid "Other settings" msgstr "使用者設定發生錯誤" @@ -1943,7 +1870,7 @@ msgid "Password saved." msgstr "" #. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:384 +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" @@ -1951,25 +1878,18 @@ msgstr "" msgid "Path and server settings for this StatusNet site." msgstr "" -#: actions/pathsadminpanel.php:157 -#, php-format -msgid "Theme directory not readable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:169 -#, php-format -msgid "Background directory not writable: %s." -msgstr "" - -#: actions/pathsadminpanel.php:177 -#, php-format -msgid "Locales directory not readable: %s." -msgstr "" - #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +msgid "Site" +msgstr "" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "" + #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." msgstr "" @@ -1978,10 +1898,6 @@ msgstr "" msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:242 -msgid "Site path" -msgstr "" - #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2002,10 +1918,18 @@ msgstr "" msgid "Theme" msgstr "" +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + #: actions/pathsadminpanel.php:268 msgid "Theme path" msgstr "" +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + #: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "個人圖像" @@ -2022,6 +1946,10 @@ msgstr "" msgid "Background path" msgstr "" +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "" + #: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "" @@ -2030,6 +1958,10 @@ msgstr "" msgid "Never" msgstr "" +#: actions/pathsadminpanel.php:324 +msgid "Sometimes" +msgstr "" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2050,10 +1982,6 @@ msgstr "個人圖像" msgid "Server to direct SSL requests to" msgstr "" -#: actions/pathsadminpanel.php:352 -msgid "Save paths" -msgstr "" - #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2065,11 +1993,6 @@ msgstr "" msgid "People search" msgstr "" -#: actions/peopletag.php:142 -#, php-format -msgid "Users self-tagged with %1$s - page %2$d" -msgstr "" - #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -2096,7 +2019,7 @@ msgstr "全名" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:244 lib/groupeditform.php:161 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 msgid "Homepage" msgstr "個人首頁" @@ -2104,15 +2027,6 @@ msgstr "個人首頁" msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: actions/profilesettings.php:122 actions/register.php:468 -#, php-format -msgid "Describe yourself and your interests in %d chars" -msgstr "" - -#: actions/profilesettings.php:125 actions/register.php:471 -msgid "Describe yourself and your interests" -msgstr "" - #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "自我介紹" @@ -2183,7 +2097,7 @@ msgid "Couldn't save profile." msgstr "無法儲存個人資料" #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "" @@ -2209,10 +2123,6 @@ msgstr "" msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:168 -msgid "Public Stream Feed (Atom)" -msgstr "" - #: actions/public.php:188 #, php-format msgid "" @@ -2272,6 +2182,10 @@ msgid "" "one!" msgstr "" +#: actions/publictagcloud.php:134 +msgid "Tag cloud" +msgstr "" + #: actions/recoverpassword.php:62 msgid "No such recovery code." msgstr "無此恢復碼" @@ -2435,14 +2349,6 @@ msgstr "" msgid "All rights reserved." msgstr "" -#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:540 -#, php-format -msgid "" -"My text and files are available under %s except this private data: password, " -"email address, IM address, and phone number." -msgstr "" - #: actions/register.php:583 #, php-format msgid "" @@ -2504,10 +2410,6 @@ msgstr "" msgid "That’s a local profile! Login to subscribe." msgstr "" -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "" @@ -2516,44 +2418,20 @@ msgstr "" msgid "No notice specified." msgstr "無此通知" +#: actions/repeat.php:76 +msgid "You can't repeat your own notice." +msgstr "" + #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "此Jabber ID已有人使用" -#: actions/repeat.php:114 lib/noticelist.php:676 -msgid "Repeated" -msgstr "" - -#: actions/repeat.php:119 -msgid "Repeated!" -msgstr "" - #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "" -#: actions/replies.php:128 -#, php-format -msgid "Replies to %1$s, page %2$d" -msgstr "" - -#: actions/replies.php:145 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:152 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:159 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - #: actions/replies.php:199 #, php-format msgid "" @@ -2575,30 +2453,17 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" - -#: actions/revokerole.php:75 -msgid "You cannot revoke user roles on this site." -msgstr "" - #: actions/revokerole.php:82 msgid "User doesn't have this role." msgstr "" -#: actions/rsd.php:146 actions/version.php:159 -msgid "StatusNet" -msgstr "" - #: actions/sandbox.php:72 msgid "User is already sandboxed." msgstr "" #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:392 +#: lib/adminpanelaction.php:379 msgid "Sessions" msgstr "" @@ -2628,15 +2493,10 @@ msgid "Save site settings" msgstr "使用者設定發生錯誤" #. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:182 +#: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:235 -msgid "Organization" -msgstr "" - #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 msgid "Statistics" @@ -2689,30 +2549,10 @@ msgstr "" msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" -#: actions/showfavorites.php:79 -#, php-format -msgid "%1$s's favorite notices, page %2$d" -msgstr "" - #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "無法更新使用者" -#: actions/showfavorites.php:171 -#, php-format -msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" - -#: actions/showfavorites.php:178 -#, php-format -msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" - -#: actions/showfavorites.php:185 -#, php-format -msgid "Feed for favorites of %s (Atom)" -msgstr "" - #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -2738,16 +2578,16 @@ msgstr "" msgid "This is a way to share what you like." msgstr "" -#: actions/showgroup.php:84 -#, php-format -msgid "%1$s group, page %2$d" -msgstr "" - #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" msgstr "" +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +msgid "Note" +msgstr "" + #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" msgstr "" @@ -2767,11 +2607,6 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:355 -#, php-format -msgid "FOAF for %s group" -msgstr "" - #: actions/showgroup.php:398 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 @@ -2782,10 +2617,6 @@ msgstr "" msgid "All members" msgstr "" -#: actions/showgroup.php:439 -msgid "Created" -msgstr "" - #: actions/showgroup.php:455 #, php-format msgid "" @@ -2828,16 +2659,6 @@ msgstr "" msgid " tagged %s" msgstr "" -#: actions/showstream.php:79 -#, php-format -msgid "%1$s, page %2$d" -msgstr "" - -#: actions/showstream.php:122 -#, php-format -msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "" - #: actions/showstream.php:129 #, php-format msgid "Notice feed for %s (RSS 1.0)" @@ -2898,6 +2719,10 @@ msgstr "" msgid "Repeat of %s" msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + #: actions/silence.php:72 msgid "User is already silenced." msgstr "" @@ -2927,10 +2752,6 @@ msgstr "" msgid "General" msgstr "" -#: actions/siteadminpanel.php:224 -msgid "Site name" -msgstr "" - #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -3011,11 +2832,6 @@ msgstr "使用者設定發生錯誤" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -msgid "SMS is not available." -msgstr "" - #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3058,6 +2874,11 @@ msgstr "" msgid "SMS preferences saved." msgstr "" +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +msgid "No carrier selected." +msgstr "" + #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." @@ -3100,7 +2921,7 @@ msgstr "" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:408 +#: lib/adminpanelaction.php:395 msgid "Snapshots" msgstr "" @@ -3165,11 +2986,6 @@ msgstr "" msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" -#: actions/subscribers.php:52 -#, php-format -msgid "%1$s subscribers, page %2$d" -msgstr "" - #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." @@ -3216,21 +3032,11 @@ msgstr "" msgid "SMS" msgstr "" -#: actions/tag.php:69 -#, php-format -msgid "Notices tagged with %1$s, page %2$d" -msgstr "" - #: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:93 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - #: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" @@ -3318,6 +3124,12 @@ msgstr "" msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "" + #: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" @@ -3342,10 +3154,6 @@ msgstr "" msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 -msgid "Invitations" -msgstr "" - #: actions/useradminpanel.php:256 msgid "Invitations enabled" msgstr "" @@ -3432,11 +3240,6 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - #: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." @@ -3456,12 +3259,6 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" -#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. -#: actions/usergroups.php:66 -#, php-format -msgid "%1$s groups, page %2$d" -msgstr "" - #: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" @@ -3525,11 +3322,6 @@ msgstr "" msgid "Plugins" msgstr "" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 -msgid "Version" -msgstr "" - #: actions/version.php:199 msgid "Author(s)" msgstr "" @@ -3641,11 +3433,6 @@ msgstr "" msgid "Bad type provided to saveKnownGroups" msgstr "" -#. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 -msgid "Problem saving group inbox." -msgstr "" - #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1759 @@ -3678,7 +3465,7 @@ msgid "Unable to save tag." msgstr "無法儲存個人資料" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:75 lib/oauthstore.php:465 +#: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" @@ -3749,30 +3536,17 @@ msgstr "" msgid "Untitled page" msgstr "" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +msgid "Primary site navigation" +msgstr "" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 -msgctxt "MENU" -msgid "Personal" -msgstr "" - -#. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 -msgctxt "TOOLTIP" -msgid "Change your email, avatar, password, profile" -msgstr "" - -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "" - #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -3785,7 +3559,8 @@ msgid "Change site configuration" msgstr "無確認碼" #. TRANS: Main menu option when logged in and site admin for access to site configuration -#: lib/action.php:474 +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" @@ -3797,12 +3572,6 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 -msgctxt "MENU" -msgid "Invite" -msgstr "" - #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -3815,18 +3584,6 @@ msgctxt "MENU" msgid "Logout" msgstr "登入" -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "" - -#. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 -msgctxt "MENU" -msgid "Register" -msgstr "" - #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" @@ -3849,6 +3606,11 @@ msgstr "" msgid "Local views" msgstr "" +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +msgid "Secondary site navigation" +msgstr "" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3893,22 +3655,17 @@ msgstr "" msgid "StatusNet software license" msgstr "" -#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. -#: lib/action.php:843 -#, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." -msgstr "" - #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:846 +#: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%**是個微型部落格" #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. -#: lib/action.php:850 +#. 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:856 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3916,216 +3673,237 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#. TRANS: DT element for StatusNet site content license. -#: lib/action.php:866 -msgid "Site content license" -msgstr "" - #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:873 +#: lib/action.php:879 #, 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:880 +#: lib/action.php:886 #, 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:884 +#: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#. TRANS: license message in footer. %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:897 +#. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1236 +#: lib/action.php:1243 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1247 +#: lib/action.php:1254 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:1257 -msgid "Before" -msgstr "" - #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." msgstr "" -#: lib/activityutils.php:208 +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 msgid "Can't handle remote content yet." msgstr "" -#: lib/activityutils.php:244 +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activityutils.php:248 +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:110 +#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:229 +#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:259 +#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:284 +#: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:350 +#: lib/adminpanelaction.php:337 msgid "Basic site configuration" msgstr "無確認碼" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:358 +#: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "無確認碼" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:360 -msgctxt "MENU" -msgid "Design" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:366 +#: lib/adminpanelaction.php:353 msgid "User configuration" msgstr "無確認碼" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:368 lib/personalgroupnav.php:115 +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:374 +#: lib/adminpanelaction.php:361 msgid "Access configuration" msgstr "無確認碼" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:382 +#: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "無確認碼" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:390 +#: lib/adminpanelaction.php:377 msgid "Sessions configuration" msgstr "無確認碼" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:406 +#: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "無確認碼" #. TRANS: Client error 401. -#: lib/apiauth.php:113 +#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +msgid "No user for that token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token" +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token" +msgstr "" + #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:209 -#, php-format -msgid "Describe your application in %d characters" +#: lib/applicationeditform.php:215 +msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:226 +#: lib/applicationeditform.php:217 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:251 +#: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:278 +#: lib/applicationeditform.php:269 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:295 +#: lib/applicationeditform.php:286 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:297 +#: lib/applicationeditform.php:288 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:320 +#: lib/applicationeditform.php:311 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:339 +#: lib/applicationeditform.php:330 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:341 +#: lib/applicationeditform.php:332 msgid "Default access for this application: read-only, or read-write" msgstr "" -#. TRANS: Submit button title -#: lib/applicationeditform.php:359 +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 msgid "Cancel" msgstr "取消" #. TRANS: Application access type -#: lib/applicationlist.php:136 +#: lib/applicationlist.php:135 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:138 +#: lib/applicationlist.php:137 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:144 +#: lib/applicationlist.php:143 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:159 +#: lib/applicationlist.php:158 msgctxt "BUTTON" msgid "Revoke" msgstr "" @@ -4140,7 +3918,8 @@ msgstr "" msgid "Provider" msgstr "" -#: lib/attachmentnoticesection.php:67 +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" msgstr "" @@ -4152,6 +3931,11 @@ msgstr "" msgid "Password changing is not allowed" msgstr "" +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "" + #: lib/channel.php:229 lib/mailhandler.php:142 msgid "Command complete" msgstr "" @@ -4171,6 +3955,13 @@ msgstr "" msgid "User has no last notice." msgstr "" +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." @@ -4212,6 +4003,13 @@ msgstr "" msgid "%1$s joined group %2$s." msgstr "" +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 #, php-format @@ -4227,13 +4025,6 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." 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:554 -#, php-format -msgid "Notice from %s repeated." -msgstr "" - #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -4311,8 +4102,15 @@ msgstr "" 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:813 +#, php-format +msgid "Unsubscribed %s." +msgstr "" + #. TRANS: Text shown after requesting other users a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:836 msgid "You are subscribed to this person:" @@ -4320,7 +4118,7 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "此帳號已註冊" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). -#. TRANS: This message support plural forms. This message is followed by a +#. 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:863 msgid "This person is subscribed to you:" @@ -4328,13 +4126,14 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "無此訂閱" #. TRANS: Text shown after requesting groups a user is subscribed to. -#. TRANS: This message support plural forms. This message is followed by a +#. 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:890 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "無法連結到伺服器:%s" +#. TRANS: Help text for commands. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4475,15 +4274,6 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4494,35 +4284,19 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -#: lib/groupnav.php:85 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:101 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:102 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:108 -#, php-format -msgid "Edit %s group properties" -msgstr "" - -#: lib/groupnav.php:113 -msgid "Logo" -msgstr "登入" - -#: lib/groupnav.php:114 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#: lib/groupnav.php:120 +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 #, php-format +msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" @@ -4553,7 +4327,8 @@ msgstr "" msgid "That file is too big. The maximum file size is %s." msgstr "" -#: lib/imagefile.php:101 lib/mediafile.php:170 +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." msgstr "" @@ -4595,10 +4370,6 @@ msgstr "" msgid "Login with a username and password" msgstr "使用者名稱或密碼錯誤" -#: lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" @@ -4635,22 +4406,6 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail -#: lib/mail.php:254 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -4720,12 +4475,6 @@ msgid "" "%5$s\n" msgstr "" -#. TRANS: Subject for favorite notification email -#: lib/mail.php:589 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -4817,48 +4566,64 @@ msgstr "" msgid "Unsupported message type: %s" msgstr "" -#: lib/mediafile.php:98 lib/mediafile.php:123 +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." msgstr "" -#: lib/mediafile.php:142 +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: lib/mediafile.php:147 +#. TRANS: Client exception. +#: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: lib/mediafile.php:152 +#. TRANS: Client exception. +#: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." msgstr "" -#: lib/mediafile.php:162 +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 msgid "Failed to write file to disk." msgstr "" -#: lib/mediafile.php:165 +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 msgid "File upload stopped by extension." msgstr "" -#: lib/mediafile.php:179 lib/mediafile.php:217 +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." msgstr "" -#: lib/mediafile.php:197 lib/mediafile.php:234 +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." msgstr "" -#: lib/mediafile.php:318 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 #, php-format -msgid " Try using another %s format." +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." msgstr "" -#: lib/mediafile.php:323 +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 #, php-format -msgid "%s is not a supported file type on this server." +msgid "\"%s\" is not a supported file type on this server." msgstr "" #: lib/messageform.php:120 @@ -4930,10 +4695,6 @@ msgstr "" msgid "web" msgstr "" -#: lib/noticelist.php:603 -msgid "Repeated by" -msgstr "" - #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "" @@ -4942,27 +4703,19 @@ msgstr "" msgid "Reply" msgstr "" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + #: lib/nudgeform.php:128 msgid "Nudge" msgstr "" -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "新的更人資料輸入錯誤" +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "個人圖像插入錯誤" - -#: lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "更新遠端個人資料發生錯誤" - -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" - -#: lib/oauthstore.php:490 +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" @@ -4982,16 +4735,25 @@ msgstr "" msgid "Inbox" msgstr "" +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "" + #: lib/personalgroupnav.php:130 msgid "Outbox" msgstr "" +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" msgstr "" -#: lib/plugin.php:115 +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 msgid "Unknown" msgstr "" @@ -5024,6 +4786,10 @@ msgstr "" msgid "Public" msgstr "" +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" @@ -5036,23 +4802,10 @@ msgstr "" msgid "Popular" msgstr "" -#: lib/repeatform.php:107 -msgid "Repeat this notice?" -msgstr "" - #: lib/repeatform.php:132 msgid "Yes" msgstr "" -#: lib/repeatform.php:132 -msgid "Repeat this notice" -msgstr "" - -#: lib/revokeroleform.php:91 -#, php-format -msgid "Revoke the \"%s\" role from this user" -msgstr "" - #: lib/router.php:709 msgid "No single user defined for single-user mode." msgstr "" @@ -5061,19 +4814,24 @@ msgstr "" msgid "Sandbox" msgstr "" -#: lib/searchaction.php:120 +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 msgid "Search site" msgstr "" -#: lib/searchaction.php:126 +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 msgid "Keyword(s)" msgstr "" -#: lib/searchaction.php:127 +#: lib/searchaction.php:130 +msgctxt "BUTTON" msgid "Search" msgstr "" -#: lib/searchaction.php:162 +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 msgid "Search help" msgstr "" @@ -5101,10 +4859,6 @@ msgstr "" msgid "More..." msgstr "" -#: lib/silenceform.php:67 -msgid "Silence" -msgstr "" - #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -5216,20 +4970,21 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1102 +#: lib/util.php:1103 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1105 +#: lib/util.php:1106 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1109 #, php-format -msgid "about %d minutes ago" -msgstr "" +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 @@ -5237,35 +4992,38 @@ msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1116 +#: lib/util.php:1115 #, php-format -msgid "about %d hours ago" -msgstr "" +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1119 +#: lib/util.php:1118 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1123 +#: lib/util.php:1121 #, php-format -msgid "about %d days ago" -msgstr "" +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1126 +#: lib/util.php:1124 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1127 #, php-format -msgid "about %d months ago" -msgstr "" +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1133 +#: lib/util.php:1130 msgid "about a year ago" msgstr "" From c218eb50774ddee74c501544f45220083e1db74b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 14 Sep 2010 22:30:55 +0200 Subject: [PATCH 037/310] L10n: Fix punctuation. --- lib/apioauthstore.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 84c4c78e53..01116ad3e9 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -175,11 +175,11 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $rt->state = 0; if (!$rt->find(true)) { // TRANS: Exception thrown when an attempt is made to revoke an unknown token. - throw new Exception(_('Tried to revoke unknown token')); + throw new Exception(_('Tried to revoke unknown token.')); } if (!$rt->delete()) { // TRANS: Exception thrown when an attempt is made to remove a revoked token. - throw new Exception(_('Failed to delete revoked token')); + throw new Exception(_('Failed to delete revoked token.')); } } } From db1d348135b223585fd96d3c7faac798ca040249 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 15 Sep 2010 01:16:45 +0200 Subject: [PATCH 038/310] Update/add pot files for plugins. --- plugins/Adsense/locale/Adsense.pot | 92 +++++ plugins/AutoSandbox/locale/AutoSandbox.pot | 15 +- plugins/Autocomplete/locale/Autocomplete.pot | 4 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 6 +- plugins/Blacklist/locale/Blacklist.pot | 66 +++- .../locale/CasAuthentication.pot | 2 +- .../locale/ClientSideShorten.pot | 4 +- .../locale/DirectionDetector.pot | 5 +- .../locale/EmailAuthentication.pot | 2 +- plugins/Facebook/locale/Facebook.pot | 28 +- plugins/FirePHP/locale/FirePHP.pot | 4 +- plugins/Gravatar/locale/Gravatar.pot | 26 +- plugins/Imap/locale/Imap.pot | 4 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/LdapAuthentication.pot | 2 +- .../locale/LdapAuthorization.pot | 2 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- plugins/Mapstraction/locale/Mapstraction.pot | 12 +- plugins/Minify/locale/Minify.pot | 4 +- .../MobileProfile/locale/MobileProfile.pot | 4 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 21 ++ plugins/OStatus/locale/OStatus.pot | 85 ++--- .../locale/OpenExternalLinkTarget.pot | 2 +- plugins/OpenID/locale/OpenID.pot | 335 +++++++++++++----- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/PoweredByStatusNet.pot | 2 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- plugins/RSSCloud/locale/RSSCloud.pot | 4 +- plugins/Recaptcha/locale/Recaptcha.pot | 4 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/RequireValidatedEmail.pot | 8 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- plugins/Sample/locale/Sample.pot | 6 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- plugins/SubMirror/locale/SubMirror.pot | 110 ++++++ plugins/TabFocus/locale/TabFocus.pot | 2 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- plugins/TinyMCE/locale/TinyMCE.pot | 21 ++ .../TwitterBridge/locale/TwitterBridge.pot | 50 +-- .../WikiHowProfile/locale/WikiHowProfile.pot | 33 ++ 40 files changed, 732 insertions(+), 249 deletions(-) create mode 100644 plugins/Adsense/locale/Adsense.pot create mode 100644 plugins/NoticeTitle/locale/NoticeTitle.pot create mode 100644 plugins/SubMirror/locale/SubMirror.pot create mode 100644 plugins/TinyMCE/locale/TinyMCE.pot create mode 100644 plugins/WikiHowProfile/locale/WikiHowProfile.pot diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot new file mode 100644 index 0000000000..d4bed3af5f --- /dev/null +++ b/plugins/Adsense/locale/Adsense.pot @@ -0,0 +1,92 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-14 22:56+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: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index b01f9dc893..c6712c6b83 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,3 +19,16 @@ msgstr "" #: AutoSandboxPlugin.php:66 msgid "Automatically sandboxes newly registered members." msgstr "" + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" + +#: AutoSandboxPlugin.php:78 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index c0274af85a..2fd61cfde5 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: AutocompletePlugin.php:79 +#: AutocompletePlugin.php:80 msgid "" "The autocomplete plugin allows users to autocomplete screen names in @ " "replies. When an \"@\" is typed into the notice text area, an autocomplete " diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 28023759aa..12012ba886 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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" +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "" + #: BitlyUrlPlugin.php:60 #, php-format msgid "Uses %1$s URL-shortener service." diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 90eda0941d..88db86ebd4 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,39 +16,75 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: BlacklistPlugin.php:153 +#: BlacklistPlugin.php:148 #, php-format -msgid "You may not register with homepage '%s'" +msgid "You may not register with homepage '%s'." msgstr "" -#: BlacklistPlugin.php:163 +#: BlacklistPlugin.php:158 #, php-format -msgid "You may not register with nickname '%s'" +msgid "You may not register with nickname '%s'." msgstr "" -#: BlacklistPlugin.php:188 +#: BlacklistPlugin.php:182 #, php-format -msgid "You may not use homepage '%s'" +msgid "You may not use homepage '%s'." msgstr "" -#: BlacklistPlugin.php:198 +#: BlacklistPlugin.php:192 #, php-format -msgid "You may not use nickname '%s'" +msgid "You may not use nickname '%s'." msgstr "" -#: BlacklistPlugin.php:242 +#: BlacklistPlugin.php:234 #, php-format -msgid "You may not use url '%s' in notices" +msgid "You may not use UTL \"%s\" in notices." msgstr "" -#: BlacklistPlugin.php:351 -msgid "Keep a blacklist of forbidden nickname and URL patterns." +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" -#: blacklistadminpanel.php:185 +#: BlacklistPlugin.php:376 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + +#: BlacklistPlugin.php:377 +msgid "Blacklist configuration" +msgstr "" + +#: BlacklistPlugin.php:403 +msgid "Add this nickname pattern to blacklist" +msgstr "" + +#: BlacklistPlugin.php:412 +msgid "Add this homepage pattern to blacklist" +msgstr "" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "" + +#: blacklistadminpanel.php:174 msgid "Nicknames" msgstr "" -#: blacklistadminpanel.php:193 +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:182 msgid "URLs" msgstr "" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 20a2bf2330..b5c45eb68e 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 83caff3221..d2b4862dd0 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,6 +22,6 @@ msgid "" "shorten urls as they entered, and before the notice is submitted." msgstr "" -#: shorten.php:55 +#: shorten.php:56 msgid "'text' argument must be specified." msgstr "" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 44bbcca4dd..d0199a0407 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-08 22:32+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DirectionDetectorPlugin.php:222 +#. TRANS: Direction detector plugin description. +#: DirectionDetectorPlugin.php:221 msgid "Shows notices with right-to-left content in correct direction." msgstr "" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index d945e2537a..b0d096a49a 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index dce10d230f..14bd372d66 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: facebookutil.php:285 +#: facebookutil.php:439 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -378,46 +378,38 @@ msgstr "" msgid "Not sure what you're trying to do." msgstr "" -#: facebooksettings.php:74 +#: facebooksettings.php:63 msgid "There was a problem saving your sync preferences!" msgstr "" -#: facebooksettings.php:76 +#: facebooksettings.php:65 msgid "Sync preferences saved." msgstr "" -#: facebooksettings.php:99 +#: facebooksettings.php:88 msgid "Automatically update my Facebook status with my notices." msgstr "" -#: facebooksettings.php:106 +#: facebooksettings.php:95 msgid "Send \"@\" replies to Facebook." msgstr "" -#: facebooksettings.php:115 -msgid "Prefix" -msgstr "" - -#: facebooksettings.php:117 -msgid "A string to prefix notices with." -msgstr "" - -#: facebooksettings.php:123 +#: facebooksettings.php:102 msgid "Save" msgstr "" -#: facebooksettings.php:133 +#: facebooksettings.php:112 #, php-format msgid "" "If you would like %s to automatically update your Facebook status with your " "latest notice, you need to give it permission." msgstr "" -#: facebooksettings.php:146 +#: facebooksettings.php:125 #, php-format msgid "Allow %s to update my Facebook status" msgstr "" -#: facebooksettings.php:156 +#: facebooksettings.php:135 msgid "Sync preferences" msgstr "" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index fa16f283eb..c4b10a499e 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: FirePHPPlugin.php:66 +#: FirePHPPlugin.php:68 msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." msgstr "" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index d3a4cd86b8..9a71b81663 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,51 +16,51 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: GravatarPlugin.php:57 +#: GravatarPlugin.php:60 msgid "Set Gravatar" msgstr "" -#: GravatarPlugin.php:60 +#: GravatarPlugin.php:63 msgid "If you want to use your Gravatar image, click \"Add\"." msgstr "" -#: GravatarPlugin.php:65 +#: GravatarPlugin.php:68 msgid "Add" msgstr "" -#: GravatarPlugin.php:75 +#: GravatarPlugin.php:78 msgid "Remove Gravatar" msgstr "" -#: GravatarPlugin.php:78 +#: GravatarPlugin.php:81 msgid "If you want to remove your Gravatar image, click \"Remove\"." msgstr "" -#: GravatarPlugin.php:83 +#: GravatarPlugin.php:86 msgid "Remove" msgstr "" -#: GravatarPlugin.php:88 +#: GravatarPlugin.php:91 msgid "To use a Gravatar first enter in an email address." msgstr "" -#: GravatarPlugin.php:137 +#: GravatarPlugin.php:141 msgid "You do not have a email set in your profile." msgstr "" -#: GravatarPlugin.php:155 +#: GravatarPlugin.php:159 msgid "Failed to save Gravatar to the DB." msgstr "" -#: GravatarPlugin.php:159 +#: GravatarPlugin.php:163 msgid "Gravatar added." msgstr "" -#: GravatarPlugin.php:177 +#: GravatarPlugin.php:181 msgid "Gravatar removed." msgstr "" -#: GravatarPlugin.php:196 +#: GravatarPlugin.php:201 msgid "" "The Gravatar plugin allows users to use their Gravatar with StatusNet." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index ee8452aaaf..9d807a3d35 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,7 +20,7 @@ msgstr "" msgid "Error" msgstr "" -#: ImapPlugin.php:101 +#: ImapPlugin.php:103 msgid "" "The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " "incoming mail containing user posts." diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index a0f466fcb4..52f9ef1eaa 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 8f09b1e51e..ce84cbf0e0 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 8156f6146f..11e7fc5c82 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 47ed367277..2785ee8005 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 764bf7b291..3d7f71f89b 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,25 +30,25 @@ msgid "" "mapstraction.com/\">Mapstraction JavaScript library." msgstr "" -#: map.php:72 +#: map.php:73 msgid "No such user." msgstr "" -#: map.php:79 +#: map.php:80 msgid "User has no profile." msgstr "" -#: allmap.php:71 +#: allmap.php:72 #, php-format msgid "%s friends map" msgstr "" -#: allmap.php:74 +#: allmap.php:75 #, php-format msgid "%s friends map, page %d" msgstr "" -#: usermap.php:71 +#: usermap.php:72 #, php-format msgid "%s map, page %d" msgstr "" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 6f7372d405..2f65c5df2c 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MinifyPlugin.php:179 +#: MinifyPlugin.php:180 msgid "" "The Minify plugin minifies your CSS and Javascript, removing whitespace and " "comments." diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 9495e975b9..c4af49a226 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MobileProfilePlugin.php:424 +#: MobileProfilePlugin.php:429 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot new file mode 100644 index 0000000000..1a451ba74c --- /dev/null +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-14 22:56+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" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices" +msgstr "" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 97d593eadd..3dc6fd6ade 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,133 +16,126 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: OStatusPlugin.php:210 OStatusPlugin.php:913 actions/ostatusinit.php:99 +#: OStatusPlugin.php:226 OStatusPlugin.php:951 actions/ostatusinit.php:99 msgid "Subscribe" msgstr "" -#: OStatusPlugin.php:228 OStatusPlugin.php:635 actions/ostatussub.php:105 +#: OStatusPlugin.php:244 OStatusPlugin.php:663 actions/ostatussub.php:105 #: actions/ostatusinit.php:96 msgid "Join" msgstr "" -#: OStatusPlugin.php:451 +#: OStatusPlugin.php:456 #, php-format msgid "Sent from %s via OStatus" msgstr "" -#: OStatusPlugin.php:503 +#: OStatusPlugin.php:527 msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:619 +#: OStatusPlugin.php:647 msgid "Could not set up remote group membership." msgstr "" -#: OStatusPlugin.php:636 -#, php-format -msgid "%s has joined group %s." -msgstr "" - -#: OStatusPlugin.php:644 +#: OStatusPlugin.php:674 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:684 +#: OStatusPlugin.php:714 msgid "Leave" msgstr "" -#: OStatusPlugin.php:685 -#, php-format -msgid "%s has left group %s." -msgstr "" - -#: OStatusPlugin.php:844 +#: OStatusPlugin.php:880 msgid "Remote" msgstr "" -#: OStatusPlugin.php:883 +#: OStatusPlugin.php:919 msgid "Profile update" msgstr "" -#: OStatusPlugin.php:884 +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:922 #, php-format msgid "%s has updated their profile page." msgstr "" -#: OStatusPlugin.php:928 +#: OStatusPlugin.php:966 msgid "" "Follow people across social networks that implement OStatus." msgstr "" -#: classes/Ostatus_profile.php:566 +#: classes/Ostatus_profile.php:592 msgid "Show more" msgstr "" -#: classes/Ostatus_profile.php:1004 +#: classes/Ostatus_profile.php:1035 #, php-format -msgid "Invalid avatar URL %s" +msgid "Invalid avatar URL %s." msgstr "" -#: classes/Ostatus_profile.php:1014 +#: classes/Ostatus_profile.php:1045 #, php-format -msgid "Tried to update avatar for unsaved remote profile %s" +msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -#: classes/Ostatus_profile.php:1022 +#: classes/Ostatus_profile.php:1053 #, php-format -msgid "Unable to fetch avatar from %s" +msgid "Unable to fetch avatar from %s." msgstr "" -#: lib/salmonaction.php:41 +#. TRANS: POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 msgid "This method requires a POST." msgstr "" -#: lib/salmonaction.php:45 -msgid "Salmon requires application/magic-envelope+xml" +#: lib/salmonaction.php:46 +msgid "Salmon requires \"application/magic-envelope+xml\"." msgstr "" #: lib/salmonaction.php:55 msgid "Salmon signature verification failed." msgstr "" -#: lib/salmonaction.php:67 +#: lib/salmonaction.php:66 msgid "Salmon post must be an Atom entry." msgstr "" -#: lib/salmonaction.php:115 +#: lib/salmonaction.php:114 msgid "Unrecognized activity type." msgstr "" -#: lib/salmonaction.php:123 +#: lib/salmonaction.php:122 msgid "This target doesn't understand posts." msgstr "" -#: lib/salmonaction.php:128 +#: lib/salmonaction.php:127 msgid "This target doesn't understand follows." msgstr "" -#: lib/salmonaction.php:133 +#: lib/salmonaction.php:132 msgid "This target doesn't understand unfollows." msgstr "" -#: lib/salmonaction.php:138 +#: lib/salmonaction.php:137 msgid "This target doesn't understand favorites." msgstr "" -#: lib/salmonaction.php:143 +#: lib/salmonaction.php:142 msgid "This target doesn't understand unfavorites." msgstr "" -#: lib/salmonaction.php:148 +#: lib/salmonaction.php:147 msgid "This target doesn't understand share events." msgstr "" -#: lib/salmonaction.php:153 +#: lib/salmonaction.php:152 msgid "This target doesn't understand joins." msgstr "" -#: lib/salmonaction.php:158 +#: lib/salmonaction.php:157 msgid "This target doesn't understand leave events." msgstr "" @@ -155,7 +148,7 @@ msgid "Join group" msgstr "" #: actions/ostatusgroup.php:77 -msgid "OStatus group's address, like http://example.net/group/nickname" +msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" #: actions/ostatusgroup.php:81 actions/ostatussub.php:71 @@ -249,7 +242,7 @@ msgstr "" #: actions/ostatussub.php:272 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " -"address is like nickname@example.com or http://example.net/nickname" +"address is like nickname@example.com or http://example.net/nickname." msgstr "" #: actions/ostatussub.php:256 actions/ostatussub.php:259 @@ -303,7 +296,7 @@ msgid "User nickname" msgstr "" #: actions/ostatusinit.php:112 -msgid "Nickname of the user you want to follow" +msgid "Nickname of the user you want to follow." msgstr "" #: actions/ostatusinit.php:116 @@ -311,7 +304,7 @@ msgid "Profile Account" msgstr "" #: actions/ostatusinit.php:117 -msgid "Your account id (i.e. user@identi.ca)" +msgid "Your account id (e.g. user@identi.ca)." msgstr "" #: actions/ostatusinit.php:138 diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index f9bd4af10e..2fbe4cfa2b 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 70908422e5..0a84e060da 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: openidsettings.php:59 +#: openidsettings.php:59 openidadminpanel.php:65 msgid "OpenID settings" msgstr "" @@ -27,204 +27,311 @@ msgid "" "account. Manage your associated OpenIDs from here." msgstr "" -#: openidsettings.php:99 +#: openidsettings.php:101 msgid "Add OpenID" msgstr "" -#: openidsettings.php:102 +#: openidsettings.php:104 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -#: openidsettings.php:107 openidlogin.php:119 +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 msgid "OpenID URL" msgstr "" -#: openidsettings.php:117 +#: openidsettings.php:119 msgid "Add" msgstr "" -#: openidsettings.php:129 +#: openidsettings.php:131 msgid "Remove OpenID" msgstr "" -#: openidsettings.php:134 +#: openidsettings.php:136 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -#: openidsettings.php:149 +#: openidsettings.php:151 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -#: openidsettings.php:172 openidsettings.php:213 +#: openidsettings.php:174 openidsettings.php:215 msgid "Remove" msgstr "" -#: openidsettings.php:186 +#: openidsettings.php:188 msgid "OpenID Trusted Sites" msgstr "" -#: openidsettings.php:189 +#: openidsettings.php:191 msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." msgstr "" -#: openidsettings.php:231 finishopenidlogin.php:38 openidlogin.php:39 +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: openidsettings.php:247 finishopenidlogin.php:51 +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "" + +#: openidsettings.php:253 msgid "Something weird happened." msgstr "" -#: openidsettings.php:271 +#: openidsettings.php:277 msgid "No such OpenID trustroot." msgstr "" -#: openidsettings.php:275 +#: openidsettings.php:281 msgid "Trustroots removed" msgstr "" -#: openidsettings.php:298 +#: openidsettings.php:304 msgid "No such OpenID." msgstr "" -#: openidsettings.php:303 +#: openidsettings.php:309 msgid "That OpenID does not belong to you." msgstr "" -#: openidsettings.php:307 +#: openidsettings.php:313 msgid "OpenID removed." msgstr "" -#: openid.php:137 +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "" + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "" + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 msgid "Cannot instantiate OpenID consumer object." msgstr "" -#: openid.php:147 +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 msgid "Not a valid OpenID." msgstr "" -#: openid.php:149 +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 #, php-format msgid "OpenID failure: %s" msgstr "" -#: openid.php:176 +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 #, php-format msgid "Could not redirect to server: %s" msgstr "" -#: openid.php:194 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "" - -#: openid.php:210 +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" -#: openid.php:242 +#. TRANS: OpenID plugin server error. +#: openid.php:280 msgid "Error saving the profile." msgstr "" -#: openid.php:253 +#. TRANS: OpenID plugin server error. +#: openid.php:292 msgid "Error saving the user." msgstr "" -#: openid.php:282 +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 msgid "Unauthorized URL used for OpenID login." msgstr "" -#: openid.php:302 +#. TRANS: Title +#: openid.php:370 msgid "OpenID Login Submission" msgstr "" -#: openid.php:312 +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 msgid "Requesting authorization from your login provider..." msgstr "" -#: openid.php:315 +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 msgid "" "If you are not redirected to your login provider in a few seconds, try " "pushing the button below." msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:204 +#: OpenIDPlugin.php:221 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: OpenIDPlugin.php:207 +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:212 +#: OpenIDPlugin.php:229 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: OpenIDPlugin.php:215 +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:238 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: OpenIDPlugin.php:224 +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 msgctxt "MENU" msgid "Search" msgstr "" -#: OpenIDPlugin.php:283 OpenIDPlugin.php:319 +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" msgid "OpenID" msgstr "" -#: OpenIDPlugin.php:284 +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 msgid "Login or register with OpenID" msgstr "" -#: OpenIDPlugin.php:320 +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 msgid "Add or remove OpenIDs" msgstr "" -#: OpenIDPlugin.php:595 +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 msgid "Use OpenID to login to the site." msgstr "" -#: openidserver.php:106 +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 #, php-format msgid "You are not authorized to use the identity %s." msgstr "" -#: openidserver.php:126 +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "" -#: finishopenidlogin.php:34 openidlogin.php:30 +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 msgid "Already logged in." msgstr "" -#: finishopenidlogin.php:43 +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 msgid "You can't register if you don't agree to the license." msgstr "" -#: finishopenidlogin.php:65 +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "" + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -232,130 +339,183 @@ msgid "" "your existing account, if you have one." msgstr "" -#: finishopenidlogin.php:71 +#. TRANS: Title +#: finishopenidlogin.php:78 msgid "OpenID Account Setup" msgstr "" -#: finishopenidlogin.php:101 +#: finishopenidlogin.php:108 msgid "Create new account" msgstr "" -#: finishopenidlogin.php:103 +#: finishopenidlogin.php:110 msgid "Create a new user with this nickname." msgstr "" -#: finishopenidlogin.php:106 +#: finishopenidlogin.php:113 msgid "New nickname" msgstr "" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:115 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -#: finishopenidlogin.php:130 +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" msgid "Create" msgstr "" -#: finishopenidlogin.php:135 +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 msgid "Connect existing account" msgstr "" -#: finishopenidlogin.php:137 +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -#: finishopenidlogin.php:140 +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 msgid "Existing nickname" msgstr "" -#: finishopenidlogin.php:143 +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 msgid "Password" msgstr "" -#: finishopenidlogin.php:146 +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" msgid "Connect" msgstr "" -#: finishopenidlogin.php:158 finishaddopenid.php:88 +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "" -#: finishopenidlogin.php:162 finishaddopenid.php:92 +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "" -#: finishopenidlogin.php:227 finishopenidlogin.php:236 +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 msgid "Registration not allowed." msgstr "" -#: finishopenidlogin.php:243 +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 msgid "Not a valid invitation code." msgstr "" -#: finishopenidlogin.php:253 +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: finishopenidlogin.php:258 +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 msgid "Nickname not allowed." msgstr "" -#: finishopenidlogin.php:263 +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 msgid "Nickname already in use. Try another one." msgstr "" -#: finishopenidlogin.php:270 finishopenidlogin.php:350 +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 msgid "Stored OpenID not found." msgstr "" -#: finishopenidlogin.php:279 +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 msgid "Creating new account for OpenID that already has a user." msgstr "" -#: finishopenidlogin.php:339 +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 msgid "Invalid username or password." msgstr "" -#: finishopenidlogin.php:357 +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 msgid "Error connecting user to OpenID." msgstr "" -#: openidlogin.php:68 +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 #, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." msgstr "" -#: openidlogin.php:72 +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "" -#: openidlogin.php:97 finishaddopenid.php:170 +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 msgid "OpenID Login" msgstr "" -#: openidlogin.php:114 +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 msgid "OpenID login" msgstr "" -#: openidlogin.php:121 +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "" + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 msgid "Your OpenID URL" msgstr "" -#: openidlogin.php:124 +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 msgid "Remember me" msgstr "" -#: openidlogin.php:125 +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 msgid "Automatically login in the future; not for shared computers!" msgstr "" -#: openidlogin.php:129 +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" msgid "Login" msgstr "" @@ -383,22 +543,27 @@ msgstr "" msgid "Cancel" msgstr "" -#: finishaddopenid.php:67 +#. TRANS: Client error message +#: finishaddopenid.php:68 msgid "Not logged in." msgstr "" -#: finishaddopenid.php:112 +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 msgid "You already have this OpenID!" msgstr "" -#: finishaddopenid.php:114 +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 msgid "Someone else already has this OpenID." msgstr "" -#: finishaddopenid.php:126 +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 msgid "Error connecting user." msgstr "" -#: finishaddopenid.php:131 +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 msgid "Error updating profile" msgstr "" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index b7107d4c17..0e9d768036 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index bc0e814f2c..1997cc04a2 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index a888f80e4a..b2f5947af9 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 4078cc749d..c7b28632b4 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RSSCloudPlugin.php:260 +#: RSSCloudPlugin.php:248 msgid "" "The RSSCloud plugin enables your StatusNet instance to publish real-time " "updates for profile RSS feeds using the \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RecaptchaPlugin.php:97 +#: RecaptchaPlugin.php:117 msgid "" "Uses Recaptcha service to add a " "captcha to the registration page." diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 834f5fd4ad..40327d16fe 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index c8953a1fa3..13c04c338a 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,15 +16,15 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RequireValidatedEmailPlugin.php:57 +#: RequireValidatedEmailPlugin.php:72 msgid "You must validate your email address before posting." msgstr "" -#: RequireValidatedEmailPlugin.php:75 +#: RequireValidatedEmailPlugin.php:90 msgid "You must provide an email address to register." msgstr "" -#: RequireValidatedEmailPlugin.php:128 +#: RequireValidatedEmailPlugin.php:169 msgid "" "The Require Validated Email plugin disables posting for accounts that do not " "have a validated email address." diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 6fa18c464c..df2523cb41 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/Sample.pot b/plugins/Sample/locale/Sample.pot index bd21dd3c4c..66bcb775d9 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: User_greeting_count.php:163 +#: User_greeting_count.php:168 #, php-format msgid "Could not save new greeting count for %d" msgstr "" -#: User_greeting_count.php:176 +#: User_greeting_count.php:181 #, php-format msgid "Could not increment greeting count for %d" msgstr "" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index e3c241d538..7edf70abf9 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot new file mode 100644 index 0000000000..f34de8f9f8 --- /dev/null +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -0,0 +1,110 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-14 22:56+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" + +#: SubMirrorPlugin.php:92 +msgid "Pull feeds into your timeline!" +msgstr "" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:111 +msgctxt "MENU" +msgid "Mirroring" +msgstr "" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:113 +msgid "Configure mirroring of posts from other feeds" +msgstr "" + +#: lib/editmirrorform.php:84 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "" + +#: lib/editmirrorform.php:88 +msgctxt "LABEL" +msgid "Local user" +msgstr "" + +#: lib/editmirrorform.php:94 +msgid "Mirroring style" +msgstr "" + +#: lib/editmirrorform.php:96 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" + +#: lib/editmirrorform.php:97 +msgid "Repost the content under my account" +msgstr "" + +#: lib/editmirrorform.php:116 +msgid "Save" +msgstr "" + +#: lib/editmirrorform.php:118 +msgid "Stop mirroring" +msgstr "" + +#: lib/addmirrorform.php:62 +msgid "Web page or feed URL:" +msgstr "" + +#: lib/addmirrorform.php:67 +msgid "Add feed" +msgstr "" + +#: actions/basemirror.php:73 +msgid "Invalid feed URL." +msgstr "" + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:85 +msgid "Invalid profile for mirroring." +msgstr "" + +#: actions/basemirror.php:103 +msgid "Can't mirror a StatusNet group at this time." +msgstr "" + +#: actions/editmirror.php:70 +msgid "Requested invalid profile to edit." +msgstr "" + +#: actions/editmirror.php:88 +msgid "Bad form data." +msgstr "" + +#: actions/editmirror.php:96 +msgid "Requested edit of missing mirror" +msgstr "" + +#: actions/addmirror.php:74 +msgid "Could not subscribe to feed." +msgstr "" + +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "" + +#: actions/mirrorsettings.php:53 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 3b0e3c261b..6de47bf08f 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 10f59a1e86..ea0821eee0 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+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/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot new file mode 100644 index 0000000000..788762ba85 --- /dev/null +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-14 22:56+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" + +#: TinyMCEPlugin.php:77 +msgid "Use TinyMCE library to allow rich text editing in the browser" +msgstr "" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index c7ac8053ca..b5f9061742 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" +"POT-Creation-Date: 2010-09-14 22:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: twitter.php:342 +#: twitter.php:363 msgid "Your Twitter bridge has been disabled." msgstr "" -#: twitter.php:346 +#: twitter.php:367 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that your link to Twitter has been " @@ -36,24 +36,24 @@ msgid "" "%3$s\n" msgstr "" -#: TwitterBridgePlugin.php:155 TwitterBridgePlugin.php:178 -#: TwitterBridgePlugin.php:291 twitteradminpanel.php:54 +#: TwitterBridgePlugin.php:156 TwitterBridgePlugin.php:179 +#: TwitterBridgePlugin.php:296 twitteradminpanel.php:54 msgid "Twitter" msgstr "" -#: TwitterBridgePlugin.php:156 +#: TwitterBridgePlugin.php:157 msgid "Login or register using Twitter" msgstr "" -#: TwitterBridgePlugin.php:179 +#: TwitterBridgePlugin.php:180 msgid "Twitter integration options" msgstr "" -#: TwitterBridgePlugin.php:292 +#: TwitterBridgePlugin.php:297 msgid "Twitter bridge configuration" msgstr "" -#: TwitterBridgePlugin.php:317 +#: TwitterBridgePlugin.php:322 msgid "" "The Twitter \"bridge\" plugin allows you to integrate your StatusNet " "instance with Twitter." @@ -63,60 +63,62 @@ msgstr "" msgid "Twitter bridge settings" msgstr "" -#: twitteradminpanel.php:148 +#: twitteradminpanel.php:150 msgid "Invalid consumer key. Max length is 255 characters." msgstr "" -#: twitteradminpanel.php:154 +#: twitteradminpanel.php:156 msgid "Invalid consumer secret. Max length is 255 characters." msgstr "" -#: twitteradminpanel.php:207 +#: twitteradminpanel.php:216 msgid "Twitter application settings" msgstr "" -#: twitteradminpanel.php:213 +#: twitteradminpanel.php:222 msgid "Consumer key" msgstr "" -#: twitteradminpanel.php:214 +#: twitteradminpanel.php:223 msgid "Consumer key assigned by Twitter" msgstr "" -#: twitteradminpanel.php:222 +#: twitteradminpanel.php:231 msgid "Consumer secret" msgstr "" -#: twitteradminpanel.php:223 +#: twitteradminpanel.php:232 msgid "Consumer secret assigned by Twitter" msgstr "" -#: twitteradminpanel.php:240 +#: twitteradminpanel.php:249 msgid "Integration source" msgstr "" -#: twitteradminpanel.php:241 +#: twitteradminpanel.php:250 msgid "Name of your Twitter application" msgstr "" -#: twitteradminpanel.php:253 +#: twitteradminpanel.php:262 msgid "Options" msgstr "" -#: twitteradminpanel.php:260 +#: twitteradminpanel.php:269 msgid "Enable \"Sign-in with Twitter\"" msgstr "" -#: twitteradminpanel.php:262 +#: twitteradminpanel.php:271 msgid "Allow users to login with their Twitter credentials" msgstr "" -#: twitteradminpanel.php:268 +#: twitteradminpanel.php:278 msgid "Enable Twitter import" msgstr "" -#: twitteradminpanel.php:270 -msgid "Allow users to import their Twitter friends' timelines" +#: twitteradminpanel.php:280 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." msgstr "" #: twitterauthorization.php:181 twitterauthorization.php:229 diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot new file mode 100644 index 0000000000..a1e49c769c --- /dev/null +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-14 22:56+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" + +#: WikiHowProfilePlugin.php:60 +msgid "" +"Fetches avatar and other profile info for WikiHow users when setting up an " +"account via OpenID." +msgstr "" + +#: WikiHowProfilePlugin.php:172 +#, php-format +msgid "Invalid avatar URL %s" +msgstr "" + +#: WikiHowProfilePlugin.php:179 +#, php-format +msgid "Unable to fetch avatar from %s" +msgstr "" From d2877f4c3d8d147396e570fd130eb93f16a5b1bb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 07:08:28 -0400 Subject: [PATCH 039/310] change user attribute from private to protected so subclasses can use it --- lib/atomusernoticefeed.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/atomusernoticefeed.php b/lib/atomusernoticefeed.php index 785db4915b..34a1870175 100644 --- a/lib/atomusernoticefeed.php +++ b/lib/atomusernoticefeed.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) */ class AtomUserNoticeFeed extends AtomNoticeFeed { - private $user; + protected $user; /** * Constructor @@ -90,7 +90,7 @@ class AtomUserNoticeFeed extends AtomNoticeFeed array('nickname' => $user->nickname) ) ); - + $self = common_local_url('ApiTimelineUser', array('id' => $user->id, 'format' => 'atom')); From fac1942dad983eb9f7f455c252c472873f9b2e60 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 07:11:24 -0400 Subject: [PATCH 040/310] better output for group membership as activity --- classes/Group_member.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/classes/Group_member.php b/classes/Group_member.php index c6ff24fed3..939a9cde76 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -100,16 +100,16 @@ class Group_member extends Memcached_DataObject $group->id, common_date_iso8601($this->created)); - $act->actor = ActivityObject::fromProfile($member); - $act->verb = ActivityVerb::JOIN; - $act->object = ActivityObject::fromGroup($group); + $act->actor = ActivityObject::fromProfile($member); + $act->verb = ActivityVerb::JOIN; + $act->objects[] = ActivityObject::fromGroup($group); $act->time = strtotime($this->created); - $act->title = _m("Join"); + $act->title = _("Join"); // 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. - $act->content = sprintf(_m("%1$s has joined group %2$s."), + $act->content = sprintf(_('%1$s has joined group %2$s.'), $member->getBestName(), $group->getBestName()); From 0a5aa9574650d597fd34de6d37226b1bbc81dc80 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 07:11:50 -0400 Subject: [PATCH 041/310] flag to leave out author information in activity output --- lib/activity.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/activity.php b/lib/activity.php index 606c614320..d3c725e630 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -319,7 +319,7 @@ class Activity return null; } - function asString($namespace=false) + function asString($namespace=false, $author=true) { $xs = new XMLStringer(true); @@ -353,13 +353,15 @@ class Activity // XXX: add context - $xs->elementStart('author'); - $xs->element('uri', array(), $this->actor->id); - if ($this->actor->title) { - $xs->element('name', array(), $this->actor->title); + if ($author) { + $xs->elementStart('author'); + $xs->element('uri', array(), $this->actor->id); + if ($this->actor->title) { + $xs->element('name', array(), $this->actor->title); + } + $xs->elementEnd('author'); + $xs->raw($this->actor->asString('activity:actor')); } - $xs->elementEnd('author'); - $xs->raw($this->actor->asString('activity:actor')); $xs->element('activity:verb', null, $this->verb); From 960ddd9704319356651440f602b63080e8f3a12a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 07:12:23 -0400 Subject: [PATCH 042/310] groups in backup output --- scripts/exportactivitystream.php | 33 ++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/scripts/exportactivitystream.php b/scripts/exportactivitystream.php index 85001f7b42..ef1008eb3b 100644 --- a/scripts/exportactivitystream.php +++ b/scripts/exportactivitystream.php @@ -34,6 +34,15 @@ END_OF_EXPORTACTIVITYSTREAM_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; +/** + * Class for activity streams + * + * Includes faves, notices, and subscriptions. + * + * We extend atomusernoticefeed since it does some nice setup for us. + * + */ + class UserActivityStream extends AtomUserNoticeFeed { function __construct($user, $indent = true) @@ -42,10 +51,11 @@ class UserActivityStream extends AtomUserNoticeFeed $subscriptions = $this->getSubscriptions(); $subscribers = $this->getSubscribers(); + $groups = $this->getGroups(); $faves = $this->getFaves(); $notices = $this->getNotices(); - $objs = array_merge($subscriptions, $subscribers, $faves, $notices); + $objs = array_merge($subscriptions, $subscribers, $groups, $faves, $notices); // Sort by create date @@ -53,7 +63,9 @@ class UserActivityStream extends AtomUserNoticeFeed foreach ($objs as $obj) { $act = $obj->asActivity(); - $this->addEntryRaw($act->asString(false)); + // Only show the author sub-element if it's different from default user + $str = $act->asString(false, ($act->actor->id != $this->user->uri)); + $this->addEntryRaw($str); } } @@ -136,6 +148,23 @@ class UserActivityStream extends AtomUserNoticeFeed return $notices; } + + function getGroups() + { + $groups = array(); + + $gm = new Group_member(); + + $gm->profile_id = $this->user->id; + + if ($gm->find()) { + while ($gm->fetch()) { + $groups[] = clone($gm); + } + } + + return $groups; + } } function getUser() From 518db025257225d3f5303284780bd19941f6a465 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 11:21:37 -0400 Subject: [PATCH 043/310] rename script to backupuser.php --- scripts/{exportactivitystream.php => backupuser.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename scripts/{exportactivitystream.php => backupuser.php} (100%) diff --git a/scripts/exportactivitystream.php b/scripts/backupuser.php similarity index 100% rename from scripts/exportactivitystream.php rename to scripts/backupuser.php From 1ceb93cce483794582f1a928de27592acb4f89cf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 15:18:01 -0400 Subject: [PATCH 044/310] move useractivitystream class to its own module --- lib/useractivitystream.php | 151 +++++++++++++++++++++++++++++++++++++ scripts/backupuser.php | 133 -------------------------------- 2 files changed, 151 insertions(+), 133 deletions(-) create mode 100644 lib/useractivitystream.php diff --git a/lib/useractivitystream.php b/lib/useractivitystream.php new file mode 100644 index 0000000000..0fc315e26e --- /dev/null +++ b/lib/useractivitystream.php @@ -0,0 +1,151 @@ +. + */ + +/** + * Class for activity streams + * + * Includes faves, notices, and subscriptions. + * + * We extend atomusernoticefeed since it does some nice setup for us. + * + */ + +class UserActivityStream extends AtomUserNoticeFeed +{ + function __construct($user, $indent = true) + { + parent::__construct($user, null, $indent); + + $subscriptions = $this->getSubscriptions(); + $subscribers = $this->getSubscribers(); + $groups = $this->getGroups(); + $faves = $this->getFaves(); + $notices = $this->getNotices(); + + $objs = array_merge($subscriptions, $subscribers, $groups, $faves, $notices); + + // Sort by create date + + usort($objs, 'UserActivityStream::compareObject'); + + foreach ($objs as $obj) { + $act = $obj->asActivity(); + // Only show the author sub-element if it's different from default user + $str = $act->asString(false, ($act->actor->id != $this->user->uri)); + $this->addEntryRaw($str); + } + } + + function compareObject($a, $b) + { + $ac = strtotime((empty($a->created)) ? $a->modified : $a->created); + $bc = strtotime((empty($b->created)) ? $b->modified : $b->created); + + return (($ac == $bc) ? 0 : (($ac < $bc) ? 1 : -1)); + } + + function getSubscriptions() + { + $subs = array(); + + $sub = new Subscription(); + + $sub->subscriber = $this->user->id; + + if ($sub->find()) { + while ($sub->fetch()) { + if ($sub->subscribed != $this->user->id) { + $subs[] = clone($sub); + } + } + } + + return $subs; + } + + function getSubscribers() + { + $subs = array(); + + $sub = new Subscription(); + + $sub->subscribed = $this->user->id; + + if ($sub->find()) { + while ($sub->fetch()) { + if ($sub->subscriber != $this->user->id) { + $subs[] = clone($sub); + } + } + } + + return $subs; + } + + function getFaves() + { + $faves = array(); + + $fave = new Fave(); + + $fave->user_id = $this->user->id; + + if ($fave->find()) { + while ($fave->fetch()) { + $faves[] = clone($fave); + } + } + + return $faves; + } + + function getNotices() + { + $notices = array(); + + $notice = new Notice(); + + $notice->profile_id = $this->user->id; + + if ($notice->find()) { + while ($notice->fetch()) { + $notices[] = clone($notice); + } + } + + return $notices; + } + + function getGroups() + { + $groups = array(); + + $gm = new Group_member(); + + $gm->profile_id = $this->user->id; + + if ($gm->find()) { + while ($gm->fetch()) { + $groups[] = clone($gm); + } + } + + return $groups; + } +} diff --git a/scripts/backupuser.php b/scripts/backupuser.php index ef1008eb3b..56a54810ca 100644 --- a/scripts/backupuser.php +++ b/scripts/backupuser.php @@ -34,139 +34,6 @@ END_OF_EXPORTACTIVITYSTREAM_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; -/** - * Class for activity streams - * - * Includes faves, notices, and subscriptions. - * - * We extend atomusernoticefeed since it does some nice setup for us. - * - */ - -class UserActivityStream extends AtomUserNoticeFeed -{ - function __construct($user, $indent = true) - { - parent::__construct($user, null, $indent); - - $subscriptions = $this->getSubscriptions(); - $subscribers = $this->getSubscribers(); - $groups = $this->getGroups(); - $faves = $this->getFaves(); - $notices = $this->getNotices(); - - $objs = array_merge($subscriptions, $subscribers, $groups, $faves, $notices); - - // Sort by create date - - usort($objs, 'UserActivityStream::compareObject'); - - foreach ($objs as $obj) { - $act = $obj->asActivity(); - // Only show the author sub-element if it's different from default user - $str = $act->asString(false, ($act->actor->id != $this->user->uri)); - $this->addEntryRaw($str); - } - } - - function compareObject($a, $b) - { - $ac = strtotime((empty($a->created)) ? $a->modified : $a->created); - $bc = strtotime((empty($b->created)) ? $b->modified : $b->created); - - return (($ac == $bc) ? 0 : (($ac < $bc) ? 1 : -1)); - } - - function getSubscriptions() - { - $subs = array(); - - $sub = new Subscription(); - - $sub->subscriber = $this->user->id; - - if ($sub->find()) { - while ($sub->fetch()) { - if ($sub->subscribed != $this->user->id) { - $subs[] = clone($sub); - } - } - } - - return $subs; - } - - function getSubscribers() - { - $subs = array(); - - $sub = new Subscription(); - - $sub->subscribed = $this->user->id; - - if ($sub->find()) { - while ($sub->fetch()) { - if ($sub->subscriber != $this->user->id) { - $subs[] = clone($sub); - } - } - } - - return $subs; - } - - function getFaves() - { - $faves = array(); - - $fave = new Fave(); - - $fave->user_id = $this->user->id; - - if ($fave->find()) { - while ($fave->fetch()) { - $faves[] = clone($fave); - } - } - - return $faves; - } - - function getNotices() - { - $notices = array(); - - $notice = new Notice(); - - $notice->profile_id = $this->user->id; - - if ($notice->find()) { - while ($notice->fetch()) { - $notices[] = clone($notice); - } - } - - return $notices; - } - - function getGroups() - { - $groups = array(); - - $gm = new Group_member(); - - $gm->profile_id = $this->user->id; - - if ($gm->find()) { - while ($gm->fetch()) { - $groups[] = clone($gm); - } - } - - return $groups; - } -} - function getUser() { $user = null; From dffec9f223c1e45832d274c34f7bd6624cbf87ea Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 16:00:00 -0400 Subject: [PATCH 045/310] move getUser() function to commandline.inc --- scripts/commandline.inc | 24 ++++++++++++++++++++++++ scripts/importtwitteratom.php | 24 ------------------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/scripts/commandline.inc b/scripts/commandline.inc index a475e11d01..a29f588448 100644 --- a/scripts/commandline.inc +++ b/scripts/commandline.inc @@ -177,3 +177,27 @@ function get_option_value($opt, $alt=null) return null; } + +function getUser() +{ + $user = null; + + if (have_option('i', 'id')) { + $id = get_option_value('i', 'id'); + $user = User::staticGet('id', $id); + if (empty($user)) { + throw new Exception("Can't find user with id '$id'."); + } + } else if (have_option('n', 'nickname')) { + $nickname = get_option_value('n', 'nickname'); + $user = User::staticGet('nickname', $nickname); + if (empty($user)) { + throw new Exception("Can't find user with nickname '$nickname'"); + } + } else { + show_help(); + exit(1); + } + + return $user; +} diff --git a/scripts/importtwitteratom.php b/scripts/importtwitteratom.php index c12e3b91a8..261dfb1d02 100644 --- a/scripts/importtwitteratom.php +++ b/scripts/importtwitteratom.php @@ -36,30 +36,6 @@ END_OF_IMPORTTWITTERATOM_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; -function getUser() -{ - $user = null; - - if (have_option('i', 'id')) { - $id = get_option_value('i', 'id'); - $user = User::staticGet('id', $id); - if (empty($user)) { - throw new Exception("Can't find user with id '$id'."); - } - } else if (have_option('n', 'nickname')) { - $nickname = get_option_value('n', 'nickname'); - $user = User::staticGet('nickname', $nickname); - if (empty($user)) { - throw new Exception("Can't find user with nickname '$nickname'"); - } - } else { - show_help(); - exit(1); - } - - return $user; -} - function getAtomFeedDocument() { $filename = get_option_value('f', 'file'); From 2d4c0f9a47f6534c578a37abe79670cec699caae Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 15 Sep 2010 14:09:52 -0700 Subject: [PATCH 046/310] Revert "Add plural support for minutes/hours/days/months ago." -- currently doesn't work and spews error messages This reverts commit b27882c9166191de4aaea298ba1b1a524cfe9ac7. --- lib/util.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/util.php b/lib/util.php index 0b90cb01d7..89d2bf8c2f 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1105,26 +1105,30 @@ function common_date_string($dt) // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a minute ago'); } else if ($diff < 3300) { + // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf( ngettext('about one minute ago', 'about %d minutes ago'), round($diff/60)); + return sprintf(_('about %d minutes ago'), round($diff/60)); } else if ($diff < 5400) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about an hour ago'); } else if ($diff < 22 * 3600) { + // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf( ngettext('about one hour ago', 'about %d hours ago'), round($diff/3600)); + return sprintf(_('about %d hours ago'), round($diff/3600)); } else if ($diff < 37 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a day ago'); } else if ($diff < 24 * 24 * 3600) { + // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf( ngettext('about one day ago', 'about %d days ago'), round($diff/(24*3600))); + return sprintf(_('about %d days ago'), round($diff/(24*3600))); } else if ($diff < 46 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a month ago'); } else if ($diff < 330 * 24 * 3600) { + // XXX: should support plural. // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf( ngettext('about one month ago', 'about %d months ago'), round($diff/(30*24*3600))); + return sprintf(_('about %d months ago'), round($diff/(30*24*3600))); } else if ($diff < 480 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a year ago'); From 95b534c5cee56602dffcc11121908c0f518cab6d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 15 Sep 2010 14:09:23 -0700 Subject: [PATCH 047/310] Move standalone plugin files into subdirectories so they can have locale data, etc added to them at leisure. --- plugins/{ => APC}/APCPlugin.php | 0 plugins/{ => BlogspamNet}/BlogspamNetPlugin.php | 0 plugins/{ => CacheLog}/CacheLogPlugin.php | 0 plugins/{ => DiskCache}/DiskCachePlugin.php | 0 plugins/{ => Disqus}/DisqusPlugin.php | 0 plugins/{ => Echo}/EchoPlugin.php | 0 plugins/{ => GeoURL}/GeoURLPlugin.php | 0 plugins/{ => Geonames}/GeonamesPlugin.php | 0 plugins/{ => GoogleAnalytics}/GoogleAnalyticsPlugin.php | 0 plugins/{ => Linkback}/LinkbackPlugin.php | 0 plugins/{ => Memcache}/MemcachePlugin.php | 0 plugins/{ => Memcached}/MemcachedPlugin.php | 0 plugins/{ => PiwikAnalytics}/PiwikAnalyticsPlugin.php | 0 plugins/{ => Spotify}/SpotifyPlugin.php | 0 plugins/{ => SubscriptionThrottle}/SubscriptionThrottlePlugin.php | 0 plugins/{ => Template}/TemplatePlugin.php | 0 plugins/{ => UserLimit}/UserLimitPlugin.php | 0 plugins/{ => WikiHashtags}/WikiHashtagsPlugin.php | 0 plugins/{ => XCache}/XCachePlugin.php | 0 19 files changed, 0 insertions(+), 0 deletions(-) rename plugins/{ => APC}/APCPlugin.php (100%) rename plugins/{ => BlogspamNet}/BlogspamNetPlugin.php (100%) rename plugins/{ => CacheLog}/CacheLogPlugin.php (100%) rename plugins/{ => DiskCache}/DiskCachePlugin.php (100%) rename plugins/{ => Disqus}/DisqusPlugin.php (100%) rename plugins/{ => Echo}/EchoPlugin.php (100%) rename plugins/{ => GeoURL}/GeoURLPlugin.php (100%) rename plugins/{ => Geonames}/GeonamesPlugin.php (100%) rename plugins/{ => GoogleAnalytics}/GoogleAnalyticsPlugin.php (100%) rename plugins/{ => Linkback}/LinkbackPlugin.php (100%) rename plugins/{ => Memcache}/MemcachePlugin.php (100%) rename plugins/{ => Memcached}/MemcachedPlugin.php (100%) rename plugins/{ => PiwikAnalytics}/PiwikAnalyticsPlugin.php (100%) rename plugins/{ => Spotify}/SpotifyPlugin.php (100%) rename plugins/{ => SubscriptionThrottle}/SubscriptionThrottlePlugin.php (100%) rename plugins/{ => Template}/TemplatePlugin.php (100%) rename plugins/{ => UserLimit}/UserLimitPlugin.php (100%) rename plugins/{ => WikiHashtags}/WikiHashtagsPlugin.php (100%) rename plugins/{ => XCache}/XCachePlugin.php (100%) diff --git a/plugins/APCPlugin.php b/plugins/APC/APCPlugin.php similarity index 100% rename from plugins/APCPlugin.php rename to plugins/APC/APCPlugin.php diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNet/BlogspamNetPlugin.php similarity index 100% rename from plugins/BlogspamNetPlugin.php rename to plugins/BlogspamNet/BlogspamNetPlugin.php diff --git a/plugins/CacheLogPlugin.php b/plugins/CacheLog/CacheLogPlugin.php similarity index 100% rename from plugins/CacheLogPlugin.php rename to plugins/CacheLog/CacheLogPlugin.php diff --git a/plugins/DiskCachePlugin.php b/plugins/DiskCache/DiskCachePlugin.php similarity index 100% rename from plugins/DiskCachePlugin.php rename to plugins/DiskCache/DiskCachePlugin.php diff --git a/plugins/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php similarity index 100% rename from plugins/DisqusPlugin.php rename to plugins/Disqus/DisqusPlugin.php diff --git a/plugins/EchoPlugin.php b/plugins/Echo/EchoPlugin.php similarity index 100% rename from plugins/EchoPlugin.php rename to plugins/Echo/EchoPlugin.php diff --git a/plugins/GeoURLPlugin.php b/plugins/GeoURL/GeoURLPlugin.php similarity index 100% rename from plugins/GeoURLPlugin.php rename to plugins/GeoURL/GeoURLPlugin.php diff --git a/plugins/GeonamesPlugin.php b/plugins/Geonames/GeonamesPlugin.php similarity index 100% rename from plugins/GeonamesPlugin.php rename to plugins/Geonames/GeonamesPlugin.php diff --git a/plugins/GoogleAnalyticsPlugin.php b/plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php similarity index 100% rename from plugins/GoogleAnalyticsPlugin.php rename to plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php diff --git a/plugins/LinkbackPlugin.php b/plugins/Linkback/LinkbackPlugin.php similarity index 100% rename from plugins/LinkbackPlugin.php rename to plugins/Linkback/LinkbackPlugin.php diff --git a/plugins/MemcachePlugin.php b/plugins/Memcache/MemcachePlugin.php similarity index 100% rename from plugins/MemcachePlugin.php rename to plugins/Memcache/MemcachePlugin.php diff --git a/plugins/MemcachedPlugin.php b/plugins/Memcached/MemcachedPlugin.php similarity index 100% rename from plugins/MemcachedPlugin.php rename to plugins/Memcached/MemcachedPlugin.php diff --git a/plugins/PiwikAnalyticsPlugin.php b/plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php similarity index 100% rename from plugins/PiwikAnalyticsPlugin.php rename to plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php diff --git a/plugins/SpotifyPlugin.php b/plugins/Spotify/SpotifyPlugin.php similarity index 100% rename from plugins/SpotifyPlugin.php rename to plugins/Spotify/SpotifyPlugin.php diff --git a/plugins/SubscriptionThrottlePlugin.php b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php similarity index 100% rename from plugins/SubscriptionThrottlePlugin.php rename to plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php diff --git a/plugins/TemplatePlugin.php b/plugins/Template/TemplatePlugin.php similarity index 100% rename from plugins/TemplatePlugin.php rename to plugins/Template/TemplatePlugin.php diff --git a/plugins/UserLimitPlugin.php b/plugins/UserLimit/UserLimitPlugin.php similarity index 100% rename from plugins/UserLimitPlugin.php rename to plugins/UserLimit/UserLimitPlugin.php diff --git a/plugins/WikiHashtagsPlugin.php b/plugins/WikiHashtags/WikiHashtagsPlugin.php similarity index 100% rename from plugins/WikiHashtagsPlugin.php rename to plugins/WikiHashtags/WikiHashtagsPlugin.php diff --git a/plugins/XCachePlugin.php b/plugins/XCache/XCachePlugin.php similarity index 100% rename from plugins/XCachePlugin.php rename to plugins/XCache/XCachePlugin.php From 85154a49d0eb3d401dadd20bda527219e75ba396 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 16 Sep 2010 00:07:47 +0200 Subject: [PATCH 048/310] Add plural support for minutes/hours/days/months ago. Reapply of revised b27882c9166191de4aaea298ba1b1a524cfe9ac7 that was reverted by Brion Vibber in 2d4c0f9a47f6534c578a37abe79670cec699caae. --- lib/util.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/util.php b/lib/util.php index 89d2bf8c2f..6d2e99b2ae 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1105,30 +1105,30 @@ function common_date_string($dt) // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a minute ago'); } else if ($diff < 3300) { - // XXX: should support plural. + $minutes = round($diff/60); // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d minutes ago'), round($diff/60)); + return sprintf( ngettext('about one minute ago', 'about %d minutes ago', $minutes), $minutes); } else if ($diff < 5400) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about an hour ago'); } else if ($diff < 22 * 3600) { - // XXX: should support plural. + $hours = round($diff/3600); // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d hours ago'), round($diff/3600)); + return sprintf( ngettext('about one hour ago', 'about %d hours ago', $hours), $hours); } else if ($diff < 37 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a day ago'); } else if ($diff < 24 * 24 * 3600) { - // XXX: should support plural. + $days = round($diff/(24*3600)); // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d days ago'), round($diff/(24*3600))); + return sprintf( ngettext('about one day ago', 'about %d days ago', $days), $days); } else if ($diff < 46 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a month ago'); } else if ($diff < 330 * 24 * 3600) { - // XXX: should support plural. + $months = round($diff/(30*24*3600)); // TRANS: Used in notices to indicate when the notice was made compared to now. - return sprintf(_('about %d months ago'), round($diff/(30*24*3600))); + return sprintf( ngettext('about one month ago', 'about %d months ago',$months), $months); } else if ($diff < 480 * 24 * 3600) { // TRANS: Used in notices to indicate when the notice was made compared to now. return _('about a year ago'); From b1802b87206fb165c2c3c4e06ba5c812e9701e02 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 15 Sep 2010 23:32:27 -0400 Subject: [PATCH 049/310] don't redeclare getUser() for backupuser.php --- scripts/backupuser.php | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/scripts/backupuser.php b/scripts/backupuser.php index 56a54810ca..49fc1cefdc 100644 --- a/scripts/backupuser.php +++ b/scripts/backupuser.php @@ -34,30 +34,6 @@ END_OF_EXPORTACTIVITYSTREAM_HELP; require_once INSTALLDIR.'/scripts/commandline.inc'; -function getUser() -{ - $user = null; - - if (have_option('i', 'id')) { - $id = get_option_value('i', 'id'); - $user = User::staticGet('id', $id); - if (empty($user)) { - throw new Exception("Can't find user with id '$id'."); - } - } else if (have_option('n', 'nickname')) { - $nickname = get_option_value('n', 'nickname'); - $user = User::staticGet('nickname', $nickname); - if (empty($user)) { - throw new Exception("Can't find user with nickname '$nickname'"); - } - } else { - show_help(); - exit(1); - } - - return $user; -} - try { $user = getUser(); $actstr = new UserActivityStream($user); From 20a0a4acffc7f25ac4898130f98f2c0783a551db Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 16 Sep 2010 11:05:31 -0700 Subject: [PATCH 050/310] Explicitly mark a translator note on the command list help message that the command names must not be translated --- lib/command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/command.php b/lib/command.php index 4887cac452..b1f95fcb69 100644 --- a/lib/command.php +++ b/lib/command.php @@ -901,7 +901,7 @@ class HelpCommand extends Command function handle($channel) { $channel->output($this->user, - // TRANS: Help text for commands. + // TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. _("Commands:\n". "on - turn on notifications\n". "off - turn off notifications\n". From b98abc3ae77965c6935bfb87eef61a3cc436e82f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 16 Sep 2010 12:36:18 -0700 Subject: [PATCH 051/310] Ticket #2725 - add StatusNet Mobile & platform variants to default notice sources lists. To add just these to an existing table: INSERT INTO notice_source (code, name, url, created) VALUES ('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()), ('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()), ('StatusNet Android', 'Android', 'http://status.net/android', now()), ('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now()); --- db/notice_source.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/db/notice_source.sql b/db/notice_source.sql index 6bfd5c5f15..04d9d7ba65 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -52,6 +52,10 @@ VALUES ('socialoomphBfD4pMqz31', 'SocialOomph', 'http://www.socialoomph.com/', now()), ('spaz','Spaz','http://funkatron.com/spaz', now()), ('StatusNet Desktop', 'StatusNet Desktop', 'http://status.net/desktop', now()), + ('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()), + ('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()), + ('StatusNet Android', 'Android', 'http://status.net/android', now()), + ('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now()), ('tarpipe','tarpipe','http://tarpipe.com/', now()), ('tjunar','Tjunar','http://nederflash.nl/boek/titels/tjunar-air', now()), ('tr.im','tr.im','http://tr.im/', now()), From 097d0bd2faad9e067367e88e4ad166b14b0f98b6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 16 Sep 2010 14:43:27 -0700 Subject: [PATCH 052/310] Ticket #2731: Fix for regression in posting to remote groups (regression in 2d4e0693c88bb8cad47f917db3ac5ecfacf28619) Changes in 2d4e0693c88bb8cad47f917db3ac5ecfacf28619 changed Ostatus_profile::filterReplies() (which sorts out the local, remote, and group recipients on incoming remote messages) from checking for remote profiles with a safe call to Ostatus_profile::staticGet() to calls through Ostatus_profile::ensureProfileURL() and Ostatus_profile::ensureWebfinger(), which throw exceptions and thus abort processing. Since this was done before checking for local groups, the filter would fail when the ensure* functions determined it was looking at a local group and rightfully refused to create a remote group profile for it. Changing the calls to the ensure* functions was done so we can record remote reply recipients for future reply-to-reply processing (the staticGet() call was a cheaper way to do a lookup when we knew we only actually had to process groups that somebody signed up to); most important fix is simply to actually check for the exception! :) Here I'm changing the order of processing so we do the local group lookup first -- where it's nice and safe -- and then when we do the remote checks, we'll go ahead and gracefully skip that entry if the full remote lookup fails, so we'll still process any following recipients. --- plugins/OStatus/classes/Ostatus_profile.php | 33 ++++++++++----------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 19fe5169b4..11ca67b25c 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -703,23 +703,7 @@ class Ostatus_profile extends Memcached_DataObject continue; } - // Is the recipient a remote group? - $oprofile = Ostatus_profile::ensureProfileURI($recipient); - - if ($oprofile) { - if ($oprofile->isGroup()) { - // Deliver to local members of this remote group. - // @fixme sender verification? - $groups[] = $oprofile->group_id; - } else { - // may be canonicalized or something - $replies[] = $oprofile->uri; - } - continue; - } - // Is the recipient a local group? - // @fixme uri on user_group isn't reliable yet // $group = User_group::staticGet('uri', $recipient); $id = OStatusPlugin::localGroupFromUrl($recipient); if ($id) { @@ -738,7 +722,22 @@ class Ostatus_profile extends Memcached_DataObject } } - common_log(LOG_DEBUG, "Skipping reply to unrecognized profile $recipient"); + // Is the recipient a remote user or group? + try { + $oprofile = Ostatus_profile::ensureProfileURI($recipient); + if ($oprofile->isGroup()) { + // Deliver to local members of this remote group. + // @fixme sender verification? + $groups[] = $oprofile->group_id; + } else { + // may be canonicalized or something + $replies[] = $oprofile->uri; + } + continue; + } catch (Exception $e) { + // Neither a recognizable local nor remote user! + common_log(LOG_DEBUG, "Skipping reply to unrecognized profile $recipient: " . $e->getMessage()); + } } $attention_uris = $replies; From 89c561c9cf381a1068e4d78dd9ff1f42f709c4ce Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 16 Sep 2010 14:43:27 -0700 Subject: [PATCH 053/310] Ticket #2731: Fix for regression in posting to remote groups (regression in 2d4e0693c88bb8cad47f917db3ac5ecfacf28619) Changes in 2d4e0693c88bb8cad47f917db3ac5ecfacf28619 changed Ostatus_profile::filterReplies() (which sorts out the local, remote, and group recipients on incoming remote messages) from checking for remote profiles with a safe call to Ostatus_profile::staticGet() to calls through Ostatus_profile::ensureProfileURL() and Ostatus_profile::ensureWebfinger(), which throw exceptions and thus abort processing. Since this was done before checking for local groups, the filter would fail when the ensure* functions determined it was looking at a local group and rightfully refused to create a remote group profile for it. Changing the calls to the ensure* functions was done so we can record remote reply recipients for future reply-to-reply processing (the staticGet() call was a cheaper way to do a lookup when we knew we only actually had to process groups that somebody signed up to); most important fix is simply to actually check for the exception! :) Here I'm changing the order of processing so we do the local group lookup first -- where it's nice and safe -- and then when we do the remote checks, we'll go ahead and gracefully skip that entry if the full remote lookup fails, so we'll still process any following recipients. --- plugins/OStatus/classes/Ostatus_profile.php | 33 ++++++++++----------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 19fe5169b4..11ca67b25c 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -703,23 +703,7 @@ class Ostatus_profile extends Memcached_DataObject continue; } - // Is the recipient a remote group? - $oprofile = Ostatus_profile::ensureProfileURI($recipient); - - if ($oprofile) { - if ($oprofile->isGroup()) { - // Deliver to local members of this remote group. - // @fixme sender verification? - $groups[] = $oprofile->group_id; - } else { - // may be canonicalized or something - $replies[] = $oprofile->uri; - } - continue; - } - // Is the recipient a local group? - // @fixme uri on user_group isn't reliable yet // $group = User_group::staticGet('uri', $recipient); $id = OStatusPlugin::localGroupFromUrl($recipient); if ($id) { @@ -738,7 +722,22 @@ class Ostatus_profile extends Memcached_DataObject } } - common_log(LOG_DEBUG, "Skipping reply to unrecognized profile $recipient"); + // Is the recipient a remote user or group? + try { + $oprofile = Ostatus_profile::ensureProfileURI($recipient); + if ($oprofile->isGroup()) { + // Deliver to local members of this remote group. + // @fixme sender verification? + $groups[] = $oprofile->group_id; + } else { + // may be canonicalized or something + $replies[] = $oprofile->uri; + } + continue; + } catch (Exception $e) { + // Neither a recognizable local nor remote user! + common_log(LOG_DEBUG, "Skipping reply to unrecognized profile $recipient: " . $e->getMessage()); + } } $attention_uris = $replies; From 88f3b51affe662783a0f6d01c920dada9e865757 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 17 Sep 2010 01:21:14 +0200 Subject: [PATCH 054/310] Localisation updates from http://translatewiki.net --- locale/af/LC_MESSAGES/statusnet.po | 149 +++- locale/ar/LC_MESSAGES/statusnet.po | 176 +++- locale/arz/LC_MESSAGES/statusnet.po | 176 +++- locale/bg/LC_MESSAGES/statusnet.po | 160 +++- locale/br/LC_MESSAGES/statusnet.po | 170 +++- locale/ca/LC_MESSAGES/statusnet.po | 182 ++++- locale/cs/LC_MESSAGES/statusnet.po | 186 ++++- locale/da/LC_MESSAGES/statusnet.po | 111 ++- locale/de/LC_MESSAGES/statusnet.po | 184 ++++- locale/el/LC_MESSAGES/statusnet.po | 124 ++- locale/en_GB/LC_MESSAGES/statusnet.po | 165 +++- locale/eo/LC_MESSAGES/statusnet.po | 1060 +++++++++++++++++++++---- locale/es/LC_MESSAGES/statusnet.po | 250 +++++- locale/fa/LC_MESSAGES/statusnet.po | 178 ++++- locale/fi/LC_MESSAGES/statusnet.po | 165 +++- locale/fr/LC_MESSAGES/statusnet.po | 182 ++++- locale/ga/LC_MESSAGES/statusnet.po | 135 +++- locale/gl/LC_MESSAGES/statusnet.po | 182 ++++- locale/he/LC_MESSAGES/statusnet.po | 126 ++- locale/hsb/LC_MESSAGES/statusnet.po | 169 +++- locale/ia/LC_MESSAGES/statusnet.po | 189 ++++- locale/is/LC_MESSAGES/statusnet.po | 156 +++- locale/it/LC_MESSAGES/statusnet.po | 182 ++++- locale/ja/LC_MESSAGES/statusnet.po | 178 ++++- locale/ka/LC_MESSAGES/statusnet.po | 173 +++- locale/ko/LC_MESSAGES/statusnet.po | 161 +++- locale/mk/LC_MESSAGES/statusnet.po | 189 ++++- locale/nb/LC_MESSAGES/statusnet.po | 182 ++++- locale/nl/LC_MESSAGES/statusnet.po | 189 ++++- locale/nn/LC_MESSAGES/statusnet.po | 165 +++- locale/pl/LC_MESSAGES/statusnet.po | 186 ++++- locale/pt/LC_MESSAGES/statusnet.po | 189 ++++- locale/pt_BR/LC_MESSAGES/statusnet.po | 184 ++++- locale/ru/LC_MESSAGES/statusnet.po | 186 ++++- locale/statusnet.pot | 6 +- locale/sv/LC_MESSAGES/statusnet.po | 182 ++++- locale/te/LC_MESSAGES/statusnet.po | 149 +++- locale/tr/LC_MESSAGES/statusnet.po | 116 ++- locale/uk/LC_MESSAGES/statusnet.po | 193 ++++- locale/vi/LC_MESSAGES/statusnet.po | 148 +++- locale/zh_CN/LC_MESSAGES/statusnet.po | 187 ++++- locale/zh_TW/LC_MESSAGES/statusnet.po | 97 ++- 42 files changed, 7349 insertions(+), 468 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index aee41ce2ba..2596b39c56 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:37+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:29+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1619,6 +1619,24 @@ msgstr "lede van die groep %s" msgid "Admin" msgstr "Administrateur" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4092,14 +4110,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -4587,6 +4606,62 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -5032,6 +5107,23 @@ msgstr "Antwoord" msgid "Nudge" msgstr "Aanpor" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoonlik" @@ -5129,6 +5221,11 @@ msgstr "" msgid "Keyword(s)" msgstr "Term(e)" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Gebruikers" @@ -5289,21 +5386,53 @@ msgstr "'n paar sekondes gelede" msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "ongeveer een dag gelede" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "ongeveer een maand gelede" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 056cfb15e4..b9b1057ed9 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:38+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1633,10 +1633,28 @@ msgstr "قائمة بمستخدمي هذه المجموعة." msgid "Admin" msgstr "إداري" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4657,9 +4675,15 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5220,6 +5244,78 @@ msgstr "صِف المجموعة أو الموضوع" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "المجموعات الأكثر أعضاءً" @@ -5729,6 +5825,23 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5867,6 +5980,11 @@ msgstr "ابحث في الموقع" msgid "Keyword(s)" msgstr "الكلمات المفتاحية" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6057,21 +6175,69 @@ msgstr "قبل لحظات قليلة" msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "قبل يوم تقريبا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "قبل شهر تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index e549610ab1..2f52f23d57 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\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:40+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:31+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1448,6 +1448,24 @@ msgstr "قائمه بمستخدمى هذه المجموعه." msgid "Admin" msgstr "إداري" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4150,9 +4168,15 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -4659,6 +4683,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "المجموعات الأكثر أعضاءً" @@ -5113,6 +5209,23 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." @@ -5242,6 +5355,11 @@ msgstr "ابحث فى الموقع" msgid "Keyword(s)" msgstr "الكلمات المفتاحية" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -5428,21 +5546,69 @@ msgstr "قبل لحظات قليلة" msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "قبل يوم تقريبا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "قبل شهر تقريبًا" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 02f1172d0f..5d45496b8f 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:41+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:32+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1649,6 +1649,24 @@ msgstr "Списък с потребителите в тази група." msgid "Admin" msgstr "Настройки" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4601,9 +4619,15 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -5087,6 +5111,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи с най-много членове" @@ -5582,6 +5678,23 @@ msgstr "Побутване" msgid "Send a nudge to this user" msgstr "Побутване на този потребител" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." @@ -5708,6 +5821,11 @@ msgstr "Търсене в сайта" msgid "Keyword(s)" msgstr "Ключови думи" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -5895,21 +6013,53 @@ msgstr "преди няколко секунди" msgid "about a minute ago" msgstr "преди около минута" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "преди около час" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "преди около ден" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "преди около месец" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 4e5bdf2e04..d1c1d2f8d3 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:42+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1731,10 +1731,28 @@ msgstr "Roll an implijerien enrollet er strollad-mañ." msgid "Admin" msgstr "Merañ" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4817,19 +4835,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5356,6 +5380,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" msgstr "" @@ -5793,6 +5889,23 @@ msgstr "Blinkadenn" msgid "Send a nudge to this user" msgstr "Kas ur blinkadenn d'an implijer-mañ" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Hiniennel" @@ -5910,6 +6023,11 @@ msgstr "Klask el lec'hienn" msgid "Keyword(s)" msgstr "Ger(ioù) alc'hwez" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6070,21 +6188,53 @@ msgstr "un nebeud eilennoù zo" msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "1 devezh zo well-wazh" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "miz zo well-wazh" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 914e8a189d..3d1bdc1836 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:43+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:35+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1896,10 +1896,28 @@ msgstr "La llista dels usuaris d'aquest grup." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5533,14 +5551,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6195,6 +6224,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Sobrenoms addicionals del grup, separats amb comes o espais, màx. %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grups amb més membres" @@ -6689,6 +6790,23 @@ msgstr "No s'ha pogut moure el fitxer al directori de destinació." msgid "Could not determine file's MIME type." msgstr "No s'ha pogut determinar el tipus MIME del fitxer." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envia un avís directe" @@ -6804,6 +6922,23 @@ msgstr "Crida l'atenció" msgid "Send a nudge to this user" msgstr "Crida l'atenció a l'usuari" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." @@ -6947,6 +7082,11 @@ msgstr "Cerca al lloc" msgid "Keyword(s)" msgstr "Paraules clau" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7155,21 +7295,53 @@ msgstr "fa pocs segons" msgid "about a minute ago" msgstr "fa un minut" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fa una hora" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "fa un dia" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "fa un mes" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f01a064290..98a89e74c6 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:45+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:38+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1879,10 +1879,28 @@ msgstr "Seznam uživatelů v této skupině." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uďelat uživatele adminem skupiny" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5463,14 +5481,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6125,6 +6154,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Další přezdívky pro skupinu, oddělené čárkou nebo mezerou, max %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Skupiny s nejvíce členy" @@ -6617,6 +6718,23 @@ msgstr "Soubor nemohl být přesunut do cílového adresáře." msgid "Could not determine file's MIME type." msgstr "Nelze určit typ MIME souboru." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Pošlete přímou zprávu" @@ -6732,6 +6850,23 @@ msgstr "Pošťouchnout" msgid "Send a nudge to this user" msgstr "Poslat pošťouchnutí tomuto uživateli" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" @@ -6875,6 +7010,11 @@ msgstr "Prohledat stránky" msgid "Keyword(s)" msgstr "Klíčová slova" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7083,21 +7223,57 @@ msgstr "před pár sekundami" msgid "about a minute ago" msgstr "asi před minutou" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "asi před hodinou" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "asi přede dnem" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "asi před měsícem" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/da/LC_MESSAGES/statusnet.po b/locale/da/LC_MESSAGES/statusnet.po index 915d860a51..9b3c561cff 100644 --- a/locale/da/LC_MESSAGES/statusnet.po +++ b/locale/da/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:46+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:39+0000\n" "Language-Team: Danish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: da\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1884,10 +1884,28 @@ msgstr "En liste over brugerne i denne gruppe." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gør bruger til administrator af gruppen" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4247,14 +4265,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -4690,12 +4709,62 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" msgstr "" +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -5118,6 +5187,23 @@ msgstr "" msgid "Nudge" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "" @@ -5204,6 +5290,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index ab5c443404..2617519f61 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:47+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1910,10 +1910,28 @@ msgstr "Liste der Benutzer in dieser Gruppe." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Blockieren" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5545,14 +5563,25 @@ msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6208,6 +6237,78 @@ msgstr "" "Zusätzliche Spitznamen für die Gruppe, Komma oder Leerzeichen getrennt, max %" "d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "%s-Logo hinzufügen oder bearbeiten" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "%s-Design hinzufügen oder bearbeiten" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Gruppen mit den meisten Mitgliedern" @@ -6701,6 +6802,25 @@ msgstr "Datei konnte nicht in das Zielverzeichnis verschoben werden." msgid "Could not determine file's MIME type." msgstr "Konnte den MIME-Typ nicht feststellen." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"„%1$s“ ist kein unterstütztes Dateiformat auf diesem Server. Versuche es mit " +"einem anderen %2$s-Format." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" @@ -6816,6 +6936,23 @@ msgstr "Stups" msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stups" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." @@ -6959,6 +7096,11 @@ msgstr "Site durchsuchen" msgid "Keyword(s)" msgstr "Suchbegriff" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7166,21 +7308,53 @@ msgstr "vor wenigen Sekunden" msgid "about a minute ago" msgstr "vor einer Minute" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "vor ca. einer Minute" +msgstr[1] "vor ca. %d Minuten" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "vor einer Stunde" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "vor ca. einer Stunde" +msgstr[1] "vor ca. %d Stunden" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "vor einem Tag" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "vor ca. einem Tag" +msgstr[1] "vor ca. %d Tagen" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "vor einem Monat" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "vor ca. einem Monat" +msgstr[1] "vor ca. %d Monaten" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index fbc7354d0e..ae5cf7a15b 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:48+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:41+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1372,10 +1372,22 @@ msgstr "" msgid "Admin" msgstr "Διαχειριστής" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" @@ -3930,14 +3942,20 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form legend. @@ -4462,6 +4480,78 @@ msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Ομάδες με τα περισσότερα μέλη" @@ -4919,6 +5009,23 @@ msgstr "" msgid "Nudge" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." @@ -5046,6 +5153,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 0d66123b4f..e04b249f18 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:50+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:44+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1865,10 +1865,28 @@ msgstr "A list of the users in this group." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5260,14 +5278,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -5826,6 +5845,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groups with most members" @@ -6354,6 +6445,23 @@ msgstr "Nudge" msgid "Send a nudge to this user" msgstr "Send a nudge to this user" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." @@ -6497,6 +6605,11 @@ msgstr "Search site" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6684,21 +6797,53 @@ msgstr "a few seconds ago" msgid "about a minute ago" msgstr "about a minute ago" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "about an hour ago" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "about a day ago" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "about a month ago" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index c5b268ea09..a301dcc2e9 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -3,6 +3,7 @@ # # Author: AVRS # Author: Brion +# Author: Eliovir # Author: Ianmcorvidae # Author: Kris10 # Author: LyzTyphone @@ -13,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:49+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:43+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1874,10 +1875,28 @@ msgstr "Listo de uzantoj en tiu ĉi grupo" msgid "Admin" msgstr "Administranto" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Bloki" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Elekti uzanton grupestro." +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Estrigi" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Estrigi la uzanton" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -3257,6 +3276,10 @@ msgstr "Pasvorto devas enhavi 6 signojn aŭ pli." msgid "Password and confirmation do not match." msgstr "Pasvorto kaj komfirmo ne kongruas." +#: actions/recoverpassword.php:388 actions/register.php:255 +msgid "Error setting user." +msgstr "Eraris agordi uzanton." + #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." msgstr "Nova pasvorto sukcese konserviĝas. Vi nun estas ensalutinta." @@ -3635,7 +3658,7 @@ msgstr "Aplikaĵa ago" #: actions/showapplication.php:236 msgid "Reset key & secret" -msgstr "" +msgstr "Rekomencigi ŝlosilon & sekreton" #: actions/showapplication.php:261 msgid "Application info" @@ -3643,19 +3666,19 @@ msgstr "Aplikaĵa informo" #: actions/showapplication.php:263 msgid "Consumer key" -msgstr "" +msgstr "Konsumanta ŝlosilo" #: actions/showapplication.php:268 msgid "Consumer secret" -msgstr "" +msgstr "Konsumanta sekreto" #: actions/showapplication.php:273 msgid "Request token URL" -msgstr "" +msgstr "Pet-ĵetona URL" #: actions/showapplication.php:278 msgid "Access token URL" -msgstr "" +msgstr "Alir-ĵetona URL" #: actions/showapplication.php:283 msgid "Authorize URL" @@ -3669,6 +3692,10 @@ msgstr "" "Rimarku: Ni subtenas HMAC-SHA1-subskribo. Ni ne subtenas platteksta " "subskribado-metodon." +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Ĉu vi certe volas rekomencigi vian konsumantan ŝlosilon kaj sekreton?" + #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" @@ -3962,7 +3989,7 @@ msgstr "Teksto estu almenaŭ 0 literojn (senlime)." #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." -msgstr "" +msgstr "Refoja limo estu almenaŭ unu sekundo." #: actions/siteadminpanel.php:221 msgid "General" @@ -3982,11 +4009,11 @@ msgstr "Eblige de" #: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" -msgstr "" +msgstr "Teksto por dankado-ligilo je subo por ĉiu paĝo" #: actions/siteadminpanel.php:234 msgid "Brought by URL" -msgstr "" +msgstr "Alportita de URL" #: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" @@ -4012,59 +4039,100 @@ msgstr "Defaŭlta horzono de la retejo; kutime UTC." msgid "Default language" msgstr "Defaŭlta lingvo" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "Reteja lingvo por kiam lingva prefero ne troviĝas el la foliumilo" + #: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limoj" #: actions/siteadminpanel.php:274 msgid "Text limit" -msgstr "" +msgstr "Teksta longlimo" #: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." -msgstr "" +msgstr "Longlimo por afiŝoj." #: actions/siteadminpanel.php:278 msgid "Dupe limit" -msgstr "" +msgstr "Refoja limo" #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +"Kiel longe devas uzantoj atendas (je sekundo) antaŭ afiŝi la saman refejo." #: actions/sitenoticeadminpanel.php:56 msgid "Site Notice" -msgstr "" +msgstr "Reteja Anonco" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "Redakti retejan mesaĝon" #: actions/sitenoticeadminpanel.php:103 msgid "Unable to save site notice." -msgstr "" +msgstr "Malsukcesis konservi retejan anoncon." #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." -msgstr "" +msgstr "Longlimo por reteja anonco estas 255 literoj." #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" -msgstr "" +msgstr "Teksto de reteja anonco." #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" -msgstr "" +msgstr "Teksto de reteja anonco (apenaŭ 255 literoj; HTML eblas)" #: actions/sitenoticeadminpanel.php:198 msgid "Save site notice" msgstr "Konservi retejan agordon" +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 +msgid "SMS settings" +msgstr "SMM-a agordo" + +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "Vi povos ricevi SMM-mesaĝon per retpoŝto de %%site.name%%." + +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +msgid "SMS is not available." +msgstr "SMM ne estas disponebla." + +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +msgid "SMS address" +msgstr "SMM-a adreso" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +msgid "Current confirmed SMS-enabled phone number." +msgstr "Nuna konfirmita SMM-pova telefonnumero" + #. TRANS: Form guide in IM settings form. #: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." -msgstr "" +msgstr "Atendante konfirmon por la telefonnumero." + +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 +msgid "Confirmation code" +msgstr "Konfirma kodo." #. TRANS: Form field instructions in SMS settings form. #: actions/smssettings.php:144 msgid "Enter the code you received on your phone." -msgstr "" +msgstr "Entajpu la kodon, kiu vi ricevis per poŝtelefono." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 @@ -4075,12 +4143,17 @@ msgstr "Konfirmi" #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" -msgstr "" +msgstr "SMM-a telefonnumero" #. TRANS: SMS phone number input field instructions in SMS settings form. #: actions/smssettings.php:156 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" +msgstr "Telefonnumero, sen interpunkcio aŭ spacoj, kun loka kodo" + +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +msgid "SMS preferences" +msgstr "SMM-aj preferoj" #. TRANS: Checkbox label in SMS preferences form. #: actions/smssettings.php:201 @@ -4088,21 +4161,73 @@ msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" +"Sendu al mi avizoj per SMM; mi komprenas ke la kosto eble estos multa de mia " +"peranto." + +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +msgid "SMS preferences saved." +msgstr "SMM-prefero konserviĝas." #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." msgstr "Mankas la telefononumero." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +msgid "No carrier selected." +msgstr "Neniu peranto elektiĝas." + +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +msgid "That is already your phone number." +msgstr "Tio estas jam via telefonnumero." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 +msgid "That phone number already belongs to another user." +msgstr "Tiu telefonnumero jam apartenas al alia uzanto." + +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Konfirmkodo jam sendiĝas al la aldonita telefonnumero. Kontrolu vian " +"poŝtelefonon pri la kodo kaj gvido pri kiel uzi ĝin." + +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 +msgid "That is the wrong confirmation number." +msgstr "Tiu konfirma kodo estas malĝusta." + +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +msgid "SMS confirmation cancelled." +msgstr "SMM-a konfirmo nuliĝas." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 +msgid "That is not your phone number." +msgstr "Tio ne estas via telefonnumero." + +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +msgid "The SMS phone number was removed." +msgstr "La SMM-numreo estas forigita." + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" -msgstr "" +msgstr "Poŝtelefona peranto" #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:516 msgid "Select a carrier" -msgstr "" +msgstr "Elektu peranton" #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. @@ -4112,32 +4237,51 @@ msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" +"Poŝtelefona peranto de via telefono. Se vi konas peranton, kiu akceptas SMM " +"per retpoŝto sed ne listiĝas tie ĉi, sendu mesaĝon al ni sciigi, je %s." + +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +msgid "No code entered" +msgstr "Neniu kodo entajpita" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 #: lib/adminpanelaction.php:395 msgid "Snapshots" -msgstr "" +msgstr "Momentfotoj" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "Administri agordon pri momentfoto" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Momentfota ofteco nevalida." #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." -msgstr "" +msgstr "Momentfota ofteco estu nombro." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Momentfota alraporta URL nevalida." #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" -msgstr "" +msgstr "Harzarde dum ret-alklako." #: actions/snapshotadminpanel.php:201 msgid "In a scheduled job" -msgstr "" +msgstr "Laŭplane" #: actions/snapshotadminpanel.php:206 msgid "Data snapshots" -msgstr "" +msgstr "Datumaj momentfotoj" #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" -msgstr "" +msgstr "Kiam sendu statistikan datumon al status.net serviloj" #: actions/snapshotadminpanel.php:217 msgid "Frequency" @@ -4145,70 +4289,102 @@ msgstr "Ofteco" #: actions/snapshotadminpanel.php:218 msgid "Snapshots will be sent once every N web hits" -msgstr "" +msgstr "Momentfotoj sendiĝos post po N alklakoj" #: actions/snapshotadminpanel.php:226 msgid "Report URL" -msgstr "" +msgstr "Alraporta URL" #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" -msgstr "" +msgstr "Momentfotoj sendiĝos al ĉi tiu URL" #: actions/snapshotadminpanel.php:248 msgid "Save snapshot settings" msgstr "Konservi retejan agordon" +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "Vi ne abonis tiun profilon." + +#. TRANS: Exception thrown when a subscription could not be stored on the server. +#: actions/subedit.php:83 classes/Subscription.php:136 +msgid "Could not save subscription." +msgstr "Malsukcesis konservi abonon." + #: actions/subscribe.php:77 msgid "This action only accepts POST requests." -msgstr "" +msgstr "La ago akceptas nur POST-an peton." + +#: actions/subscribe.php:107 +msgid "No such profile." +msgstr "Ne ekzistas tia profilo." #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "" +msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." #: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonita" +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "%s abonantoj" + +#: actions/subscribers.php:52 +#, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "%1$s abonantoj, paĝo %2$d" + #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "" +msgstr "Jen homoj, kiuj rigardas viajn avizojn." #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "" +msgstr "Jen homoj, kiuj rigardas avizojn de %s." #: actions/subscribers.php:108 msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor" -msgstr "" +msgstr "Vi ne havas abonanton. Provu aboni konatojn, kaj ili eble reaboni vin" #: actions/subscribers.php:110 #, php-format msgid "%s has no subscribers. Want to be the first?" +msgstr "%s ne havas abonantojn. Ĉu vi volas esti la unua?" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" msgstr "" +"%s ne havas abonantojn. Kial ne [krei konton](%%%%*action.*Register%%%%) kaj " +"esti la unua?" #: actions/subscriptions.php:52 #, php-format msgid "%s subscriptions" -msgstr "" +msgstr "%s abonatoj" #: actions/subscriptions.php:54 #, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "" +msgstr "%1$s abonatoj, paĝo %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "Jen homoj, kies avizoj rigardas vi." #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "Jen homoj, kies avizoj %s rigardas." #: actions/subscriptions.php:126 #, php-format @@ -4219,11 +4395,15 @@ msgid "" "featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " "automatically subscribe to people you already follow there." msgstr "" +"Vi ne nun abonas ies ajn avizoj. Provu aboni konatojn. Provu [homserĉi](%%" +"action.peoplesearch%%), kontrolu grupanojn en interesaj grupoj, kaj nian " +"[elstarajn uzantojn](%%action.featured%%). Se vi estas [Tvitanto](%%action." +"twittersettings%%), vi povas aŭtomate aboni homon, kiun vi jam sekvas tie." #: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format msgid "%s is not listening to anyone." -msgstr "" +msgstr "%s ne abonas iun ajn." #: actions/subscriptions.php:208 msgid "Jabber" @@ -4233,34 +4413,87 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" +#: actions/tag.php:69 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" + #: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" +msgstr "Avizofluo pri etikedo %s (RSS 1.0)" #: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" +msgstr "Avizofluo pri etikedo %s (RSS 2.0)" #: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "" +msgstr "Avizofluo pri etikedo %s (Atom)" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "Etikedo %s" + +#: actions/tagother.php:77 lib/userprofile.php:76 +msgid "User profile" +msgstr "Uzanta profilo" #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" msgstr "Foto" +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "Etikedi uzanton" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per " +"komo aŭ spaco." + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +msgstr "Vi rajtas entikedi nur abonanton aŭ abonaton." + +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Malsukcesis konservi etikedojn." + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn." + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Ne estas tiu etikedo." + +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "Vi ne jam blokis la uzanton." #: actions/unsilence.php:72 msgid "User is not silenced." +msgstr "Uzanto ne estas silentigita." + +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "Malabonita" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, 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: User admin panel title #: actions/useradminpanel.php:59 @@ -4268,9 +4501,13 @@ msgctxt "TITLE" msgid "User" msgstr "Uzanto" +#: actions/useradminpanel.php:70 +msgid "User settings for this StatusNet site." +msgstr "Uzantaj agordoj por ĉi tiu StatusNet-retejo." + #: actions/useradminpanel.php:149 msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Nevalida biografia longlimo. Estu cifero." #: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." @@ -4570,20 +4807,57 @@ msgstr "Dosiero tiel granda superos vian uzantan kvoton kun %d bajtoj." msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +msgid "Invalid filename." +msgstr "Nevalida dosiernomo." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." -msgstr "" +msgstr "Malsukcesis aniĝi al grupon." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +msgid "Not part of group." +msgstr "Ne grupano." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +msgid "Group leave failed." +msgstr "Malsukcesis foriri de grupo." + +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +msgid "Could not update local group." +msgstr "Malsukcesis ĝisdatigi lokan grupon." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, php-format +msgid "Could not create login token for %s" +msgstr "Malsukcesis krei ensalut-ĵetonon por %s" #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "Ne troviĝas datumbaza nomo aŭ DSN ie ajn." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. #: classes/Message.php:46 msgid "You are banned from sending direct messages." -msgstr "" +msgstr "Vi blokiĝis de sendi rektan mesaĝon." + +#. TRANS: Message given when a message could not be stored on the server. +#: classes/Message.php:63 +msgid "Could not insert message." +msgstr "Malsukcesis enmeti mesaĝon." + +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +msgid "Could not update message with new URI." +msgstr "Malsukcesis ĝisdatigi mesaĝon per nova URI" #. 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). @@ -4684,6 +4958,11 @@ msgstr "" msgid "Design your profile" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "Aliaj" + #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:146 msgid "Other" @@ -4698,13 +4977,13 @@ msgstr "%1$s - %2$s" #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" -msgstr "" +msgstr "Sentitola paĝo" #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" -msgstr "" +msgstr "Tempstrio pri vi kaj amikoj" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline #: lib/action.php:458 @@ -4712,6 +4991,12 @@ msgctxt "MENU" msgid "Personal" msgstr "Persona" +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Ŝanĝu la retpoŝtadreson, vizaĝbildon, pasvorton aŭ la profilon" + #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:465 msgctxt "TOOLTIP" @@ -4741,7 +5026,7 @@ msgstr "Administri" #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Inviti amikojn kaj kolegojn aliĝi vin sur %s" +msgstr "Inviti amikojn kaj kolegojn al %s kun vi" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users #: lib/action.php:481 @@ -4749,6 +5034,12 @@ msgctxt "MENU" msgid "Invite" msgstr "Inviti" +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:487 +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "Elsaluti el la retejo" + #. TRANS: Main menu option when logged in to log out the current user #: lib/action.php:490 msgctxt "MENU" @@ -4767,6 +5058,17 @@ msgctxt "MENU" msgid "Register" msgstr "Registriĝi" +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:501 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Ensaluti al la retejo" + +#: lib/action.php:504 +msgctxt "MENU" +msgid "Login" +msgstr "Ensaluti" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" @@ -4782,7 +5084,12 @@ msgstr "Helpo" #: lib/action.php:513 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "" +msgstr "Serĉi homon aŭ tekston" + +#: lib/action.php:516 +msgctxt "MENU" +msgid "Search" +msgstr "Serĉi" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration @@ -4793,7 +5100,7 @@ msgstr "" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 msgid "Local views" -msgstr "" +msgstr "Loka vido" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 @@ -4818,7 +5125,7 @@ msgstr "Oftaj demandoj" #. TRANS: Secondary navigation menu option leading to Terms of Service. #: lib/action.php:795 msgid "TOS" -msgstr "" +msgstr "Serva Kondiĉo" #. TRANS: Secondary navigation menu option leading to privacy policy. #: lib/action.php:799 @@ -4899,6 +5206,11 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1243 +msgid "Pagination" +msgstr "Paĝado" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1254 @@ -4982,14 +5294,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form input field instructions. @@ -5032,6 +5345,11 @@ msgstr "" msgid "Default access for this application: read-only, or read-write" msgstr "" +#. TRANS: Submit button title. +#: lib/applicationeditform.php:349 +msgid "Cancel" +msgstr "Nuligi" + #. TRANS: Application access type #: lib/applicationlist.php:135 msgid "read-write" @@ -5042,43 +5360,73 @@ msgstr "" 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:143 -#, php-format -msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "Aldonaĵo" + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Aŭtoro" + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 +msgid "Provider" +msgstr "Donanto" #. TRANS: Title. #: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" -msgstr "" +msgstr "Avizo, kie ĉi tiu aldonaĵo aperos" + +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "Etikedoj por ĉi tiu aldonaĵo" + +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +msgid "Password changing failed" +msgstr "La ŝanĝo de pasvorto maltrafis" + +#: lib/authenticationplugin.php:236 +msgid "Password changing is not allowed" +msgstr "Ne estas permesita ŝanĝi la pasvorton" #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" msgstr "Bloki" +#: lib/channel.php:157 lib/channel.php:177 +msgid "Command results" +msgstr "Komandaj rezultoj" + #: lib/channel.php:229 lib/mailhandler.php:142 msgid "Command complete" -msgstr "" +msgstr "Komando kompleta" + +#: lib/channel.php:240 +msgid "Command failed" +msgstr "Komando maltrafis" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. #: lib/command.php:84 lib/command.php:108 msgid "Notice with that id does not exist." -msgstr "" +msgstr "Avizo kun tiu identigaĵo ne ekzistas." #. 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:101 lib/command.php:630 msgid "User has no last notice." -msgstr "" +msgstr "La uzanto ne havas lastan averton." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #: lib/command.php:130 #, php-format msgid "Could not find a user with nickname %s." -msgstr "" +msgstr "Ne povas trovi uzanton kun kromnomo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. @@ -5090,19 +5438,19 @@ msgstr "" #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 msgid "Sorry, this command is not yet implemented." -msgstr "" +msgstr "Pardonon, la komando ankoraŭ ne realiĝas." #. TRANS: Command exception text shown when a user tries to nudge themselves. #: lib/command.php:231 msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Iom sensencas puŝeti vin mem!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. #: lib/command.php:240 #, php-format msgid "Nudge sent to %s." -msgstr "" +msgstr "Puŝeto sendiĝas al %s" #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -5116,19 +5464,50 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Text shown when a notice has been marked as favourite successfully. +#: lib/command.php:314 +msgid "Notice marked as fave." +msgstr "Avizo ŝatiĝas." + #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:360 #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "%1$s aniĝis al grupo %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. #: lib/command.php:408 #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "%1$s foriras de grupo %2$s." + +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:434 +#, php-format +msgid "Fullname: %s" +msgstr "Plennomo: %s" + +#. TRANS: Whois output. %s is the location of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:438 lib/mail.php:268 +#, php-format +msgid "Location: %s" +msgstr "Loko: %s" + +#. TRANS: Whois output. %s is the homepage of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:442 lib/mail.php:271 +#, php-format +msgid "Homepage: %s" +msgstr "Hejmpaĝo: %s" + +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:446 +#, php-format +msgid "About: %s" +msgstr "Biografio: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 @@ -5137,6 +5516,8 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" +"%s estas fora profilo; vi povas sendi rektan mesaĝon nur al uzanto je sama " +"servilo." #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -5148,14 +5529,19 @@ msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." -msgstr "" +msgstr "Eraris sendi rektan mesaĝon." #. 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:554 #, php-format msgid "Notice from %s repeated." -msgstr "" +msgstr "Avizo de %s ripetiĝas." + +#. TRANS: Error text shown when repeating a notice fails with an unknown reason. +#: lib/command.php:557 +msgid "Error repeating notice." +msgstr "Eraris ripeti avizon." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -5163,18 +5549,25 @@ msgstr "" #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +"Avizo tro longas - longlimo estas %1$d lietroj, kaj via mesaĝo longas je %2" +"$d." #. 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:603 #, php-format msgid "Reply to %s sent." -msgstr "" +msgstr "Respondo al %s sendiĝas." + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +msgid "Error saving notice." +msgstr "Eraris sendi avizon." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." -msgstr "" +msgstr "Specifu nomon de la abonota uzanto." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. #: lib/command.php:664 @@ -5205,12 +5598,27 @@ msgstr "" #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. #: lib/command.php:724 lib/command.php:750 msgid "Command not yet implemented." -msgstr "" +msgstr "Komando ankoraŭ ne realigita." + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +msgid "Notification off." +msgstr "Sciigo for." #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." -msgstr "" +msgstr "Malsukcesis malŝalti sciigon." + +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +msgid "Notification on." +msgstr "Sciigo en." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +msgid "Can't turn on notification." +msgstr "Malsukcesis ŝalti sciigon." #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 @@ -5229,13 +5637,27 @@ msgstr "" #: lib/command.php:813 #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "%s malaboniĝas." + +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +msgid "You are not subscribed to anyone." +msgstr "Vi ne abonas iun ajn." + +#. 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:836 +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Vi abonas jenan homon:" +msgstr[1] "Vi abonas jenajn homojn:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. #: lib/command.php:858 msgid "No one is subscribed to you." -msgstr "" +msgstr "Neniu abonas vin." #. 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 @@ -5243,8 +5665,23 @@ msgstr "" #: lib/command.php:863 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "La homo abonas vin:" +msgstr[1] "La homoj abonas vin:" + +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +msgid "You are not a member of any groups." +msgstr "Vi ne estas grupano de iu ajn grupo." + +#. 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:890 +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Vi estas grupano de jena grupo:" +msgstr[1] "Vi estas grupano de jenaj grupoj:" #. TRANS: Help text for commands. #: lib/command.php:905 @@ -5288,6 +5725,44 @@ msgid "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" msgstr "" +"Komandoj:\n" +"on - ŝalti sciigon\n" +"off - malŝalti sciigon\n" +"help - montri ĉi tiun helpon\n" +"follow - aboni uzanton\n" +"groups - listi grupon, kiujn vi aniĝis\n" +"subscriptions - listi viajn abonatojn\n" +"subscribers - listi viajn abonantojn\n" +"leave - malabnoi uzanton\n" +"d - sendi rektan mesaĝon al uzanto\n" +"get - legi la lastan avizon de uzanto\n" +"whois - legi profilan informon pri uzanto\n" +"lose - ĉesigi la uzanton de sekvi vin\n" +"fav - ŝati la lastan avizon de uzanto\n" +"fav # - ŝati la avizon kun la ID\n" +"repeat # - ripeti la avizon kun la ID\n" +"repeat - ripeti la lastan avizon de uzanto\n" +"reply # - respondi la avizon kun la ID\n" +"reply - respondi la lastan avizon de uzanto\n" +"join - aniĝi al grupo\n" +"login - havi ligilon por ensaluti al reta interfaco\n" +"drop - foriri de gruop\n" +"stats - legi vian staton\n" +"stop - same kiel 'off'\n" +"quit - same kiel 'off'\n" +"sub - same kiel 'follow'\n" +"unsub - same kiel 'leave'\n" +"last - same kiel 'get'\n" +"on - ankoraŭ ne realigita.\n" +"off - ankoraŭ ne realigita.\n" +"nudge - puŝeti la uzanton, ke li ĝisdatigu!\n" +"invite - ankoraŭ ne realigita.\n" +"track - ankoraŭ ne realigita.\n" +"untrack - ankoraŭ ne realigita.\n" +"track off - ankoraŭ ne realigita.\n" +"untrack all - ankoraŭ ne realigita.\n" +"tracks - ankoraŭ ne realigita.\n" +"tracking -ankoraŭ ne realigita.\n" #: lib/common.php:136 msgid "I looked for configuration files in the following places: " @@ -5303,51 +5778,89 @@ msgstr "" #: lib/connectsettingsaction.php:110 msgid "IM" -msgstr "" +msgstr "Tujmesaĝilo" #: lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "" +msgstr "Ĝisdatiĝo per tujmesaĝilo." #: lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "" +msgstr "Ĝisdatiĝo per SMM" + +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Konektoj" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "Konektitaj aplikaĵoj rajtigitaj" #: lib/dberroraction.php:60 msgid "Database error" +msgstr "Datumbaza eraro" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Alŝuti dosieron" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" +"Vi povas alŝuti vian propran fonbildon. La dosiera grandlimo estas 2MB." + +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "Desegnaj defaŭltoj konserviĝas." + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Neŝati la avizon" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Ŝati la avizon" #: lib/favorform.php:140 msgid "Favor" -msgstr "" +msgstr "Ŝati" #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "FOAF" #: lib/feedlist.php:64 msgid "Export data" -msgstr "" +msgstr "Elporti datumon" #: lib/galleryaction.php:121 msgid "Filter tags" -msgstr "" +msgstr "Filtrilo-etikedoj" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Ĉiuj" #: lib/galleryaction.php:139 msgid "Select tag to filter" -msgstr "" +msgstr "Eletu etikedon por filtrado" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Etikedo" #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" @@ -5362,14 +5875,86 @@ msgstr "Iri" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL de la hejmpaĝo aŭ blogo de la grupo aŭ temo" + #: lib/groupeditform.php:168 msgid "Describe the group or topic" +msgstr "Priskribo de grupo aŭ temo" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Priskribo de grupo aŭ temo, apenaŭ je %d literoj" + +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" +"Loko de la grupo, se iu ajn, ekzemple \"Urbo, Stato (aŭ Regiono), Lando\"" #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +"Kromaj alnomoj por la grupo, apartigita per komo aŭ spaco, apenaŭ %d literoj" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Grupo" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Grupo %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Grupanoj" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Grupanoj de %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Blokito" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "Blokito de %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Redakti agordon de grupo %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Emblemo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -5377,7 +5962,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Aldoni aŭ redakti emblemon de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -5385,21 +5970,25 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Aldoni aŭ redakti desegnon de %s" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "Grupoj kun plej multe da membroj" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "" +msgstr "Grupoj kun plej multe da avizoj" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "" +msgstr "Etikedoj en avizoj de gruop %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "" +msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 @@ -5412,38 +6001,46 @@ msgstr "" #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" -msgstr "" +msgstr "Nekonata dosiertipo" #: lib/imagefile.php:244 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:246 msgid "kB" -msgstr "" +msgstr "kB" #: lib/jabber.php:387 #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" #: lib/jabber.php:567 #, php-format msgid "Unknown inbox source %d." -msgstr "" +msgstr "Nekonata alvenkesta fonto %d" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "Aniĝi" #: lib/leaveform.php:114 msgid "Leave" msgstr "Forlasi" +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Ensaluti per via uzantnomo kaj pasvorto." + #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "" +msgstr "Krei novan konton" #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" -msgstr "" +msgstr "Retpoŝtadresa konfirmo" #. TRANS: Body for address confirmation email. #: lib/mail.php:177 @@ -5463,12 +6060,20 @@ msgid "" "%s\n" msgstr "" +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." + #: lib/mail.php:248 #, 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" #. TRANS: Main body of new-subscriber notification e-mail #: lib/mail.php:254 @@ -5486,6 +6091,18 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:274 +#, php-format +msgid "Bio: %s" +msgstr "Biografio: %s" + +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:304 +#, php-format +msgid "New email address for posting to %s" +msgstr "Nova retpoŝta adreso por afiŝi ĉe %s" + #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -5500,17 +6117,28 @@ msgid "" "%4$s" msgstr "" +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:433 +#, php-format +msgid "%s status" +msgstr "%s stato" + +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:460 +msgid "SMS confirmation" +msgstr "SMS-a konfirmo" + #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:463 #, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "" +msgstr "%s: konfirmi ke vi havas la telefonnumeron per tiu ĉi kodo:" #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "Vin puŝetis %s" #. TRANS: Body for 'nudge' notification email #: lib/mail.php:489 @@ -5529,6 +6157,12 @@ msgid "" "%4$s\n" msgstr "" +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:536 +#, php-format +msgid "New private message from %s" +msgstr "Nova privata mesaĝo de %s" + #. TRANS: Body for direct-message notification email #: lib/mail.php:541 #, php-format @@ -5549,6 +6183,12 @@ msgid "" "%5$s\n" msgstr "" +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s (@%s) ŝatis vian avizon" + #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -5579,6 +6219,9 @@ msgid "" "\n" "\t%s" msgstr "" +"La tutan interparolon oni povas legi jene:\n" +"\n" +"%s" #: lib/mail.php:657 #, php-format @@ -5615,17 +6258,19 @@ msgstr "" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." -msgstr "" +msgstr "Nur uzanto povas legi sian propran paŝton." #: lib/mailbox.php:139 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 "" +"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." #: lib/mailbox.php:228 lib/noticelist.php:506 msgid "from" -msgstr "" +msgstr "de" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 @@ -5712,45 +6357,56 @@ msgstr "Sendi" #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" -msgstr "" +msgstr "Kio novas, %s?" #: lib/noticeform.php:193 msgid "Attach" -msgstr "" +msgstr "Aldoni" #: lib/noticeform.php:197 msgid "Attach a file" -msgstr "" +msgstr "Aldoni dosieron" #: lib/noticeform.php:213 msgid "Share my location" -msgstr "" +msgstr "Sciigi mian lokon" + +#: lib/noticeform.php:216 +msgid "Do not share my location" +msgstr "Ne sciigi mian lokon" #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +"Pardonon, legi vian lokon estas pli malrapide, ol ni pensis. Bonvolu reprovi " +"poste." + +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +msgid "N" +msgstr "N" #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" -msgstr "" +msgstr "S" #. TRANS: Used in coordinates as abbreviation of east #: lib/noticelist.php:440 msgid "E" -msgstr "" +msgstr "E" #. TRANS: Used in coordinates as abbreviation of west #: lib/noticelist.php:442 msgid "W" -msgstr "" +msgstr "W" #: lib/noticelist.php:444 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" -msgstr "" +msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" #: lib/noticelist.php:453 msgid "at" @@ -5758,23 +6414,76 @@ msgstr "al" #: lib/noticelist.php:502 msgid "web" -msgstr "" +msgstr "reto" + +#: lib/noticelist.php:568 +msgid "in context" +msgstr "kuntekste" + +#: lib/noticelist.php:630 +msgid "Reply to this notice" +msgstr "Respondi ĉi tiun avizon" #: lib/noticelist.php:631 msgid "Reply" -msgstr "" +msgstr "Respondi" + +#: lib/noticelist.php:675 +msgid "Notice repeated" +msgstr "Avizo ripetiĝas" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Puŝeti la uzanton" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Puŝeti" #: lib/nudgeform.php:128 msgid "Send a nudge to this user" -msgstr "" +msgstr "Sendi puŝeton al la uzanto" + +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Eraris enmeti novan profilon" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Eraris enmeti novan vizaĝbildon." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Eraris enmeti foran profilon." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Refoja avizo." + +#: lib/oauthstore.php:491 +msgid "Couldn't insert new subscription." +msgstr "Eraris enmeti novan abonon." + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Persona" #: lib/personalgroupnav.php:104 msgid "Replies" -msgstr "" +msgstr "Respondoj" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Ŝatolisto" #: lib/personalgroupnav.php:125 msgid "Inbox" -msgstr "" +msgstr "Alvenkesto" + +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "Viaj alvenaj mesaĝoj" #: lib/personaltagcloudsection.php:56 #, php-format @@ -5821,26 +6530,39 @@ msgstr "" #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" -msgstr "" +msgstr "Serĉi ĉe retejo" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 msgid "Keyword(s)" -msgstr "" +msgstr "Serĉvorto(j)" + +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Serĉi" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" -msgstr "" +msgstr "Serĉa gvido" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Homon" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "" +msgstr "Serĉi homon ĉe la retejo" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "" +msgstr "Serĉi enhavon ĉe la retejo" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Serĉi grupon ĉe la retejo" #: lib/section.php:89 msgid "Untitled section" @@ -5854,15 +6576,33 @@ msgstr "Pli..." msgid "Silence" msgstr "Silento" +#: lib/silenceform.php:78 +msgid "Silence this user" +msgstr "Silentigi la uzanton" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" -msgstr "" +msgstr "Abonatoj de %s" #: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" -msgstr "" +msgstr "Abonantoj de %s" + +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "Grupoj de %s" + +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Inviti" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviti amikojn kaj kolegojn al %s kun vi" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 @@ -5916,12 +6656,20 @@ msgstr "" #: lib/topposterssection.php:74 msgid "Top posters" -msgstr "" +msgstr "Pintaj afiŝantoj" #: lib/unsandboxform.php:69 msgid "Unsandbox" msgstr "" +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "Nesilentigi" + +#: lib/unsilenceform.php:78 +msgid "Unsilence this user" +msgstr "Nesilentigi la uzanton" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -5930,6 +6678,10 @@ msgstr "" msgid "Unsubscribe" msgstr "Malaboni" +#: lib/userprofile.php:117 +msgid "Edit Avatar" +msgstr "Redakti vizaĝbildon" + #: lib/userprofile.php:234 lib/userprofile.php:248 msgid "User actions" msgstr "Nekonata ago" @@ -5970,16 +6722,48 @@ msgstr "antaŭ kelkaj sekundoj" msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 22692c8915..636ee89b33 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:52+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1902,10 +1902,28 @@ msgstr "Lista de los usuarios en este grupo." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Convertir al usuario en administrador del grupo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5533,14 +5551,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6017,43 +6046,43 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" "comandos:\n" -"activar - activar notificaciones\n" -"desactivar - desactivar notificaciones\n" -"ayuda - mostrar esta ayuda\n" -"seguir - suscribirse al usuario\n" -"grupos - listar los grupos que sigues\n" -"suscripciones - listar las personas que sigues\n" -"suscriptores - listar los grupos que te siguen\n" -"abandonar - cancelar la suscripción al usuario\n" +"on - activar notificaciones\n" +"off - desactivar notificaciones\n" +"help - mostrar esta ayuda\n" +"follow - suscribirse al usuario\n" +"groups - listar los grupos que sigues\n" +"subscriptions - listar las personas que sigues\n" +"subscribers - listar los grupos que te siguen\n" +"leave - cancelar la suscripción al usuario\n" "d - dirigir mensaje al usuario\n" -"obtener - obtener último aviso del usuario\n" -"quienes - obtener información del perfil del usuario\n" -"bloquear - obligar al usuario a que deje de seguirte\n" +"get - obtener último aviso del usuario\n" +"whois - obtener información del perfil del usuario\n" +"lose - obligar al usuario a que deje de seguirte\n" "fav - añadir el último aviso del usario a tus favoritos\n" "fav # - añadir el aviso con el ID dado a tus favoritos\n" -"repetir # - repetir el aviso con el ID dado\n" -"repetir - repetir el último aviso del usuario\n" -"responder # - responder al aviso del ID dado\n" -"responder - responder al último aviso del usuario\n" -"unirse - unirse a un grupo\n" -"entrar - obtener un vínculo para iniciar sesión en la interfaz Web\n" -"abandonar - abandonar el grupo\n" -"estadísticas - obtener tus estadísticas\n" -"detener - igual que 'desactivar'\n" -"parar - igual que 'desactivar'\n" -"sus - igual que 'seguir'\n" -"desus - igual que 'abandonar'\n" -"último - igual que 'obtener'\n" -"activado - aún sin implementar.\n" -"desactivado - aún sin implementar.\n" -"toque - recordarle a un ausuario que actualice.\n" -"invitar - aún sin implementar.\n" -"rastrear - aún sin implementar.\n" -"no rastrear - aún sin implementar.\n" -"dejar de rastrear - aún sin implementar.\n" -"dejar de rastrear todos - aún sin implementar.\n" -"rastrear - aún sin implementar.\n" -"rastreando - aún sin implementar.\n" +"repeat # - repetir el aviso con el ID dado\n" +"repeat - repetir el último aviso del usuario\n" +"reply # - responder al aviso del ID dado\n" +"reply - responder al último aviso del usuario\n" +"join - unirse a un grupo\n" +"login - obtener un vínculo para iniciar sesión en la interfaz Web\n" +"drop - abandonar el grupo\n" +"stats - obtener tus estadísticas\n" +"stop - igual que 'desactivar'\n" +"quit - igual que 'desactivar'\n" +"sub - igual que 'seguir'\n" +"unsub - igual que 'abandonar'\n" +"last - igual que 'obtener'\n" +"on - aún sin implementar.\n" +"off - aún sin implementar.\n" +"nudge - recordarle a un ausuario que actualice.\n" +"invite - aún sin implementar.\n" +"track - aún sin implementar.\n" +"untrack - aún sin implementar.\n" +"track off - aún sin implementar.\n" +"untrack all - aún sin implementar.\n" +"tracks - aún sin implementar.\n" +"tracking - aún sin implementar.\n" #: lib/common.php:135 msgid "No configuration file found. " @@ -6197,6 +6226,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Nombres adicionales para el grupo, separados por comas o espacios. Máximo: %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos con más miembros" @@ -6693,6 +6794,23 @@ msgstr "El archivo no se pudo mover al directorio de destino." msgid "Could not determine file's MIME type." msgstr "No se pudo determinar tipo MIME del archivo" +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar un aviso directo" @@ -6808,6 +6926,23 @@ msgstr "Dar un toque a " msgid "Send a nudge to this user" msgstr "Dar un toque a este usuario" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." @@ -6951,6 +7086,11 @@ msgstr "Buscar sitio" msgid "Keyword(s)" msgstr "Palabra(s) clave" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7161,21 +7301,53 @@ msgstr "hace unos segundos" msgid "about a minute ago" msgstr "hace un minuto" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "hace una hora" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "hace un día" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "hace un mes" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 6af53edae3..2a7c0dd579 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:54+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:48+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1869,10 +1869,28 @@ msgstr "یک فهرست از کاربران در این گروه" msgid "Admin" msgstr "مدیر" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5376,14 +5394,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6021,6 +6050,78 @@ msgstr "مکان گروه، در صورت وجود داشتن، مانند «ش msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "نام‌های مستعار اضافی برای گروه، با کاما- یا فاصله- جدا شود، بیشینه %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "گروه های با اعضاء بیشتر" @@ -6504,6 +6605,23 @@ msgstr "فایل نتوانست به دایرکتوری مقصد منتقل شو msgid "Could not determine file's MIME type." msgstr "نمی‌توان فرمت پرونده را تعیین کرد." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "فرستادن یک پیام مستقیم" @@ -6614,6 +6732,23 @@ msgstr "یادآوری‌کردن" msgid "Send a nudge to this user" msgstr "یک یادآوری به این کاربر فرستاده شود" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "نمی‌توان اشتراک تازه‌ای افزود." @@ -6745,6 +6880,11 @@ msgstr "جست‌وجوی وب‌گاه" msgid "Keyword(s)" msgstr "کلمه(های) کلیدی" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6931,21 +7071,49 @@ msgstr "چند ثانیه پیش" msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "حدود یک روز پیش" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "حدود یک ماه پیش" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index fd00b99d7d..f29b082d08 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:53+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:46+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -1492,10 +1492,28 @@ msgstr "Lista ryhmän käyttäjistä." msgid "Admin" msgstr "Ylläpito" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4145,14 +4163,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -4573,6 +4592,78 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Ryhmät, joissa eniten jäseniä" @@ -5056,6 +5147,23 @@ msgstr "Tönäise" msgid "Send a nudge to this user" msgstr "Lähetä tönäisy tälle käyttäjälle" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." @@ -5160,6 +5268,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Henkilö" @@ -5321,21 +5434,53 @@ msgstr "muutama sekunti sitten" msgid "about a minute ago" msgstr "noin minuutti sitten" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "noin tunti sitten" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "noin päivä sitten" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "noin kuukausi sitten" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 3d33750341..121eba4be8 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:55+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1911,10 +1911,28 @@ msgstr "Liste des utilisateurs inscrits à ce groupe." msgid "Admin" msgstr "Administrer" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Faire de cet utilisateur un administrateur du groupe" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5572,14 +5590,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6244,6 +6273,78 @@ msgstr "" "Pseudos supplémentaires pour le groupe, séparés par des virgules ou des " "espaces, %d au maximum" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groupes avec le plus de membres" @@ -6740,6 +6841,23 @@ msgstr "Le fichier n’a pas pu être déplacé dans le dossier de destination." msgid "Could not determine file's MIME type." msgstr "Impossible de déterminer le type MIME du fichier." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envoyer un message direct" @@ -6855,6 +6973,23 @@ msgstr "Clin d’œil" msgid "Send a nudge to this user" msgstr "Envoyer un clin d’œil à cet utilisateur" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." @@ -6998,6 +7133,11 @@ msgstr "Rechercher sur le site" msgid "Keyword(s)" msgstr "Mot(s) clef(s)" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7211,21 +7351,53 @@ msgstr "il y a quelques secondes" msgid "about a minute ago" msgstr "il y a 1 minute" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "il y a 1 heure" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "il y a 1 jour" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "il y a 1 mois" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index e69fe18318..38e2ba1e53 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:56+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:50+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -1206,6 +1206,12 @@ msgstr "" msgid "Admin" msgstr "" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -3687,14 +3693,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -4105,6 +4112,42 @@ msgctxt "MENU" msgid "Group" msgstr "" +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:120 @@ -4113,6 +4156,12 @@ msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -4554,6 +4603,23 @@ msgstr "" msgid "Reply" msgstr "Respostas" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." @@ -4646,6 +4712,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Xente" @@ -4773,21 +4844,65 @@ msgstr "fai uns segundos" msgid "about a minute ago" msgstr "fai un minuto" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fai unha hora" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "fai un día" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "fai un mes" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 44a206e654..eb445fcf8b 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:58+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:51+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1899,10 +1899,28 @@ msgstr "Unha lista dos usuarios pertencentes a este grupo." msgid "Admin" msgstr "Administrador" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Converter ao usuario en administrador do grupo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5538,14 +5556,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6203,6 +6232,78 @@ msgstr "" "Alcumes adicionais para o grupo, separados por comas ou espazos, %d como " "máximo" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos con máis membros" @@ -6695,6 +6796,23 @@ msgstr "Non se puido mover o ficheiro ao directorio de destino." msgid "Could not determine file's MIME type." msgstr "Non se puido determinar o tipo MIME do ficheiro." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar unha nota directa" @@ -6810,6 +6928,23 @@ msgstr "Facer un aceno" msgid "Send a nudge to this user" msgstr "Facerlle un aceno a este usuario" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir unha subscrición nova." @@ -6953,6 +7088,11 @@ msgstr "Buscar no sitio" msgid "Keyword(s)" msgstr "Termos de busca" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7164,21 +7304,53 @@ msgstr "hai uns segundos" msgid "about a minute ago" msgstr "hai como un minuto" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "hai como unha hora" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "hai como un día" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "hai como un mes" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 3b4dcb6be4..6085f6146e 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -8,17 +8,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:53:59+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -1076,6 +1076,12 @@ msgstr "" msgid "Admin" msgstr "" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -3414,14 +3420,20 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form legend. @@ -3850,6 +3862,48 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:120 @@ -3858,6 +3912,12 @@ msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -4259,6 +4319,23 @@ msgstr "" msgid "Send a nudge to this user" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." @@ -4356,6 +4433,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "אנשים" @@ -4496,21 +4578,53 @@ msgstr "לפני מספר שניות" msgid "about a minute ago" msgstr "לפני כדקה" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "לפני כשעה" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "לפני כיום" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "לפני כחודש" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index c1735aad17..db9e8891d9 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:00+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:56+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1750,10 +1750,28 @@ msgstr "Lisćina wužiwarjow w tutej skupinje." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Wužiwarja k administratorej skupiny činić" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4710,9 +4728,15 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5294,6 +5318,62 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -5686,6 +5766,23 @@ msgstr "Dataja njeda so do ciloweho zapisa přesunyć." msgid "Could not determine file's MIME type." msgstr "MIME-typ dataje njeda so zwěsćić." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Direktnu zdźělenku pósłać" @@ -5791,6 +5888,23 @@ msgstr "Zdźělenka wospjetowana" msgid "Nudge" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nowy abonement njeda so zasunyć." @@ -5917,6 +6031,11 @@ msgstr "Pytanske sydło" msgid "Keyword(s)" msgstr "Klučowe hesła" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6101,21 +6220,61 @@ msgstr "před něšto sekundami" msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index a8e55d6856..c02685c9c9 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:01+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1892,10 +1892,28 @@ msgstr "Un lista de usatores in iste gruppo." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Blocar" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Facer admin" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Facer iste usator un administrator" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5507,17 +5525,23 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Nulle application pro iste clave de consumitor." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +msgid "Bad access token." +msgstr "Mal indicio de accesso." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Nulle usator pro iste indicio." -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "Non poteva authenticar te." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -6172,6 +6196,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Pseudonymos additional pro le gruppo, separate per commas o spatios, max %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Gruppo" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Gruppo %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Membros" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Membros del gruppo %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Blocate" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "%s usatores blocate" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Modificar proprietates del gruppo %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Logotypo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "Adder o modificar logotypo de %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "Adder o modificar apparentia de %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Gruppos con le plus membros" @@ -6664,6 +6760,25 @@ msgstr "File non poteva esser displaciate in le directorio de destination." msgid "Could not determine file's MIME type." msgstr "Non poteva determinar le typo MIME del file." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"\"%1$s\" non es un typo de file supportate in iste servitor. Tenta usar un " +"altere formato de %2$s." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "\"%s\" non es un typo de file supportate in iste servitor." + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Inviar un nota directe" @@ -6779,6 +6894,23 @@ msgstr "Pulsar" msgid "Send a nudge to this user" msgstr "Inviar un pulsata a iste usator" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Error durante le insertion del nove profilo." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Error durante le insertion del avatar." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Error durante le insertion del profilo remote." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Nota duplicate." + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non poteva inserer nove subscription." @@ -6922,6 +7054,11 @@ msgstr "Cercar in sito" msgid "Keyword(s)" msgstr "Parola(s)-clave" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Cercar" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7135,21 +7272,53 @@ msgstr "alcun secundas retro" msgid "about a minute ago" msgstr "circa un minuta retro" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "un minuta" +msgstr[1] "%d minutas" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "circa un hora retro" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "un hora" +msgstr[1] "%d horas" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "circa un die retro" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "un die" +msgstr[1] "%d dies" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "circa un mense retro" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "un mense" +msgstr[1] "%d menses" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 177c00e08a..2a4cbc4ebd 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:02+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:15:59+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -1263,10 +1263,22 @@ msgstr "Listi yfir notendur í þessum hóp." msgid "Admin" msgstr "Stjórnandi" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" @@ -3890,14 +3902,20 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form legend. @@ -4343,6 +4361,78 @@ msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Hóparnir með flestu meðlimina" @@ -4811,6 +4901,23 @@ msgstr "Pot" msgid "Send a nudge to this user" msgstr "Ýta við þessum notanda" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Gat ekki sett inn nýja áskrift." @@ -4920,6 +5027,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Fólk" @@ -5086,21 +5198,53 @@ msgstr "fyrir nokkrum sekúndum" msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "fyrir um einum degi síðan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 35f4b1c1f2..3d0cdb6656 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:04+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1884,10 +1884,28 @@ msgstr "Un elenco degli utenti in questo gruppo." msgid "Admin" msgstr "Amministra" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5452,14 +5470,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6115,6 +6144,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Soprannomi aggiuntivi per il gruppo, separati da virgole o spazi, max %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "I gruppi più numerosi" @@ -6609,6 +6710,23 @@ msgstr "Impossibile spostare il file nella directory di destinazione." msgid "Could not determine file's MIME type." msgstr "Impossibile determinare il tipo MIME del file." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Invia un messaggio diretto" @@ -6724,6 +6842,23 @@ msgstr "Richiama" msgid "Send a nudge to this user" msgstr "Invia un richiamo a questo utente" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." @@ -6867,6 +7002,11 @@ msgstr "Cerca nel sito" msgid "Keyword(s)" msgstr "Parole" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7076,21 +7216,53 @@ msgstr "pochi secondi fa" msgid "about a minute ago" msgstr "circa un minuto fa" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "circa un'ora fa" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "circa un giorno fa" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "circa un mese fa" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index e555c52d87..43311a1b0a 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:05+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1750,10 +1750,28 @@ msgstr "このグループのユーザのリスト。" msgid "Admin" msgstr "管理者" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5047,14 +5065,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5588,6 +5617,78 @@ msgstr "グループの場所, 例えば \"都市, 都道府県 (または 地 msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "グループのエクストラニックネーム、カンマまたはスペース区切り、最大 %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "メンバー数が多いグループ" @@ -5899,6 +6000,23 @@ msgstr "ファイルを目的ディレクトリに動かすことができませ msgid "Could not determine file's MIME type." msgstr "ファイルのMIMEタイプを決定できません。" +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接つぶやきを送る" @@ -5989,6 +6107,23 @@ msgstr "合図" msgid "Send a nudge to this user" msgstr "このユーザへ合図を送る" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" @@ -6127,6 +6262,11 @@ msgstr "サイト検索" msgid "Keyword(s)" msgstr "キーワード" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6308,21 +6448,49 @@ msgstr "数秒前" msgid "about a minute ago" msgstr "約 1 分前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "約 1 時間前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "約 1 日前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "約 1 ヵ月前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 36eecb2760..7d7e6b53bf 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:06+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:03+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1871,10 +1871,28 @@ msgstr "ამ ჯგუფის წევრების სია." msgid "Admin" msgstr "ადმინი" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "მიანიჭე მომხმარებელს ჯგუფის ადმინობა" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5463,9 +5481,15 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6084,6 +6108,78 @@ msgstr "" "ჯგუფის დამატებითი მეტსახელები. გამოყავით მძიმით ან სივრცით. მაქსიმუმ %d " "სიმბოლო" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "ჯგუფები უმეტესი მომხმარებლებით" @@ -6557,6 +6653,23 @@ msgstr "ფაილის გადატანა დანიშნულე msgid "Could not determine file's MIME type." msgstr "ფაილის MIME ტიპი ვერ დადგინდა." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "გააგზავნე პირდაპირი შეტყობინება" @@ -6672,6 +6785,23 @@ msgstr "" msgid "Send a nudge to this user" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." @@ -6815,6 +6945,11 @@ msgstr "ძიება საიტზე" msgid "Keyword(s)" msgstr "საკვანძო სიტყვები" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7023,21 +7158,49 @@ msgstr "რამდენიმე წამის წინ" msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 46c1fb4694..d9ca82db61 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:08+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:04+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1720,6 +1720,24 @@ msgstr "이 그룹의 회원리스트" msgid "Admin" msgstr "관리자" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4661,14 +4679,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form guide. @@ -5130,6 +5149,78 @@ msgstr "그룹의 위치, \"시/군/구, 도, 국가\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "가장 많은 회원수를 가진 그룹들" @@ -5602,6 +5693,23 @@ msgstr "찔러 보기" msgid "Send a nudge to this user" msgstr "이 사용자에게 찔러 보기 메시지 보내기" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." @@ -5724,6 +5832,11 @@ msgstr "검색 도움말" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -5911,21 +6024,49 @@ msgstr "몇 초 전" msgid "about a minute ago" msgstr "1분 전" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1시간 전" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "하루 전" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "1달 전" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 45afa2b711..90659a05cd 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:10+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1898,10 +1898,28 @@ msgstr "Список на корисниците на оваа група." msgid "Admin" msgstr "Администратор" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Блокирај" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Назначи за администратор" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Назначи го корисников за администратор" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5525,17 +5543,23 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Нема програм за тој потрошувачки клуч." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 msgid "No user for that token." -msgstr "" +msgstr "Нема корисник за тој жетон." -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "Не можевме да ве потврдиме." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -6189,6 +6213,78 @@ msgstr "" "Дополнителни прекари за групата, одделени со запирка или празно место, " "највеќе до %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Група" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Група „%s“" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Членови" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Членови на групата „%s“" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Блокирани" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "Блокирани корисници од групата „%s“" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Уредување на својства на групата „%s“" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Лого" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "Додавање или уредување на лого на групата „%s “" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "Додавање или уредување на изгледот на групата „%s“" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи со највеќе членови" @@ -6681,6 +6777,25 @@ msgstr "Податотеката не може да се премести во msgid "Could not determine file's MIME type." msgstr "Не можев да го утврдам mime-типот на податотеката." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"„%1$s“ не е поддржан податотечен тип на овој опслужувач. Обидете се со друг %" +"2$s-формат." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "„%s„ не е поддржан податотечен тип на овој опслужувач." + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Испрати директна забелешка" @@ -6796,6 +6911,23 @@ msgstr "Подбуцни" msgid "Send a nudge to this user" msgstr "Испрати подбуцнување на корисников" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Грешка при вметнувањето на новиот профил." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Грешка при вметнувањето на аватарот." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Грешка при вметнувањето на далечинскиот профил." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Дуплирана забелешка." + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." @@ -6939,6 +7071,11 @@ msgstr "Пребарај по мрежното место" msgid "Keyword(s)" msgstr "Клучен збор" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Пребарај" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7148,21 +7285,53 @@ msgstr "пред неколку секунди" msgid "about a minute ago" msgstr "пред една минута" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "пред околу една минута" +msgstr[1] "пред околу %d минути" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "пред еден час" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "пред околу еден час" +msgstr[1] "пред околу %d часа" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "пред еден ден" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "пред околу еден ден" +msgstr[1] "пред околу %d дена" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "пред еден месец" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "пред околу еден месец" +msgstr[1] "пред околу %d месеци" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index e74afe48fa..1b82d47547 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:11+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:07+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1828,10 +1828,28 @@ msgstr "En liste over brukerne i denne gruppen." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5179,14 +5197,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5681,6 +5700,78 @@ msgstr "Beskriv programmet ditt med %d tegn" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmer" @@ -6153,6 +6244,23 @@ msgstr "Filen kunne ikke flyttes til målmappen." msgid "Could not determine file's MIME type." msgstr "Kunne ikke avgjøre filens MIME-type." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send en direktenotis" @@ -6264,6 +6372,23 @@ msgstr "Knuff" msgid "Send a nudge to this user" msgstr "Send et knuff til denne brukeren" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" @@ -6373,6 +6498,11 @@ msgstr "Søk nettsted" msgid "Keyword(s)" msgstr "Nøkkelord" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6529,21 +6659,53 @@ msgstr "noen få sekunder siden" msgid "about a minute ago" msgstr "omtrent ett minutt siden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "omtrent én time siden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "omtrent én dag siden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "omtrent én måned siden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index d34cc5e1db..e3ed459de3 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:13+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1915,10 +1915,28 @@ msgstr "Ledenlijst van deze groep" msgid "Admin" msgstr "Beheerder" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Blokkeren" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Beheerder maken" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Deze gebruiker beheerder maken" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5574,17 +5592,23 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Er is geen applicatie voor die gebruikerssleutel." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +msgid "Bad access token." +msgstr "Ongeldig toegangstoken." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Er is geen gebruiker voor dat token." -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "U kon niet geauthenticeerd worden." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -6246,6 +6270,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Extra namen voor de groep, gescheiden door komma's of spaties. Maximaal %d." +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Groep" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Groep %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Leden" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Leden van de group %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Geblokkeerd" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "Geblokkeerde gebruikers in %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Eigenschappen van de groep %s bewerken" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Logo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "Logo voor de groep %s toevoegen of bewerken" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "Vormgeving van de groep %s toevoegen of aanpassen" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Groepen met de meeste leden" @@ -6742,6 +6838,25 @@ msgstr "Het bestand kon niet verplaatst worden naar de doelmap." msgid "Could not determine file's MIME type." msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"\"%1$s\" is geen ondersteund bestandstype op deze server. Probeer een andere " +"bestandstype van de applicatie \"%2$s\" te gebruiken." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "\"%s\" is geen ondersteund bestandstype op deze server." + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Directe mededeling verzenden" @@ -6857,6 +6972,23 @@ msgstr "Porren" msgid "Send a nudge to this user" msgstr "Deze gebruiker porren" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Fout tijdens het invoegen van een nieuw profiel." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Fout bij het invoegen van de avatar." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Fout bij het invoegen van het profiel van een andere server." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Dubbele mededeling." + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." @@ -7000,6 +7132,11 @@ msgstr "Site doorzoeken" msgid "Keyword(s)" msgstr "Term(en)" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Zoeken" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7215,21 +7352,53 @@ msgstr "een paar seconden geleden" msgid "about a minute ago" msgstr "ongeveer een minuut geleden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "ongeveer een minuut geleden" +msgstr[1] "ongeveer %d minuten geleden" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ongeveer een uur geleden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "ongeveer een uur geleden" +msgstr[1] "ongeveer %d uur geleden" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "ongeveer een dag geleden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "ongeveer een dag geleden" +msgstr[1] "ongeveer %d dagen geleden" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "ongeveer een maand geleden" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "ongeveer een maand geleden" +msgstr[1] "ongeveer %d maanden geleden" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 743b222c72..e8c54c3837 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:12+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:08+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -1253,6 +1253,24 @@ msgstr "Ei liste over brukarane i denne gruppa." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -3832,14 +3850,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -4299,6 +4318,78 @@ msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmar" @@ -4756,6 +4847,23 @@ msgstr "Dult" msgid "Send a nudge to this user" msgstr "Send eit dult til denne brukaren" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." @@ -4860,6 +4968,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Folk" @@ -5021,21 +5134,53 @@ msgstr "eit par sekund sidan" msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "omtrent ein time sidan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "omtrent ein dag sidan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "omtrent ein månad sidan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 884844bc68..3152d3f8e9 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\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:15+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:10+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1883,10 +1883,28 @@ msgstr "Lista użytkowników znajdujących się w tej grupie." msgid "Admin" msgstr "Administrator" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Zablokuj" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5501,14 +5519,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6167,6 +6196,78 @@ msgstr "" "Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " "%d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Grupa" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Grupa %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Zablokowany" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Logo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupy z największą liczbą członków" @@ -6658,6 +6759,23 @@ msgstr "Nie można przenieść pliku do katalogu docelowego." msgid "Could not determine file's MIME type." msgstr "Nie można określić typu MIME pliku." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" @@ -6773,6 +6891,23 @@ msgstr "Szturchnij" msgid "Send a nudge to this user" msgstr "Wyślij szturchnięcie do tego użytkownika" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." @@ -6917,6 +7052,11 @@ msgstr "Przeszukaj witrynę" msgid "Keyword(s)" msgstr "Słowa kluczowe" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Wyszukaj" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7129,21 +7269,57 @@ msgstr "kilka sekund temu" msgid "about a minute ago" msgstr "około minutę temu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "około godzinę temu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "blisko dzień temu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "około miesiąc temu" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 51a2982b70..46794835b6 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:16+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1890,10 +1890,28 @@ msgstr "Uma lista dos utilizadores neste grupo." msgid "Admin" msgstr "Gestor" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Bloquear" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Tornar Gestor" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Tornar este utilizador um gestor" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5507,17 +5525,23 @@ msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Nenhuma aplicação para essa chave de consumidor." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +msgid "Bad access token." +msgstr "Código de acesso incorrecto." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Nenhum utilizador para esse código." -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "Não foi possível autenticá-lo." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -6167,6 +6191,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Nomes adicionais para o grupo, separados por vírgulas ou espaços, máx. %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Grupo" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Grupo %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Membros" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Membros do grupo %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Bloqueado" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "Utilizadores bloqueados de %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Editar propriedades do grupo %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Logotipo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "Adicionar ou editar o logotipo de %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "Adicionar ou editar o design de %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos com mais membros" @@ -6660,6 +6756,25 @@ msgstr "Não foi possível mover o ficheiro para o directório de destino." msgid "Could not determine file's MIME type." msgstr "Não foi possível determinar o tipo MIME do ficheiro." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"\"%1$s\" não é um tipo de ficheiro suportado neste servidor. Tente usar " +"outro formato de %2$s." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor." + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma nota directa" @@ -6775,6 +6890,23 @@ msgstr "Tocar" msgid "Send a nudge to this user" msgstr "Enviar toque a este utilizador" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Erro ao inserir perfil novo." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Erro ao inserir avatar." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Erro ao inserir perfil remoto." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Nota duplicada." + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." @@ -6918,6 +7050,11 @@ msgstr "Pesquisar site" msgid "Keyword(s)" msgstr "Categorias" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Pesquisar" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7128,21 +7265,53 @@ msgstr "há alguns segundos" msgid "about a minute ago" msgstr "há cerca de um minuto" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "um minuto" +msgstr[1] "%d minutos" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "há cerca de uma hora" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "uma hora" +msgstr[1] "%d horas" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "há cerca de um dia" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "um dia" +msgstr[1] "%d dias" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "há cerca de um mês" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "um mês" +msgstr[1] "%d meses" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 56a02e2bbd..3580e6c994 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:17+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:14+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1907,10 +1907,28 @@ msgstr "Uma lista dos usuários deste grupo." msgid "Admin" msgstr "Admin" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Bloquear" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Tornar administrador" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Torna este usuário um administrador" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5533,16 +5551,27 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Não foi encontrado nenhuma aplicação para essa chave de consumidor." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +msgid "Bad access token." +msgstr "Token de acesso incorreto." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6201,6 +6230,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Apelidos extras para o grupo, separado por vírgulas ou espaços, no máximo %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupos com mais membros" @@ -6697,6 +6798,23 @@ msgstr "Não foi possível mover o arquivo para o diretório de destino." msgid "Could not determine file's MIME type." msgstr "Não foi possível determinar o tipo MIME do arquivo." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" @@ -6812,6 +6930,23 @@ msgstr "Chamar a atenção" msgid "Send a nudge to this user" msgstr "Chame a atenção deste usuário" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." @@ -6955,6 +7090,11 @@ msgstr "Procurar no site" msgid "Keyword(s)" msgstr "Palavra(s)-chave" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7164,21 +7304,53 @@ msgstr "alguns segundos atrás" msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "cerca de 1 dia atrás" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "cerca de 1 mês atrás" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 6bc2578872..fafeddfc66 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:18+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1903,10 +1903,28 @@ msgstr "Список пользователей, являющихся члена msgid "Admin" msgstr "Настройки" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Сделать пользователя администратором группы" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5519,14 +5537,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6185,6 +6214,78 @@ msgstr "" "Дополнительные имена для группы, разделённые запятой или пробелом, максимум %" "d имён" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Группы с наибольшим количеством участников" @@ -6676,6 +6777,23 @@ msgstr "Файл не может быть перемещён в целевую msgid "Could not determine file's MIME type." msgstr "Не удаётся определить mime-тип файла." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Послать прямую запись" @@ -6791,6 +6909,23 @@ msgstr "«Подтолкнуть»" msgid "Send a nudge to this user" msgstr "«Подтолкнуть» этого пользователя" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." @@ -6934,6 +7069,11 @@ msgstr "Поиск по сайту" msgid "Keyword(s)" msgstr "Ключевые слова" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7143,21 +7283,57 @@ msgstr "пару секунд назад" msgid "about a minute ago" msgstr "около минуты назад" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "около часа назад" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "около дня назад" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "около месяца назад" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 0289924243..ba7c02a7bb 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5246,12 +5246,12 @@ msgstr "" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form legend. diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index f02e50ac44..3996187f2b 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:20+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:16+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1882,10 +1882,28 @@ msgstr "En lista av användarna i denna grupp." msgid "Admin" msgstr "Administratör" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gör användare till en administratör för gruppen" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5488,14 +5506,25 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -6147,6 +6176,78 @@ msgstr "Plats för gruppen, om den finns, såsom \"Stad, Län, Land\"" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "Extra smeknamn för gruppen, komma- eller mellanslagsseparerade, max &d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Grupper med flest medlemmar" @@ -6638,6 +6739,23 @@ msgstr "Fil kunde inte flyttas till destinationskatalog." msgid "Could not determine file's MIME type." msgstr "Kunde inte fastställa filens MIME-typ." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Skicka en direktnotis" @@ -6753,6 +6871,23 @@ msgstr "Knuffa" msgid "Send a nudge to this user" msgstr "Skicka en knuff till denna användare" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kunde inte infoga ny prenumeration." @@ -6896,6 +7031,11 @@ msgstr "Sök webbplats" msgid "Keyword(s)" msgstr "Nyckelord" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7104,21 +7244,53 @@ msgstr "ett par sekunder sedan" msgid "about a minute ago" msgstr "för nån minut sedan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "för en timma sedan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "för en dag sedan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "för en månad sedan" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 5fe86483d6..f1b479ea34 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:21+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:18+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1646,10 +1646,28 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా msgid "Admin" msgstr "నిర్వాహకులు" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -4642,14 +4660,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -5160,6 +5179,62 @@ msgstr "గుంపు యొక్క ప్రాంతం, ఉంటే, \" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -5738,6 +5813,23 @@ msgstr "స్పందించండి" msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." @@ -5867,6 +5959,11 @@ msgstr "సైటుని వెతుకు" msgid "Keyword(s)" msgstr "కీపదము(లు)" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6062,21 +6159,53 @@ msgstr "కొన్ని క్షణాల క్రితం" msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "ఓ నెల క్రితం" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 56f93209eb..94f9bb2649 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:22+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:19+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -1129,6 +1129,12 @@ msgstr "" msgid "Admin" msgstr "" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -3467,14 +3473,20 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form legend. @@ -3909,6 +3921,42 @@ msgctxt "MENU" msgid "Group" msgstr "" +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:120 @@ -3917,6 +3965,12 @@ msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -4328,6 +4382,23 @@ msgstr "" msgid "Send a nudge to this user" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." @@ -4437,6 +4508,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "" @@ -4581,21 +4657,49 @@ msgstr "birkaç saniye önce" msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "yaklaşık bir gün önce" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "yaklaşık bir ay önce" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 2a3d54b7a2..f19f46649a 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:23+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet\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: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1888,10 +1888,28 @@ msgstr "Список учасників цієї групи." msgid "Admin" msgstr "Адмін" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "Блок" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "Зробити адміном" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "Надати цьому користувачеві права адміністратора" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5501,17 +5519,23 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Немає додатків для даного споживчого ключа." + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 msgid "No user for that token." -msgstr "" +msgstr "Немає користувача для цього токену." -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "Не вдалося автентифікувати Вас." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -6164,6 +6188,78 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" "Додаткові імена для групи, відокремлювати комами або пробілами, максимум %d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "Група" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "Група %s" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "Учасники" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "Учасники групи %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "Заблоковані" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "Заблоковані користувачі %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "Редагувати властивості групи %s" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Логотип" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "Додати або редагувати логотип %s" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "Додати або редагувати дизайн %s" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "Групи з найбільшою кількістю учасників" @@ -6657,6 +6753,25 @@ msgstr "Файл не може бути переміщений у директо msgid "Could not determine file's MIME type." msgstr "Не вдається визначити MIME-тип файлу." +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" +"Тип файлів «%1$s» тепер не підтримується на даному сервері. Спробуйте " +"використати інший формат %2$s." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "Тип файлів «%s» тепер не підтримується на даному сервері." + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "Надіслати прямий допис" @@ -6772,6 +6887,23 @@ msgstr "«Розштовхати»" msgid "Send a nudge to this user" msgstr "Спробувати «розштовхати» цього користувача" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "Помилка при додаванні нового профілю." + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "Помилка при додаванні аватари." + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "Помилка при додаванні віддаленого профілю." + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "Дублікат допису." + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." @@ -6915,6 +7047,11 @@ msgstr "Пошук" msgid "Keyword(s)" msgstr "Ключові слова" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "Пошук" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -7126,21 +7263,57 @@ msgstr "мить тому" msgid "about a minute ago" msgstr "хвилину тому" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "хвилину тому" +msgstr[1] "%d хвилин тому" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "годину тому" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "годину тому" +msgstr[1] "%d годин тому" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "день тому" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "день тому" +msgstr[1] "%d днів тому" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "місяць тому" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "місяць тому" +msgstr[1] "%d місяців тому" +msgstr[2] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 4759a8edc4..463bad317c 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:24+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:22+0000\n" "Language-Team: Vietnamese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1152,12 +1152,24 @@ msgstr "" msgid "Admin" msgstr "" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -3368,6 +3380,11 @@ msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" +#: lib/action.php:510 +msgctxt "MENU" +msgid "Help" +msgstr "Trợ giúp" + #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:513 msgctxt "TOOLTIP" @@ -3511,14 +3528,15 @@ msgstr "" msgid "No user for that token." msgstr "" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." msgstr "" -#. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Form legend. @@ -3884,6 +3902,10 @@ msgstr "" msgid "Database error" msgstr "" +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Tải tập tin lên" + #: lib/designsettings.php:418 msgid "Design defaults restored." msgstr "" @@ -3942,6 +3964,62 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -4335,6 +4413,23 @@ msgstr "Tìm kiếm thông báo" msgid "Nudge this user" msgstr "Bỏ chặn người dùng này" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." @@ -4426,6 +4521,11 @@ msgstr "" msgid "Keyword(s)" msgstr "" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Tên tài khoản" @@ -4562,21 +4662,49 @@ msgstr "vài giây trước" msgid "about a minute ago" msgstr "1 phút trước" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "1 giờ trước" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "1 ngày trước" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "1 tháng trước" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index eec5bb093e..39500e6c1d 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:26+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16: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.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1858,10 +1858,28 @@ msgstr "该小组的成员列表。" msgid "Admin" msgstr "管理" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "屏蔽" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "使用户成为小组的管理员" +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "设置管理员" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "将这个用户设为管理员" + #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. @@ -5352,17 +5370,23 @@ msgstr "API 资源需要读写的访问权限,但是你只有只读的权限 #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "没有应用使用这个 consumer key。" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +msgid "Bad access token." +msgstr "无效的 access token。" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "没有用户使用这个 token。" -#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" -msgstr "" +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +#: lib/apiauth.php:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "无法验证你。" #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5845,8 +5869,8 @@ msgstr "" "fav #<消息id> - 将该id的消息加为'收藏'\n" "repeat #<消息id> - 转发该id的消息\n" "repeat <昵称> - 转发该用户的最后一条消息\n" -"reply # - 对该id消息回复\n" -"reply <昵称> - 对该用户的最后一条小心回复\n" +"reply #<消息id> - 对该id消息回复\n" +"reply <昵称> - 对该用户的最后一条消息回复\n" "join <小组> - 加入小组\n" "login - 获取网页登录的地址\n" "drop <小组> - 离开小组\n" @@ -6004,6 +6028,78 @@ msgstr "小组的地理位置,例如“国家、省份、城市”" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "该小组额外的昵称,用逗号或者空格分隔开,最长%d" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "小组" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "%s小组" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "组员" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "%s 小组成员" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "屏蔽的用户" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "%s 屏蔽的用户" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "编辑 %s 小组设置" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "Logo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "添加或编辑 %s logo" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "添加或编辑 %s 外观" + #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" msgstr "人气最旺的小组" @@ -6489,6 +6585,23 @@ msgstr "文件不能被移动到目标目录。" msgid "Could not determine file's MIME type." msgstr "无法判断文件的 MIME 类型。" +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "此服务器不支持 “%1$s” 的文件格式,试下使用其他的 %2$s 格式。" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "这个服务器不支持 %s 的文件格式。" + #: lib/messageform.php:120 msgid "Send a direct notice" msgstr "发送一条私信" @@ -6602,6 +6715,23 @@ msgstr "呼叫" msgid "Send a nudge to this user" msgstr "呼叫这个用户" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "添加新个人信息出错。" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "添加头像出错。" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "添加远程个人信息时出错。" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "复制消息。" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "无法添加新的关注。" @@ -6745,6 +6875,11 @@ msgstr "搜索帮助" msgid "Keyword(s)" msgstr "关键词" +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "搜索" + #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 msgid "Search help" @@ -6951,21 +7086,49 @@ msgstr "几秒前" msgid "about a minute ago" msgstr "约1分钟前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1109 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "约1分钟前" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1112 msgid "about an hour ago" msgstr "约1小时前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1115 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "约一小时前" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1118 msgid "about a day ago" msgstr "约1天前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1121 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "约1天前" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1124 msgid "about a month ago" msgstr "约1个月前" +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1127 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "约1个月前" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1130 msgid "about a year ago" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index ab5d0466ad..cae1e01062 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -8,18 +8,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 19:53+0000\n" -"PO-Revision-Date: 2010-09-14 19:54:27+0000\n" +"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"PO-Revision-Date: 2010-09-16 23:16:24+0000\n" "Language-Team: Traditional Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73009); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: #out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-16 34::+0000\n" +"X-POT-Import-Date: 1284-49-48 10::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -1254,6 +1254,12 @@ msgstr "" msgid "Admin" msgstr "" +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -3816,14 +3822,20 @@ msgstr "" 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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 -msgid "Tried to revoke unknown token" +msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 -msgid "Failed to delete revoked token" +msgid "Failed to delete revoked token." msgstr "" #. TRANS: Form input field instructions. @@ -4284,6 +4296,62 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #: lib/groupnav.php:129 @@ -4715,6 +4783,23 @@ msgstr "" msgid "Send a nudge to this user" msgstr "" +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" From 444959a789e5bc122b177cb970ca4006c07c1eee Mon Sep 17 00:00:00 2001 From: James Walker Date: Fri, 17 Sep 2010 16:33:02 -0400 Subject: [PATCH 055/310] Status_network::encache() doesn't exist --- classes/Status_network.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/classes/Status_network.php b/classes/Status_network.php index c4f37ce1c6..70c7a58eb7 100644 --- a/classes/Status_network.php +++ b/classes/Status_network.php @@ -167,9 +167,8 @@ class Status_network extends Safe_DataObject ' WHERE nickname = ' . $this->_quote($this->nickname); $orig->decache(); $result = $this->query($qry); - if ($result) { - $this->encache(); - } + $this->decache(); + return $result; } From f4a1858b3327b2b0d9920d01ccae9b3e7148d3ec Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 17 Sep 2010 14:20:05 -0700 Subject: [PATCH 056/310] Fixed typo, and updated copyright dates while I was there --- actions/useradminpanel.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index ee9c230769..7823a370b9 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -12,6 +12,7 @@ * (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. @@ -24,7 +25,7 @@ * @author Evan Prodromou * @author Zach Copley * @author Sarven Capadisli - * @copyright 2008-2009 StatusNet, Inc. + * @copyright 2008-2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ @@ -291,6 +292,6 @@ class UserAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save site settings')); + $this->out->submit('submit', _('Save'), 'submit', null, _('Save user settings')); } } From afc799ddf8ded2de063f7d6340a38c3ab3dd315e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 17 Sep 2010 14:32:18 -0700 Subject: [PATCH 057/310] Removed periods from instructions on some admin panels for consistency --- actions/designadminpanel.php | 2 +- actions/pathsadminpanel.php | 2 +- actions/sessionsadminpanel.php | 2 +- actions/useradminpanel.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index e3d772f7d1..4285f7d731 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -71,7 +71,7 @@ class DesignadminpanelAction extends AdminPanelAction function getInstructions() { - return _('Design settings for this StatusNet site.'); + return _('Design settings for this StatusNet site'); } /** diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index 7ff3c2583a..0c83aa29ec 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -67,7 +67,7 @@ class PathsadminpanelAction extends AdminPanelAction function getInstructions() { - return _('Path and server settings for this StatusNet site.'); + return _('Path and server settings for this StatusNet site'); } /** diff --git a/actions/sessionsadminpanel.php b/actions/sessionsadminpanel.php index 4386ef844b..e9bd1719f2 100644 --- a/actions/sessionsadminpanel.php +++ b/actions/sessionsadminpanel.php @@ -62,7 +62,7 @@ class SessionsadminpanelAction extends AdminPanelAction function getInstructions() { - return _('Session settings for this StatusNet site.'); + return _('Session settings for this StatusNet site'); } /** diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index 7823a370b9..04e0ca3e75 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -68,7 +68,7 @@ class UseradminpanelAction extends AdminPanelAction function getInstructions() { - return _('User settings for this StatusNet site.'); + return _('User settings for this StatusNet site'); } /** From 234b1e6c236118d915af458b8db966e425645d68 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 00:23:38 +0200 Subject: [PATCH 058/310] Remove do_translatewiki_plugin(). No longer needed. Replaced by MediaWiki Translate extension script http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Translate/scripts/genStatusNetPluginsConfig.php?view=markup --- scripts/update_po_templates.php | 42 --------------------------------- 1 file changed, 42 deletions(-) diff --git a/scripts/update_po_templates.php b/scripts/update_po_templates.php index f10f208424..a0ab5819d5 100755 --- a/scripts/update_po_templates.php +++ b/scripts/update_po_templates.php @@ -81,45 +81,6 @@ END; chdir($old); } -function do_translatewiki_plugin($basedir, $plugin) -{ - $yamldir = "$basedir/locale/TranslateWiki"; - if (!file_exists($yamldir)) { - mkdir($yamldir); - } - $outfile = "$yamldir/StatusNet-{$plugin}.yml"; - $pluginlc = strtolower( $plugin ); - $data = << Date: Fri, 17 Sep 2010 16:38:12 -0700 Subject: [PATCH 059/310] Basic license admin panel (maybe we can make it fancier later) --- actions/licenseadminpanel.php | 303 ++++++++++++++++++++++++++++++++++ lib/adminpanelaction.php | 8 + lib/default.php | 2 +- lib/router.php | 2 + 4 files changed, 314 insertions(+), 1 deletion(-) create mode 100644 actions/licenseadminpanel.php diff --git a/actions/licenseadminpanel.php b/actions/licenseadminpanel.php new file mode 100644 index 0000000000..c9aad5c4f0 --- /dev/null +++ b/actions/licenseadminpanel.php @@ -0,0 +1,303 @@ +. + * + * @category Settings + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * License settings + * + * @category Admin + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +class LicenseadminpanelAction extends AdminPanelAction +{ + + /** + * Returns the page title + * + * @return string page title + */ + + function title() + { + // TRANS: User admin panel title + return _m('TITLE', 'License'); + } + + /** + * Instructions for using this form. + * + * @return string instructions + */ + + function getInstructions() + { + return _('License for this StatusNet site'); + } + + /** + * Show the site admin panel form + * + * @return void + */ + + function showForm() + { + $form = new LicenseAdminPanelForm($this); + $form->show(); + return; + } + + /** + * Save settings from the form + * + * @return void + */ + + function saveSettings() + { + static $settings = array( + 'license' => array('type', 'owner', 'url', 'title', 'image') + ); + + $values = array(); + + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + $values[$section][$setting] = $this->trimmed($setting); + } + } + + // This throws an exception on validation errors + + $this->validate($values); + + // assert(all values are valid); + + $config = new Config(); + + $config->query('BEGIN'); + + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + Config::save($section, $setting, $values[$section][$setting]); + } + } + + $config->query('COMMIT'); + + return; + } + + /** + * Validate License admin form values + * + * @param array &$values from the form + * + * @return nothing + */ + + function validate(&$values) + { + // Validate license type (shouldn't have to do it, but just in case) + + $types = array('private', 'allrightsreserved', 'cc'); + + if (!in_array($values['license']['type'], $types)) { + $this->clientError(_("Invalid license selection.")); + } + + // Make sure the user has set an owner if the site has a private + // license + + if ($values['license']['type'] == 'allrightsreserved' + && empty($values['license']['owner']) + ) { + $this->clientError( + _("You must specify the owner of the content when using the All Rights Reserved license.") + ); + } + + // Make sure the license title is not too long + if (mb_strlen($values['license']['type']) > 255) { + $this->clientError( + _("Invalid license title. Max length is 255 characters.") + ); + } + + // make sure the license URL and license image URL are valid URLs + + $options = array('allowed_schemes' => array('http', 'https')); + + if (!Validate::uri($values['license']['url'], $options)) { + $this->clientError(_("Invalid license URL.")); + } + + if (!Validate::uri($values['license']['image'], $options)) { + $this->clientError(_("Invalid license image URL.")); + } + } +} + +class LicenseAdminPanelForm extends AdminForm +{ + /** + * ID of the form + * + * @return int ID of the form + */ + + function id() + { + return 'licenseadminpanel'; + } + + /** + * class of the form + * + * @return string class of the form + */ + + function formClass() + { + return 'form_settings'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('licenseadminpanel'); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + $this->out->elementStart( + 'fieldset', array('id' => 'settings_license-selection') + ); + $this->out->element('legend', null, _('License selection')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + + $types = array( + 'private' => _('Private'), + 'allrightsreserved' => _('All Rights Reserved'), + 'cc' => _('Creative Commons') + ); + + $this->out->dropdown( + 'type', + _('Type'), + $types, + _('Select license'), + false, + $this->value('type', 'license') + ); + + $this->unli(); + + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + + $this->out->elementStart( + 'fieldset', + array('id' => 'settings_license-details') + ); + $this->out->element('legend', null, _('License details')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->input( + 'owner', + _('Owner'), + _('Name of the owner of the site\'s content (if applicable).'), + 'license' + ); + $this->unli(); + + $this->li(); + $this->input( + 'title', + _('License Title'), + _('The title of the license.'), + 'license' + ); + $this->unli(); + + $this->li(); + $this->input( + 'url', + _('License URL'), + _('URL for more information about the license.'), + 'license' + ); + $this->unli(); + + $this->li(); + $this->input( + 'image', _('License Image URL'), + _('URL for an image to display with the license.'), + 'license' + ); + $this->unli(); + + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->submit( + 'submit', _('Save'), 'submit', null, _('Save license settings') + ); + } +} diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 41cfe5851b..043219a1fe 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -409,6 +409,14 @@ class AdminPanelNav extends Widget $menu_title, $action_name == 'snapshotadminpanel', 'nav_snapshot_admin_panel'); } + if (AdminPanelAction::canAdmin('license')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Set site license'); + // TRANS: Menu item for site administration + $this->out->menuItem(common_local_url('licenseadminpanel'), _('License'), + $menu_title, $action_name == 'licenseadminpanel', 'nav_license_admin_panel'); + } + Event::handle('EndAdminPanelNav', array($this)); } $this->action->elementEnd('ul'); diff --git a/lib/default.php b/lib/default.php index 45a4560ff3..6200abada1 100644 --- a/lib/default.php +++ b/lib/default.php @@ -300,7 +300,7 @@ $default = 'OpenID' => null), ), 'admin' => - array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice')), + array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license')), 'singleuser' => array('enabled' => false, 'nickname' => null), diff --git a/lib/router.php b/lib/router.php index 7e1e6a2a47..fb5a3c7c36 100644 --- a/lib/router.php +++ b/lib/router.php @@ -690,6 +690,8 @@ class Router $m->connect('admin/sessions', array('action' => 'sessionsadminpanel')); $m->connect('admin/sitenotice', array('action' => 'sitenoticeadminpanel')); $m->connect('admin/snapshot', array('action' => 'snapshotadminpanel')); + $m->connect('admin/license', array('action' => 'licenseadminpanel')); + $m->connect('getfile/:filename', array('action' => 'getfile'), From ca3d803f1dd9050b850a455a47ad06c0ad3e32e7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 10:25:13 +0200 Subject: [PATCH 060/310] Update i18n/L10n. --- plugins/Minify/MinifyPlugin.php | 3 +-- plugins/Minify/minify.php | 7 +++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/Minify/MinifyPlugin.php b/plugins/Minify/MinifyPlugin.php index 13010e75a1..6c1e49eb93 100644 --- a/plugins/Minify/MinifyPlugin.php +++ b/plugins/Minify/MinifyPlugin.php @@ -177,8 +177,7 @@ class MinifyPlugin extends Plugin 'author' => 'Craig Andrews', 'homepage' => 'http://status.net/wiki/Plugin:Minify', 'rawdescription' => - _m('The Minify plugin minifies your CSS and Javascript, removing whitespace and comments.')); + _m('The Minify plugin minifies StatusNet\'s CSS and JavaScript, removing whitespace and comments.')); return true; } } - diff --git a/plugins/Minify/minify.php b/plugins/Minify/minify.php index 64727f5e7e..9a59c4223c 100644 --- a/plugins/Minify/minify.php +++ b/plugins/Minify/minify.php @@ -46,11 +46,11 @@ class MinifyAction extends Action if(file_exists($this->file)) { return true; } else { - $this->clientError(_('f parameter is not a valid path'),404); + $this->clientError(_m('The parameter "f" is not a valid path.'),404); return false; } }else{ - $this->clientError(_('f parameter is required'),500); + $this->clientError(_m('The parameter "f" is required but missing.'),500); return false; } } @@ -108,10 +108,9 @@ class MinifyAction extends Action header('Content-Type: ' . self::TYPE_CSS); break; default: - $this->clientError(_('File type not supported'),500); + $this->clientError(_m('File type not supported.'),500); return false; } return $out; } } - From 14fa75898330bad3fca0d57d1ad0c7fae7a6237b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 10:30:45 +0200 Subject: [PATCH 061/310] Update L10n --- plugins/NoticeTitle/NoticeTitlePlugin.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/NoticeTitle/NoticeTitlePlugin.php b/plugins/NoticeTitle/NoticeTitlePlugin.php index 9f53173db2..dea0417f5f 100644 --- a/plugins/NoticeTitle/NoticeTitlePlugin.php +++ b/plugins/NoticeTitle/NoticeTitlePlugin.php @@ -123,7 +123,7 @@ class NoticeTitlePlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => $url, 'rawdescription' => - _m('Adds optional titles to notices')); + _m('Adds optional titles to notices.')); return true; } @@ -164,7 +164,7 @@ class NoticeTitlePlugin extends Plugin $title = $action->trimmed('notice_title'); if (!empty($title)) { if (mb_strlen($title) > Notice_title::MAXCHARS) { - throw new Exception(sprintf(_m("Notice title too long (max %d)", + throw new Exception(sprintf(_m("The notice title is too long (max %d characters).", Notice_title::MAXCHARS))); } } @@ -296,7 +296,7 @@ class NoticeTitlePlugin extends Plugin if (!empty($title)) { $action->element('title', null, // TRANS: Page title. %1$s is the title, %2$s is the site name. - sprintf(_("%1\$s - %2\$s"), + sprintf(_m("%1\$s - %2\$s"), $title, common_config('site', 'name'))); } @@ -328,4 +328,3 @@ class NoticeTitlePlugin extends Plugin return true; } } - From 90ce201684239e070039af28ee43fc0477bd41ac Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 10:32:54 +0200 Subject: [PATCH 062/310] Update L10n. --- .../OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php b/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php index 6756f19930..611f5e5c7b 100644 --- a/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php +++ b/plugins/OpenExternalLinkTarget/OpenExternalLinkTargetPlugin.php @@ -57,8 +57,7 @@ class OpenExternalLinkTargetPlugin extends Plugin 'author' => 'Sarven Capadisli', 'homepage' => 'http://status.net/wiki/Plugin:OpenExternalLinkTarget', 'rawdescription' => - _m('Opens external links (i.e., with rel=external) on a new window or tab')); + _m('Opens external links (e.g., with rel=external) on a new window or tab.')); return true; } } - From 596d2c212ab2f808aa011269bea00222dc7e5e8e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 10:41:13 +0200 Subject: [PATCH 063/310] Update i18n/L10n. --- plugins/Recaptcha/RecaptchaPlugin.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index 7cc34c5686..0c46a33e0b 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Plugin to show reCaptcha when a user registers + * Plugin to show reCaptcha when a user registers * * PHP version 5 * @@ -61,14 +61,14 @@ class RecaptchaPlugin extends Plugin function onEndRegistrationFormData($action) { $action->elementStart('li'); - $action->raw(''); + $action->raw(''); // AJAX API will fill this div out. // We're calling that instead of the regular one so we stay compatible // with application/xml+xhtml output as for mobile. $action->element('div', array('id' => 'recaptcha')); $action->elementEnd('li'); - + $action->recaptchaPluginNeedsOutput = true; return true; } @@ -83,7 +83,7 @@ class RecaptchaPlugin extends Plugin $url = "http://api.recaptcha.net/js/recaptcha_ajax.js"; } $action->script($url); - + // And when we're ready, fill out the captcha! $key = json_encode($this->public_key); $action->inlinescript("\$(function(){Recaptcha.create($key, 'recaptcha');});"); @@ -100,9 +100,9 @@ class RecaptchaPlugin extends Plugin if (!$resp->is_valid) { if($this->display_errors) { - $action->showForm ("(reCAPTCHA error: " . $resp->error . ")"); + $action->showForm(sprintf(_("(reCAPTCHA error: %s)", $resp->error))); } - $action->showForm("Captcha does not match!"); + $action->showForm(_m("Captcha does not match!")); return false; } } From eed0b24f231e9285981df1d9fe74ba612b5d4790 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:25:11 +0200 Subject: [PATCH 064/310] * i18n/L10n updates * superfluous whitespace removed --- plugins/RSSCloud/LoggingAggregator.php | 15 +++----- plugins/RSSCloud/RSSCloudNotifier.php | 2 -- plugins/RSSCloud/RSSCloudPlugin.php | 3 +- plugins/RSSCloud/RSSCloudQueueHandler.php | 1 - plugins/RSSCloud/RSSCloudRequestNotify.php | 40 ++++++---------------- plugins/RSSCloud/RSSCloudSubscription.php | 1 - 6 files changed, 16 insertions(+), 46 deletions(-) diff --git a/plugins/RSSCloud/LoggingAggregator.php b/plugins/RSSCloud/LoggingAggregator.php index e37eed16a3..c7d7a40e3b 100644 --- a/plugins/RSSCloud/LoggingAggregator.php +++ b/plugins/RSSCloud/LoggingAggregator.php @@ -47,7 +47,6 @@ if (!defined('STATUSNET')) { **/ class LoggingAggregatorAction extends Action { - var $challenge = null; var $url = null; @@ -58,7 +57,6 @@ class LoggingAggregatorAction extends Action * * @return boolean false if user doesn't exist */ - function prepare($args) { parent::prepare($args); @@ -79,22 +77,20 @@ class LoggingAggregatorAction extends Action * * @return void */ - function handle($args) { parent::handle($args); if (empty($this->url)) { - $this->showError('Hey, you have to provide a url parameter.'); + $this->showError(_('A URL parameter is required.')); return; } if (!empty($this->challenge)) { // must be a GET - if ($_SERVER['REQUEST_METHOD'] != 'GET') { - $this->showError('This resource requires an HTTP GET.'); + $this->showError(_m('This resource requires an HTTP GET.')); return; } @@ -104,9 +100,8 @@ class LoggingAggregatorAction extends Action } else { // must be a POST - if ($_SERVER['REQUEST_METHOD'] != 'POST') { - $this->showError('This resource requires an HTTP POST.'); + $this->showError(_m('This resource requires an HTTP POST.')); return; } @@ -128,7 +123,6 @@ class LoggingAggregatorAction extends Action * * @return void */ - function showError($msg) { header('HTTP/1.1 400 Bad Request'); @@ -136,5 +130,4 @@ class LoggingAggregatorAction extends Action echo "\n"; echo "\n"; } - -} \ No newline at end of file +} diff --git a/plugins/RSSCloud/RSSCloudNotifier.php b/plugins/RSSCloud/RSSCloudNotifier.php index 9e7b536803..1f0eab47e8 100644 --- a/plugins/RSSCloud/RSSCloudNotifier.php +++ b/plugins/RSSCloud/RSSCloudNotifier.php @@ -235,6 +235,4 @@ class RSSCloudNotifier } } } - } - diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php index c1951cdbf8..bba0be515d 100644 --- a/plugins/RSSCloud/RSSCloudPlugin.php +++ b/plugins/RSSCloud/RSSCloudPlugin.php @@ -247,10 +247,9 @@ class RSSCloudPlugin extends Plugin 'rawdescription' => _m('The RSSCloud plugin enables your StatusNet instance to publish ' . 'real-time updates for profile RSS feeds using the ' . - 'RSSCloud protocol".')); + 'RSSCloud protocol.')); return true; } } - diff --git a/plugins/RSSCloud/RSSCloudQueueHandler.php b/plugins/RSSCloud/RSSCloudQueueHandler.php index ef11eda2e7..8a09977489 100644 --- a/plugins/RSSCloud/RSSCloudQueueHandler.php +++ b/plugins/RSSCloud/RSSCloudQueueHandler.php @@ -38,4 +38,3 @@ class RSSCloudQueueHandler extends QueueHandler return $notifier->notify($profile); } } - diff --git a/plugins/RSSCloud/RSSCloudRequestNotify.php b/plugins/RSSCloud/RSSCloudRequestNotify.php index 0305295348..41b8685785 100644 --- a/plugins/RSSCloud/RSSCloudRequestNotify.php +++ b/plugins/RSSCloud/RSSCloudRequestNotify.php @@ -41,7 +41,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ **/ - class RSSCloudRequestNotifyAction extends Action { /** @@ -51,7 +50,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return boolean false if user doesn't exist */ - function prepare($args) { parent::prepare($args); @@ -84,13 +82,12 @@ class RSSCloudRequestNotifyAction extends Action * * @return void */ - function handle($args) { parent::handle($args); if ($_SERVER['REQUEST_METHOD'] != 'POST') { - $this->showResult(false, 'Request must be POST.'); + $this->showResult(false, _m('Request must be POST.')); return; } @@ -107,7 +104,7 @@ class RSSCloudRequestNotifyAction extends Action if (empty($this->protocol)) { $missing[] = 'protocol'; } else if (strtolower($this->protocol) != 'http-post') { - $msg = 'Only http-post notifications are supported at this time.'; + $msg = _m('Only http-post notifications are supported at this time.'); $this->showResult(false, $msg); return; } @@ -117,15 +114,15 @@ class RSSCloudRequestNotifyAction extends Action } if (!empty($missing)) { - $msg = 'The following parameters were missing from the request body: ' . - implode(', ', $missing) . '.'; + // TRANS: %s is a comma separated list of parameters. + $msg = sprintf(_m('The following parameters were missing from the request body: %s.'),implode(', ', $missing)); $this->showResult(false, $msg); return; } if (empty($this->feeds)) { - $msg = 'You must provide at least one valid profile feed url ' . - '(url1, url2, url3 ... urlN).'; + $msg = _m('You must provide at least one valid profile feed url ' . + '(url1, url2, url3 ... urlN).'); $this->showResult(false, $msg); return; } @@ -133,7 +130,6 @@ class RSSCloudRequestNotifyAction extends Action // We have to validate everything before saving anything. // We only return one success or failure no matter how // many feeds the subscriber is trying to subscribe to - foreach ($this->feeds as $feed) { if (!$this->validateFeed($feed)) { @@ -142,18 +138,17 @@ class RSSCloudRequestNotifyAction extends Action common_log(LOG_WARNING, "RSSCloud plugin - $nh tried to subscribe to invalid feed: $feed"); - $msg = 'Feed subscription failed - Not a valid feed.'; + $msg = _m('Feed subscription failed - Not a valid feed.'); $this->showResult(false, $msg); return; } if (!$this->testNotificationHandler($feed)) { - $msg = 'Feed subscription failed - ' . - 'notification handler doesn\'t respond correctly.'; + $msg = _m('Feed subscription failed - ' . + 'notification handler doesn\'t respond correctly.'); $this->showResult(false, $msg); return; } - } foreach ($this->feeds as $feed) { @@ -163,9 +158,8 @@ class RSSCloudRequestNotifyAction extends Action // XXX: What to do about deleting stale subscriptions? // 25 hours seems harsh. WordPress doesn't ever remove // subscriptions. - - $msg = 'Thanks for the subscription. ' . - 'When the feed(s) update(s) we\'ll notify you.'; + $msg = _m('Thanks for the subscription. ' . + 'When the feed(s) update(s) we\'ll notify you.'); $this->showResult(true, $msg); } @@ -178,7 +172,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return void */ - function validateFeed($feed) { $user = $this->userFromFeed($feed); @@ -196,7 +189,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return array $feeds the list of feeds */ - function getFeeds() { $feeds = array(); @@ -218,7 +210,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return boolean success result */ - function testNotificationHandler($feed) { $notifyUrl = $this->getNotifyUrl(); @@ -226,9 +217,7 @@ class RSSCloudRequestNotifyAction extends Action $notifier = new RSSCloudNotifier(); if (isset($this->domain)) { - // 'domain' param set, so we have to use GET and send a challenge - common_log(LOG_INFO, 'RSSCloud plugin - Testing notification handler with challenge: ' . $notifyUrl); @@ -248,7 +237,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return string notification handler url */ - function getNotifyUrl() { if (isset($this->domain)) { @@ -267,12 +255,10 @@ class RSSCloudRequestNotifyAction extends Action * * @return boolean success */ - function userFromFeed($feed) { // We only do canonical RSS2 profile feeds (specified by ID), e.g.: // http://www.example.com/api/statuses/user_timeline/2.rss - $path = common_path('api/statuses/user_timeline/'); $valid = '%^' . $path . '(?.*)\.rss$%'; @@ -293,7 +279,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return boolean success result */ - function saveSubscription($feed) { $user = $this->userFromFeed($feed); @@ -334,7 +319,6 @@ class RSSCloudRequestNotifyAction extends Action * * @return boolean success result */ - function showResult($success, $msg) { $this->startXML(); @@ -343,6 +327,4 @@ class RSSCloudRequestNotifyAction extends Action 'msg' => $msg)); $this->endXML(); } - } - diff --git a/plugins/RSSCloud/RSSCloudSubscription.php b/plugins/RSSCloud/RSSCloudSubscription.php index 396c604e71..595af88446 100644 --- a/plugins/RSSCloud/RSSCloudSubscription.php +++ b/plugins/RSSCloud/RSSCloudSubscription.php @@ -75,5 +75,4 @@ class RSSCloudSubscription extends Memcached_DataObject { return false; } - } From 11a98ea41f0702defad84a7923e91afa5aa35b72 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:27:37 +0200 Subject: [PATCH 065/310] * L10n update * superfluous whitespace removed. --- plugins/TinyMCE/TinyMCEPlugin.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/plugins/TinyMCE/TinyMCEPlugin.php b/plugins/TinyMCE/TinyMCEPlugin.php index ca16f60591..2ec4b71608 100644 --- a/plugins/TinyMCE/TinyMCEPlugin.php +++ b/plugins/TinyMCE/TinyMCEPlugin.php @@ -48,7 +48,6 @@ if (!defined('STATUSNET')) { */ class TinyMCEPlugin extends Plugin { - var $html; function onEndShowScripts($action) @@ -74,7 +73,7 @@ class TinyMCEPlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:TinyMCE', 'rawdescription' => - _m('Use TinyMCE library to allow rich text editing in the browser')); + _m('Use TinyMCE library to allow rich text editing in the browser.')); return true; } @@ -108,7 +107,7 @@ class TinyMCEPlugin extends Plugin /** * Hook for new-notice form processing to take our HTML goodies; * won't affect API posting etc. - * + * * @param NewNoticeAction $action * @param User $user * @param string $content @@ -159,9 +158,9 @@ class TinyMCEPlugin extends Plugin /** * Format the attachment placeholder img with the final version. - * + * * @param DOMElement $img - * @param MediaFile $media + * @param MediaFile $media */ private function formatAttachment($img, $media) { @@ -321,5 +320,4 @@ END_OF_SCRIPT; return $scr; } - } From b99b0555fdfbaac36213b7c342cc2fb5eca1b583 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:36:40 +0200 Subject: [PATCH 066/310] Update L10n. --- plugins/TabFocus/TabFocusPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TabFocus/TabFocusPlugin.php b/plugins/TabFocus/TabFocusPlugin.php index 46e329d8a4..dd8a972767 100644 --- a/plugins/TabFocus/TabFocusPlugin.php +++ b/plugins/TabFocus/TabFocusPlugin.php @@ -51,7 +51,7 @@ class TabFocusPlugin extends Plugin 'author' => 'Craig Andrews and Paul Irish', 'homepage' => 'http://status.net/wiki/Plugin:TabFocus', 'rawdescription' => - _m('TabFocus changes the notice form behavior so that, while in the text area, pressing the tab key focuses the "Send" button, matching the behavor of Twitter.')); + _m('TabFocus changes the notice form behavior so that, while in the text area, pressing the tab key focuses the "Send" button, matching the behavior of Twitter.')); return true; } } From 2d119df6d392699e46556780d1fdc17f4c424e3a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:43:17 +0200 Subject: [PATCH 067/310] * update i18n/L10n * remove superfluous whitespace --- plugins/Imap/ImapPlugin.php | 8 ++++---- plugins/Imap/imapmanager.php | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/Imap/ImapPlugin.php b/plugins/Imap/ImapPlugin.php index 66be799d3e..1661ed86ea 100644 --- a/plugins/Imap/ImapPlugin.php +++ b/plugins/Imap/ImapPlugin.php @@ -51,16 +51,16 @@ class ImapPlugin extends Plugin function initialize(){ if(!isset($this->mailbox)){ - throw new Exception("must specify a mailbox"); + throw new Exception(_m("A mailbox must be specified.")); } if(!isset($this->user)){ - throw new Exception("must specify a user"); + throw new Exception(_m("A user must be specified."); } if(!isset($this->password)){ - throw new Exception("must specify a password"); + throw new Exception(_m("A password must be specified.")); } if(!isset($this->poll_frequency)){ - throw new Exception("must specify a poll_frequency"); + throw new Exception(_m("A poll_frequency must be specified.")); } return true; diff --git a/plugins/Imap/imapmanager.php b/plugins/Imap/imapmanager.php index 0bbd42e78f..68b8b7d874 100644 --- a/plugins/Imap/imapmanager.php +++ b/plugins/Imap/imapmanager.php @@ -92,12 +92,12 @@ class ImapManager extends IoManager { return $this->check_mailbox() > 0; } - + function pollInterval() { return $this->plugin->poll_frequency; } - + protected function connect() { $this->conn = imap_open($this->plugin->mailbox, $this->plugin->user, $this->plugin->password); From f0716819ec206e6b407c7cefcc463e946127bacf Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:45:50 +0200 Subject: [PATCH 068/310] * update i18n/L10n * remove superfluous whitespace --- plugins/ClientSideShorten/ClientSideShortenPlugin.php | 4 +--- plugins/ClientSideShorten/shorten.php | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/ClientSideShorten/ClientSideShortenPlugin.php b/plugins/ClientSideShorten/ClientSideShortenPlugin.php index 57f5ad89e0..27a3a56f72 100644 --- a/plugins/ClientSideShorten/ClientSideShortenPlugin.php +++ b/plugins/ClientSideShorten/ClientSideShortenPlugin.php @@ -71,9 +71,7 @@ class ClientSideShortenPlugin extends Plugin 'author' => 'Craig Andrews', 'homepage' => 'http://status.net/wiki/Plugin:ClientSideShorten', 'rawdescription' => - _m('ClientSideShorten causes the web interface\'s notice form to automatically shorten urls as they entered, and before the notice is submitted.')); + _m('ClientSideShorten causes the web interface\'s notice form to automatically shorten URLs as they entered, and before the notice is submitted.')); return true; } - } - diff --git a/plugins/ClientSideShorten/shorten.php b/plugins/ClientSideShorten/shorten.php index f67cbf3b28..8c2fc1b3cd 100644 --- a/plugins/ClientSideShorten/shorten.php +++ b/plugins/ClientSideShorten/shorten.php @@ -66,4 +66,3 @@ class ShortenAction extends Action print $shortened_text; } } - From 1ee1f6621f16140c332eec796fb9a344192393f6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:50:27 +0200 Subject: [PATCH 069/310] * update i18n/L10n * remove superfluous whitespace --- plugins/RegisterThrottle/RegisterThrottlePlugin.php | 3 +-- plugins/RegisterThrottle/Registration_ip.php | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 05709b7807..89c1d3d00c 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -113,7 +113,6 @@ class RegisterThrottlePlugin extends Plugin * @return boolean hook value * */ - function onStartRegistrationTry($action) { $ipaddress = $this->_getIpAddress(); @@ -134,7 +133,7 @@ class RegisterThrottlePlugin extends Plugin $now = time(); $this->debug("Comparing {$regtime} to {$now}"); if ($now - $regtime < $seconds) { - throw new Exception(_("Too many registrations. Take a break and try again later.")); + throw new Exception(_m("Too many registrations. Take a break and try again later.")); } } } diff --git a/plugins/RegisterThrottle/Registration_ip.php b/plugins/RegisterThrottle/Registration_ip.php index 7e61d089e7..5c7396b9b0 100644 --- a/plugins/RegisterThrottle/Registration_ip.php +++ b/plugins/RegisterThrottle/Registration_ip.php @@ -42,7 +42,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class Registration_ip extends Memcached_DataObject { public $__table = 'registration_ip'; // table name @@ -59,7 +58,6 @@ class Registration_ip extends Memcached_DataObject * @return User_greeting_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Registration_ip', $k, $v); @@ -70,7 +68,6 @@ class Registration_ip extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('user_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -86,7 +83,6 @@ class Registration_ip extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array('user_id' => 'K'); @@ -100,7 +96,6 @@ class Registration_ip extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -116,7 +111,6 @@ class Registration_ip extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); From 26a9963dad3e7bbea6f5f7069f2272a58ee87891 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 11:52:35 +0200 Subject: [PATCH 070/310] Update L10n. --- plugins/RegisterThrottle/RegisterThrottlePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 89c1d3d00c..b6e9a90265 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -196,7 +196,7 @@ class RegisterThrottlePlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:RegisterThrottle', 'description' => - _m('Throttles excessive registration from a single IP.')); + _m('Throttles excessive registration from a single IP address.')); return true; } From f8e91ab33f414e0c0ffbb4d6f312909d196413ce Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 12:05:27 +0200 Subject: [PATCH 071/310] Add translator hints. --- plugins/AutoSandbox/AutoSandboxPlugin.php | 1 + plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/AutoSandbox/AutoSandboxPlugin.php b/plugins/AutoSandbox/AutoSandboxPlugin.php index 870eda86f2..16683e1402 100644 --- a/plugins/AutoSandbox/AutoSandboxPlugin.php +++ b/plugins/AutoSandbox/AutoSandboxPlugin.php @@ -75,6 +75,7 @@ class AutoSandboxPlugin extends Plugin $contactuser = User::staticGet('nickname', $this->contact); if (!empty($contactuser)) { $contactlink = "@uri\">$contactuser->nickname"; + // TRANS: $contactlink is a clickable e-mailaddress. $instr = _m("Note you will initially be \"sandboxed\" so your posts will not appear in the public timeline. ". 'Send a message to $contactlink to speed up the unsandboxing process.'); } diff --git a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php index fb4eff7389..f2e2fcbafe 100644 --- a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php +++ b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php @@ -47,6 +47,7 @@ class PoweredByStatusNetPlugin extends Plugin { $action->text(' '); $action->elementStart('span', 'poweredby'); + // TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. $action->raw(sprintf(_m('powered by %s'), sprintf('%s', _m('StatusNet')))); @@ -62,7 +63,7 @@ class PoweredByStatusNetPlugin extends Plugin 'author' => 'Sarven Capadisli', 'homepage' => 'http://status.net/wiki/Plugin:PoweredByStatusNet', 'rawdescription' => - _m('Outputs powered by StatusNet after site name.')); + _m('Outputs "powered by StatusNet" after site name.')); return true; } } From 03e600b797e2ca4dc918143325cc0961949f2f55 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 14:31:03 +0200 Subject: [PATCH 072/310] Update i18n/L10n --- .../CasAuthenticationPlugin.php | 22 +++++++++++-------- plugins/CasAuthentication/caslogin.php | 5 ++--- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 1662db3eba..6b751a0aa4 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -79,8 +79,10 @@ class CasAuthenticationPlugin extends AuthenticationPlugin $action_name = $action->trimmed('action'); $action->menuItem(common_local_url('caslogin'), + // TRANS: Menu item. CAS is Central Authentication Service. _m('CAS'), - _m('Login or register with CAS'), + // TRANS: Tooltip for menu item. CAS is Central Authentication Service. + _m('Login or register with CAS.'), $action_name === 'caslogin'); return true; @@ -93,9 +95,11 @@ class CasAuthenticationPlugin extends AuthenticationPlugin switch ($name) { case 'login': - $instr = '(Have an account with CAS? ' . - 'Try our [CAS login]'. - '(%%action.caslogin%%)!)'; + // TRANS: Invitation to users with a CAS account to log in using the service. + // TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. + // TRANS: These two elements may not be separated. + $instr = _m('(Have an account with CAS? ' . + 'Try our [CAS login](%%action.caslogin%%)!)'); break; default: return true; @@ -121,13 +125,13 @@ class CasAuthenticationPlugin extends AuthenticationPlugin function onInitializePlugin(){ parent::onInitializePlugin(); if(!isset($this->server)){ - throw new Exception("must specify a server"); + throw new Exception(_m("Specifying a server is required."); } if(!isset($this->port)){ - throw new Exception("must specify a port"); + throw new Exception(_m("Specifying a port is required."); } if(!isset($this->path)){ - throw new Exception("must specify a path"); + throw new Exception(_m("Specifying a path is required."); } //These values need to be accessible to a action object //I can't think of any other way than global variables @@ -146,8 +150,8 @@ class CasAuthenticationPlugin extends AuthenticationPlugin 'version' => STATUSNET_VERSION, 'author' => 'Craig Andrews', 'homepage' => 'http://status.net/wiki/Plugin:CasAuthentication', - 'rawdescription' => - _m('The CAS Authentication plugin allows for StatusNet to handle authentication through CAS (Central Authentication Service).')); + // TRANS: Plugin description. CAS is Central Authentication Service. + 'rawdescription' => _m('The CAS Authentication plugin allows for StatusNet to handle authentication through CAS (Central Authentication Service).')); return true; } } diff --git a/plugins/CasAuthentication/caslogin.php b/plugins/CasAuthentication/caslogin.php index a66774dc17..846774e7c6 100644 --- a/plugins/CasAuthentication/caslogin.php +++ b/plugins/CasAuthentication/caslogin.php @@ -36,13 +36,13 @@ class CasloginAction extends Action $casTempPassword = common_good_rand(16); $user = common_check_user(phpCAS::getUser(), $casTempPassword); if (!$user) { - $this->serverError(_('Incorrect username or password.')); + $this->serverError(_m('Incorrect username or password.')); return; } // success! if (!common_set_user($user)) { - $this->serverError(_('Error setting user. You are probably not authorized.')); + $this->serverError(_m('Error setting user. You are probably not authorized.')); return; } @@ -69,7 +69,6 @@ class CasloginAction extends Action } common_redirect($url, 303); - } } } From 09c99461e5dfeba443398c4c7b38c35104328b5e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 14:35:04 +0200 Subject: [PATCH 073/310] * update L10n * remove superfluous whitespace --- plugins/WikiHowProfile/WikiHowProfilePlugin.php | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/plugins/WikiHowProfile/WikiHowProfilePlugin.php b/plugins/WikiHowProfile/WikiHowProfilePlugin.php index b72bd55d6d..fa683c4836 100644 --- a/plugins/WikiHowProfile/WikiHowProfilePlugin.php +++ b/plugins/WikiHowProfile/WikiHowProfilePlugin.php @@ -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 WikiHowProfilePlugin extends Plugin { function onPluginVersion(&$versions) @@ -57,7 +56,7 @@ class WikiHowProfilePlugin extends Plugin 'author' => 'Brion Vibber', 'homepage' => 'http://status.net/wiki/Plugin:Sample', 'rawdescription' => - _m('Fetches avatar and other profile info for WikiHow users when setting up an account via OpenID.')); + _m('Fetches avatar and other profile information for WikiHow users when setting up an account via OpenID.')); return true; } @@ -107,14 +106,14 @@ class WikiHowProfilePlugin extends Plugin /** * Given a user's WikiHow profile URL, find their avatar. - * + * * @param string $profileUrl user page on the wiki - * + * * @return array of data; possible members: * 'avatar' => full URL to avatar image - * + * * @throws Exception on various low-level failures - * + * * @todo pull location, web site, and about sections -- they aren't currently marked up cleanly. */ private function fetchProfile($profileUrl) @@ -169,14 +168,14 @@ class WikiHowProfilePlugin extends Plugin private function saveAvatar($user, $url) { if (!common_valid_http_url($url)) { - throw new ServerException(sprintf(_m("Invalid avatar URL %s"), $url)); + throw new ServerException(sprintf(_m("Invalid avatar URL %s."), $url)); } // @fixme this should be better encapsulated // ripped from OStatus via oauthstore.php (for old OMB client) $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); if (!copy($url, $temp_filename)) { - throw new ServerException(sprintf(_m("Unable to fetch avatar from %s"), $url)); + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); } $profile = $user->getProfile(); @@ -191,6 +190,4 @@ class WikiHowProfilePlugin extends Plugin rename($temp_filename, Avatar::path($filename)); $profile->setOriginal($filename); } - } - From 977472bcf69e20e795bc697e9f839c261a17a5a8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 14:39:06 +0200 Subject: [PATCH 074/310] remove superfluous whitespace --- plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php index af75b96e0b..719dba89cd 100644 --- a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php +++ b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php @@ -170,4 +170,3 @@ class RequireValidatedEmailPlugin extends Plugin return true; } } - From 34f95c26fd9f51c730d05287d5b201a6cbedc285 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 15:10:49 +0200 Subject: [PATCH 075/310] * FIXME/CHECKMEs added for (possible) bad i18n * translator hints added * superfluous whitespace removed --- plugins/Mapstraction/MapstractionPlugin.php | 8 ++------ plugins/Mapstraction/allmap.php | 9 +++++++-- plugins/Mapstraction/map.php | 2 -- plugins/Mapstraction/usermap.php | 7 ++++--- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/plugins/Mapstraction/MapstractionPlugin.php b/plugins/Mapstraction/MapstractionPlugin.php index e7240a6449..c4ba6464ea 100644 --- a/plugins/Mapstraction/MapstractionPlugin.php +++ b/plugins/Mapstraction/MapstractionPlugin.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * * @seeAlso Location */ - class MapstractionPlugin extends Plugin { const VERSION = STATUSNET_VERSION; @@ -64,7 +63,6 @@ class MapstractionPlugin extends Plugin * * @return boolean event handler return */ - function onRouterInitialized($m) { $m->connect(':nickname/all/map', @@ -85,7 +83,6 @@ class MapstractionPlugin extends Plugin * * @return boolean event handler return */ - function onAutoload($cls) { switch ($cls) @@ -109,7 +106,6 @@ class MapstractionPlugin extends Plugin * * @return boolean event handler return */ - function onEndShowScripts($action) { $actionName = $action->trimmed('action'); @@ -190,6 +186,7 @@ class MapstractionPlugin extends Plugin array('nickname' => $action->trimmed('nickname'))); $action->element('a', array('href' => $mapUrl), + // TRANS: Clickable item to allow opening the map in full size. _m("Full size")); $action->elementEnd('div'); @@ -203,8 +200,7 @@ class MapstractionPlugin extends Plugin 'homepage' => 'http://status.net/wiki/Plugin:Mapstraction', 'rawdescription' => _m('Show maps of users\' and friends\' notices '. - 'with Mapstraction '. - 'JavaScript library.')); + 'with Mapstraction.')); return true; } } diff --git a/plugins/Mapstraction/allmap.php b/plugins/Mapstraction/allmap.php index 5dab670e26..fa05ccc7ae 100644 --- a/plugins/Mapstraction/allmap.php +++ b/plugins/Mapstraction/allmap.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AllmapAction extends MapAction { function prepare($args) @@ -63,16 +62,22 @@ class AllmapAction extends MapAction function title() { if (!empty($this->profile->fullname)) { + // @todo FIXME: Bad i18n. Should be "%1$s (%2$s)". $base = $this->profile->fullname . ' (' . $this->user->nickname . ') '; } else { $base = $this->user->nickname; } if ($this->page == 1) { + // TRANS: Page title. + // TRANS: %s is a user nickname. return sprintf(_m("%s friends map"), $base); } else { - return sprintf(_m("%s friends map, page %d"), + // @todo CHECKME: does this even happen? May not be needed. + // TRANS: Page title. + // TRANS: %1$s is a user nickname, %2$d is a page number. + return sprintf(_m("%1$s friends map, page %2$d"), $base, $this->page); } diff --git a/plugins/Mapstraction/map.php b/plugins/Mapstraction/map.php index 7dab8e10a9..50ff82b67e 100644 --- a/plugins/Mapstraction/map.php +++ b/plugins/Mapstraction/map.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class MapAction extends OwnerDesignAction { var $profile = null; @@ -116,7 +115,6 @@ class MapAction extends OwnerDesignAction * * @return boolean event handler return */ - function showScripts() { parent::showScripts(); diff --git a/plugins/Mapstraction/usermap.php b/plugins/Mapstraction/usermap.php index 094334f605..0ee956159c 100644 --- a/plugins/Mapstraction/usermap.php +++ b/plugins/Mapstraction/usermap.php @@ -42,10 +42,8 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class UsermapAction extends MapAction { - function prepare($args) { if(parent::prepare($args)) { @@ -61,14 +59,17 @@ class UsermapAction extends MapAction function title() { if (!empty($this->profile->fullname)) { - $base = $this->profile->fullname . ' (' . $this->user->nickname . ') '; + // @todo FIXME: Bad i18n. Should be '%1$s (%2$s)' + $base = $this->profile->fullname . ' (' . $this->user->nickname . ')'; } else { $base = $this->user->nickname; } if ($this->page == 1) { + // @todo CHECKME: inconsisten with paged variant below. " map" missing. return $base; } else { + // @todo CHECKME: Is the part ", page %2$d" relevant here? return sprintf(_m("%s map, page %d"), $base, $this->page); From edb411b4aeec6a19f5d127b619bdbe108b01f264 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 15:23:17 +0200 Subject: [PATCH 076/310] * L10n updates and translator documentation added. * superfluous whitespace removed. --- plugins/Sample/SamplePlugin.php | 8 -------- plugins/Sample/User_greeting_count.php | 16 ++++++---------- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/plugins/Sample/SamplePlugin.php b/plugins/Sample/SamplePlugin.php index 913741226b..ef69121a99 100644 --- a/plugins/Sample/SamplePlugin.php +++ b/plugins/Sample/SamplePlugin.php @@ -101,7 +101,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class SamplePlugin extends Plugin { /** @@ -129,7 +128,6 @@ class SamplePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function initialize() { return true; @@ -143,7 +141,6 @@ class SamplePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function cleanup() { return true; @@ -168,7 +165,6 @@ class SamplePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onCheckSchema() { $schema = Schema::get(); @@ -201,7 +197,6 @@ class SamplePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onAutoload($cls) { $dir = dirname(__FILE__); @@ -231,7 +226,6 @@ class SamplePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onRouterInitialized($m) { $m->connect('main/hello', @@ -256,7 +250,6 @@ class SamplePlugin extends Plugin * * @see Action */ - function onEndPrimaryNav($action) { // common_local_url() gets the correct URL for the action name @@ -278,4 +271,3 @@ class SamplePlugin extends Plugin return true; } } - diff --git a/plugins/Sample/User_greeting_count.php b/plugins/Sample/User_greeting_count.php index fc0cbd28ff..38d68c91ed 100644 --- a/plugins/Sample/User_greeting_count.php +++ b/plugins/Sample/User_greeting_count.php @@ -70,7 +70,6 @@ class User_greeting_count extends Memcached_DataObject * @return User_greeting_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('User_greeting_count', $k, $v); @@ -84,7 +83,6 @@ class User_greeting_count extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('user_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -100,7 +98,6 @@ class User_greeting_count extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -118,7 +115,6 @@ class User_greeting_count extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('user_id' => 'K'); @@ -134,7 +130,6 @@ class User_greeting_count extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); @@ -150,7 +145,6 @@ class User_greeting_count extends Memcached_DataObject * * @return User_greeting_count instance for this user, with count already incremented. */ - static function inc($user_id) { $gc = User_greeting_count::staticGet('user_id', $user_id); @@ -165,12 +159,12 @@ class User_greeting_count extends Memcached_DataObject $result = $gc->insert(); if (!$result) { - throw Exception(sprintf(_m("Could not save new greeting count for %d"), + // TRANS: Exception thrown when the user greeting count could not be saved in the database. + // TRANS: %d is a user ID (number). + throw Exception(sprintf(_m("Could not save new greeting count for %d."), $user_id)); } - } else { - $orig = clone($gc); $gc->greeting_count++; @@ -178,7 +172,9 @@ class User_greeting_count extends Memcached_DataObject $result = $gc->update($orig); if (!$result) { - throw Exception(sprintf(_m("Could not increment greeting count for %d"), + // TRANS: Exception thrown when the user greeting count could not be saved in the database. + // TRANS: %d is a user ID (number). + throw Exception(sprintf(_m("Could not increment greeting count for %d."), $user_id)); } } From 52ccc8e521d47713643f558daf93855a875a6c73 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 15:26:48 +0200 Subject: [PATCH 077/310] * update L10n * remove superfluous whitespace --- plugins/Sample/hello.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/plugins/Sample/hello.php b/plugins/Sample/hello.php index dfbd0ad4f2..a793ac6de2 100644 --- a/plugins/Sample/hello.php +++ b/plugins/Sample/hello.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class HelloAction extends Action { var $user = null; @@ -67,7 +66,6 @@ class HelloAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -93,7 +91,6 @@ class HelloAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -108,13 +105,12 @@ class HelloAction extends Action * * @return string Title of the page */ - function title() { if (empty($this->user)) { return _m('Hello'); } else { - return sprintf(_m('Hello, %s'), $this->user->nickname); + return sprintf(_m('Hello, %s!'), $this->user->nickname); } } @@ -130,7 +126,6 @@ class HelloAction extends Action * * @return void */ - function showContent() { if (empty($this->user)) { @@ -162,7 +157,6 @@ class HelloAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false; From 326e351d448382ae85588f1d7d69e7bf507eebe4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 15:38:15 +0200 Subject: [PATCH 078/310] Fix typo. --- plugins/Blacklist/BlacklistPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index 0008348389..bc8b82492d 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -231,7 +231,7 @@ class BlacklistPlugin extends Plugin $url = htmlspecialchars_decode($url); if (!$this->_checkUrl($url)) { - $msg = sprintf(_m("You may not use UTL \"%s\" in notices."), + $msg = sprintf(_m("You may not use URL \"%s\" in notices."), $url); throw new ClientException($msg); } From cfe60815bc5e96a7711cd836ab829d297aaba269 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 17:14:00 +0200 Subject: [PATCH 079/310] Remove superfluous whitespace. --- plugins/Gravatar/GravatarPlugin.php | 18 +++++++++--------- plugins/Gravatar/README | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/Gravatar/GravatarPlugin.php b/plugins/Gravatar/GravatarPlugin.php index 8a9721ea90..208262d0e9 100644 --- a/plugins/Gravatar/GravatarPlugin.php +++ b/plugins/Gravatar/GravatarPlugin.php @@ -34,17 +34,17 @@ class GravatarPlugin extends Plugin { return true; } - + function onStartAvatarFormData($action) { $user = common_current_user(); $hasGravatar = $this->hasGravatar($user->id); - + if($hasGravatar) { return false; } } - + function onEndAvatarFormData($action) { $user = common_current_user(); @@ -91,7 +91,7 @@ class GravatarPlugin extends Plugin _m('To use a Gravatar first enter in an email address.')); } } - + function onStartAvatarSaveForm($action) { if ($action->arg('add')) { @@ -131,19 +131,19 @@ class GravatarPlugin extends Plugin } return false; } - + function gravatar_save() { $cur = common_current_user(); - + if(empty($cur->email)) { return array('message' => _m('You do not have a email set in your profile.'), 'success' => false); } //Get rid of previous Avatar $this->gravatar_remove(); - + foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) { $gravatar = new Avatar(); $gravatar->profile_id = $cur->id; @@ -181,7 +181,7 @@ class GravatarPlugin extends Plugin return array('message' => _m('Gravatar removed.'), 'success' => true); } - + function gravatar_url($email, $size) { $url = "http://www.gravatar.com/avatar.php?gravatar_id=". @@ -202,4 +202,4 @@ class GravatarPlugin extends Plugin return true; } -} \ No newline at end of file +} diff --git a/plugins/Gravatar/README b/plugins/Gravatar/README index 9337e24a0a..2639048089 100644 --- a/plugins/Gravatar/README +++ b/plugins/Gravatar/README @@ -10,4 +10,4 @@ addPlugin('Gravatar', array()); ToDo: Site default all on for gravatar by default Migration Script -Localize \ No newline at end of file +Localize From 1c5e00df3035b2f0280ad98d028742adef2b09c4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 17:16:48 +0200 Subject: [PATCH 080/310] Fix typo. --- plugins/Gravatar/GravatarPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Gravatar/GravatarPlugin.php b/plugins/Gravatar/GravatarPlugin.php index 208262d0e9..f415541bfe 100644 --- a/plugins/Gravatar/GravatarPlugin.php +++ b/plugins/Gravatar/GravatarPlugin.php @@ -138,7 +138,7 @@ class GravatarPlugin extends Plugin $cur = common_current_user(); if(empty($cur->email)) { - return array('message' => _m('You do not have a email set in your profile.'), + return array('message' => _m('You do not have a email address set in your profile.'), 'success' => false); } //Get rid of previous Avatar From ba6538ed78df3049fa59aed0855b0e3af54c994f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Sep 2010 17:45:18 +0200 Subject: [PATCH 081/310] * i18n/L10n updates * whitespace updates. --- plugins/TwitterBridge/TwitterBridgePlugin.php | 13 +--- .../TwitterBridge/Twitter_synch_status.php | 10 ---- .../daemons/synctwitterfriends.php | 7 --- .../daemons/twitterstatusfetcher.php | 24 +------- plugins/TwitterBridge/twitter.php | 7 --- plugins/TwitterBridge/twitteradminpanel.php | 14 +---- .../TwitterBridge/twitterauthorization.php | 59 +++++++++---------- plugins/TwitterBridge/twitterlogin.php | 9 ++- plugins/TwitterBridge/twitteroauthclient.php | 1 - plugins/TwitterBridge/twittersettings.php | 8 +-- 10 files changed, 39 insertions(+), 113 deletions(-) diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index 34b82ef83a..94d4d9e475 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -45,7 +45,6 @@ require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; * @link http://status.net/ * @link http://twitter.com/ */ - class TwitterBridgePlugin extends Plugin { @@ -55,7 +54,6 @@ class TwitterBridgePlugin extends Plugin /** * Initializer for the plugin. */ - function initialize() { // Allow the key and secret to be passed in @@ -86,7 +84,6 @@ class TwitterBridgePlugin extends Plugin * * @return boolean result */ - static function hasKeys() { $ckey = common_config('twitter', 'consumer_key'); @@ -113,7 +110,6 @@ class TwitterBridgePlugin extends Plugin * * @return boolean hook return */ - function onRouterInitialized($m) { $m->connect('admin/twitter', array('action' => 'twitteradminpanel')); @@ -310,7 +306,6 @@ class TwitterBridgePlugin extends Plugin * * @return boolean hook value */ - function onPluginVersion(&$versions) { $versions[] = array( @@ -319,8 +314,8 @@ class TwitterBridgePlugin extends Plugin 'author' => 'Zach Copley, Julien C', 'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge', 'rawdescription' => _m( - 'The Twitter "bridge" plugin allows you to integrate ' . - 'your StatusNet instance with ' . + 'The Twitter "bridge" plugin allows integration ' . + 'of a StatusNet instance with ' . 'Twitter.' ) ); @@ -374,7 +369,6 @@ class TwitterBridgePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onCheckSchema() { $schema = Schema::get(); @@ -416,7 +410,6 @@ class TwitterBridgePlugin extends Plugin * * @return boolean hook value */ - function onStartDeleteOwnNotice(User $user, Notice $notice) { $n2s = Notice_to_status::staticGet('notice_id', $notice->id); @@ -452,7 +445,6 @@ class TwitterBridgePlugin extends Plugin * @param Notice $notice being favored * @return hook return value */ - function onEndFavorNotice(Profile $profile, Notice $notice) { $flink = Foreign_link::getByUserID($profile->id, @@ -489,7 +481,6 @@ class TwitterBridgePlugin extends Plugin * * @return hook return value */ - function onEndDisfavorNotice(Profile $profile, Notice $notice) { $flink = Foreign_link::getByUserID($profile->id, diff --git a/plugins/TwitterBridge/Twitter_synch_status.php b/plugins/TwitterBridge/Twitter_synch_status.php index 2a5f1fd605..a8337862c8 100644 --- a/plugins/TwitterBridge/Twitter_synch_status.php +++ b/plugins/TwitterBridge/Twitter_synch_status.php @@ -48,7 +48,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Twitter_synch_status extends Memcached_DataObject { public $__table = 'twitter_synch_status'; // table name @@ -67,7 +66,6 @@ class Twitter_synch_status extends Memcached_DataObject * @return Twitter_synch_status object found, or null for no hits * */ - function staticGet($k, $v=null) { throw new Exception("Use pkeyGet() for this class."); @@ -81,7 +79,6 @@ class Twitter_synch_status extends Memcached_DataObject * @return Twitter_synch_status object found, or null for no hits * */ - function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Twitter_synch_status', $kv); @@ -95,7 +92,6 @@ class Twitter_synch_status extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('foreign_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -115,7 +111,6 @@ class Twitter_synch_status extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -133,7 +128,6 @@ class Twitter_synch_status extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('foreign_id' => 'K', @@ -150,7 +144,6 @@ class Twitter_synch_status extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); @@ -174,7 +167,6 @@ class Twitter_synch_status extends Memcached_DataObject 'timeline' => $timeline)); if (empty($tss)) { - $tss = new Twitter_synch_status(); $tss->foreign_id = $foreign_id; @@ -186,9 +178,7 @@ class Twitter_synch_status extends Memcached_DataObject $tss->insert(); return true; - } else { - $orig = clone($tss); $tss->last_id = $last_id; diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 02546a02ca..38a8b89ebb 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -45,7 +45,6 @@ require_once INSTALLDIR . '/plugins/TwitterBridge/twitteroauthclient.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 SyncTwitterFriendsDaemon extends ParallelizingDaemon { /** @@ -59,7 +58,6 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon * @return void * **/ - function __construct($id = null, $interval = 60, $max_children = 2, $debug = null) { @@ -71,7 +69,6 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon * * @return string Name of the daemon. */ - function name() { return ('synctwitterfriends.' . $this->_id); @@ -110,12 +107,10 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon } function childTask($flink) { - // Each child ps needs its own DB connection // Note: DataObject::getDatabaseConnection() creates // a new connection if there isn't one already - $conn = &$flink->getDatabaseConnection(); $this->subscribeTwitterFriends($flink); @@ -127,7 +122,6 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon // XXX: Couldn't find a less brutal way to blow // away a cached connection - global $_DB_DATAOBJECT; unset($_DB_DATAOBJECT['CONNECTIONS']); } @@ -277,4 +271,3 @@ if (have_option('d') || have_option('debug')) { $syncer = new SyncTwitterFriendsDaemon($id, 60, 2, $debug); $syncer->runOnce(); - diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index f1305696b3..31129b96d9 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -62,7 +62,6 @@ require_once INSTALLDIR . '/plugins/TwitterBridge/twitteroauthclient.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 TwitterStatusFetcher extends ParallelizingDaemon { /** @@ -87,7 +86,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon * * @return string Name of the daemon. */ - function name() { return ('twitterstatusfetcher.'.$this->_id); @@ -99,7 +97,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon * * @return array flinks an array of Foreign_link objects */ - function getObjects() { global $_DB_DATAOBJECT; @@ -133,12 +130,10 @@ class TwitterStatusFetcher extends ParallelizingDaemon } function childTask($flink) { - // Each child ps needs its own DB connection // Note: DataObject::getDatabaseConnection() creates // a new connection if there isn't one already - $conn = &$flink->getDatabaseConnection(); $this->getTimeline($flink); @@ -150,7 +145,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon // XXX: Couldn't find a less brutal way to blow // away a cached connection - global $_DB_DATAOBJECT; unset($_DB_DATAOBJECT['CONNECTIONS']); } @@ -201,9 +195,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon // Reverse to preserve order foreach (array_reverse($timeline) as $status) { - // Hacktastic: filter out stuff coming from this StatusNet - $source = mb_strtolower(common_config('integration', 'source')); if (preg_match("/$source/", mb_strtolower($status->source))) { @@ -214,7 +206,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon // Don't save it if the user is protected // FIXME: save it but treat it as private - if ($status->user->protected) { continue; } @@ -232,7 +223,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon } // Okay, record the time we synced with Twitter for posterity - $flink->last_noticesync = common_sql_now(); $flink->update(); } @@ -250,7 +240,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon $statusUri = $this->makeStatusURI($status->user->screen_name, $status->id); // check to see if we've already imported the status - $n2s = Notice_to_status::staticGet('status_id', $status->id); if (!empty($n2s)) { @@ -263,7 +252,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon } // If it's a retweet, save it as a repeat! - if (!empty($status->retweeted_status)) { common_log(LOG_INFO, "Status {$status->id} is a retweet of {$status->retweeted_status->id}."); $original = $this->saveStatus($status->retweeted_status); @@ -273,7 +261,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $author = $original->getProfile(); // 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. - $content = sprintf(_('RT @%1$s %2$s'), + $content = sprintf(_m('RT @%1$s %2$s'), $author->nickname, $original->content); @@ -365,7 +353,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon * * @return string URI */ - function makeStatusURI($username, $id) { return 'http://twitter.com/' @@ -383,7 +370,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon * * @return mixed value the first Profile with that url, or null */ - function getProfileByUrl($nickname, $profileurl) { $profile = new Profile(); @@ -407,7 +393,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon * * @return mixed value a matching Notice or null */ - function checkDupe($profile, $statusUri) { $notice = new Notice(); @@ -426,7 +411,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon function ensureProfile($user) { // check to see if there's already a profile for this user - $profileurl = 'http://twitter.com/' . $user->screen_name; $profile = $this->getProfileByUrl($user->screen_name, $profileurl); @@ -440,7 +424,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon return $profile; } else { - common_debug($this->name() . ' - Adding profile and remote profile ' . "for Twitter user: $profileurl."); @@ -472,7 +455,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon $remote_pro = Remote_profile::staticGet('uri', $profileurl); if (empty($remote_pro)) { - $remote_pro = new Remote_profile(); $remote_pro->id = $id; @@ -619,7 +601,6 @@ class TwitterStatusFetcher extends ParallelizingDaemon $avatar = $profile->getAvatar($sizes[$size]); // Delete the avatar, if present - if ($avatar) { $avatar->delete(); } @@ -644,10 +625,8 @@ class TwitterStatusFetcher extends ParallelizingDaemon $avatar->height = 48; break; default: - // Note: Twitter's big avatars are a different size than // StatusNet's (StatusNet's = 96) - $avatar->width = 73; $avatar->height = 73; } @@ -822,4 +801,3 @@ if (have_option('d') || have_option('debug')) { $fetcher = new TwitterStatusFetcher($id, 60, 2, $debug); $fetcher->runOnce(); - diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 90b0f0f14f..3bff0af72d 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -69,7 +69,6 @@ function save_twitter_user($twitter_id, $screen_name) { // Check to see whether the Twitter user is already in the system, // and update its screen name and uri if so. - $fuser = Foreign_user::getForeignUser($twitter_id, TWITTER_SERVICE); if (!empty($fuser)) { @@ -87,9 +86,7 @@ function save_twitter_user($twitter_id, $screen_name) } } else { - // Kill any old, invalid records for this screen name - $fuser = Foreign_user::getByNickname($screen_name, TWITTER_SERVICE); if (!empty($fuser)) { @@ -110,13 +107,11 @@ function save_twitter_user($twitter_id, $screen_name) } function is_twitter_bound($notice, $flink) { - // Check to see if notice should go to Twitter if (!empty($flink) && ($flink->noticesync & FOREIGN_NOTICE_SEND)) { // If it's not a Twitter-style reply, or if the user WANTS to send replies, // or if it's in reply to a twitter notice - if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) || ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) || is_twitter_notice($notice->reply_to)) { @@ -242,7 +237,6 @@ function broadcast_oauth($notice, $flink) { } // Notice crossed the great divide - $msg = sprintf('Twitter bridge - posted notice %d to Twitter using ' . 'OAuth for User %s (user id %d).', $notice->id, @@ -378,4 +372,3 @@ function mail_twitter_bridge_removed($user) common_switch_locale(); return mail_to_user($user, $subject, $body); } - diff --git a/plugins/TwitterBridge/twitteradminpanel.php b/plugins/TwitterBridge/twitteradminpanel.php index 69f8da078a..d05a2c6b3e 100644 --- a/plugins/TwitterBridge/twitteradminpanel.php +++ b/plugins/TwitterBridge/twitteradminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class TwitteradminpanelAction extends AdminPanelAction { /** @@ -48,7 +47,6 @@ class TwitteradminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { return _m('Twitter'); @@ -59,7 +57,6 @@ class TwitteradminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { return _m('Twitter bridge settings'); @@ -70,7 +67,6 @@ class TwitteradminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new TwitterAdminPanelForm($this); @@ -83,7 +79,6 @@ class TwitteradminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array( @@ -173,7 +168,6 @@ class TwitterAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'twitteradminpanel'; @@ -184,7 +178,6 @@ class TwitterAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_settings'; @@ -195,7 +188,6 @@ class TwitterAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('twitteradminpanel'); @@ -206,7 +198,6 @@ class TwitterAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart( @@ -239,7 +230,7 @@ class TwitterAdminPanelForm extends AdminForm if (!empty($globalConsumerKey) && !empty($globalConsumerSec)) { $this->li(); - $this->out->element('p', 'form_guide', _('Note: a global consumer key and secret are set.')); + $this->out->element('p', 'form_guide', _m('Note: a global consumer key and secret are set.')); $this->unli(); } @@ -292,9 +283,8 @@ class TwitterAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save Twitter settings')); + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Twitter settings')); } } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 7a896e1687..931a037230 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -117,13 +117,13 @@ class TwitterauthorizationAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->showForm(_('There was a problem with your session token. Try again, please.')); + $this->showForm(_m('There was a problem with your session token. Try again, please.')); return; } if ($this->arg('create')) { if (!$this->boolean('license')) { - $this->showForm(_('You can\'t register if you don\'t agree to the license.'), + $this->showForm(_m('You can\'t register if you don\'t agree to the license.'), $this->trimmed('newname')); return; } @@ -132,7 +132,7 @@ class TwitterauthorizationAction extends Action $this->connectNewUser(); } else { common_debug('Twitter bridge - ' . print_r($this->args, true)); - $this->showForm(_('Something weird happened.'), + $this->showForm(_m('Something weird happened.'), $this->trimmed('newname')); } } else { @@ -231,7 +231,6 @@ class TwitterauthorizationAction extends Action } if (common_logged_in()) { - // Save the access token and Twitter user info $user = common_current_user(); @@ -298,7 +297,7 @@ class TwitterauthorizationAction extends Action if (empty($flink_id)) { common_log_db_error($flink, 'INSERT', __FILE__); - $this->serverError(_('Couldn\'t link your Twitter account.')); + $this->serverError(_m('Couldn\'t link your Twitter account.')); } return $flink_id; @@ -310,13 +309,13 @@ class TwitterauthorizationAction extends Action $this->element('div', array('class' => 'error'), $this->error); } else { $this->element('div', 'instructions', - sprintf(_('This is the first time you\'ve logged into %s so we must connect your Twitter account to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name'))); + sprintf(_m('This is the first time you\'ve logged into %s so we must connect your Twitter account to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name'))); } } function title() { - return _('Twitter Account Setup'); + return _m('Twitter Account Setup'); } function showForm($error=null, $username=null) @@ -349,7 +348,7 @@ class TwitterauthorizationAction extends Action 'class' => 'form_settings', 'action' => common_local_url('twitterauthorization'))); $this->elementStart('fieldset', array('id' => 'settings_twitter_connect_options')); - $this->element('legend', null, _('Connection options')); + $this->element('legend', null, _m('Connection options')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->element('input', array('type' => 'checkbox', @@ -358,7 +357,7 @@ class TwitterauthorizationAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $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 = 'text(_m('Disconnecting your Faceboook ' . 'would make it impossible to log in! Please ')); $this->element('a', array('href' => common_local_url('passwordsettings')), + // TRANS: Preceded by "Please " and followed by " first." _m('set a password')); - + // TRANS: Preceded by "Please set a password". $this->text(_m(' first.')); $this->elementEnd('p'); } else { diff --git a/plugins/Facebook/facebookaction.php b/plugins/Facebook/facebookaction.php index f65b97c865..467c6af84f 100644 --- a/plugins/Facebook/facebookaction.php +++ b/plugins/Facebook/facebookaction.php @@ -219,22 +219,22 @@ class FacebookAction extends Action function showInstructions() { - $this->elementStart('div', array('class' => 'facebook_guide')); $this->elementStart('dl', array('class' => 'system_notice')); $this->element('dt', null, 'Page Notice'); $loginmsg_part1 = _m('To use the %s Facebook Application you need to login ' . - 'with your username and password. Don\'t have a username yet? '); + 'with your username and password. Don\'t have a username yet?'); $loginmsg_part2 = _m(' a new account.'); $this->elementStart('dd'); $this->elementStart('p'); $this->text(sprintf($loginmsg_part1, common_config('site', 'name'))); + // @todo FIXME: Bad i18n. Patchwork message in two parts. $this->element('a', array('href' => common_local_url('register')), _m('Register')); - $this->text($loginmsg_part2); + $this->text( " " . $loginmsg_part2); $this->elementEnd('p'); $this->elementEnd('dd'); diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 3bff0af72d..d984698ee8 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -30,7 +30,6 @@ function add_twitter_user($twitter_id, $screen_name) // Clear out any bad old foreign_users with the new user's legit URL // This can happen when users move around or fakester accounts get // repoed, and things like that. - $luser = Foreign_user::getForeignUser($twitter_id, TWITTER_SERVICE); if (!empty($luser)) { @@ -135,7 +134,6 @@ function broadcast_twitter($notice) TWITTER_SERVICE); // Don't bother with basic auth, since it's no longer allowed - if (!empty($flink) && TwitterOAuthClient::isPackedToken($flink->credentials)) { if (!empty($notice->repeat_of) && is_twitter_notice($notice->repeat_of)) { $retweet = retweet_notice($flink, Notice::staticGet('id', $notice->repeat_of)); @@ -224,7 +222,6 @@ function broadcast_oauth($notice, $flink) { // This could represent a failure posting, // or the Twitter API might just be behaving flakey. - $errmsg = sprintf('Twitter bridge - No data returned by Twitter API when ' . 'trying to post notice %d for User %s (user id %d).', $notice->id, @@ -347,7 +344,6 @@ function remove_twitter_link($flink) * * @return boolean success flag */ - function mail_twitter_bridge_removed($user) { $profile = $user->getProfile(); @@ -360,8 +356,8 @@ function mail_twitter_bridge_removed($user) $body = sprintf(_m('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 revoke ' . - '%3$s\'s access?)' . "\n\n" . + '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\n"), diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index 6b087353a6..dab8ab34fe 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -128,6 +128,7 @@ class TwittersettingsAction extends ConnectSettingsAction if (!$user->password) { $this->elementStart('p', array('class' => 'form_guide')); + // @todo FIXME: Bad i18n (patchwork in three parts). $this->text(_m('Disconnecting your Twitter ' . 'could make it impossible to log in! Please ')); $this->element('a', @@ -180,7 +181,7 @@ class TwittersettingsAction extends ConnectSettingsAction if (common_config('twitterimport','enabled')) { $this->elementStart('li'); $this->checkbox('noticerecv', - _m('Import my Friends Timeline.'), + _m('Import my friends timeline.'), ($flink) ? ($flink->noticesync & FOREIGN_NOTICE_RECV) : false); From 159e3e7b7138b4425c64e01c498f21ccb14026c6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:13:06 +0200 Subject: [PATCH 087/310] Fix typo --- plugins/Gravatar/GravatarPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Gravatar/GravatarPlugin.php b/plugins/Gravatar/GravatarPlugin.php index 23f04e7db6..e4782cb9fb 100644 --- a/plugins/Gravatar/GravatarPlugin.php +++ b/plugins/Gravatar/GravatarPlugin.php @@ -138,7 +138,7 @@ class GravatarPlugin extends Plugin $cur = common_current_user(); if(empty($cur->email)) { - return array('message' => _m('You do not have a email address set in your profile.'), + return array('message' => _m('You do not have an email address set in your profile.'), 'success' => false); } //Get rid of previous Avatar From 8b44063ca14d3101d39b081ec85421a221b45bb7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:17:24 +0200 Subject: [PATCH 088/310] * L10n update * superfluous whitespace removed --- plugins/CacheLog/CacheLogPlugin.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/CacheLog/CacheLogPlugin.php b/plugins/CacheLog/CacheLogPlugin.php index 4c47de80eb..5b0b439354 100644 --- a/plugins/CacheLog/CacheLogPlugin.php +++ b/plugins/CacheLog/CacheLogPlugin.php @@ -50,7 +50,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class CacheLogPlugin extends Plugin { function onStartCacheGet(&$key, &$value) @@ -114,8 +113,7 @@ class CacheLogPlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:CacheLog', 'description' => - _m('Log reads and writes to the cache')); + _m('Log reads and writes to the cache.')); return true; } } - From 1564b6aa49f47ac59ea15eef2f138b17d2c35cff Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:19:02 +0200 Subject: [PATCH 089/310] * L10n update * remove superfluous whitespace --- plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php b/plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php index c646bf113b..bb937ec5b9 100644 --- a/plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php +++ b/plugins/GoogleAnalytics/GoogleAnalyticsPlugin.php @@ -47,7 +47,6 @@ if (!defined('STATUSNET')) { * * @see Event */ - class GoogleAnalyticsPlugin extends Plugin { var $code = null; @@ -79,7 +78,7 @@ class GoogleAnalyticsPlugin extends Plugin 'homepage' => 'http://status.net/wiki/Plugin:GoogleAnalytics', 'rawdescription' => _m('Use Google Analytics'. - ' to track Web access.')); + ' to track web access.')); return true; } } From 53cfa5349f1f9c964d5a8136399f03a85bc6d484 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:20:16 +0200 Subject: [PATCH 090/310] * L10n update * superfluous whitespace removed. --- plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php b/plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php index b353d72552..777fd9c5d3 100644 --- a/plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php +++ b/plugins/PiwikAnalytics/PiwikAnalyticsPlugin.php @@ -49,7 +49,6 @@ if (!defined('STATUSNET')) { * analytics setup - for example '8'. * */ - class PiwikAnalyticsPlugin extends Plugin { /** the base of your Piwik installation */ @@ -63,7 +62,6 @@ class PiwikAnalyticsPlugin extends Plugin * @param string $root Piwik root URL * @param string $id Piwik ID of this app */ - function __construct($root=null, $id=null) { $this->piwikroot = $root; @@ -78,7 +76,6 @@ class PiwikAnalyticsPlugin extends Plugin * * @return boolean ignored */ - function onEndShowScripts($action) { $piwikCode1 = << 'Tobias Diekershoff, Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:Piwik', 'rawdescription' => - _m('Use Piwik Open Source Web analytics software.')); + _m('Use Piwik Open Source web analytics software.')); return true; } - } From f1d78942b37d40c3aaa31ed52bc37a76a958dd66 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:23:10 +0200 Subject: [PATCH 091/310] L10n updates. --- plugins/RSSCloud/RSSCloudRequestNotify.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/RSSCloud/RSSCloudRequestNotify.php b/plugins/RSSCloud/RSSCloudRequestNotify.php index 41b8685785..e9c0eab5f8 100644 --- a/plugins/RSSCloud/RSSCloudRequestNotify.php +++ b/plugins/RSSCloud/RSSCloudRequestNotify.php @@ -138,7 +138,7 @@ class RSSCloudRequestNotifyAction extends Action common_log(LOG_WARNING, "RSSCloud plugin - $nh tried to subscribe to invalid feed: $feed"); - $msg = _m('Feed subscription failed - Not a valid feed.'); + $msg = _m('Feed subscription failed: Not a valid feed.'); $this->showResult(false, $msg); return; } @@ -159,7 +159,7 @@ class RSSCloudRequestNotifyAction extends Action // 25 hours seems harsh. WordPress doesn't ever remove // subscriptions. $msg = _m('Thanks for the subscription. ' . - 'When the feed(s) update(s) we\'ll notify you.'); + 'When the feed(s) update(s), you will be notified.'); $this->showResult(true, $msg); } From 8135f7d9605ef16d56b6588f3ebea333891d17ef Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:24:48 +0200 Subject: [PATCH 092/310] Update pot files for plugins. --- plugins/Adsense/locale/Adsense.pot | 2 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 5 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- plugins/Blacklist/locale/Blacklist.pot | 4 +- .../locale/CasAuthentication.pot | 41 ++- .../locale/ClientSideShorten.pot | 4 +- .../locale/DirectionDetector.pot | 2 +- .../locale/EmailAuthentication.pot | 2 +- plugins/Facebook/locale/Facebook.pot | 27 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- plugins/Gravatar/locale/Gravatar.pot | 6 +- plugins/Imap/locale/Imap.pot | 18 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/LdapAuthentication.pot | 2 +- .../locale/LdapAuthorization.pot | 2 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- plugins/Mapstraction/locale/Mapstraction.pot | 26 +- plugins/Minify/locale/Minify.pot | 18 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 10 +- plugins/OStatus/locale/OStatus.pot | 8 +- .../locale/OpenExternalLinkTarget.pot | 4 +- plugins/OpenID/locale/OpenID.pot | 2 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/PoweredByStatusNet.pot | 13 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- plugins/RSSCloud/locale/RSSCloud.pot | 46 +++- plugins/Recaptcha/locale/Recaptcha.pot | 10 +- .../locale/RegisterThrottle.pot | 14 +- .../locale/RequireValidatedEmail.pot | 2 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- plugins/Sample/locale/Sample.pot | 35 ++- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- plugins/SubMirror/locale/SubMirror.pot | 64 +++-- plugins/TabFocus/locale/TabFocus.pot | 4 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- plugins/TinyMCE/locale/TinyMCE.pot | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 253 ++++++++++++++---- .../WikiHowProfile/locale/WikiHowProfile.pot | 16 +- 40 files changed, 479 insertions(+), 189 deletions(-) diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index d4bed3af5f..6d69f639cd 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+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/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index c6712c6b83..ff4f387761 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,7 +26,8 @@ msgid "" "the public timeline." msgstr "" -#: AutoSandboxPlugin.php:78 +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 msgid "" "Note you will initially be \"sandboxed\" so your posts will not appear in " "the public timeline. Send a message to $contactlink to speed up the " diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 2fd61cfde5..27f74bf09b 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 12012ba886..4c4455da9f 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 88db86ebd4..f6bb591a80 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -38,7 +38,7 @@ msgstr "" #: BlacklistPlugin.php:234 #, php-format -msgid "You may not use UTL \"%s\" in notices." +msgid "You may not use URL \"%s\" in notices." msgstr "" #: BlacklistPlugin.php:338 diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index b5c45eb68e..203fd5ede4 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,15 +16,38 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: CasAuthenticationPlugin.php:82 +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 msgid "CAS" msgstr "" -#: CasAuthenticationPlugin.php:83 -msgid "Login or register with CAS" +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." msgstr "" -#: CasAuthenticationPlugin.php:150 +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "" + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "" + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "" + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 msgid "" "The CAS Authentication plugin allows for StatusNet to handle authentication " "through CAS (Central Authentication Service)." @@ -33,3 +56,11 @@ msgstr "" #: caslogin.php:28 msgid "Already logged in." msgstr "" + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "" + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index d2b4862dd0..8ef97c61b2 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,7 +19,7 @@ msgstr "" #: ClientSideShortenPlugin.php:74 msgid "" "ClientSideShorten causes the web interface's notice form to automatically " -"shorten urls as they entered, and before the notice is submitted." +"shorten URLs as they entered, and before the notice is submitted." msgstr "" #: shorten.php:56 diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index d0199a0407..995bc42eca 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index b0d096a49a..469435c6b3 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 14bd372d66..09f027c4e9 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -39,7 +39,7 @@ msgstr "" msgid "There is already a local user linked with this Facebook." msgstr "" -#: FBConnectAuth.php:90 FBConnectSettings.php:164 +#: FBConnectAuth.php:90 FBConnectSettings.php:167 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -265,14 +265,14 @@ msgstr "" msgid "Settings" msgstr "" -#: facebookaction.php:228 +#: facebookaction.php:227 #, php-format msgid "" "To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +"password. Don't have a username yet?" msgstr "" -#: facebookaction.php:230 +#: facebookaction.php:229 msgid " a new account." msgstr "" @@ -349,32 +349,35 @@ msgstr "" msgid "Disconnect my account from Facebook" msgstr "" -#: FBConnectSettings.php:124 +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:126 msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please " msgstr "" -#: FBConnectSettings.php:128 +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:131 msgid "set a password" msgstr "" -#: FBConnectSettings.php:130 +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:133 msgid " first." msgstr "" -#: FBConnectSettings.php:142 +#: FBConnectSettings.php:145 msgid "Disconnect" msgstr "" -#: FBConnectSettings.php:178 +#: FBConnectSettings.php:181 msgid "Couldn't delete link to Facebook." msgstr "" -#: FBConnectSettings.php:194 +#: FBConnectSettings.php:197 msgid "You have disconnected from Facebook." msgstr "" -#: FBConnectSettings.php:197 +#: FBConnectSettings.php:200 msgid "Not sure what you're trying to do." msgstr "" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index c4b10a499e..ebcc8d3feb 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+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/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index 9a71b81663..fda09b7975 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,11 +45,11 @@ msgid "To use a Gravatar first enter in an email address." msgstr "" #: GravatarPlugin.php:141 -msgid "You do not have a email set in your profile." +msgid "You do not have an email address set in your profile." msgstr "" #: GravatarPlugin.php:159 -msgid "Failed to save Gravatar to the DB." +msgid "Failed to save Gravatar to the database." msgstr "" #: GravatarPlugin.php:163 diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 9d807a3d35..1f7497446a 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,22 @@ msgstr "" msgid "Error" msgstr "" +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "" + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "" + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "" + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "" + #: ImapPlugin.php:103 msgid "" "The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 52f9ef1eaa..b1af9664f6 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index ce84cbf0e0..d40dd5ebd8 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 11e7fc5c82..60a7106f97 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+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/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 2785ee8005..66505e5f82 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 3d7f71f89b..7a971cabed 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,39 +16,37 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MapstractionPlugin.php:182 +#: MapstractionPlugin.php:178 msgid "Map" msgstr "" -#: MapstractionPlugin.php:193 +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 msgid "Full size" msgstr "" -#: MapstractionPlugin.php:205 +#: MapstractionPlugin.php:202 msgid "" "Show maps of users' and friends' notices with Mapstraction JavaScript library." +"mapstraction.com/\">Mapstraction." msgstr "" -#: map.php:73 +#: map.php:72 msgid "No such user." msgstr "" -#: map.php:80 +#: map.php:79 msgid "User has no profile." msgstr "" -#: allmap.php:72 +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 #, php-format msgid "%s friends map" msgstr "" -#: allmap.php:75 -#, php-format -msgid "%s friends map, page %d" -msgstr "" - -#: usermap.php:72 +#: usermap.php:73 #, php-format msgid "%s map, page %d" msgstr "" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 2f65c5df2c..2425d50bc4 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,8 +16,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "" + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "" + +#: minify.php:111 +msgid "File type not supported." +msgstr "" + #: MinifyPlugin.php:180 msgid "" -"The Minify plugin minifies your CSS and Javascript, removing whitespace and " -"comments." +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." msgstr "" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index c4af49a226..7c58516b1b 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 1a451ba74c..f5a9628313 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,5 +17,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: NoticeTitlePlugin.php:126 -msgid "Adds optional titles to notices" +msgid "Adds optional titles to notices." +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" msgstr "" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 3dc6fd6ade..b3a9074a29 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,17 +71,17 @@ msgstr "" msgid "Show more" msgstr "" -#: classes/Ostatus_profile.php:1035 +#: classes/Ostatus_profile.php:1034 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1044 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -#: classes/Ostatus_profile.php:1053 +#: classes/Ostatus_profile.php:1052 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 2fbe4cfa2b..4ceaddf187 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,5 +17,5 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: OpenExternalLinkTargetPlugin.php:60 -msgid "Opens external links (i.e., with rel=external) on a new window or tab" +msgid "Opens external links (e.g., with rel=external) on a new window or tab." msgstr "" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 0a84e060da..033eab320b 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 0e9d768036..1d67b75104 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index 1997cc04a2..77c1822c42 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,17 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: PoweredByStatusNetPlugin.php:50 +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 #, php-format msgid "powered by %s" msgstr "" -#: PoweredByStatusNetPlugin.php:52 +#: PoweredByStatusNetPlugin.php:53 msgid "StatusNet" msgstr "" -#: PoweredByStatusNetPlugin.php:65 +#: PoweredByStatusNetPlugin.php:66 msgid "" -"Outputs powered by StatusNet after site " -"name." +"Outputs \"powered by StatusNet\" after " +"site name." msgstr "" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index b2f5947af9..c7a8b06677 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index c7b28632b4..56de24825e 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,9 +16,51 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "" + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "" + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "" + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "" + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be notified." +msgstr "" + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "" + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "" + #: RSSCloudPlugin.php:248 msgid "" "The RSSCloud plugin enables your StatusNet instance to publish real-time " "updates for profile RSS feeds using the RSSCloud protocol\"." +"\">RSSCloud protocol." msgstr "" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 855a1a11a3..547f73ba12 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+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" +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "" + #: RecaptchaPlugin.php:117 msgid "" "Uses Recaptcha service to add a " diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 40327d16fe..97539f9a0d 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,14 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RegisterThrottlePlugin.php:122 RegisterThrottlePlugin.php:161 +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 msgid "Cannot find IP address." msgstr "" -#: RegisterThrottlePlugin.php:167 +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "" + +#: RegisterThrottlePlugin.php:166 msgid "Cannot find user after successful registration." msgstr "" -#: RegisterThrottlePlugin.php:200 -msgid "Throttles excessive registration from a single IP." +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 13c04c338a..f2128e7941 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:07+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/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index df2523cb41..c0e66561cb 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/Sample.pot b/plugins/Sample/locale/Sample.pot index 66bcb775d9..b58819655b 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,38 +17,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: User_greeting_count.php:168 +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 #, php-format -msgid "Could not save new greeting count for %d" +msgid "Could not save new greeting count for %d." msgstr "" -#: User_greeting_count.php:181 +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 #, php-format -msgid "Could not increment greeting count for %d" +msgid "Could not increment greeting count for %d." msgstr "" -#: SamplePlugin.php:266 hello.php:115 +#: SamplePlugin.php:259 hello.php:111 msgid "Hello" msgstr "" -#: SamplePlugin.php:266 +#: SamplePlugin.php:259 msgid "A warm greeting" msgstr "" -#: SamplePlugin.php:277 +#: SamplePlugin.php:270 msgid "A sample plugin to show basics of development for new hackers." msgstr "" -#: hello.php:117 hello.php:141 +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "" + +#: hello.php:136 #, php-format msgid "Hello, %s" msgstr "" #: hello.php:138 -msgid "Hello, stranger!" -msgstr "" - -#: hello.php:143 #, php-format msgid "I have greeted you %d time." msgid_plural "I have greeted you %d times." diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index 7edf70abf9..8fd5aa6bee 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index f34de8f9f8..b463077043 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,94 +16,114 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: SubMirrorPlugin.php:92 +#: SubMirrorPlugin.php:90 msgid "Pull feeds into your timeline!" msgstr "" #. TRANS: SubMirror plugin menu item on user settings page. -#: SubMirrorPlugin.php:111 +#: SubMirrorPlugin.php:109 msgctxt "MENU" msgid "Mirroring" msgstr "" #. TRANS: SubMirror plugin tooltip for user settings menu item. -#: SubMirrorPlugin.php:113 +#: SubMirrorPlugin.php:111 msgid "Configure mirroring of posts from other feeds" msgstr "" -#: lib/editmirrorform.php:84 +#: lib/editmirrorform.php:83 msgctxt "LABEL" msgid "Remote feed:" msgstr "" -#: lib/editmirrorform.php:88 +#: lib/editmirrorform.php:87 msgctxt "LABEL" msgid "Local user" msgstr "" -#: lib/editmirrorform.php:94 +#: lib/editmirrorform.php:93 msgid "Mirroring style" msgstr "" -#: lib/editmirrorform.php:96 +#: lib/editmirrorform.php:95 msgid "" "Repeat: reference the original user's post (sometimes shows as 'RT @blah')" msgstr "" -#: lib/editmirrorform.php:97 +#: lib/editmirrorform.php:96 msgid "Repost the content under my account" msgstr "" -#: lib/editmirrorform.php:116 +#: lib/editmirrorform.php:115 msgid "Save" msgstr "" -#: lib/editmirrorform.php:118 +#: lib/editmirrorform.php:117 msgid "Stop mirroring" msgstr "" -#: lib/addmirrorform.php:62 +#: lib/addmirrorform.php:59 msgid "Web page or feed URL:" msgstr "" -#: lib/addmirrorform.php:67 +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" msgid "Add feed" msgstr "" -#: actions/basemirror.php:73 +#: actions/basemirror.php:71 msgid "Invalid feed URL." msgstr "" #. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. -#: actions/basemirror.php:85 +#: actions/basemirror.php:83 msgid "Invalid profile for mirroring." msgstr "" -#: actions/basemirror.php:103 +#: actions/basemirror.php:101 msgid "Can't mirror a StatusNet group at this time." msgstr "" -#: actions/editmirror.php:70 +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "" + +#: actions/basemirror.php:123 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "" + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "" + +#: actions/editmirror.php:68 msgid "Requested invalid profile to edit." msgstr "" -#: actions/editmirror.php:88 +#: actions/editmirror.php:86 msgid "Bad form data." msgstr "" -#: actions/editmirror.php:96 -msgid "Requested edit of missing mirror" +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." msgstr "" -#: actions/addmirror.php:74 +#: actions/addmirror.php:72 msgid "Could not subscribe to feed." msgstr "" +#. TRANS: Title. #: actions/mirrorsettings.php:42 msgid "Feed mirror settings" msgstr "" -#: actions/mirrorsettings.php:53 +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 6de47bf08f..31cc259662 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,6 +19,6 @@ msgstr "" #: TabFocusPlugin.php:54 msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " -"pressing the tab key focuses the \"Send\" button, matching the behavor of " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " "Twitter." msgstr "" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index ea0821eee0..41026d711b 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+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/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 788762ba85..c42fea8719 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: TinyMCEPlugin.php:77 -msgid "Use TinyMCE library to allow rich text editing in the browser" +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index b5f9061742..625ab83768 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,16 +16,16 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: twitter.php:363 +#: twitter.php:353 msgid "Your Twitter bridge has been disabled." msgstr "" -#: twitter.php:367 +#: twitter.php:357 #, 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 revoke %3$s's access?)\n" +"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" @@ -36,92 +36,133 @@ msgid "" "%3$s\n" msgstr "" -#: TwitterBridgePlugin.php:156 TwitterBridgePlugin.php:179 -#: TwitterBridgePlugin.php:296 twitteradminpanel.php:54 +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 msgid "Twitter" msgstr "" -#: TwitterBridgePlugin.php:157 +#: TwitterBridgePlugin.php:152 msgid "Login or register using Twitter" msgstr "" -#: TwitterBridgePlugin.php:180 +#: TwitterBridgePlugin.php:175 msgid "Twitter integration options" msgstr "" -#: TwitterBridgePlugin.php:297 +#: TwitterBridgePlugin.php:292 msgid "Twitter bridge configuration" msgstr "" -#: TwitterBridgePlugin.php:322 +#: TwitterBridgePlugin.php:316 msgid "" -"The Twitter \"bridge\" plugin allows you to integrate your StatusNet " -"instance with Twitter." +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." msgstr "" -#: twitteradminpanel.php:65 +#: twitteradminpanel.php:62 msgid "Twitter bridge settings" msgstr "" -#: twitteradminpanel.php:150 +#: twitteradminpanel.php:145 msgid "Invalid consumer key. Max length is 255 characters." msgstr "" -#: twitteradminpanel.php:156 +#: twitteradminpanel.php:151 msgid "Invalid consumer secret. Max length is 255 characters." msgstr "" -#: twitteradminpanel.php:216 +#: twitteradminpanel.php:207 msgid "Twitter application settings" msgstr "" -#: twitteradminpanel.php:222 +#: twitteradminpanel.php:213 msgid "Consumer key" msgstr "" -#: twitteradminpanel.php:223 +#: twitteradminpanel.php:214 msgid "Consumer key assigned by Twitter" msgstr "" -#: twitteradminpanel.php:231 +#: twitteradminpanel.php:222 msgid "Consumer secret" msgstr "" -#: twitteradminpanel.php:232 +#: twitteradminpanel.php:223 msgid "Consumer secret assigned by Twitter" msgstr "" -#: twitteradminpanel.php:249 +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "" + +#: twitteradminpanel.php:240 msgid "Integration source" msgstr "" -#: twitteradminpanel.php:250 +#: twitteradminpanel.php:241 msgid "Name of your Twitter application" msgstr "" -#: twitteradminpanel.php:262 +#: twitteradminpanel.php:253 msgid "Options" msgstr "" -#: twitteradminpanel.php:269 +#: twitteradminpanel.php:260 msgid "Enable \"Sign-in with Twitter\"" msgstr "" -#: twitteradminpanel.php:271 +#: twitteradminpanel.php:262 msgid "Allow users to login with their Twitter credentials" msgstr "" -#: twitteradminpanel.php:278 +#: twitteradminpanel.php:269 msgid "Enable Twitter import" msgstr "" -#: twitteradminpanel.php:280 +#: twitteradminpanel.php:271 msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "" + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: twitterauthorization.php:126 +msgid "You can't register if you don't 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." msgstr "" @@ -129,99 +170,197 @@ msgstr "" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" -#: twittersettings.php:59 +#: twitterauthorization.php:312 +#, 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 "" + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "" + +#: twitterauthorization.php:360 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "" + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "" + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "" + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "" + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "" + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "" + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "" + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "" + +#: twittersettings.php:58 msgid "Twitter settings" msgstr "" -#: twittersettings.php:70 +#: twittersettings.php:69 msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." msgstr "" -#: twittersettings.php:118 +#: twittersettings.php:116 msgid "Twitter account" msgstr "" -#: twittersettings.php:123 +#: twittersettings.php:121 msgid "Connected Twitter account" msgstr "" -#: twittersettings.php:128 +#: twittersettings.php:126 msgid "Disconnect my account from Twitter" msgstr "" -#: twittersettings.php:133 +#: twittersettings.php:132 msgid "Disconnecting your Twitter could make it impossible to log in! Please " msgstr "" -#: twittersettings.php:137 +#: twittersettings.php:136 msgid "set a password" msgstr "" -#: twittersettings.php:139 +#: twittersettings.php:138 msgid " first." msgstr "" -#: twittersettings.php:143 +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" -#: twittersettings.php:151 +#: twittersettings.php:150 msgid "Disconnect" msgstr "" -#: twittersettings.php:158 +#: twittersettings.php:157 msgid "Preferences" msgstr "" -#: twittersettings.php:162 +#: twittersettings.php:161 msgid "Automatically send my notices to Twitter." msgstr "" -#: twittersettings.php:169 +#: twittersettings.php:168 msgid "Send local \"@\" replies to Twitter." msgstr "" -#: twittersettings.php:176 +#: twittersettings.php:175 msgid "Subscribe to my Twitter friends here." msgstr "" -#: twittersettings.php:185 -msgid "Import my Friends Timeline." +#: twittersettings.php:184 +msgid "Import my friends timeline." msgstr "" -#: twittersettings.php:201 -msgid "Save" -msgstr "" - -#: twittersettings.php:203 +#: twittersettings.php:202 msgid "Add" msgstr "" -#: twittersettings.php:228 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: twittersettings.php:238 +#: twittersettings.php:236 msgid "Unexpected form submission." msgstr "" -#: twittersettings.php:257 +#: twittersettings.php:254 msgid "Couldn't remove Twitter user." msgstr "" -#: twittersettings.php:261 +#: twittersettings.php:258 msgid "Twitter account disconnected." msgstr "" -#: twittersettings.php:282 twittersettings.php:292 +#: twittersettings.php:278 twittersettings.php:288 msgid "Couldn't save Twitter preferences." msgstr "" -#: twittersettings.php:296 +#: twittersettings.php:292 msgid "Twitter preferences saved." 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index a1e49c769c..6da28186c9 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-14 22:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,18 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: WikiHowProfilePlugin.php:60 +#: WikiHowProfilePlugin.php:59 msgid "" -"Fetches avatar and other profile info for WikiHow users when setting up an " -"account via OpenID." +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." msgstr "" -#: WikiHowProfilePlugin.php:172 +#: WikiHowProfilePlugin.php:171 #, php-format -msgid "Invalid avatar URL %s" +msgid "Invalid avatar URL %s." msgstr "" -#: WikiHowProfilePlugin.php:179 +#: WikiHowProfilePlugin.php:178 #, php-format -msgid "Unable to fetch avatar from %s" +msgid "Unable to fetch avatar from %s." msgstr "" From cf3f69368778b0aadea015bfd68c1665b1678712 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:25:52 +0200 Subject: [PATCH 093/310] Remove superfluous whitespace. --- plugins/Facebook/FBConnectSettings.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/Facebook/FBConnectSettings.php b/plugins/Facebook/FBConnectSettings.php index 7599bc8267..ee0b7d13c5 100644 --- a/plugins/Facebook/FBConnectSettings.php +++ b/plugins/Facebook/FBConnectSettings.php @@ -50,7 +50,6 @@ class FBConnectSettingsAction extends ConnectSettingsAction * * @return string Title of the page */ - function title() { return _m('Facebook Connect Settings'); @@ -61,7 +60,6 @@ class FBConnectSettingsAction extends ConnectSettingsAction * * @return instructions for use */ - function getInstructions() { return _m('Manage how your account connects to Facebook'); @@ -74,7 +72,6 @@ class FBConnectSettingsAction extends ConnectSettingsAction * * @return void */ - function showContent() { $user = common_current_user(); @@ -158,7 +155,6 @@ class FBConnectSettingsAction extends ConnectSettingsAction * * @return void */ - function handlePost() { // CSRF protection @@ -202,5 +198,4 @@ class FBConnectSettingsAction extends ConnectSettingsAction } } - } From 8dafb4c61274bfd925b9be9a490c09374b48914e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:26:47 +0200 Subject: [PATCH 094/310] Add pot files. --- plugins/APC/locale/APC.pot | 23 +++++++++++++++++ plugins/CacheLog/locale/CacheLog.pot | 21 ++++++++++++++++ plugins/Disqus/locale/Disqus.pot | 23 +++++++++++++++++ plugins/Echo/locale/Echo.pot | 23 +++++++++++++++++ plugins/GeoURL/locale/GeoURL.pot | 23 +++++++++++++++++ plugins/Geonames/locale/Geonames.pot | 23 +++++++++++++++++ .../locale/GoogleAnalytics.pot | 23 +++++++++++++++++ plugins/Linkback/locale/Linkback.pot | 25 +++++++++++++++++++ plugins/Memcache/locale/Memcache.pot | 22 ++++++++++++++++ plugins/Memcached/locale/Memcached.pot | 22 ++++++++++++++++ .../PiwikAnalytics/locale/PiwikAnalytics.pot | 23 +++++++++++++++++ .../locale/SubscriptionThrottle.pot | 21 ++++++++++++++++ plugins/UserLimit/locale/UserLimit.pot | 21 ++++++++++++++++ plugins/WikiHashtags/locale/WikiHashtags.pot | 23 +++++++++++++++++ plugins/XCache/locale/XCache.pot | 23 +++++++++++++++++ 15 files changed, 339 insertions(+) create mode 100644 plugins/APC/locale/APC.pot create mode 100644 plugins/CacheLog/locale/CacheLog.pot create mode 100644 plugins/Disqus/locale/Disqus.pot create mode 100644 plugins/Echo/locale/Echo.pot create mode 100644 plugins/GeoURL/locale/GeoURL.pot create mode 100644 plugins/Geonames/locale/Geonames.pot create mode 100644 plugins/GoogleAnalytics/locale/GoogleAnalytics.pot create mode 100644 plugins/Linkback/locale/Linkback.pot create mode 100644 plugins/Memcache/locale/Memcache.pot create mode 100644 plugins/Memcached/locale/Memcached.pot create mode 100644 plugins/PiwikAnalytics/locale/PiwikAnalytics.pot create mode 100644 plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot create mode 100644 plugins/UserLimit/locale/UserLimit.pot create mode 100644 plugins/WikiHashtags/locale/WikiHashtags.pot create mode 100644 plugins/XCache/locale/XCache.pot diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot new file mode 100644 index 0000000000..122a51f973 --- /dev/null +++ b/plugins/APC/locale/APC.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot new file mode 100644 index 0000000000..4e0e4112b3 --- /dev/null +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: CacheLogPlugin.php:117 +msgid "Log reads and writes to the cache." +msgstr "" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot new file mode 100644 index 0000000000..0f9ae44a5f --- /dev/null +++ b/plugins/Disqus/locale/Disqus.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: DisqusPlugin.php:167 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot new file mode 100644 index 0000000000..5f45d2a995 --- /dev/null +++ b/plugins/Echo/locale/Echo.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: EchoPlugin.php:112 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot new file mode 100644 index 0000000000..3bc63b8511 --- /dev/null +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: GeoURLPlugin.php:127 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot new file mode 100644 index 0000000000..1d91af3017 --- /dev/null +++ b/plugins/Geonames/locale/Geonames.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: GeonamesPlugin.php:498 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot new file mode 100644 index 0000000000..4006ccf1f5 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: GoogleAnalyticsPlugin.php:81 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot new file mode 100644 index 0000000000..f97eccdcc6 --- /dev/null +++ b/plugins/Linkback/locale/Linkback.pot @@ -0,0 +1,25 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: LinkbackPlugin.php:243 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot new file mode 100644 index 0000000000..cba1fe73bd --- /dev/null +++ b/plugins/Memcache/locale/Memcache.pot @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: MemcachePlugin.php:252 +msgid "" +"Use Memcached to cache query results." +msgstr "" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot new file mode 100644 index 0000000000..3748566bd7 --- /dev/null +++ b/plugins/Memcached/locale/Memcached.pot @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: MemcachedPlugin.php:223 +msgid "" +"Use Memcached to cache query results." +msgstr "" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot new file mode 100644 index 0000000000..2578147a2a --- /dev/null +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: PiwikAnalyticsPlugin.php:108 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot new file mode 100644 index 0000000000..f0fb4dd3cb --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot new file mode 100644 index 0000000000..fcce8f6762 --- /dev/null +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot new file mode 100644 index 0000000000..cae1daa5af --- /dev/null +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot new file mode 100644 index 0000000000..82992fc821 --- /dev/null +++ b/plugins/XCache/locale/XCache.pot @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-18 22:06+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" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" From 07cd52afc7eef0111c9f7bd49a52a51214520287 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 00:32:43 +0200 Subject: [PATCH 095/310] Localisation updates from http://translatewiki.net. --- locale/af/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ar/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/arz/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/bg/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/br/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ca/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/cs/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/da/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/de/LC_MESSAGES/statusnet.po | 50 ++++++++++-------- locale/el/LC_MESSAGES/statusnet.po | 32 ++++++------ locale/en_GB/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/eo/LC_MESSAGES/statusnet.po | 33 +++++++----- locale/es/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/fa/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/fi/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/fr/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ga/LC_MESSAGES/statusnet.po | 35 +++++++------ locale/gl/LC_MESSAGES/statusnet.po | 75 ++++++++++++++------------- locale/he/LC_MESSAGES/statusnet.po | 32 ++++++------ locale/hsb/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ia/LC_MESSAGES/statusnet.po | 42 +++++++++------ locale/is/LC_MESSAGES/statusnet.po | 32 ++++++------ locale/it/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ja/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ka/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ko/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/mk/LC_MESSAGES/statusnet.po | 44 ++++++++++------ locale/nb/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/nl/LC_MESSAGES/statusnet.po | 42 +++++++++------ locale/nn/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/pl/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/pt/LC_MESSAGES/statusnet.po | 42 +++++++++------ locale/pt_BR/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/ru/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/statusnet.pot | 20 +++---- locale/sv/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/te/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/tr/LC_MESSAGES/statusnet.po | 32 ++++++------ locale/uk/LC_MESSAGES/statusnet.po | 42 +++++++++------ locale/vi/LC_MESSAGES/statusnet.po | 37 +++++++------ locale/zh_CN/LC_MESSAGES/statusnet.po | 42 +++++++++------ locale/zh_TW/LC_MESSAGES/statusnet.po | 32 ++++++------ 42 files changed, 899 insertions(+), 690 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 2596b39c56..982de63ddd 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Afrikaans (Afrikaans) +# Translation of StatusNet - Core to Afrikaans (Afrikaans) # Expored from translatewiki.net # # Author: Naudefj @@ -7,19 +7,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:29+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:13+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4121,6 +4121,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:200 #, php-format @@ -4454,7 +4459,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "U is 'n lid van hierdie groep:" msgstr[1] "U is 'n lid van hierdie groepe:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5387,7 +5392,7 @@ msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5395,12 +5400,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5408,12 +5413,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "ongeveer een dag gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5421,12 +5426,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "ongeveer een maand gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5434,7 +5439,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "ongeveer een jaar gelede" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index b9b1057ed9..5ab941eab8 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Arabic (العربية) +# Translation of StatusNet - Core to Arabic (العربية) # Expored from translatewiki.net # # Author: Brion @@ -9,21 +9,21 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:30+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:19+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4686,6 +4686,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5048,7 +5053,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6176,7 +6181,7 @@ msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6188,12 +6193,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6205,12 +6210,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6222,12 +6227,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6239,7 +6244,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 2f52f23d57..c4c8f4a3bc 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Egyptian Spoken Arabic (مصرى) +# Translation of StatusNet - Core to Egyptian Spoken Arabic (مصرى) # Expored from translatewiki.net # # Author: Dudi @@ -9,21 +9,21 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:31+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:21+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4179,6 +4179,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" @@ -4515,7 +4520,7 @@ msgstr[3] "أنت عضو فى هذه المجموعات:" msgstr[4] "" msgstr[5] "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5547,7 +5552,7 @@ msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5559,12 +5564,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5576,12 +5581,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5593,12 +5598,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5610,7 +5615,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 5d45496b8f..b3e0e2950d 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Bulgarian (Български) +# Translation of StatusNet - Core to Bulgarian (Български) # Expored from translatewiki.net # # Author: DCLXVI @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:32+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:23+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4630,6 +4630,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" @@ -4940,7 +4945,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6014,7 +6019,7 @@ msgid "about a minute ago" msgstr "преди около минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6022,12 +6027,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "преди около час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6035,12 +6040,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "преди около ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6048,12 +6053,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "преди около месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6061,7 +6066,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index d1c1d2f8d3..cacb78fb44 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Breton (Brezhoneg) +# Translation of StatusNet - Core to Breton (Brezhoneg) # Expored from translatewiki.net # # Author: Fulup @@ -9,19 +9,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:34+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4856,6 +4856,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5230,7 +5235,7 @@ msgstr "Den n'eo koumanantet deoc'h." msgid "You are not a member of any groups." msgstr "N'oc'h ezel eus strollad ebet." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6189,7 +6194,7 @@ msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6197,12 +6202,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6210,12 +6215,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "1 devezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6223,12 +6228,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "miz zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6236,7 +6241,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "bloaz zo well-wazh" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 3d1bdc1836..cf1c347757 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Catalan (Català) +# Translation of StatusNet - Core to Catalan (Català) # Expored from translatewiki.net # # Author: Aleator @@ -10,19 +10,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:35+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:26+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5572,6 +5572,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6003,7 +6008,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Sou un membre d'aquest grup:" msgstr[1] "Sou un membre d'aquests grups:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7296,7 +7301,7 @@ msgid "about a minute ago" msgstr "fa un minut" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7304,12 +7309,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "fa una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7317,12 +7322,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "fa un dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7330,12 +7335,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "fa un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7343,7 +7348,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "fa un any" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 98a89e74c6..2c8d855c45 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Czech (Česky) +# Translation of StatusNet - Core to Czech (Česky) # Expored from translatewiki.net # # Author: Koo6 @@ -8,20 +8,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:38+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:28+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5502,6 +5502,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5932,7 +5937,7 @@ msgstr[0] "Jste členem této skupiny:" msgstr[1] "Jste členem těchto skupin:" msgstr[2] "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7224,7 +7229,7 @@ msgid "about a minute ago" msgstr "asi před minutou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7233,12 +7238,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "asi před hodinou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7247,12 +7252,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "asi přede dnem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7261,12 +7266,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "asi před měsícem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7275,7 +7280,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "asi před rokem" diff --git a/locale/da/LC_MESSAGES/statusnet.po b/locale/da/LC_MESSAGES/statusnet.po index 9b3c561cff..488347944e 100644 --- a/locale/da/LC_MESSAGES/statusnet.po +++ b/locale/da/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Danish (Dansk) +# Translation of StatusNet - Core to Danish (Dansk) # Expored from translatewiki.net # # Author: Brion @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:39+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:30+0000\n" "Language-Team: Danish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: da\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4276,6 +4276,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:200 #, php-format @@ -4566,7 +4571,7 @@ msgstr "" msgid "No one is subscribed to you." msgstr "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5442,7 +5447,7 @@ msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5450,12 +5455,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5463,12 +5468,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5476,12 +5481,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5489,7 +5494,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 2617519f61..5664d6cd51 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to German (Deutsch) +# Translation of StatusNet - Core to German (Deutsch) # Expored from translatewiki.net # # Author: Apmon @@ -17,19 +17,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:40+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -414,8 +414,8 @@ msgstr "Konnte keine Statusmeldungen finden." #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " -"Leerzeichen sind nicht erlaubt." +"Der Nutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. Leerzeichen " +"sind nicht erlaubt." #: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 @@ -2999,7 +2999,7 @@ msgstr "Profilinformation" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" +msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" #: actions/profilesettings.php:111 actions/register.php:455 #: actions/showgroup.php:256 actions/tagother.php:104 @@ -3372,7 +3372,7 @@ msgstr "Registrieren" #: actions/register.php:142 msgid "Registration not allowed." -msgstr "Registrierung nicht gestattet" +msgstr "Registrierung nicht erlaubt" #: actions/register.php:205 msgid "You can't register if you don't agree to the license." @@ -3398,8 +3398,7 @@ msgstr "" #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" -"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " -"Pflicht." +"1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen. Pflicht." #: actions/register.php:437 msgid "6 or more characters. Required." @@ -5257,7 +5256,7 @@ msgstr "Abmelden" #: lib/action.php:495 msgctxt "TOOLTIP" msgid "Create an account" -msgstr "Neues Konto erstellen" +msgstr "Neues Benutzerkonto erstellen" #. TRANS: Main menu option when not logged in to register a new account #: lib/action.php:498 @@ -5584,6 +5583,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6015,7 +6019,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du bist Mitglied dieser Gruppe:" msgstr[1] "Du bist Mitglied dieser Gruppen:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7309,7 +7313,7 @@ msgid "about a minute ago" msgstr "vor einer Minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7317,12 +7321,12 @@ msgstr[0] "vor ca. einer Minute" msgstr[1] "vor ca. %d Minuten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "vor einer Stunde" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7330,12 +7334,12 @@ msgstr[0] "vor ca. einer Stunde" msgstr[1] "vor ca. %d Stunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "vor einem Tag" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7343,12 +7347,12 @@ msgstr[0] "vor ca. einem Tag" msgstr[1] "vor ca. %d Tagen" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "vor einem Monat" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7356,7 +7360,7 @@ msgstr[0] "vor ca. einem Monat" msgstr[1] "vor ca. %d Monaten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index ae5cf7a15b..5543c1f24c 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Greek (Ελληνικά) +# Translation of StatusNet - Core to Greek (Ελληνικά) # Expored from translatewiki.net # # Author: Crazymadlover @@ -9,19 +9,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:41+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:34+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4312,7 +4312,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Ομάδες με τα περισσότερα μέλη" msgstr[1] "Ομάδες με τα περισσότερα μέλη" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5313,7 +5313,7 @@ msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5321,12 +5321,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5334,12 +5334,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5347,12 +5347,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5360,7 +5360,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index e04b249f18..b0b3d94541 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to British English (British English) +# Translation of StatusNet - Core to British English (British English) # Expored from translatewiki.net # # Author: Brion @@ -10,19 +10,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:44+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:38+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5289,6 +5289,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:200 #, php-format @@ -5629,7 +5634,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6798,7 +6803,7 @@ msgid "about a minute ago" msgstr "about a minute ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6806,12 +6811,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "about an hour ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6819,12 +6824,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "about a day ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6832,12 +6837,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "about a month ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6845,7 +6850,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "about a year ago" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index a301dcc2e9..49aef778db 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Esperanto (Esperanto) +# Translation of StatusNet - Core to Esperanto (Esperanto) # Expored from translatewiki.net # # Author: AVRS @@ -12,19 +12,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:43+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:36+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5305,6 +5305,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" @@ -5683,7 +5688,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Vi estas grupano de jena grupo:" msgstr[1] "Vi estas grupano de jenaj grupoj:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6723,7 +6728,7 @@ msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6731,12 +6736,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6744,12 +6749,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6757,7 +6762,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 636ee89b33..22cd7512f0 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Spanish (Español) +# Translation of StatusNet - Core to Spanish (Español) # Expored from translatewiki.net # # Author: Brion @@ -14,19 +14,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:45+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5572,6 +5572,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6003,7 +6008,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7302,7 +7307,7 @@ msgid "about a minute ago" msgstr "hace un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7310,12 +7315,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "hace una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7323,12 +7328,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "hace un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7336,12 +7341,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "hace un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7349,7 +7354,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 2a7c0dd579..48982013ce 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Persian (فارسی) +# Translation of StatusNet - Core to Persian (فارسی) # Expored from translatewiki.net # # Author: ArianHT @@ -11,21 +11,21 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:48+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:45+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Language-Code: fa\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5415,6 +5415,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5838,7 +5843,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه هستید:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7072,50 +7077,50 @@ msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "حدود یک روز پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "حدود یک ماه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "حدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index f29b082d08..b67a82c9a9 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Finnish (Suomi) +# Translation of StatusNet - Core to Finnish (Suomi) # Expored from translatewiki.net # # Author: Crt @@ -12,19 +12,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:46+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -4174,6 +4174,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -4443,7 +4448,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5435,7 +5440,7 @@ msgid "about a minute ago" msgstr "noin minuutti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5443,12 +5448,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "noin tunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5456,12 +5461,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "noin päivä sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5469,12 +5474,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "noin kuukausi sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5482,7 +5487,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 121eba4be8..ccd133acdf 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to French (Français) +# Translation of StatusNet - Core to French (Français) # Expored from translatewiki.net # # Author: Brion @@ -17,19 +17,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:49+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5611,6 +5611,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6047,7 +6052,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7352,7 +7357,7 @@ msgid "about a minute ago" msgstr "il y a 1 minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7360,12 +7365,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "il y a 1 heure" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7373,12 +7378,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "il y a 1 jour" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7386,12 +7391,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "il y a 1 mois" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7399,7 +7404,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 38e2ba1e53..b306b5ef0f 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Irish (Gaeilge) +# Translation of StatusNet - Core to Irish (Gaeilge) # Expored from translatewiki.net # # Author: McDutchie @@ -7,20 +7,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:50+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:52+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -3704,6 +3704,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -4845,7 +4850,7 @@ msgid "about a minute ago" msgstr "fai un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -4856,12 +4861,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "fai unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -4872,12 +4877,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "fai un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -4888,12 +4893,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "fai un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -4904,7 +4909,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index eb445fcf8b..e2322622e0 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Galician (Galego) +# Translation of StatusNet - Core to Galician (Galego) # Expored from translatewiki.net # # Author: Gallaecio @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:51+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1903,7 +1903,7 @@ msgstr "Administrador" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Bloquear" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1913,13 +1913,13 @@ msgstr "Converter ao usuario en administrador do grupo" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Converter en administrador" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Converter a este usuario en administrador" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -5577,6 +5577,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6008,7 +6013,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6236,7 +6241,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grupo" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6244,13 +6249,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Grupo %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membros" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6258,13 +6263,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membros do grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloqueado" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6272,7 +6277,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Usuarios bloqueados en %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6280,13 +6285,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Modificar as propiedades do grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logotipo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6294,7 +6299,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Engadir ou modificar o logotipo de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6302,7 +6307,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Engadir ou modificar o deseño de %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6811,7 +6816,7 @@ msgstr "" #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6930,20 +6935,20 @@ msgstr "Facerlle un aceno a este usuario" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Houbo un erro ao inserir o novo perfil." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Houbo un erro ao inserir o avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Houbo un erro ao inserir o perfil remoto." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Nota duplicada." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7091,7 +7096,7 @@ msgstr "Termos de busca" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Procurar" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7305,7 +7310,7 @@ msgid "about a minute ago" msgstr "hai como un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7313,12 +7318,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "hai como unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7326,12 +7331,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "hai como un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7339,12 +7344,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "hai como un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7352,7 +7357,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "hai como un ano" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 6085f6146e..ce4ca83ffc 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Hebrew (עברית) +# Translation of StatusNet - Core to Hebrew (עברית) # Expored from translatewiki.net # # -- @@ -6,19 +6,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:53+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:55+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -3725,7 +3725,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4579,7 +4579,7 @@ msgid "about a minute ago" msgstr "לפני כדקה" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -4587,12 +4587,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "לפני כשעה" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -4600,12 +4600,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "לפני כיום" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -4613,12 +4613,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "לפני כחודש" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -4626,7 +4626,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "לפני כשנה" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index db9e8891d9..05bd870d63 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Upper Sorbian (Hornjoserbsce) +# Translation of StatusNet - Core to Upper Sorbian (Hornjoserbsce) # Expored from translatewiki.net # # Author: Brion @@ -9,20 +9,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:56+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:57+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4739,6 +4739,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5154,7 +5159,7 @@ msgstr[1] "Sy čłon tuteju skupinow:" msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6221,7 +6226,7 @@ msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6231,12 +6236,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6246,12 +6251,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6261,12 +6266,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6276,7 +6281,7 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "před něhdźe jednym lětom" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index c02685c9c9..aa3e0c055a 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Interlingua (Interlingua) +# Translation of StatusNet - Core to Interlingua (Interlingua) # Expored from translatewiki.net # # Author: McDutchie @@ -7,19 +7,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:57+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:07:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5543,6 +5543,16 @@ msgstr "Nulle usator pro iste indicio." msgid "Could not authenticate you." msgstr "Non poteva authenticar te." +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "Tentava revocar un indicio non cognoscite." + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "Falleva de deler le indicio revocate." + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5974,7 +5984,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Tu es membro de iste gruppo:" msgstr[1] "Tu es membro de iste gruppos:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7273,7 +7283,7 @@ msgid "about a minute ago" msgstr "circa un minuta retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7281,12 +7291,12 @@ msgstr[0] "un minuta" msgstr[1] "%d minutas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "circa un hora retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7294,12 +7304,12 @@ msgstr[0] "un hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "circa un die retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7307,12 +7317,12 @@ msgstr[0] "un die" msgstr[1] "%d dies" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "circa un mense retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7320,7 +7330,7 @@ msgstr[0] "un mense" msgstr[1] "%d menses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 2a4cbc4ebd..d9819ca594 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Icelandic (Íslenska) +# Translation of StatusNet - Core to Icelandic (Íslenska) # Expored from translatewiki.net # # Author: McDutchie @@ -7,19 +7,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:15:59+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:00+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -4215,7 +4215,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5199,7 +5199,7 @@ msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5207,12 +5207,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5220,12 +5220,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "fyrir um einum degi síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5233,12 +5233,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5246,7 +5246,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "fyrir um einu ári síðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 3d0cdb6656..505f6abaf2 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Italian (Italiano) +# Translation of StatusNet - Core to Italian (Italiano) # Expored from translatewiki.net # # Author: HalphaZ @@ -9,19 +9,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:00+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:01+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5491,6 +5491,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5919,7 +5924,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7217,7 +7222,7 @@ msgid "about a minute ago" msgstr "circa un minuto fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7225,12 +7230,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "circa un'ora fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7238,12 +7243,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "circa un giorno fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7251,12 +7256,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "circa un mese fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7264,7 +7269,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 43311a1b0a..c9d1ed3352 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Japanese (日本語) +# Translation of StatusNet - Core to Japanese (日本語) # Expored from translatewiki.net # # Author: Brion @@ -10,19 +10,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:01+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5086,6 +5086,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5433,7 +5438,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6449,50 +6454,50 @@ msgid "about a minute ago" msgstr "約 1 分前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "約 1 ヵ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "約 1 年前" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 7d7e6b53bf..a76101d6cd 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Georgian (ქართული) +# Translation of StatusNet - Core to Georgian (ქართული) # Expored from translatewiki.net # # Author: Zaal @@ -7,19 +7,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:03+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:04+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5492,6 +5492,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5922,7 +5927,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7159,50 +7164,50 @@ msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "დაახლოებით 1 წლის წინ" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index d9ca82db61..0a7d97343d 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Korean (한국어) +# Translation of StatusNet - Core to Korean (한국어) # Expored from translatewiki.net # # Author: Brion @@ -9,19 +9,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:04+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:05+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4690,6 +4690,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form guide. #: lib/applicationeditform.php:178 msgid "Icon for this application" @@ -4990,7 +4995,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6025,50 +6030,50 @@ msgid "about a minute ago" msgstr "1분 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "1시간 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "하루 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "1달 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "1년 전" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 90659a05cd..75b672334d 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Macedonian (Македонски) +# Translation of StatusNet - Core to Macedonian (Македонски) # Expored from translatewiki.net # # Author: Bjankuloski06 @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:05+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4605,7 +4605,7 @@ msgstr "Неважечко ограничување за биографијат #: actions/useradminpanel.php:155 msgid "Invalid welcome text. Max length is 255 characters." -msgstr "НЕважечки текст за добредојде. Дозволени се највеќе 255 знаци." +msgstr "Неважечки текст за добредојде. Дозволени се највеќе 255 знаци." #: actions/useradminpanel.php:165 #, php-format @@ -5561,6 +5561,16 @@ msgstr "Нема корисник за тој жетон." msgid "Could not authenticate you." msgstr "Не можевме да ве потврдиме." +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "Се обидовте да отповикате непознат жетон." + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "Не успеав да го избришам отповиканиот жетон." + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5992,7 +6002,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7286,7 +7296,7 @@ msgid "about a minute ago" msgstr "пред една минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7294,12 +7304,12 @@ msgstr[0] "пред околу една минута" msgstr[1] "пред околу %d минути" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "пред еден час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7307,12 +7317,12 @@ msgstr[0] "пред околу еден час" msgstr[1] "пред околу %d часа" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "пред еден ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7320,12 +7330,12 @@ msgstr[0] "пред околу еден ден" msgstr[1] "пред околу %d дена" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "пред еден месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7333,7 +7343,7 @@ msgstr[0] "пред околу еден месец" msgstr[1] "пред околу %d месеци" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 1b82d47547..466cdba68e 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Translation of StatusNet - Core to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) # Expored from translatewiki.net # # Author: Laaknor @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:07+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08: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.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5208,6 +5208,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5566,7 +5571,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6660,7 +6665,7 @@ msgid "about a minute ago" msgstr "omtrent ett minutt siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6668,12 +6673,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "omtrent én time siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6681,12 +6686,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "omtrent én dag siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6694,12 +6699,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "omtrent én måned siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6707,7 +6712,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "omtrent ett år siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index e3ed459de3..ff15376dfd 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Dutch (Nederlands) +# Translation of StatusNet - Core to Dutch (Nederlands) # Expored from translatewiki.net # # Author: Brion @@ -10,19 +10,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:09+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5610,6 +5610,16 @@ msgstr "Er is geen gebruiker voor dat token." msgid "Could not authenticate you." msgstr "U kon niet geauthenticeerd worden." +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "Er is geprobeerd een onbekend token in te trekken." + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "Het was niet mogelijk een ingetrokken token te verwijderen." + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6045,7 +6055,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7353,7 +7363,7 @@ msgid "about a minute ago" msgstr "ongeveer een minuut geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7361,12 +7371,12 @@ msgstr[0] "ongeveer een minuut geleden" msgstr[1] "ongeveer %d minuten geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "ongeveer een uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7374,12 +7384,12 @@ msgstr[0] "ongeveer een uur geleden" msgstr[1] "ongeveer %d uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "ongeveer een dag geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7387,12 +7397,12 @@ msgstr[0] "ongeveer een dag geleden" msgstr[1] "ongeveer %d dagen geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "ongeveer een maand geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7400,7 +7410,7 @@ msgstr[0] "ongeveer een maand geleden" msgstr[1] "ongeveer %d maanden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index e8c54c3837..2091d1431e 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Norwegian Nynorsk (‪Norsk (nynorsk)‬) +# Translation of StatusNet - Core to Norwegian Nynorsk (‪Norsk (nynorsk)‬) # Expored from translatewiki.net # # Author: Nghtwlkr @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:08+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:11+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -3861,6 +3861,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -4163,7 +4168,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5135,7 +5140,7 @@ msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5143,12 +5148,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "omtrent ein time sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5156,12 +5161,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "omtrent ein dag sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5169,12 +5174,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "omtrent ein månad sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5182,7 +5187,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "omtrent eitt år sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 3152d3f8e9..879e8e0622 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Polish (Polski) +# Translation of StatusNet - Core to Polish (Polski) # Expored from translatewiki.net # # Author: McDutchie @@ -9,10 +9,10 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:10+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:14+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" -"X-Message-Group: #out-statusnet\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-Message-Group: #out-statusnet-core\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5540,6 +5540,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5972,7 +5977,7 @@ msgstr[0] "Jesteś członkiem tej grupy:" msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7270,7 +7275,7 @@ msgid "about a minute ago" msgstr "około minutę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7279,12 +7284,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "około godzinę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7293,12 +7298,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "blisko dzień temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7307,12 +7312,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "około miesiąc temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7321,7 +7326,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "około rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 46794835b6..37a54142d3 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Portuguese (Português) +# Translation of StatusNet - Core to Portuguese (Português) # Expored from translatewiki.net # # Author: Gallaecio @@ -11,19 +11,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:12+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:16+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5543,6 +5543,16 @@ msgstr "Nenhum utilizador para esse código." msgid "Could not authenticate you." msgstr "Não foi possível autenticá-lo." +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "Tentou revogar um código desconhecido." + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "Falha ao eliminar código revogado." + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5970,7 +5980,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7266,7 +7276,7 @@ msgid "about a minute ago" msgstr "há cerca de um minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7274,12 +7284,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "há cerca de uma hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7287,12 +7297,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "há cerca de um dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7300,12 +7310,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "há cerca de um mês" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7313,7 +7323,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 3580e6c994..4a286a4bc5 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Brazilian Portuguese (Português do Brasil) +# Translation of StatusNet - Core to Brazilian Portuguese (Português do Brasil) # Expored from translatewiki.net # # Author: Aracnus @@ -13,20 +13,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:14+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:17+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5574,6 +5574,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -6007,7 +6012,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7305,7 +7310,7 @@ msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7313,12 +7318,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7326,12 +7331,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "cerca de 1 dia atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7339,12 +7344,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "cerca de 1 mês atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7352,7 +7357,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index fafeddfc66..67326b72fb 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Russian (Русский) +# Translation of StatusNet - Core to Russian (Русский) # Expored from translatewiki.net # # Author: Brion @@ -12,20 +12,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:15+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5558,6 +5558,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5992,7 +5997,7 @@ msgstr[0] "Вы являетесь участником следующих гр msgstr[1] "Вы являетесь участником следующих групп:" msgstr[2] "Вы являетесь участником следующих групп:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7284,7 +7289,7 @@ msgid "about a minute ago" msgstr "около минуты назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7293,12 +7298,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "около часа назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7307,12 +7312,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "около дня назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7321,12 +7326,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "около месяца назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7335,7 +7340,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index ba7c02a7bb..c4dfe75f9b 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5676,7 +5676,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6814,7 +6814,7 @@ msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6822,12 +6822,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6835,12 +6835,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6848,12 +6848,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6861,7 +6861,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 3996187f2b..fddbf065c2 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Swedish (Svenska) +# Translation of StatusNet - Core to Swedish (Svenska) # Expored from translatewiki.net # # Author: Jamminjohn @@ -9,19 +9,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:16+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:24+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5527,6 +5527,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5956,7 +5961,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7245,7 +7250,7 @@ msgid "about a minute ago" msgstr "för nån minut sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7253,12 +7258,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "för en timma sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7266,12 +7271,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "för en dag sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7279,12 +7284,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "för en månad sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7292,7 +7297,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "för ett år sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f1b479ea34..f35ee97fa7 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Telugu (తెలుగు) +# Translation of StatusNet - Core to Telugu (తెలుగు) # Expored from translatewiki.net # # Author: Brion @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:18+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:25+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4671,6 +4671,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5011,7 +5016,7 @@ msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -6160,7 +6165,7 @@ msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6168,12 +6173,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6181,12 +6186,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6194,12 +6199,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "ఓ నెల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6207,7 +6212,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 94f9bb2649..1664f062d0 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Turkish (Türkçe) +# Translation of StatusNet - Core to Turkish (Türkçe) # Expored from translatewiki.net # # Author: Joseph @@ -8,19 +8,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:19+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:27+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -3774,7 +3774,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4658,50 +4658,50 @@ msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "yaklaşık bir gün önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "yaklaşık bir ay önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index f19f46649a..180a64e64f 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Ukrainian (Українська) +# Translation of StatusNet - Core to Ukrainian (Українська) # Expored from translatewiki.net # # Author: AS @@ -10,20 +10,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:21+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" -"X-Message-Group: #out-statusnet\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: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5537,6 +5537,16 @@ msgstr "Немає користувача для цього токену." msgid "Could not authenticate you." msgstr "Не вдалося автентифікувати Вас." +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "Спроба скасувати невідомий токен." + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "Не вдалося видалити скасований токен." + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5970,7 +5980,7 @@ msgstr[0] "Ви є учасником групи:" msgstr[1] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7264,7 +7274,7 @@ msgid "about a minute ago" msgstr "хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7273,12 +7283,12 @@ msgstr[1] "%d хвилин тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7287,12 +7297,12 @@ msgstr[1] "%d годин тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7301,12 +7311,12 @@ msgstr[1] "%d днів тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7315,7 +7325,7 @@ msgstr[1] "%d місяців тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 463bad317c..2c99c22900 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Vietnamese (Tiếng Việt) +# Translation of StatusNet - Core to Vietnamese (Tiếng Việt) # Expored from translatewiki.net # # Author: Minh Nguyen @@ -7,19 +7,19 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:22+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:30+0000\n" "Language-Team: Vietnamese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3539,6 +3539,11 @@ msgstr "" msgid "Tried to revoke unknown token." msgstr "" +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -3827,7 +3832,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bạn chưa cập nhật thông tin riêng" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -4663,50 +4668,50 @@ msgid "about a minute ago" msgstr "1 phút trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "1 giờ trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "1 ngày trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "1 tháng trước" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "1 năm trước" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 39500e6c1d..e2257f3319 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Simplified Chinese (‪中文(简体)‬) +# Translation of StatusNet - Core to Simplified Chinese (‪中文(简体)‬) # Expored from translatewiki.net # # Author: Chenxiaoqino @@ -11,20 +11,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:23+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5388,6 +5388,16 @@ msgstr "没有用户使用这个 token。" msgid "Could not authenticate you." msgstr "无法验证你。" +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" @@ -5810,7 +5820,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "你是该小组成员:" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -7087,50 +7097,50 @@ msgid "about a minute ago" msgstr "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "约1小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "约一小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "约1年前" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index cae1e01062..d9fcb3ff45 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -1,4 +1,4 @@ -# Translation of StatusNet to Traditional Chinese (‪中文(繁體)‬) +# Translation of StatusNet - Core to Traditional Chinese (‪中文(繁體)‬) # Expored from translatewiki.net # # -- @@ -6,20 +6,20 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-16 23:15+0000\n" -"PO-Revision-Date: 2010-09-16 23:16:24+0000\n" +"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"PO-Revision-Date: 2010-09-18 22:08:32+0000\n" "Language-Team: Traditional Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73168); Translate extension (2010-08-20)\n" +"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" -"X-Message-Group: #out-statusnet\n" +"X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-49-48 10::+0000\n" +"X-POT-Import-Date: 1284-74-75 38::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -4145,7 +4145,7 @@ msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "無法連結到伺服器:%s" -#. TRANS: Help text for commands. +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" "Commands:\n" @@ -5065,50 +5065,50 @@ msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1109 +#: lib/util.php:1110 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1112 +#: lib/util.php:1113 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1115 +#: lib/util.php:1117 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1118 +#: lib/util.php:1120 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1121 +#: lib/util.php:1124 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1127 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1131 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1130 +#: lib/util.php:1134 msgid "about a year ago" msgstr "" From 5a6f6162061985c9d0e67b7d25b94b5a53205ace Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 15:17:36 +0200 Subject: [PATCH 096/310] * i18n/L10n update * translator comments added * remove superfluous whitespace --- plugins/OStatus/OStatusPlugin.php | 37 ++++---- plugins/OStatus/actions/groupsalmon.php | 30 ++++--- plugins/OStatus/actions/hostmeta.php | 1 - plugins/OStatus/actions/ostatusgroup.php | 8 +- plugins/OStatus/actions/ostatusinit.php | 22 ++++- plugins/OStatus/actions/ostatussub.php | 42 ++++++---- plugins/OStatus/actions/ownerxrd.php | 2 +- plugins/OStatus/actions/pushcallback.php | 26 +++--- plugins/OStatus/actions/pushhub.php | 37 ++++---- plugins/OStatus/actions/usersalmon.php | 48 ++++++----- plugins/OStatus/actions/userxrd.php | 8 +- plugins/OStatus/classes/FeedSub.php | 9 +- plugins/OStatus/classes/HubSub.php | 13 ++- plugins/OStatus/classes/Magicsig.php | 4 - plugins/OStatus/classes/Ostatus_profile.php | 93 +++++++++++---------- plugins/OStatus/classes/Ostatus_source.php | 4 - plugins/OStatus/lib/discovery.php | 4 +- plugins/OStatus/lib/discoveryhints.php | 1 - plugins/OStatus/lib/linkheader.php | 3 + plugins/OStatus/lib/magicenvelope.php | 6 +- plugins/OStatus/lib/ostatusqueuehandler.php | 1 - plugins/OStatus/lib/pushinqueuehandler.php | 1 - plugins/OStatus/lib/salmon.php | 5 +- plugins/OStatus/lib/salmonaction.php | 17 +++- plugins/OStatus/lib/xrd.php | 7 +- plugins/OStatus/lib/xrdaction.php | 1 - 26 files changed, 236 insertions(+), 194 deletions(-) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 77bc9872b4..2dddfcbe2b 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -223,6 +223,7 @@ class OStatusPlugin extends Plugin array('nickname' => $profile->nickname)); $output->element('a', array('href' => $url, 'class' => 'entity_remote_subscribe'), + // TRANS: Link description for link to subscribe to a remote user. _m('Subscribe')); $output->elementEnd('li'); @@ -241,6 +242,7 @@ class OStatusPlugin extends Plugin array('group' => $group->nickname)); $output->element('a', array('href' => $url, 'class' => 'entity_remote_subscribe'), + // TRANS: Link description for link to join a remote group. _m('Join')); } @@ -453,6 +455,7 @@ class OStatusPlugin extends Plugin } $url = $notice->url; + // TRANSLATE: %s is a domain. $title = sprintf(_m("Sent from %s via OStatus"), $domain); return false; } @@ -524,6 +527,7 @@ class OStatusPlugin extends Plugin } if (!$oprofile->subscribe()) { + // TRANS: Exception. throw new Exception(_m('Could not set up remote subscription.')); } } @@ -563,10 +567,10 @@ class OStatusPlugin extends Plugin common_date_iso8601(time())); $act->time = time(); - $act->title = _("Follow"); + $act->title = _m("Follow"); // TRANS: Success message for subscribe to user attempt through OStatus. // TRANS: %1$s is the subscriber name, %2$s is the subscribed user's name. - $act->content = sprintf(_("%1$s is now following %2$s."), + $act->content = sprintf(_m('%1$s is now following %2$s.'), $subscriber->getBestName(), $other->getBestName()); @@ -613,10 +617,10 @@ class OStatusPlugin extends Plugin common_date_iso8601(time())); $act->time = time(); - $act->title = _("Unfollow"); + $act->title = _m('Unfollow'); // 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. - $act->content = sprintf(_("%1$s stopped following %2$s."), + $act->content = sprintf(_m('%1$s stopped following %2$s.'), $profile->getBestName(), $other->getBestName()); @@ -671,6 +675,7 @@ class OStatusPlugin extends Plugin return true; } else { $oprofile->garbageCollect(); + // TRANS: Exception. throw new Exception(_m("Failed joining remote group.")); } } @@ -729,7 +734,6 @@ class OStatusPlugin extends Plugin * @param Notice $notice being favored * @return hook return value */ - function onEndFavorNotice(Profile $profile, Notice $notice) { $user = User::staticGet('id', $profile->id); @@ -753,10 +757,10 @@ class OStatusPlugin extends Plugin common_date_iso8601(time())); $act->time = time(); - $act->title = _("Favor"); + $act->title = _m('Favor'); // TRANS: Success message for adding a favorite notice through OStatus. // TRANS: %1$s is the favoring user's name, %2$s is URI to the favored notice. - $act->content = sprintf(_("%1$s marked notice %2$s as a favorite."), + $act->content = sprintf(_m('%1$s marked notice %2$s as a favorite.'), $profile->getBestName(), $notice->uri); @@ -799,10 +803,10 @@ class OStatusPlugin extends Plugin $notice->id, common_date_iso8601(time())); $act->time = time(); - $act->title = _("Disfavor"); + $act->title = _m('Disfavor'); // 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. - $act->content = sprintf(_("%1$s marked notice %2$s as no longer a favorite."), + $act->content = sprintf(_m('%1$s marked notice %2$s as no longer a favorite.'), $profile->getBestName(), $notice->uri); @@ -876,8 +880,9 @@ class OStatusPlugin extends Plugin $action->elementStart('p', array('id' => 'entity_remote_subscribe', 'class' => 'entity_subscribe')); $action->element('a', array('href' => common_local_url($target), - 'class' => 'entity_remote_subscribe') - , _m('Remote')); // @todo: i18n: Add translator hint for this text. + 'class' => 'entity_remote_subscribe'), + // TRANS: Link text for link to remote subscribe. + _m('Remote')); $action->elementEnd('p'); $action->elementEnd('div'); } @@ -916,6 +921,7 @@ class OStatusPlugin extends Plugin $profile->id, common_date_iso8601(time())); $act->time = time(); + // TRANS: Title for activity. $act->title = _m("Profile update"); // TRANS: Ping text for remote profile update through OStatus. // TRANS: %s is user that updated their profile. @@ -948,7 +954,8 @@ class OStatusPlugin extends Plugin array('nickname' => $profileUser->nickname)); $output->element('a', array('href' => $url, 'class' => 'entity_remote_subscribe'), - _m('Subscribe')); // @todo: i18n: Add context. + // TRANS: Link text for a user to subscribe to an OStatus user. + _m('Subscribe')); $output->elementEnd('li'); } } @@ -962,9 +969,9 @@ class OStatusPlugin extends Plugin 'version' => STATUSNET_VERSION, 'author' => 'Evan Prodromou, James Walker, Brion Vibber, Zach Copley', 'homepage' => 'http://status.net/wiki/Plugin:OStatus', - 'rawdescription' => - _m('Follow people across social networks that implement '. - 'OStatus.')); // @todo i18n: Add translator hint. + // TRANS: Plugin description. + 'rawdescription' => _m('Follow people across social networks that implement '. + 'OStatus.')); return true; } diff --git a/plugins/OStatus/actions/groupsalmon.php b/plugins/OStatus/actions/groupsalmon.php index 5094dccf0f..3a3d63fe20 100644 --- a/plugins/OStatus/actions/groupsalmon.php +++ b/plugins/OStatus/actions/groupsalmon.php @@ -17,15 +17,14 @@ * along with this program. If not, see . */ -/** - * @package OStatusPlugin - * @author James Walker - */ - if (!defined('STATUSNET')) { exit(1); } +/** + * @package OStatusPlugin + * @author James Walker + */ class GroupsalmonAction extends SalmonAction { var $group = null; @@ -37,17 +36,20 @@ class GroupsalmonAction extends SalmonAction $id = $this->trimmed('id'); if (!$id) { - $this->clientError(_('No ID.')); + // TRANS: Client error. + $this->clientError(_m('No ID.')); } $this->group = User_group::staticGet('id', $id); if (empty($this->group)) { - $this->clientError(_('No such group.')); + // TRANS: Client error. + $this->clientError(_m('No such group.')); } $oprofile = Ostatus_profile::staticGet('group_id', $id); if ($oprofile) { + // TRANS: Client error. $this->clientError(_m("Can't accept remote posts for a remote group.")); } @@ -57,7 +59,6 @@ class GroupsalmonAction extends SalmonAction /** * We've gotten a post event on the Salmon backchannel, probably a reply. */ - function handlePost() { // @fixme process all objects? @@ -69,18 +70,20 @@ class GroupsalmonAction extends SalmonAction case ActivityObject::COMMENT: break; default: + // TRANS: Client exception. throw new ClientException("Can't handle that kind of post."); } // Notice must be to the attention of this group - $context = $this->activity->context; if (empty($context->attention)) { + // TRANS: Client exception. throw new ClientException("Not to the attention of anyone."); } else { $uri = common_local_url('groupbyid', array('id' => $this->group->id)); if (!in_array($uri, $context->attention)) { + // TRANS: Client exception. throw new ClientException("Not to the attention of this group."); } } @@ -116,14 +119,15 @@ class GroupsalmonAction extends SalmonAction * currently we're doing the main logic in joingroup action * and so have to repeat it here. */ - function handleJoin() { $oprofile = $this->ensureProfile(); if (!$oprofile) { + // TRANS: Client error. $this->clientError(_m("Can't read profile to set up group membership.")); } if ($oprofile->isGroup()) { + // TRANS: Client error. $this->clientError(_m("Groups can't join groups.")); } @@ -137,7 +141,7 @@ class GroupsalmonAction extends SalmonAction } if (Group_block::isBlocked($this->group, $profile)) { - $this->clientError(_('You have been blocked from that group by the admin.'), 403); + $this->clientError(_m('You have been blocked from that group by the admin.'), 403); return false; } @@ -151,6 +155,7 @@ class GroupsalmonAction extends SalmonAction //Event::handle('EndJoinGroup', array($this->group, $profile)); //} } catch (Exception $e) { + // TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. $this->serverError(sprintf(_m('Could not join remote user %1$s to group %2$s.'), $oprofile->uri, $this->group->nickname)); } @@ -159,7 +164,6 @@ class GroupsalmonAction extends SalmonAction /** * A remote user left our group. */ - function handleLeave() { $oprofile = $this->ensureProfile(); @@ -180,10 +184,10 @@ class GroupsalmonAction extends SalmonAction //Event::handle('EndLeaveGroup', array($this->group, $profile)); //} } catch (Exception $e) { + // TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. $this->serverError(sprintf(_m('Could not remove remote user %1$s from group %2$s.'), $oprofile->uri, $this->group->nickname)); return; } } - } diff --git a/plugins/OStatus/actions/hostmeta.php b/plugins/OStatus/actions/hostmeta.php index 8ca07f9165..db4c913e16 100644 --- a/plugins/OStatus/actions/hostmeta.php +++ b/plugins/OStatus/actions/hostmeta.php @@ -26,7 +26,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class HostMetaAction extends Action { - function handle() { parent::handle(); diff --git a/plugins/OStatus/actions/ostatusgroup.php b/plugins/OStatus/actions/ostatusgroup.php index 1861e866f2..7db00ffbef 100644 --- a/plugins/OStatus/actions/ostatusgroup.php +++ b/plugins/OStatus/actions/ostatusgroup.php @@ -72,13 +72,16 @@ class OStatusGroupAction extends OStatusSubAction $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('profile', + // TRANS: Field label. _m('Join group'), $this->profile_uri, + // TRANS: Tooltip for field label "Join group". _m("OStatus group's address, like http://example.net/group/nickname.")); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('validate', _m('Continue')); + // TRANS: Button text. + $this->submit('validate', _m('BUTTON','Continue')); $this->elementEnd('fieldset'); @@ -156,7 +159,6 @@ class OStatusGroupAction extends OStatusSubAction * * @return string Title of the page */ - function title() { // TRANS: Page title for OStatus remote group join form @@ -168,9 +170,9 @@ class OStatusGroupAction extends OStatusSubAction * * @return instructions for use */ - function getInstructions() { + // TRANS: Instructions. return _m('You can subscribe to groups from other supported sites. Paste the group\'s profile URI below:'); } diff --git a/plugins/OStatus/actions/ostatusinit.php b/plugins/OStatus/actions/ostatusinit.php index 0c991aba98..f576823e31 100644 --- a/plugins/OStatus/actions/ostatusinit.php +++ b/plugins/OStatus/actions/ostatusinit.php @@ -27,7 +27,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class OStatusInitAction extends Action { - var $nickname; var $group; var $profile; @@ -38,6 +37,7 @@ class OStatusInitAction extends Action parent::prepare($args); if (common_logged_in()) { + // TRANS: Client error. $this->clientError(_m('You can use the local subscription!')); return false; } @@ -78,6 +78,7 @@ class OStatusInitAction extends Action $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); + // TRANS: Form title. $this->element('title', null, _m('Subscribe to user')); $this->elementEnd('head'); $this->elementStart('body'); @@ -92,11 +93,15 @@ class OStatusInitAction extends Action function showContent() { if ($this->group) { + // TRANS: Form legend. $header = sprintf(_m('Join group %s'), $this->group); - $submit = _m('Join'); + // TRANS: Button text. + $submit = _m('BUTTON','Join'); } else { + // TRANS: Form legend. $header = sprintf(_m('Subscribe to %s'), $this->nickname); - $submit = _m('Subscribe'); + // TRANS: Button text. + $submit = _m('BUTTON','Subscribe'); } $this->elementStart('form', array('id' => 'form_ostatus_connect', 'method' => 'post', @@ -108,12 +113,15 @@ class OStatusInitAction extends Action $this->elementStart('ul', 'form_data'); $this->elementStart('li', array('id' => 'ostatus_nickname')); + // TRANS: Field label. $this->input('nickname', _m('User nickname'), $this->nickname, _m('Nickname of the user you want to follow.')); $this->hidden('group', $this->group); // pass-through for magic links $this->elementEnd('li'); $this->elementStart('li', array('id' => 'ostatus_profile')); + // TRANS: Field label. $this->input('profile', _m('Profile Account'), $this->profile, + // TRANS: Tooltip for field label "Profile Account". _m('Your account id (e.g. user@identi.ca).')); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -135,6 +143,7 @@ class OStatusInitAction extends Action } elseif (strpos($this->profile, '@') !== false) { $this->connectWebfinger($this->profile); } else { + // TRANS: Client error. $this->clientError(_m("Must provide a remote profile.")); } } @@ -146,6 +155,7 @@ class OStatusInitAction extends Action $disco = new Discovery; $result = $disco->lookup($acct); if (!$result) { + // TRANS: Client error. $this->clientError(_m("Couldn't look up OStatus account profile.")); } @@ -158,6 +168,7 @@ class OStatusInitAction extends Action } } + // TRANS: Client error. $this->clientError(_m("Couldn't confirm remote profile address.")); } @@ -183,6 +194,7 @@ class OStatusInitAction extends Action if ($user) { return common_local_url('userbyid', array('id' => $user->id)); } else { + // TRANS: Client error. $this->clientError("No such user."); } } else if ($this->group) { @@ -190,16 +202,18 @@ class OStatusInitAction extends Action if ($group) { return common_local_url('groupbyid', array('id' => $group->group_id)); } else { + // TRANS: Client error. $this->clientError("No such group."); } } else { + // TRANS: Client error. $this->clientError("No local user or group nickname provided."); } } function title() { + // TRANS: Page title. return _m('OStatus Connect'); } - } diff --git a/plugins/OStatus/actions/ostatussub.php b/plugins/OStatus/actions/ostatussub.php index 4cbd7d0348..493b519657 100644 --- a/plugins/OStatus/actions/ostatussub.php +++ b/plugins/OStatus/actions/ostatussub.php @@ -62,13 +62,15 @@ class OStatusSubAction extends Action $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('profile', + // TRANS: Field label for a field that takes an OStatus user address. _m('Subscribe to'), $this->profile_uri, - _m("OStatus user's address, like nickname@example.com or http://example.net/nickname")); // @todo i18n FIXME: needs context/translator hint. + // TRANS: Tooltip for field label "Subscribe to". + _m('OStatus user\'s address, like nickname@example.com or http://example.net/nickname')); $this->elementEnd('li'); $this->elementEnd('ul'); - - $this->submit('validate', _m('Continue')); // @todo i18n FIXME: needs context/translator hint. + // TRANS: Button text. + $this->submit('validate', _m('BUTTON','Continue')); $this->elementEnd('fieldset'); @@ -103,10 +105,14 @@ class OStatusSubAction extends Action $this->hidden('profile', $this->profile_uri); if ($this->oprofile->isGroup()) { $this->submit('submit', _m('Join'), 'submit', null, - _m('Join this group')); // @todo i18n FIXME: needs context/translator hint. + // TRANS: Button text. + // TRANS: Tooltip for button "Join". + _m('BUTTON','Join this group')); } else { - $this->submit('submit', _m('Confirm'), 'submit', null, - _m('Subscribe to this user')); // @todo i18n FIXME: needs context/translator hint. + // TRANS: Button text. + $this->submit('submit', _m('BUTTON','Confirm'), 'submit', null, + // TRANS: Tooltip for button "Confirm". + _m('Subscribe to this user')); } $this->elementEnd('fieldset'); $this->elementEnd('form'); @@ -156,7 +162,7 @@ class OStatusSubAction extends Action $this->elementStart('div', 'entity_profile vcard'); $this->elementStart('dl', 'entity_depiction'); - $this->element('dt', null, _('Photo')); + $this->element('dt', null, _m('Photo')); $this->elementStart('dd'); $this->element('img', array('src' => $avatar, 'class' => 'photo avatar', @@ -167,7 +173,7 @@ class OStatusSubAction extends Action $this->elementEnd('dl'); $this->elementStart('dl', 'entity_nickname'); - $this->element('dt', null, _('Nickname')); + $this->element('dt', null, _m('Nickname')); $this->elementStart('dd'); $hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname'; $this->elementStart('a', array('href' => $profile, @@ -188,7 +194,7 @@ class OStatusSubAction extends Action } if (!is_null($location)) { $this->elementStart('dl', 'entity_location'); - $this->element('dt', null, _('Location')); + $this->element('dt', null, _m('Location')); $this->elementStart('dd', 'label'); $this->raw($location); $this->elementEnd('dd'); @@ -197,7 +203,7 @@ class OStatusSubAction extends Action if (!is_null($homepage)) { $this->elementStart('dl', 'entity_url'); - $this->element('dt', null, _('URL')); + $this->element('dt', null, _m('URL')); $this->elementStart('dd'); $this->elementStart('a', array('href' => $homepage, 'class' => 'url')); @@ -209,7 +215,7 @@ class OStatusSubAction extends Action if (!is_null($note)) { $this->elementStart('dl', 'entity_note'); - $this->element('dt', null, _('Note')); + $this->element('dt', null, _m('Note')); $this->elementStart('dd', 'note'); $this->raw($note); $this->elementEnd('dd'); @@ -244,31 +250,39 @@ class OStatusSubAction extends Action } else if (Validate::uri($this->profile_uri)) { $this->oprofile = Ostatus_profile::ensureProfileURL($this->profile_uri); } else { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that address. Please make sure that the OStatus address is like nickname@example.com or http://example.net/nickname."); common_debug('Invalid address format.', __FILE__); return false; } return true; } catch (FeedSubBadURLException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that address. Please make sure that the OStatus address is like nickname@example.com or http://example.net/nickname."); common_debug('Invalid URL or could not reach server.', __FILE__); } catch (FeedSubBadResponseException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that feed. Please try that OStatus address again later."); common_debug('Cannot read feed; server returned error.', __FILE__); } catch (FeedSubEmptyException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that feed. Please try that OStatus address again later."); common_debug('Cannot read feed; server returned an empty page.', __FILE__); } catch (FeedSubBadHTMLException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that feed. Please try that OStatus address again later."); common_debug('Bad HTML, could not find feed link.', __FILE__); } catch (FeedSubNoFeedException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that feed. Please try that OStatus address again later."); common_debug('Could not find a feed linked from this URL.', __FILE__); } catch (FeedSubUnrecognizedTypeException $e) { + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that feed. Please try that OStatus address again later."); common_debug('Not a recognized feed type.', __FILE__); } catch (Exception $e) { // Any new ones we forgot about + // TRANS: Error text. $this->error = _m("Sorry, we could not reach that address. Please make sure that the OStatus address is like nickname@example.com or http://example.net/nickname."); common_debug(sprintf('Bad feed URL: %s %s', get_class($e), $e->getMessage()), __FILE__); } @@ -350,7 +364,7 @@ class OStatusSubAction extends Action // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->showForm(_('There was a problem with your session token. '. + $this->showForm(_m('There was a problem with your session token. '. 'Try again, please.')); return; } @@ -377,6 +391,7 @@ class OStatusSubAction extends Action $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); + // TRANS: Form title. $this->element('title', null, _m('Subscribe to user')); $this->elementEnd('head'); $this->elementStart('body'); @@ -408,6 +423,7 @@ class OStatusSubAction extends Action function getInstructions() { + // TRANS: Instructions. return _m('You can subscribe to users from other supported sites. Paste their address or profile URI below:'); } @@ -426,7 +442,6 @@ class OStatusSubAction extends Action * * @return void */ - function showContent() { if ($this->oprofile) { @@ -459,5 +474,4 @@ class OStatusSubAction extends Action function showNoticeForm() { // nop } - } diff --git a/plugins/OStatus/actions/ownerxrd.php b/plugins/OStatus/actions/ownerxrd.php index 3fcb982b87..9e84f72ecb 100644 --- a/plugins/OStatus/actions/ownerxrd.php +++ b/plugins/OStatus/actions/ownerxrd.php @@ -34,7 +34,7 @@ class OwnerxrdAction extends XrdAction $this->user = User::siteOwner(); if (!$this->user) { - $this->clientError(_('No such user.'), 404); + $this->clientError(_m('No such user.'), 404); return false; } diff --git a/plugins/OStatus/actions/pushcallback.php b/plugins/OStatus/actions/pushcallback.php index 6c69787455..701a39c163 100644 --- a/plugins/OStatus/actions/pushcallback.php +++ b/plugins/OStatus/actions/pushcallback.php @@ -24,7 +24,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - class PushCallbackAction extends Action { function handle() @@ -46,13 +45,13 @@ class PushCallbackAction extends Action $feedid = $this->arg('feed'); common_log(LOG_INFO, "POST for feed id $feedid"); if (!$feedid) { - throw new ServerException('Empty or invalid feed id.', 400); + throw new ServerException(_m('Empty or invalid feed id.'), 400); } $feedsub = FeedSub::staticGet('id', $feedid); if (!$feedsub) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ServerException('Unknown PuSH feed id ' . $feedid, 400); + // TRANS: Server exception. %s is a feed ID. + throw new ServerException(sprintf(_m('Unknown PuSH feed id %s'),$feedid), 400); } $hmac = ''; @@ -84,30 +83,31 @@ class PushCallbackAction extends Action $verify_token = $this->arg('hub_verify_token'); if ($mode != 'subscribe' && $mode != 'unsubscribe') { - throw new ClientException("Bad hub.mode $mode", 404); + // TRANS: Client exception. %s is an invalid value for hub.mode. + throw new ClientException(sprintf(_m('Bad hub.mode "$s".',$mode)), 404); } $feedsub = FeedSub::staticGet('uri', $topic); if (!$feedsub) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Bad hub.topic feed $topic.", 404); + // TRANS: Client exception. %s is an invalid feed name. + throw new ClientException(sprintf(_m('Bad hub.topic feed "%s".'),$topic), 404); } if ($feedsub->verify_token !== $verify_token) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Bad hub.verify_token $token for $topic.", 404); + // TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. + throw new ClientException(sprintf(_m('Bad hub.verify_token %1$s for %2$s.'),$token,$topic), 404); } if ($mode == 'subscribe') { // We may get re-sub requests legitimately. if ($feedsub->sub_state != 'subscribe' && $feedsub->sub_state != 'active') { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Unexpected subscribe request for $topic.", 404); + // TRANS: Client exception. %s is an invalid topic. + throw new ClientException(sprintf(_m('Unexpected subscribe request for %s.'),$topic), 404); } } else { if ($feedsub->sub_state != 'unsubscribe') { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Unexpected unsubscribe request for $topic.", 404); + // TRANS: Client exception. %s is an invalid topic. + throw new ClientException(sprintf(_m('Unexpected unsubscribe request for %s.'),$topic), 404); } } diff --git a/plugins/OStatus/actions/pushhub.php b/plugins/OStatus/actions/pushhub.php index 6909b85391..68035ab5cc 100644 --- a/plugins/OStatus/actions/pushhub.php +++ b/plugins/OStatus/actions/pushhub.php @@ -62,11 +62,11 @@ class PushHubAction extends Action $this->subunsub($mode); break; case "publish": - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Publishing outside feeds not supported.", 400); + // TRANS: Client exception. + throw new ClientException(_m('Publishing outside feeds not supported.'), 400); default: - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Unrecognized mode '$mode'.", 400); + // TRANS: Client exception. %s is a mode. + throw new ClientException(sprintf(_m('Unrecognized mode "%s".'),$mode), 400); } } @@ -85,28 +85,28 @@ class PushHubAction extends Action $topic = $this->argUrl('hub.topic'); if (!$this->recognizedFeed($topic)) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Unsupported hub.topic $topic; this hub only serves local user and group Atom feeds."); + // TRANS: Client exception. %s is a topic. + throw new ClientException(sprintf(_m('Unsupported hub.topic %s this hub only serves local user and group Atom feeds.'),$topic)); } $verify = $this->arg('hub.verify'); // @fixme may be multiple if ($verify != 'sync' && $verify != 'async') { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid hub.verify $verify; must be sync or async."); + // TRANS: Client exception. + throw new ClientException(sprintf(_m('Invalid hub.verify "%s". It must be sync or async.'),$verify)); } $lease = $this->arg('hub.lease_seconds', null); if ($mode == 'subscribe' && $lease != '' && !preg_match('/^\d+$/', $lease)) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid hub.lease $lease; must be empty or positive integer."); + // TRANS: Client exception. + throw new ClientException(sprintf(_m('Invalid hub.lease "%s". It must be empty or positive integer.'),$lease)); } $token = $this->arg('hub.verify_token', null); $secret = $this->arg('hub.secret', null); if ($secret != '' && strlen($secret) >= 200) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid hub.secret $secret; must be under 200 bytes."); + // TRANS: Client exception. + throw new ClientException(sprintf(_m('Invalid hub.secret "%s". It must be under 200 bytes.'),$secret)); } $sub = HubSub::staticGet($topic, $callback); @@ -157,8 +157,8 @@ class PushHubAction extends Action if ($feed == $userFeed) { $user = User::staticGet('id', $id); if (!$user) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid hub.topic $feed; user doesn't exist."); + // TRANS: Client exception. + throw new ClientException(sprintt(_m('Invalid hub.topic "%s". User doesn\'t exist.'),$feed)); } else { return true; } @@ -166,8 +166,8 @@ class PushHubAction extends Action if ($feed == $groupFeed) { $user = User_group::staticGet('id', $id); if (!$user) { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid hub.topic $feed; group doesn't exist."); + // TRANS: Client exception. + throw new ClientException(sprintf(_m('Invalid hub.topic "%s". Group doesn\'t exist.'),$feed)); } else { return true; } @@ -190,8 +190,9 @@ class PushHubAction extends Action if (Validate::uri($url, $params)) { return $url; } else { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new ClientException("Invalid URL passed for $arg: '$url'"); + // TRANS: Client exception. + // TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. + throw new ClientException(sprintf(_m('Invalid URL passed for %1$s: "%2$s"'),$arg,$url)); } } diff --git a/plugins/OStatus/actions/usersalmon.php b/plugins/OStatus/actions/usersalmon.php index 06a72bf024..e78c653300 100644 --- a/plugins/OStatus/actions/usersalmon.php +++ b/plugins/OStatus/actions/usersalmon.php @@ -17,15 +17,14 @@ * along with this program. If not, see . */ -/** - * @package OStatusPlugin - * @author James Walker - */ - if (!defined('STATUSNET')) { exit(1); } +/** + * @package OStatusPlugin + * @author James Walker + */ class UsersalmonAction extends SalmonAction { function prepare($args) @@ -35,13 +34,13 @@ class UsersalmonAction extends SalmonAction $id = $this->trimmed('id'); if (!$id) { - $this->clientError(_('No ID.')); + $this->clientError(_m('No ID.')); } $this->user = User::staticGet('id', $id); if (empty($this->user)) { - $this->clientError(_('No such user.')); + $this->clientError(_m('No such user.')); } return true; @@ -78,20 +77,24 @@ class UsersalmonAction extends SalmonAction if (!empty($context->replyToID)) { $notice = Notice::staticGet('uri', $context->replyToID); if (empty($notice)) { - throw new ClientException("In reply to unknown notice"); + // TRANS: Client exception. + throw new ClientException(_m('In reply to unknown notice.')); } if ($notice->profile_id != $this->user->id && !in_array($this->user->id, $notice->getReplies())) { - throw new ClientException("In reply to a notice not by this user and not mentioning this user"); + // TRANS: Client exception. + throw new ClientException(_m('In reply to a notice not by this user and not mentioning this user.')); } } else if (!empty($context->attention)) { if (!in_array($this->user->uri, $context->attention) && !in_array(common_profile_url($this->user->nickname), $context->attention)) { common_log(LOG_ERR, "{$this->user->uri} not in attention list (".implode(',', $context->attention).")"); - throw new ClientException("To the attention of user(s) not including this one!"); + // TRANS: Client exception. + throw new ClientException('To the attention of user(s), not including this one.'); } } else { - throw new ClientException("Not to anyone in reply to anything!"); + // TRANS: Client exception. + throw new ClientException('Not to anyone in reply to anything.'); } $existing = Notice::staticGet('uri', $this->activity->objects[0]->id); @@ -108,7 +111,6 @@ class UsersalmonAction extends SalmonAction * We've gotten a follow/subscribe notification from a remote user. * Save a subscription relationship for them. */ - function handleFollow() { $oprofile = $this->ensureProfile(); @@ -152,11 +154,13 @@ class UsersalmonAction extends SalmonAction 'notice_id' => $notice->id)); if (!empty($old)) { - throw new ClientException("We already know that's a fave!"); + // TRANS: Client exception. + throw new ClientException(_('This is already a favorite.')); } if (!Fave::addNew($profile, $notice)) { - throw new ClientException("Could not save new favorite."); + // TRANS: Client exception. + throw new ClientException(_m('Could not save new favorite.')); } } @@ -172,7 +176,8 @@ class UsersalmonAction extends SalmonAction $fave = Fave::pkeyGet(array('user_id' => $profile->id, 'notice_id' => $notice->id)); if (empty($fave)) { - throw new ClientException("Notice wasn't favorited!"); + // TRANS: Client exception. + throw new ClientException(_('Notice wasn\'t favorited!')); } $fave->delete(); @@ -186,7 +191,8 @@ class UsersalmonAction extends SalmonAction function getNotice($object) { if (!$object) { - throw new ClientException("Can't favorite/unfavorite without an object."); + // TRANS: Client exception. + throw new ClientException(_m('Can\'t favorite/unfavorite without an object.')); } switch ($object->type) { @@ -197,20 +203,22 @@ class UsersalmonAction extends SalmonAction case ActivityObject::COMMENT: break; default: - throw new ClientException("Can't handle that kind of object for liking/faving."); + // TRANS: Client exception. + throw new ClientException(_m('Can\'t handle that kind of object for liking/faving.')); } $notice = Notice::staticGet('uri', $object->id); if (empty($notice)) { - throw new ClientException("Notice with ID $object->id unknown."); + // TRANS: Client exception. %s is an object ID. + throw new ClientException(sprintf(_m('Notice with ID %s unknown.'),$object->id)); } if ($notice->profile_id != $this->user->id) { - throw new ClientException("Notice with ID $object->id not posted by $this->user->id."); + // TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. + throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'),$object->id,$this->user->id)); } return $notice; } - } diff --git a/plugins/OStatus/actions/userxrd.php b/plugins/OStatus/actions/userxrd.php index dd720568b4..9aa7c0306d 100644 --- a/plugins/OStatus/actions/userxrd.php +++ b/plugins/OStatus/actions/userxrd.php @@ -17,16 +17,14 @@ * along with this program. If not, see . */ +if (!defined('STATUSNET')) { exit(1); } + /** * @package OStatusPlugin * @maintainer James Walker */ - -if (!defined('STATUSNET')) { exit(1); } - class UserxrdAction extends XrdAction { - function prepare($args) { parent::prepare($args); @@ -46,7 +44,7 @@ class UserxrdAction extends XrdAction $this->user = User::staticGet('uri', $this->uri); } if (!$this->user) { - $this->clientError(_('No such user.'), 404); + $this->clientError(_m('No such user.'), 404); return false; } diff --git a/plugins/OStatus/classes/FeedSub.php b/plugins/OStatus/classes/FeedSub.php index 6f9e0856ab..58beec6738 100644 --- a/plugins/OStatus/classes/FeedSub.php +++ b/plugins/OStatus/classes/FeedSub.php @@ -39,7 +39,6 @@ PuSH subscription flow: hub sends us updates via POST */ - class FeedDBException extends FeedSubException { public $obj; @@ -88,7 +87,6 @@ class FeedSub extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -143,7 +141,6 @@ class FeedSub extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array_keys($this->keyTypes()); @@ -157,7 +154,6 @@ class FeedSub extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('id' => 'K', 'uri' => 'U'); @@ -249,7 +245,7 @@ class FeedSub extends Memcached_DataObject // We'll never actually get updates in this mode. return true; } else { - throw new ServerException("Attempting to start PuSH subscription for feed with no hub."); + throw new ServerException(_m('Attempting to start PuSH subscription for feed with no hub.')); } } @@ -279,7 +275,7 @@ class FeedSub extends Memcached_DataObject // We'll never actually get updates in this mode. return true; } else { - throw new ServerException("Attempting to end PuSH subscription for feed with no hub."); + throw new ServerException(_m('Attempting to end PuSH subscription for feed with no hub.')); } } @@ -500,5 +496,4 @@ class FeedSub extends Memcached_DataObject } return false; } - } diff --git a/plugins/OStatus/classes/HubSub.php b/plugins/OStatus/classes/HubSub.php index e01ae4e798..825d36ebd6 100644 --- a/plugins/OStatus/classes/HubSub.php +++ b/plugins/OStatus/classes/HubSub.php @@ -54,7 +54,6 @@ class HubSub extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('hashkey' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, @@ -112,7 +111,6 @@ class HubSub extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('hashkey' => 'K'); @@ -206,8 +204,8 @@ class HubSub extends Memcached_DataObject if ($status >= 200 && $status < 300) { common_log(LOG_INFO, "Verified $mode of $this->callback:$this->topic"); } else { - // @todo i18n FIXME: add i18n and use sprintf for parameter. - throw new ClientException("Hub subscriber verification returned HTTP $status"); + // TRANS: Client exception. %s is a HTTP status code. + throw new ClientException(sprintf(_m('Hub subscriber verification returned HTTP %s.'),$status)); } $old = HubSub::staticGet($this->topic, $this->callback); @@ -353,10 +351,9 @@ class HubSub extends Memcached_DataObject if ($response->isOk()) { return true; } else { - throw new Exception("Callback returned status: " . - $response->getStatus() . - "; body: " . - trim($response->getBody())); + // TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. + throw new Exception(sprintf(_m('Callback returned status: %1$s. Body: %2$s'), + $response->getStatus(),trim($response->getBody()))); } } } diff --git a/plugins/OStatus/classes/Magicsig.php b/plugins/OStatus/classes/Magicsig.php index e39a6d8f7c..20025c37a6 100644 --- a/plugins/OStatus/classes/Magicsig.php +++ b/plugins/OStatus/classes/Magicsig.php @@ -31,7 +31,6 @@ require_once 'Crypt/RSA.php'; class Magicsig extends Memcached_DataObject { - const PUBLICKEYREL = 'magic-public-key'; public $__table = 'magicsig'; @@ -86,7 +85,6 @@ class Magicsig extends Memcached_DataObject 64, false)); } - function keys() { return array_keys($this->keyTypes()); @@ -126,7 +124,6 @@ class Magicsig extends Memcached_DataObject $this->insert(); } - public function toString($full_pair = true) { $mod = Magicsig::base64_url_encode($this->publicKey->modulus->toBytes()); @@ -197,7 +194,6 @@ class Magicsig extends Memcached_DataObject case 'RSA-SHA256': return 'sha256'; } - } public function sign($bytes) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 11ca67b25c..402d1967f9 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -21,7 +21,6 @@ * @package OStatusPlugin * @maintainer Brion Vibber */ - class Ostatus_profile extends Memcached_DataObject { public $__table = 'ostatus_profile'; @@ -51,7 +50,6 @@ class Ostatus_profile extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, @@ -92,7 +90,6 @@ class Ostatus_profile extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array_keys($this->keyTypes()); @@ -106,7 +103,6 @@ class Ostatus_profile extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('uri' => 'K', 'profile_id' => 'U', 'group_id' => 'U', 'feeduri' => 'U'); @@ -188,11 +184,11 @@ class Ostatus_profile extends Memcached_DataObject } else if ($this->group_id && !$this->profile_id) { return true; } else if ($this->group_id && $this->profile_id) { - // @todo i18n FIXME: use sprintf and add i18n. - throw new ServerException("Invalid ostatus_profile state: both group and profile IDs set for $this->uri."); + // TRANS: Server exception. + throw new ServerException(sprintf(_m('Invalid ostatus_profile state: both group and profile IDs set for %s.'),$this->uri)); } else { - // @todo i18n FIXME: use sprintf and add i18n. - throw new ServerException("Invalid ostatus_profile state: both group and profile IDs empty for $this->uri."); + // TRANS: Server exception. + throw new ServerException(sprintf(_m('Invalid ostatus_profile state: both group and profile IDs empty for %s.'),$this->uri)); } } @@ -280,7 +276,9 @@ class Ostatus_profile extends Memcached_DataObject if ($type == 'object') { $type = get_class($actor); } - throw new ServerException("Invalid actor passed to " . __METHOD__ . ": " . $type); + // TRANS: Server exception. + // TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. + throw new ServerException(sprintf(_m('Invalid actor passed to %1$s: %2$s.'),__METHOD__,$type)); } if ($object == null) { $object = $this; @@ -372,8 +370,8 @@ class Ostatus_profile extends Memcached_DataObject } else if ($entry instanceof Notice) { return $preamble . $entry->asAtomEntry(true, true); } else { - // @todo i18n FIXME: use sprintf and add i18n. - throw new ServerException("Invalid type passed to Ostatus_profile::notify; must be XML string or Activity entry."); + // TRANS: Server exception. + throw new ServerException(_m('Invalid type passed to Ostatus_profile::notify. It must be XML string or Activity entry.')); } } @@ -403,7 +401,7 @@ class Ostatus_profile extends Memcached_DataObject } else if ($feed->localName == 'rss') { // @fixme check namespace $this->processRssFeed($feed, $source); } else { - throw new Exception("Unknown feed format."); + throw new Exception(_m('Unknown feed format.')); } } @@ -426,7 +424,7 @@ class Ostatus_profile extends Memcached_DataObject $channels = $rss->getElementsByTagName('channel'); if ($channels->length == 0) { - throw new Exception("RSS feed without a channel."); + throw new Exception(_m('RSS feed without a channel.')); } else if ($channels->length > 1) { common_log(LOG_WARNING, __METHOD__ . ": more than one channel in an RSS feed"); } @@ -470,7 +468,8 @@ class Ostatus_profile extends Memcached_DataObject } break; default: - throw new ClientException("Can't handle that kind of post."); + // TRANS: Client exception. + throw new ClientException(_m('Can\'t handle that kind of post.')); } Event::handle('EndHandleFeedEntry', array($activity)); @@ -552,8 +551,8 @@ class Ostatus_profile extends Memcached_DataObject $sourceContent = $note->title; } else { // @fixme fetch from $sourceUrl? - // @todo i18n FIXME: use sprintf and add i18n. - throw new ClientException("No content for notice {$sourceUri}."); + // TRANS: Client exception. %s is a source URL. + throw new ClientException(sprintf(_m('No content for notice %s.'),$sourceUri)); } // Get (safe!) HTML and text versions of the content @@ -584,14 +583,17 @@ class Ostatus_profile extends Memcached_DataObject // We mark up the attachment link specially for the HTML output // so we can fold-out the full version inline. + + // TRANS: Shown when a notice is longer than supported and/or when attachments are present. + $showMoreText = _m('Show more'); $attachUrl = common_local_url('attachment', array('attachment' => $attachment->id)); $rendered = common_render_text($shortSummary) . '' . + ' title="'. htmlspecialchars($showMoreText) . '">' . '…' . - ''; // @todo i18n FIXME: add translator hint/context. + ''; } } @@ -775,8 +777,8 @@ class Ostatus_profile extends Memcached_DataObject $response = $client->get($profile_url); if (!$response->isOk()) { - // @todo i18n FIXME: use sprintf and add i18n. - throw new Exception("Could not reach profile page: " . $profile_url); + // TRANS: Exception. %s is a profile URL. + throw new Exception(sprintf(_m('Could not reach profile page %s.'),$profile_url)); } // Check if we have a non-canonical URL @@ -833,8 +835,8 @@ class Ostatus_profile extends Memcached_DataObject return self::ensureFeedURL($feedurl, $hints); } - // @todo i18n FIXME: use sprintf and add i18n. - throw new Exception("Could not find a feed URL for profile page " . $finalUrl); + // TRANS: Exception. + throw new Exception(sprintf(_m('Could not find a feed URL for profile page %s.'),$finalUrl)); } /** @@ -866,7 +868,7 @@ class Ostatus_profile extends Memcached_DataObject $user = User::staticGet('id', $profile->id); if (!empty($user)) { - // @todo i18n FIXME: use sprintf and add i18n. + // @todo i18n FIXME: use sprintf and add i18n (?) throw new OStatusShadowException($profile, "'$profile_url' is the profile for local user '{$user->nickname}'."); } @@ -971,8 +973,7 @@ class Ostatus_profile extends Memcached_DataObject } // XXX: make some educated guesses here - - throw new FeedSubException("Can't find enough profile information to make a feed."); + throw new FeedSubException(_m('Can\'t find enough profile information to make a feed.')); } /** @@ -1270,13 +1271,13 @@ class Ostatus_profile extends Memcached_DataObject $user = User::staticGet('uri', $homeuri); if ($user) { - // @todo i18n FIXME: add i18n. - throw new Exception("Local user can't be referenced as remote."); + // TRANS: Exception. + throw new Exception(_m('Local user can\'t be referenced as remote.')); } if (OStatusPlugin::localGroupFromUrl($homeuri)) { - // @todo i18n FIXME: add i18n. - throw new Exception("Local group can't be referenced as remote."); + // TRANS: Exception. + throw new Exception(_m('Local group can\'t be referenced as remote.')); } if (array_key_exists('feedurl', $hints)) { @@ -1327,8 +1328,8 @@ class Ostatus_profile extends Memcached_DataObject $oprofile->profile_id = $profile->insert(); if (!$oprofile->profile_id) { - // @todo i18n FIXME: add i18n. - throw new ServerException("Can't save local profile."); + // TRANS: Exception. + throw new ServerException(_m('Can\'t save local profile.')); } } else { $group = new User_group(); @@ -1338,16 +1339,16 @@ class Ostatus_profile extends Memcached_DataObject $oprofile->group_id = $group->insert(); if (!$oprofile->group_id) { - // @todo i18n FIXME: add i18n. - throw new ServerException("Can't save local profile."); + // TRANS: Exception. + throw new ServerException(_m('Can\'t save local profile.')); } } $ok = $oprofile->insert(); if (!$ok) { - // @todo i18n FIXME: add i18n. - throw new ServerException("Can't save OStatus profile."); + // TRANS: Exception. + throw new ServerException(_m('Can\'t save OStatus profile.')); } $avatar = self::getActivityObjectAvatar($object, $hints); @@ -1605,8 +1606,8 @@ class Ostatus_profile extends Memcached_DataObject if ($uri !== false) { if (is_null($uri)) { // Negative cache entry - // @todo i18n FIXME: add i18n. - throw new Exception('Not a valid webfinger address.'); + // TRANS: Exception. + throw new Exception(_m('Not a valid webfinger address.')); } $oprofile = Ostatus_profile::staticGet('uri', $uri); if (!empty($oprofile)) { @@ -1633,8 +1634,8 @@ class Ostatus_profile extends Memcached_DataObject // Save negative cache entry so we don't waste time looking it up again. // @fixme distinguish temporary failures? self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), null); - // @todo i18n FIXME: add i18n. - throw new Exception('Not a valid webfinger address.'); + // TRANS: Exception. + throw new Exception(_m('Not a valid webfinger address.')); } $hints = array('webfinger' => $addr); @@ -1715,8 +1716,8 @@ class Ostatus_profile extends Memcached_DataObject if (!$profile_id) { common_log_db_error($profile, 'INSERT', __FILE__); - // @todo i18n FIXME: add i18n and use sprintf for parameter. - throw new Exception("Couldn't save profile for '$addr'."); + // TRANS: Exception. %s is a webfinger address. + throw new Exception(sprintf(_m('Couldn\'t save profile for "%s".'),$addr)); } $oprofile = new Ostatus_profile(); @@ -1734,16 +1735,16 @@ class Ostatus_profile extends Memcached_DataObject if (!$result) { common_log_db_error($oprofile, 'INSERT', __FILE__); - // @todo i18n FIXME: add i18n and use sprintf for parameter. - throw new Exception("Couldn't save ostatus_profile for '$addr'."); + // TRANS: Exception. %s is a webfinger address. + throw new Exception(sprintf(_m('Couldn\'t save ostatus_profile for "%s".'),$addr)); } self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri); return $oprofile; } - // @todo i18n FIXME: add i18n and use sprintf for parameter. - throw new Exception("Couldn't find a valid profile for '$addr'"); + // TRANS: Exception. %s is a webfinger address. + throw new Exception(sprintf(_m('Couldn\'t find a valid profile for "%s".'),$addr)); } /** @@ -1785,7 +1786,7 @@ class Ostatus_profile extends Memcached_DataObject if ($file_id === false) { common_log_db_error($file, "INSERT", __FILE__); - throw new ServerException(_('Could not store HTML content of long post as file.')); + throw new ServerException(_m('Could not store HTML content of long post as file.')); } return $file; diff --git a/plugins/OStatus/classes/Ostatus_source.php b/plugins/OStatus/classes/Ostatus_source.php index e6ce7d442b..b76bbce56c 100644 --- a/plugins/OStatus/classes/Ostatus_source.php +++ b/plugins/OStatus/classes/Ostatus_source.php @@ -21,7 +21,6 @@ * @package OStatusPlugin * @maintainer Brion Vibber */ - class Ostatus_source extends Memcached_DataObject { public $__table = 'ostatus_source'; @@ -43,7 +42,6 @@ class Ostatus_source extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -69,7 +67,6 @@ class Ostatus_source extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array_keys($this->keyTypes()); @@ -83,7 +80,6 @@ class Ostatus_source extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return array('notice_id' => 'K'); diff --git a/plugins/OStatus/lib/discovery.php b/plugins/OStatus/lib/discovery.php index 04c6727207..905ece2ca5 100644 --- a/plugins/OStatus/lib/discovery.php +++ b/plugins/OStatus/lib/discovery.php @@ -106,8 +106,8 @@ class Discovery } } - // @todo Needs i18n. - throw new Exception('Unable to find services for '. $id . '.'); + // TRANS: Exception. + throw new Exception(sprintf(_m('Unable to find services for %s.'),$id)); } public static function getService($links, $service) { diff --git a/plugins/OStatus/lib/discoveryhints.php b/plugins/OStatus/lib/discoveryhints.php index fa2ead7320..a98f4a6d67 100644 --- a/plugins/OStatus/lib/discoveryhints.php +++ b/plugins/OStatus/lib/discoveryhints.php @@ -20,7 +20,6 @@ */ class DiscoveryHints { - static function fromXRD($xrd) { $hints = array(); diff --git a/plugins/OStatus/lib/linkheader.php b/plugins/OStatus/lib/linkheader.php index cd78d31cef..efa3f65ff3 100644 --- a/plugins/OStatus/lib/linkheader.php +++ b/plugins/OStatus/lib/linkheader.php @@ -1,4 +1,7 @@ $signature_alg->sign($armored_text), 'alg' => $signature_alg->getName() ); - } public function toXML($env) { @@ -110,7 +110,6 @@ class MagicEnvelope return $string; } - public function unfold($env) { $dom = new DOMDocument(); @@ -218,5 +217,4 @@ class MagicEnvelope 'sig' => preg_replace('/\s/', '', $sig_element->nodeValue), ); } - } diff --git a/plugins/OStatus/lib/ostatusqueuehandler.php b/plugins/OStatus/lib/ostatusqueuehandler.php index 9814cab9f1..5e0ab46a5b 100644 --- a/plugins/OStatus/lib/ostatusqueuehandler.php +++ b/plugins/OStatus/lib/ostatusqueuehandler.php @@ -221,5 +221,4 @@ class OStatusQueueHandler extends QueueHandler return $feed; } - } diff --git a/plugins/OStatus/lib/pushinqueuehandler.php b/plugins/OStatus/lib/pushinqueuehandler.php index 1fd29ae301..965d042668 100644 --- a/plugins/OStatus/lib/pushinqueuehandler.php +++ b/plugins/OStatus/lib/pushinqueuehandler.php @@ -22,7 +22,6 @@ * @package FeedSub * @author Brion Vibber */ - class PushInQueueHandler extends QueueHandler { function transport() diff --git a/plugins/OStatus/lib/salmon.php b/plugins/OStatus/lib/salmon.php index 631ebc7d86..963da65084 100644 --- a/plugins/OStatus/lib/salmon.php +++ b/plugins/OStatus/lib/salmon.php @@ -89,8 +89,8 @@ class Salmon $magickey->generate($user->id); } } else { - // @todo i18n FIXME: added i18n and use sprintf when using parameters. - throw new Exception("Salmon invalid actor for signing."); + // TRANS: Exception. + throw new Exception(_m('Salmon invalid actor for signing.')); } try { @@ -101,7 +101,6 @@ class Salmon return $magic_env->toXML($env); } - public function verifyMagicEnv($text) { $magic_env = new MagicEnvelope(); diff --git a/plugins/OStatus/lib/salmonaction.php b/plugins/OStatus/lib/salmonaction.php index f97c67edd0..41bdb48928 100644 --- a/plugins/OStatus/lib/salmonaction.php +++ b/plugins/OStatus/lib/salmonaction.php @@ -38,11 +38,12 @@ class SalmonAction extends Action parent::prepare($args); if ($_SERVER['REQUEST_METHOD'] != 'POST') { - // TRANS: POST is a HTTP command. It should not be translated. + // TRANS: Client error. POST is a HTTP command. It should not be translated. $this->clientError(_m('This method requires a POST.')); } if (empty($_SERVER['CONTENT_TYPE']) || $_SERVER['CONTENT_TYPE'] != 'application/magic-envelope+xml') { + // TRANS: Client error. Do not translate "application/magic-envelope+xml" $this->clientError(_m('Salmon requires "application/magic-envelope+xml".')); } @@ -52,6 +53,7 @@ class SalmonAction extends Action $salmon = new Salmon; if (!$salmon->verifyMagicEnv($xml)) { common_log(LOG_DEBUG, "Salmon signature verification failed."); + // TRANS: Client error. $this->clientError(_m('Salmon signature verification failed.')); } else { $magic_env = new MagicEnvelope(); @@ -63,6 +65,7 @@ class SalmonAction extends Action if ($dom->documentElement->namespaceURI != Activity::ATOM || $dom->documentElement->localName != 'entry') { common_log(LOG_DEBUG, "Got invalid Salmon post: $xml"); + // TRANS: Client error. $this->clientError(_m('Salmon post must be an Atom entry.')); } @@ -111,6 +114,7 @@ class SalmonAction extends Action $this->handleUpdateProfile(); break; default: + // TRANS: Client exception. throw new ClientException(_m("Unrecognized activity type.")); } Event::handle('EndHandleSalmon', array($this->activity)); @@ -119,41 +123,49 @@ class SalmonAction extends Action function handlePost() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand posts.")); } function handleFollow() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand follows.")); } function handleUnfollow() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand unfollows.")); } function handleFavorite() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand favorites.")); } function handleUnfavorite() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand unfavorites.")); } function handleShare() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand share events.")); } function handleJoin() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand joins.")); } function handleLeave() { + // TRANS: Client exception. throw new ClientException(_m("This target doesn't understand leave events.")); } @@ -181,7 +193,8 @@ class SalmonAction extends Action if (empty($actor->id)) { common_log(LOG_ERR, "broken actor: " . var_export($actor, true)); common_log(LOG_ERR, "activity with no actor: " . var_export($this->activity, true)); - throw new Exception("Received a salmon slap from unidentified actor."); + // TRANS: Exception. + throw new Exception(_m('Received a salmon slap from unidentified actor.')); } return Ostatus_profile::ensureActivityObjectProfile($actor); diff --git a/plugins/OStatus/lib/xrd.php b/plugins/OStatus/lib/xrd.php index 145cd64cb4..c8cffed9cd 100644 --- a/plugins/OStatus/lib/xrd.php +++ b/plugins/OStatus/lib/xrd.php @@ -27,7 +27,6 @@ * @link http://status.net/ */ - class XRD { const XML_NS = 'http://www.w3.org/2000/xmlns/'; @@ -61,11 +60,13 @@ class XRD error_reporting($old); if (!$ok) { - throw new Exception("Invalid XML."); + // TRANS: Exception. + throw new Exception(_m('Invalid XML.')); } $xrd_element = $dom->getElementsByTagName('XRD')->item(0); if (!$xrd_element) { - throw new Exception("Invalid XML, missing XRD root."); + // TRANS: Exception. + throw new Exception(_m('Invalid XML, missing XRD root.')); } // Check for host-meta host diff --git a/plugins/OStatus/lib/xrdaction.php b/plugins/OStatus/lib/xrdaction.php index 91bb87cc23..c8b5beff37 100644 --- a/plugins/OStatus/lib/xrdaction.php +++ b/plugins/OStatus/lib/xrdaction.php @@ -103,5 +103,4 @@ class XrdAction extends Action header('Content-type: application/xrd+xml'); print $xrd->toXML(); } - } From ecafae84728e05387f3e488b36e583dec9ee3e2b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 15:52:53 +0200 Subject: [PATCH 097/310] * Remove trailing newline in e-mail message. * Superfluous whitespace removed. --- plugins/TwitterBridge/twitter.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index d984698ee8..f913e4aeae 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -318,11 +318,9 @@ function remove_twitter_link($flink) // Notify the user that her Twitter bridge is down if (isset($user->email)) { - $result = mail_twitter_bridge_removed($user); if (!$result) { - $msg = 'Unable to send email to notify ' . "$user->nickname (user id: $user->id) " . 'that their Twitter bridge link was ' . @@ -331,7 +329,6 @@ function remove_twitter_link($flink) common_log(LOG_WARNING, $msg); } } - } /** @@ -360,7 +357,7 @@ function mail_twitter_bridge_removed($user) '%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\n"), + "Regards,\n%3\$s"), $profile->getBestName(), common_local_url('twittersettings'), common_config('site', 'name')); From 74785c64f86293a1e81ae8497cc88172fc30ef1b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 16:32:19 +0200 Subject: [PATCH 098/310] * L10n i18n update * add translator hints * update whitespace * added a bunch of @todos. --- plugins/Facebook/FBC_XDReceiver.php | 8 ++-- plugins/Facebook/FBConnectAuth.php | 32 ++++++++----- plugins/Facebook/FBConnectLogin.php | 2 + plugins/Facebook/FBConnectSettings.php | 8 ++-- plugins/Facebook/FacebookPlugin.php | 61 +++++++------------------ plugins/Facebook/facebookaction.php | 40 ++++++---------- plugins/Facebook/facebookadminpanel.php | 13 +----- plugins/Facebook/facebookhome.php | 33 ++++++------- plugins/Facebook/facebookinvite.php | 15 +++--- plugins/Facebook/facebooklogin.php | 8 ++-- plugins/Facebook/facebooknoticeform.php | 26 ++++------- plugins/Facebook/facebookremove.php | 2 - plugins/Facebook/facebooksettings.php | 12 ++--- plugins/Facebook/facebookutil.php | 15 ------ 14 files changed, 103 insertions(+), 172 deletions(-) diff --git a/plugins/Facebook/FBC_XDReceiver.php b/plugins/Facebook/FBC_XDReceiver.php index 2bc790d5a0..bf4b59bba1 100644 --- a/plugins/Facebook/FBC_XDReceiver.php +++ b/plugins/Facebook/FBC_XDReceiver.php @@ -1,4 +1,7 @@ elementEnd('html'); } - } - diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index 8eba7fc135..f06dffaaab 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -60,12 +60,10 @@ class FBConnectauthAction extends Action parent::handle($args); if (common_is_real_login()) { - // User is already logged in. Does she already have a linked Facebook acct? $flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_CONNECT_SERVICE); if (!empty($flink)) { - // User already has a linked Facebook account and shouldn't be here common_debug('Facebook Connect Plugin - ' . 'There is already a local user (' . $flink->user_id . @@ -74,8 +72,7 @@ class FBConnectauthAction extends Action // We don't want these cookies getFacebook()->clear_cookie_state(); - $this->clientError(_m('There is already a local user linked with this Facebook.')); - + $this->clientError(_m('There is already a local user linked with this Facebook account.')); } else { // User came from the Facebook connect settings tab, and @@ -102,7 +99,7 @@ class FBConnectauthAction extends Action } else { common_debug('Facebook Connect Plugin - ' . print_r($this->args, true)); - $this->showForm(_m('Something weird happened.'), + $this->showForm(_m('An unknown error has occured.'), $this->trimmed('newname')); } } else { @@ -116,12 +113,14 @@ class FBConnectauthAction extends Action $this->element('div', array('class' => 'error'), $this->error); } else { $this->element('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 account, or connect with your existing account, if you have one.'), common_config('site', 'name'))); } } function title() { + // TRANS: Page title. return _m('Facebook Account Setup'); } @@ -155,6 +154,7 @@ class FBConnectauthAction extends Action 'class' => 'form_settings', 'action' => common_local_url('FBConnectAuth'))); $this->elementStart('fieldset', array('id' => 'settings_facebook_connect_options')); + // TRANS: Legend. $this->element('legend', null, _m('Connection options')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); @@ -164,7 +164,8 @@ class FBConnectauthAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $message = _('My text and files are available under %s ' . + // TRANS: %s is the name of the license used by the user for their status updates. + $message = _m('My text and files are available under %s ' . 'except this private data: password, ' . 'email address, IM address, and phone number.'); $link = 'reqFbScripts($action)) { - // XXX: Horrible hack to make Safari, FF2, and Chrome work with // Facebook Connect. These browser cannot use Facebook's // DOM parsing routines unless the mime type of the page is @@ -238,9 +229,7 @@ class FacebookPlugin extends Plugin 'lang' => $language)); return false; - } else { - return true; } } @@ -255,7 +244,6 @@ class FacebookPlugin extends Plugin * @return void * */ - function onEndShowScripts($action) { if ($this->reqFbScripts($action)) { @@ -306,12 +294,10 @@ class FacebookPlugin extends Plugin $js = sprintf($js, $apikey, $login_url, $logout_url); // Compress the bugger down a bit - $js = str_replace(' ', '', $js); $action->inlineScript($js); } - } /** @@ -323,7 +309,6 @@ class FacebookPlugin extends Plugin * @return void * */ - function onEndShowFooter($action) { if ($this->reqFbScripts($action)) { @@ -340,7 +325,6 @@ class FacebookPlugin extends Plugin * @return void * */ - function onEndShowStatusNetStyles($action) { if ($this->reqFbScripts($action)) { @@ -357,7 +341,6 @@ class FacebookPlugin extends Plugin * * @return boolean true */ - function reqFbScripts($action) { if (!self::hasKeys()) { @@ -365,7 +348,6 @@ class FacebookPlugin extends Plugin } // If you're logged in w/FB Connect, you always need the FB stuff - $fbuid = $this->loggedIn(); if (!empty($fbuid)) { @@ -373,7 +355,6 @@ class FacebookPlugin extends Plugin } // List of actions that require FB stuff - $needy = array('FBConnectLoginAction', 'FBConnectauthAction', 'FBConnectSettingsAction'); @@ -383,7 +364,6 @@ class FacebookPlugin extends Plugin } return false; - } /** @@ -391,7 +371,6 @@ class FacebookPlugin extends Plugin * * @return mixed $fbuid the Facebook ID of the logged in user, or null */ - function loggedIn() { $user = common_current_user(); @@ -403,12 +382,9 @@ class FacebookPlugin extends Plugin $fbuid = 0; if (!empty($flink)) { - try { - $facebook = getFacebook(); $fbuid = $facebook->get_loggedin_user(); - } catch (Exception $e) { common_log(LOG_WARNING, 'Facebook Connect Plugin - ' . 'Problem getting Facebook user: ' . @@ -432,17 +408,14 @@ class FacebookPlugin extends Plugin * @return void * */ - function onStartPrimaryNav($action) { if (self::hasKeys()) { $user = common_current_user(); if (!empty($user)) { - $fbuid = $this->loggedIn(); if (!empty($fbuid)) { - /* Default FB silhouette pic for FB users who haven't uploaded a profile pic yet. */ @@ -455,7 +428,7 @@ class FacebookPlugin extends Plugin $action->element('img', array('id' => 'fbc_profile-pic', 'src' => (!empty($url)) ? $url : $silhouetteUrl, - 'alt' => 'Facebook Connect User', + 'alt' => _m('Facebook Connect User'), 'width' => '16'), ''); $iconurl = common_path('plugins/Facebook/fbfavicon.ico'); @@ -477,18 +450,20 @@ class FacebookPlugin extends Plugin * * @return void */ - function onEndLoginGroupNav(&$action) { if (self::hasKeys()) { - $action_name = $action->trimmed('action'); $action->menuItem(common_local_url('FBConnectLogin'), - _m('Facebook'), + // @todo CHECKME: Should be 'Facebook Login'? + // TRANS: Menu item. + _m('MENU','Facebook'), + // TRANS: Tooltip for menu item "Facebook". _m('Login or register using Facebook'), 'FBConnectLogin' === $action_name); } + return true; } @@ -499,18 +474,20 @@ class FacebookPlugin extends Plugin * * @return void */ - function onEndConnectSettingsNav(&$action) { if (self::hasKeys()) { - $action_name = $action->trimmed('action'); $action->menuItem(common_local_url('FBConnectSettings'), - _m('Facebook'), + // @todo CHECKME: Should be 'Facebook Connect'? + // TRANS: Menu item tab. + _m('MENU','Facebook'), + // TRANS: Tooltip for menu item "Facebook". _m('Facebook Connect Settings'), $action_name === 'FBConnectSettings'); } + return true; } @@ -521,7 +498,6 @@ class FacebookPlugin extends Plugin * * @return void */ - function onStartLogout($action) { if (self::hasKeys()) { @@ -550,14 +526,12 @@ class FacebookPlugin extends Plugin * * @return string $url the url for the user's Facebook avatar */ - function getProfilePicURL($fbuid) { $facebook = getFacebook(); $url = null; try { - $fqry = 'SELECT pic_square FROM user WHERE uid = %s'; $result = $facebook->api_client->fql_query(sprintf($fqry, $fbuid)); @@ -582,7 +556,6 @@ class FacebookPlugin extends Plugin * * @return boolean hook return */ - function onStartEnqueueNotice($notice, &$transports) { if (self::hasKeys() && $notice->isLocal()) { @@ -613,14 +586,14 @@ class FacebookPlugin extends Plugin 'version' => self::VERSION, 'author' => 'Zach Copley', 'homepage' => 'http://status.net/wiki/Plugin:Facebook', + // TRANS: Plugin description. 'rawdescription' => _m( - 'The Facebook plugin allows you to integrate ' . - 'your StatusNet instance with ' . + 'The Facebook plugin allows integrating ' . + 'StatusNet instances with ' . 'Facebook ' . 'and Facebook Connect.' ) ); return true; } - } diff --git a/plugins/Facebook/facebookaction.php b/plugins/Facebook/facebookaction.php index 467c6af84f..4c15fc0397 100644 --- a/plugins/Facebook/facebookaction.php +++ b/plugins/Facebook/facebookaction.php @@ -36,7 +36,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebooknoticeform.php'; class FacebookAction extends Action { - var $facebook = null; var $fbuid = null; var $flink = null; @@ -102,7 +101,6 @@ class FacebookAction extends Action * * @return void */ - function startHTML($type=null) { $this->showStylesheets(); @@ -143,7 +141,6 @@ class FacebookAction extends Action function showHead($error, $success) { - if ($error) { $this->element("h1", null, $error); } @@ -168,7 +165,10 @@ class FacebookAction extends Action $this->elementStart('li', array('class' => ($this->action == 'facebookhome') ? 'current' : 'facebook_home')); $this->element('a', - array('href' => 'index.php', 'title' => _m('Home')), _m('Home')); + // TRANS: Link description for 'Home' link that leads to a start page. + array('href' => 'index.php', 'title' => _m('MENU','Home')), + // TRANS: Tooltip for 'Home' link that leads to a start page. + _m('Home')); $this->elementEnd('li'); if (common_config('invite', 'enabled')) { @@ -176,7 +176,10 @@ class FacebookAction extends Action array('class' => ($this->action == 'facebookinvite') ? 'current' : 'facebook_invite')); $this->element('a', - array('href' => 'invite.php', 'title' => _m('Invite')), _m('Invite')); + // TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. + array('href' => 'invite.php', 'title' => _m('MENU','Invite')), + // TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. + _m('Invite')); $this->elementEnd('li'); } @@ -185,7 +188,10 @@ class FacebookAction extends Action ($this->action == 'facebooksettings') ? 'current' : 'facebook_settings')); $this->element('a', array('href' => 'settings.php', - 'title' => _m('Settings')), _m('Settings')); + // TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. + 'title' => _m('MENU','Settings')), + // TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. + _m('Settings')); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -272,7 +278,8 @@ class FacebookAction extends Action $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('submit', _m('Login')); + // TRANS: Login button. + $this->submit('submit', _m('BUTTON','Login')); $this->elementEnd('fieldset'); $this->elementEnd('form'); @@ -283,7 +290,6 @@ class FacebookAction extends Action $this->elementEnd('div'); $this->elementEnd('div'); - } function updateProfileBox($notice) @@ -356,7 +362,6 @@ class FacebookAction extends Action function saveNewNotice() { - $user = $this->flink->getUser(); $content = $this->trimmed('status_textarea'); @@ -368,6 +373,7 @@ class FacebookAction extends Action $content_shortened = common_shorten_links($content); if (Notice::contentTooLong($content_shortened)) { + // @todo FIXME: i18n: Needs plural. $this->showPage(sprintf(_m('That\'s too long. Max notice size is %d chars.'), Notice::maxContent())); return; @@ -379,9 +385,7 @@ class FacebookAction extends Action $cmd = $inter->handle_command($user, $content_shortened); if ($cmd) { - // XXX fix this - $cmd->execute(new WebChannel()); return; } @@ -398,12 +402,10 @@ class FacebookAction extends Action } } - } class FacebookNoticeList extends NoticeList { - /** * constructor * @@ -423,7 +425,6 @@ class FacebookNoticeList extends NoticeList * * @return int count of notices listed. */ - function show() { $this->out->elementStart('div', array('id' =>'notices_primary')); @@ -459,17 +460,14 @@ class FacebookNoticeList extends NoticeList * @return FacebookNoticeListItem a list item for displaying the notice * formatted for display in the Facebook App. */ - function newListItem($notice) { return new FacebookNoticeListItem($notice, $this); } - } class FacebookNoticeListItem extends NoticeListItem { - /** * constructor * @@ -477,7 +475,6 @@ class FacebookNoticeListItem extends NoticeListItem * * @param Notice $notice The notice we'll display */ - function __construct($notice, $out=null) { parent::__construct($notice, $out); @@ -491,7 +488,6 @@ class FacebookNoticeListItem extends NoticeListItem * * @return void */ - function show() { $this->showStart(); @@ -502,12 +498,10 @@ class FacebookNoticeListItem extends NoticeListItem $this->showEnd(); } - } class FacebookProfileBoxNotice extends FacebookNoticeListItem { - /** * constructor * @@ -515,7 +509,6 @@ class FacebookProfileBoxNotice extends FacebookNoticeListItem * * @param Notice $notice The notice we'll display */ - function __construct($notice, $out=null) { parent::__construct($notice, $out); @@ -527,7 +520,6 @@ class FacebookProfileBoxNotice extends FacebookNoticeListItem * * @return void */ - function show() { $this->showNotice(); @@ -537,7 +529,6 @@ class FacebookProfileBoxNotice extends FacebookNoticeListItem function showAppLink() { - $this->facebook = getFacebook(); $app_props = $this->facebook->api_client->Admin_getAppProperties( @@ -551,5 +542,4 @@ class FacebookProfileBoxNotice extends FacebookNoticeListItem $this->out->text($this->app_name); $this->out->elementEnd('a'); } - } diff --git a/plugins/Facebook/facebookadminpanel.php b/plugins/Facebook/facebookadminpanel.php index ae1c7302f9..ae26c7d3e8 100644 --- a/plugins/Facebook/facebookadminpanel.php +++ b/plugins/Facebook/facebookadminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class FacebookadminpanelAction extends AdminPanelAction { /** @@ -48,7 +47,6 @@ class FacebookadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { return _m('Facebook'); @@ -59,7 +57,6 @@ class FacebookadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { return _m('Facebook integration settings'); @@ -70,7 +67,6 @@ class FacebookadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new FacebookAdminPanelForm($this); @@ -83,7 +79,6 @@ class FacebookadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array( @@ -100,7 +95,6 @@ class FacebookadminpanelAction extends AdminPanelAction } // This throws an exception on validation errors - $this->validate($values); // assert(all values are valid); @@ -145,7 +139,6 @@ class FacebookAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'facebookadminpanel'; @@ -156,7 +149,6 @@ class FacebookAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_settings'; @@ -167,7 +159,6 @@ class FacebookAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('facebookadminpanel'); @@ -178,7 +169,6 @@ class FacebookAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart( @@ -215,9 +205,8 @@ class FacebookAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save Facebook settings')); + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Facebook settings')); } } diff --git a/plugins/Facebook/facebookhome.php b/plugins/Facebook/facebookhome.php index 60782f63c9..6090f988c5 100644 --- a/plugins/Facebook/facebookhome.php +++ b/plugins/Facebook/facebookhome.php @@ -25,7 +25,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; class FacebookhomeAction extends FacebookAction { - var $page = null; function prepare($argarray) @@ -54,7 +53,6 @@ class FacebookhomeAction extends FacebookAction } if ($this->flink) { - $this->user = $this->flink->getUser(); // If this is the first time the user has started the app @@ -82,18 +80,14 @@ class FacebookhomeAction extends FacebookAction // Facebook status update permission? Then show the main page // of the app $this->showPage(); - } else { - // User hasn't authenticated yet, prompt for creds $this->login(); } - } function login() { - $this->showStylesheets(); $nickname = common_canonical_nickname($this->trimmed('nickname')); @@ -102,13 +96,11 @@ class FacebookhomeAction extends FacebookAction $msg = null; if ($nickname) { - if (common_check_user($nickname, $password)) { - $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->showLoginForm(_m("Server error - couldn't get user!")); + $this->showLoginForm(_m("Server error: Couldn't get user!")); } $flink = DB_DataObject::factory('foreign_link'); @@ -126,7 +118,6 @@ class FacebookhomeAction extends FacebookAction $this->getUpdatePermission(); return; - } else { $msg = _m('Incorrect username or password.'); } @@ -134,7 +125,6 @@ class FacebookhomeAction extends FacebookAction $this->showLoginForm($msg); $this->showFooter(); - } function setDefaults() @@ -155,8 +145,15 @@ class FacebookhomeAction extends FacebookAction function title() { if ($this->page > 1) { - return sprintf(_m("%s and friends, page %d"), $this->user->nickname, $this->page); + // @todo FIXME: Core should have methods to get "Full name (nickname)" in a localised form + // so that this can be used consistenly throughout StatusNet without having to implement it + // over and over.. + // TRANS: Page title. + // TRANS: %1$s is a user nickname, %2$s is a page number. + return sprintf(_m("%1$s and friends, page %2$d"), $this->user->nickname, $this->page); } else { + // TRANS: Page title. + // TRANS: %s is a user nickname return sprintf(_m("%s and friends"), $this->user->nickname); } } @@ -175,17 +172,16 @@ class FacebookhomeAction extends FacebookAction function showNoticeList($notice) { - $nl = new NoticeList($notice, $this); return $nl->show(); } function getUpdatePermission() { - $this->showStylesheets(); $this->elementStart('div', array('class' => 'facebook_guide')); + // TRANS: Instructions. %s is the application name. $instructions = sprintf(_m('If you would like the %s app to automatically update ' . 'your Facebook status with your latest notice, you need ' . 'to give it permission.'), $this->app_name); @@ -209,6 +205,7 @@ class FacebookhomeAction extends FacebookAction '&next_cancel=' . $next . '&submit=skip'; $this->elementStart('span', array('class' => 'facebook-button')); + // @todo FIXME: sprintf not needed here? $this->element('a', array('href' => $auth_url), sprintf(_m('Okay, do it!'), $this->app_name)); $this->elementEnd('span'); @@ -216,13 +213,13 @@ class FacebookhomeAction extends FacebookAction $this->elementEnd('li'); $this->elementStart('li', array('id' => 'fb-permissions-item')); - $this->submit('skip', _m('Skip')); + // TRANS: Button text. Clicking the button will skip updating Facebook permissions. + $this->submit('skip', _m('BUTTON','Skip')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('form'); $this->elementEnd('div'); - } /** @@ -238,7 +235,6 @@ class FacebookhomeAction extends FacebookAction */ function pagination($have_before, $have_after, $page, $action, $args=null) { - // Does a little before-after block for next/prev page // XXX: Fix so this uses common_local_url() if possible. @@ -254,6 +250,7 @@ class FacebookhomeAction extends FacebookAction $newargs = $args ? array_merge($args, $pargs) : $pargs; $this->elementStart('li', array('class' => 'nav_prev')); $this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'prev'), + // TRANS: Pagination link. _m('After')); $this->elementEnd('li'); } @@ -262,6 +259,7 @@ class FacebookhomeAction extends FacebookAction $newargs = $args ? array_merge($args, $pargs) : $pargs; $this->elementStart('li', array('class' => 'nav_next')); $this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'next'), + // TRANS: Pagination link. _m('Before')); $this->elementEnd('li'); } @@ -271,5 +269,4 @@ class FacebookhomeAction extends FacebookAction $this->elementEnd('dl'); } } - } diff --git a/plugins/Facebook/facebookinvite.php b/plugins/Facebook/facebookinvite.php index e02c7bf3ed..a50eace12f 100644 --- a/plugins/Facebook/facebookinvite.php +++ b/plugins/Facebook/facebookinvite.php @@ -25,7 +25,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; class FacebookinviteAction extends FacebookAction { - function handle($args) { parent::handle($args); @@ -41,7 +40,6 @@ class FacebookinviteAction extends FacebookAction * * @return void */ - function showForm($error=null) { $this->error = $error; @@ -56,7 +54,6 @@ class FacebookinviteAction extends FacebookAction * * @return void */ - function showContent() { if ($this->arg('ids')) { @@ -68,9 +65,10 @@ class FacebookinviteAction extends FacebookAction function showSuccessContent() { - - $this->element('h2', null, sprintf(_m('Thanks for inviting your friends to use %s'), + // TRANS: %s is the name of the site. + $this->element('h2', null, sprintf(_m('Thanks for inviting your friends to use %s.'), common_config('site', 'name'))); + // TRANS: Followed by an unordered list with invited friends. $this->element('p', null, _m('Invitations have been sent to the following users:')); $friend_ids = $_POST['ids']; // XXX: Hmm... is this the best way to access the list? @@ -85,8 +83,7 @@ class FacebookinviteAction extends FacebookAction $this->elementEnd('li'); } - $this->elementEnd("ul"); - + $this->elementEnd('ul'); } function showFormContent() @@ -100,6 +97,7 @@ class FacebookinviteAction extends FacebookAction 'type' => common_config('site', 'name'), 'content' => $content)); $this->hidden('invite', 'true'); + // TRANS: %s is the name of the site. $actiontext = sprintf(_m('Invite your friends to use %s'), common_config('site', 'name')); $multi_params = array('showborder' => 'false'); @@ -122,6 +120,7 @@ class FacebookinviteAction extends FacebookAction if ($exclude_ids) { + // TRANS: %s is the name of the site. $this->element('h2', null, sprintf(_m('Friends already using %s:'), common_config('site', 'name'))); $this->elementStart('ul', array('id' => 'facebook-friends')); @@ -140,7 +139,7 @@ class FacebookinviteAction extends FacebookAction function title() { + // TRANS: Page title. return sprintf(_m('Send invitations')); } - } diff --git a/plugins/Facebook/facebooklogin.php b/plugins/Facebook/facebooklogin.php index 7a173ddaeb..1961be57b6 100644 --- a/plugins/Facebook/facebooklogin.php +++ b/plugins/Facebook/facebooklogin.php @@ -25,7 +25,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; class FacebookinviteAction extends FacebookAction { - function handle($args) { parent::handle($args); @@ -37,6 +36,7 @@ class FacebookinviteAction extends FacebookAction $this->facebook->api_client->data_getUserPreference( FACEBOOK_PROMPTED_UPDATE_PREF) == 'true') { + // @todo FIXME: Missing i18n? echo '

REDIRECT TO HOME

'; } } else { @@ -46,7 +46,6 @@ class FacebookinviteAction extends FacebookAction function showContent() { - // If the user has opted not to initially allow the app to have // Facebook status update permission, store that preference. Only // promt the user the first time she uses the app @@ -56,7 +55,6 @@ class FacebookinviteAction extends FacebookAction } if ($this->flink) { - $this->user = $this->flink->getUser(); // If this is the first time the user has started the app @@ -69,7 +67,6 @@ class FacebookinviteAction extends FacebookAction return; } } - } else { $this->showLoginForm(); } @@ -88,6 +85,8 @@ class FacebookinviteAction extends FacebookAction function title() { + // @todo FIXME: Give a more precise description? Suggestion: "Login with Facebook Connect" + // TRANS: Page title. return sprintf(_m('Login')); } @@ -95,5 +94,4 @@ class FacebookinviteAction extends FacebookAction { } - } diff --git a/plugins/Facebook/facebooknoticeform.php b/plugins/Facebook/facebooknoticeform.php index 5989147f49..d52222c933 100644 --- a/plugins/Facebook/facebooknoticeform.php +++ b/plugins/Facebook/facebooknoticeform.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Form for posting a notice from within the Facebook App. + * Form for posting a notice from within the Facebook App. * * This is a stripped down version of the normal NoticeForm (sans * location stuff and media upload stuff). I'm not sure we can share the @@ -53,31 +53,26 @@ require_once INSTALLDIR . '/lib/form.php'; * * @see HTMLOutputter */ - class FacebookNoticeForm extends Form { /** * Current action, used for returning to this page. */ - var $action = null; /** * Pre-filled content of the form */ - var $content = null; /** * The current user */ - var $user = null; /** * The notice being replied to */ - var $inreplyto = null; /** @@ -87,7 +82,6 @@ class FacebookNoticeForm extends Form * @param string $action action to return to, if any * @param string $content content to pre-fill */ - function __construct($out=null, $action=null, $content=null, $post_action=null, $user=null, $inreplyto=null) { parent::__construct($out); @@ -102,7 +96,7 @@ class FacebookNoticeForm extends Form } else { $this->user = common_current_user(); } - + // Note: Facebook doesn't allow multipart/form-data posting to // canvas pages, so don't try to set it--no file uploads, at // least not this way. It can be done using multiple servers @@ -114,7 +108,6 @@ class FacebookNoticeForm extends Form * * @return string ID of the form */ - function id() { return 'form_notice'; @@ -125,7 +118,6 @@ class FacebookNoticeForm extends Form * * @return string class of the form */ - function formClass() { return 'form_notice'; @@ -136,7 +128,6 @@ class FacebookNoticeForm extends Form * * @return string URL of the action */ - function action() { return $this->post_action; @@ -149,7 +140,8 @@ class FacebookNoticeForm extends Form */ function formLegend() { - $this->out->element('legend', null, _('Send a notice')); + // TRANS: Legend. + $this->out->element('legend', null, _m('Send a notice')); } /** @@ -157,12 +149,12 @@ class FacebookNoticeForm extends Form * * @return void */ - function formData() { if (Event::handle('StartShowNoticeFormData', array($this))) { $this->out->element('label', array('for' => 'notice_data-text'), - sprintf(_('What\'s up, %s?'), $this->user->nickname)); + // TRANS: Field label. + sprintf(_m('What\'s up, %s?'), $this->user->nickname)); // XXX: vary by defined max size $this->out->element('textarea', array('id' => 'notice_data-text', 'cols' => 35, @@ -174,7 +166,7 @@ class FacebookNoticeForm 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('id' => 'notice_text-count'), $contentLimit); $this->out->elementEnd('dl'); @@ -194,13 +186,13 @@ class FacebookNoticeForm extends Form * * @return void */ - function formActions() { $this->out->element('input', array('id' => 'notice_action-submit', 'class' => 'submit', 'name' => 'status_submit', 'type' => 'submit', - 'value' => _('Send'))); + // TRANS: Button text. + 'value' => _m('BUTTON','Send'))); } } diff --git a/plugins/Facebook/facebookremove.php b/plugins/Facebook/facebookremove.php index 09cb333428..b048a435f5 100644 --- a/plugins/Facebook/facebookremove.php +++ b/plugins/Facebook/facebookremove.php @@ -25,7 +25,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; class FacebookremoveAction extends FacebookAction { - function handle($args) { parent::handle($args); @@ -65,5 +64,4 @@ class FacebookremoveAction extends FacebookAction 'unsuccessfully tried to remove a foreign link to Facebook!'); } } - } diff --git a/plugins/Facebook/facebooksettings.php b/plugins/Facebook/facebooksettings.php index f94a346b57..1379b9a9cc 100644 --- a/plugins/Facebook/facebooksettings.php +++ b/plugins/Facebook/facebooksettings.php @@ -25,7 +25,6 @@ require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; class FacebooksettingsAction extends FacebookAction { - function handle($args) { parent::handle($args); @@ -40,7 +39,6 @@ class FacebooksettingsAction extends FacebookAction * * @return void */ - function showContent() { if ($this->arg('save')) { @@ -62,6 +60,7 @@ class FacebooksettingsAction extends FacebookAction if ($result === false) { $this->showForm(_m('There was a problem saving your sync preferences!')); } else { + // TRANS: Confirmation that synchronisation settings have been saved into the system. $this->showForm(_m('Sync preferences saved.'), true); } } @@ -99,16 +98,16 @@ class FacebooksettingsAction extends FacebookAction $this->elementStart('li'); - $this->submit('save', _m('Save')); + // TRANS: Submit button to save synchronisation settings. + $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('form'); - } else { - + // TRANS: %s is the application name. $instructions = sprintf(_m('If you would like %s to automatically update ' . 'your Facebook status with your latest notice, you need ' . 'to give it permission.'), $this->app_name); @@ -127,12 +126,11 @@ class FacebooksettingsAction extends FacebookAction $this->elementEnd('li'); $this->elementEnd('ul'); } - } function title() { + // TRANS: Page title for synchronisation settings. return _m('Sync preferences'); } - } diff --git a/plugins/Facebook/facebookutil.php b/plugins/Facebook/facebookutil.php index 1290fed557..e78856f7c4 100644 --- a/plugins/Facebook/facebookutil.php +++ b/plugins/Facebook/facebookutil.php @@ -45,13 +45,11 @@ function getFacebook() } function isFacebookBound($notice, $flink) { - if (empty($flink)) { return false; } // Avoid a loop - if ($notice->source == 'Facebook') { common_log(LOG_INFO, "Skipping notice $notice->id because its " . 'source is Facebook.'); @@ -59,7 +57,6 @@ function isFacebookBound($notice, $flink) { } // If the user does not want to broadcast to Facebook, move along - if (!($flink->noticesync & FOREIGN_NOTICE_SEND == FOREIGN_NOTICE_SEND)) { common_log(LOG_INFO, "Skipping notice $notice->id " . 'because user has FOREIGN_NOTICE_SEND bit off.'); @@ -68,14 +65,12 @@ function isFacebookBound($notice, $flink) { // If it's not a reply, or if the user WANTS to send @-replies, // then, yeah, it can go to Facebook. - if (!preg_match('/@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) || ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY)) { return true; } return false; - } function facebookBroadcastNotice($notice) @@ -87,16 +82,12 @@ function facebookBroadcastNotice($notice) ); if (isFacebookBound($notice, $flink)) { - // Okay, we're good to go, update the FB status - $fbuid = $flink->foreign_id; $user = $flink->getUser(); try { - // Check permissions - common_debug( 'FacebookPlugin - checking for publish_stream permission for user ' . "$user->nickname ($user->id), Facebook UID: $fbuid" @@ -105,7 +96,6 @@ function facebookBroadcastNotice($notice) // NOTE: $facebook->api_client->users_hasAppPermission('publish_stream', $fbuid) // has been returning bogus results, so we're using FQL to check for // publish_stream permission now - $fql = "SELECT publish_stream FROM permissions WHERE uid = $fbuid"; $result = $facebook->api_client->fql_query($fql); @@ -152,7 +142,6 @@ function facebookBroadcastNotice($notice) } // Post to Facebook - if ($notice->hasAttachments() && $canPublish == 1) { publishStream($notice, $user, $fbuid); } elseif ($canUpdate == 1 || $canPublish == 1) { @@ -165,7 +154,6 @@ function facebookBroadcastNotice($notice) } // Finally, attempt to update the user's profile box - if ($canPublish == 1 || $canUpdate == 1) { updateProfileBox($facebook, $flink, $notice, $user); } @@ -412,7 +400,6 @@ function remove_facebook_app($flink) common_log(LOG_WARNING, $msg); } - } /** @@ -423,7 +410,6 @@ function remove_facebook_app($flink) * * @return boolean success flag */ - function mail_facebook_app_removed($user) { $profile = $user->getProfile(); @@ -447,5 +433,4 @@ function mail_facebook_app_removed($user) common_switch_locale(); return mail_to_user($user, $subject, $body); - } From c932c0fdc14af781853aedea89ada2f10f46ea8f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Sep 2010 17:44:29 +0200 Subject: [PATCH 099/310] Update pot files for plugins. --- plugins/CacheLog/locale/CacheLog.pot | 4 +- plugins/Facebook/locale/Facebook.pot | 300 ++++++--- .../locale/GoogleAnalytics.pot | 4 +- plugins/OStatus/locale/OStatus.pot | 587 +++++++++++++++--- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 4 +- plugins/RSSCloud/locale/RSSCloud.pot | 5 +- .../TwitterBridge/locale/TwitterBridge.pot | 8 +- 7 files changed, 730 insertions(+), 182 deletions(-) diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 4e0e4112b3..fbcd6dd084 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: CacheLogPlugin.php:117 +#: CacheLogPlugin.php:116 msgid "Log reads and writes to the cache." msgstr "" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 09f027c4e9..e6215df01e 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: facebookutil.php:439 +#: facebookutil.php:425 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that we are unable to update your " @@ -35,23 +35,24 @@ msgstr "" msgid "You must be logged into Facebook to use Facebook Connect." msgstr "" -#: FBConnectAuth.php:77 -msgid "There is already a local user linked with this Facebook." +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." msgstr "" -#: FBConnectAuth.php:90 FBConnectSettings.php:167 +#: FBConnectAuth.php:87 FBConnectSettings.php:166 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: FBConnectAuth.php:95 +#: FBConnectAuth.php:92 msgid "You can't register if you don't agree to the license." msgstr "" -#: FBConnectAuth.php:105 -msgid "Something weird happened." +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." msgstr "" -#: FBConnectAuth.php:119 +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your " @@ -59,360 +60,469 @@ msgid "" "with your existing account, if you have one." msgstr "" -#: FBConnectAuth.php:125 +#. TRANS: Page title. +#: FBConnectAuth.php:124 msgid "Facebook Account Setup" msgstr "" +#. TRANS: Legend. #: FBConnectAuth.php:158 msgid "Connection options" msgstr "" -#: FBConnectAuth.php:183 +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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: Legend. +#: FBConnectAuth.php:185 msgid "Create new account" msgstr "" -#: FBConnectAuth.php:185 +#: FBConnectAuth.php:187 msgid "Create a new user with this nickname." msgstr "" -#: FBConnectAuth.php:188 +#. TRANS: Field label. +#: FBConnectAuth.php:191 msgid "New nickname" msgstr "" -#: FBConnectAuth.php:190 +#: FBConnectAuth.php:193 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" -#: FBConnectAuth.php:193 +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" msgid "Create" msgstr "" -#: FBConnectAuth.php:198 +#: FBConnectAuth.php:203 msgid "Connect existing account" msgstr "" -#: FBConnectAuth.php:200 +#: FBConnectAuth.php:205 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" -#: FBConnectAuth.php:203 +#. TRANS: Field label. +#: FBConnectAuth.php:209 msgid "Existing nickname" msgstr "" -#: FBConnectAuth.php:206 facebookaction.php:271 +#: FBConnectAuth.php:212 facebookaction.php:277 msgid "Password" msgstr "" -#: FBConnectAuth.php:209 +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" msgid "Connect" msgstr "" -#: FBConnectAuth.php:225 FBConnectAuth.php:234 +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 msgid "Registration not allowed." msgstr "" -#: FBConnectAuth.php:241 +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 msgid "Not a valid invitation code." msgstr "" -#: FBConnectAuth.php:251 +#: FBConnectAuth.php:261 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -#: FBConnectAuth.php:256 +#: FBConnectAuth.php:266 msgid "Nickname not allowed." msgstr "" -#: FBConnectAuth.php:261 +#: FBConnectAuth.php:271 msgid "Nickname already in use. Try another one." msgstr "" -#: FBConnectAuth.php:279 FBConnectAuth.php:313 FBConnectAuth.php:333 +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:299 +#: FBConnectAuth.php:309 msgid "Invalid username or password." msgstr "" -#: facebooklogin.php:91 facebookaction.php:249 facebookaction.php:275 +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 msgid "Login" msgstr "" -#: facebookhome.php:111 -msgid "Server error - couldn't get user!" +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" msgstr "" -#: facebookhome.php:131 +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 msgid "Incorrect username or password." msgstr "" -#: facebookhome.php:158 -#, php-format -msgid "%s and friends, page %d" -msgstr "" - -#: facebookhome.php:160 +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 #, php-format msgid "%s and friends" msgstr "" -#: facebookhome.php:189 +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 #, php-format msgid "" "If you would like the %s app to automatically update your Facebook status " "with your latest notice, you need to give it permission." msgstr "" -#: facebookhome.php:213 +#: facebookhome.php:210 msgid "Okay, do it!" msgstr "" -#: facebookhome.php:219 +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" msgid "Skip" msgstr "" -#: facebookhome.php:248 facebookaction.php:330 +#: facebookhome.php:244 facebookaction.php:336 msgid "Pagination" msgstr "" -#: facebookhome.php:257 facebookaction.php:339 +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 msgid "After" msgstr "" -#: facebookhome.php:265 facebookaction.php:347 +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 msgid "Before" msgstr "" -#: facebookinvite.php:72 +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 #, php-format -msgid "Thanks for inviting your friends to use %s" +msgid "Thanks for inviting your friends to use %s." msgstr "" -#: facebookinvite.php:74 +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 msgid "Invitations have been sent to the following users:" msgstr "" -#: facebookinvite.php:94 +#: facebookinvite.php:91 #, php-format msgid "You have been invited to %s" msgstr "" -#: facebookinvite.php:103 +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 #, php-format msgid "Invite your friends to use %s" msgstr "" -#: facebookinvite.php:125 +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" +#. TRANS: Page title. #: facebookinvite.php:143 msgid "Send invitations" msgstr "" -#: FacebookPlugin.php:195 FacebookPlugin.php:488 FacebookPlugin.php:510 -#: facebookadminpanel.php:54 +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" msgid "Facebook" msgstr "" -#: FacebookPlugin.php:196 +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 msgid "Facebook integration configuration" msgstr "" -#: FacebookPlugin.php:489 +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 msgid "Login or register using Facebook" msgstr "" -#: FacebookPlugin.php:511 FBConnectSettings.php:56 +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 msgid "Facebook Connect Settings" msgstr "" -#: FacebookPlugin.php:617 +#: FacebookPlugin.php:591 msgid "" -"The Facebook plugin allows you to integrate your StatusNet instance with Facebook and Facebook Connect." +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." msgstr "" #: FBConnectLogin.php:33 msgid "Already logged in." msgstr "" -#: FBConnectLogin.php:41 +#. TRANS: Instructions. +#: FBConnectLogin.php:42 msgid "Login with your Facebook Account" msgstr "" -#: FBConnectLogin.php:55 +#. TRANS: Page title. +#: FBConnectLogin.php:57 msgid "Facebook Login" msgstr "" -#: facebookremove.php:58 +#: facebookremove.php:57 msgid "Couldn't remove Facebook user." msgstr "" +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. #: facebookaction.php:171 msgid "Home" msgstr "" -#: facebookaction.php:179 +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" msgid "Invite" msgstr "" -#: facebookaction.php:188 +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" msgid "Settings" msgstr "" -#: facebookaction.php:227 +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "" + +#: facebookaction.php:233 #, php-format msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet?" msgstr "" -#: facebookaction.php:229 +#: facebookaction.php:235 msgid " a new account." msgstr "" -#: facebookaction.php:236 +#: facebookaction.php:242 msgid "Register" msgstr "" -#: facebookaction.php:268 +#: facebookaction.php:274 msgid "Nickname" msgstr "" -#: facebookaction.php:281 +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "" + +#: facebookaction.php:288 msgid "Lost or forgotten password?" msgstr "" -#: facebookaction.php:365 +#: facebookaction.php:370 msgid "No notice content!" msgstr "" -#: facebookaction.php:371 +#: facebookaction.php:377 #, php-format msgid "That's too long. Max notice size is %d chars." msgstr "" -#: facebookaction.php:430 +#: facebookaction.php:431 msgid "Notices" msgstr "" -#: facebookadminpanel.php:65 +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "" + +#: facebookadminpanel.php:62 msgid "Facebook integration settings" msgstr "" -#: facebookadminpanel.php:129 +#: facebookadminpanel.php:123 msgid "Invalid Facebook API key. Max length is 255 characters." msgstr "" -#: facebookadminpanel.php:135 +#: facebookadminpanel.php:129 msgid "Invalid Facebook API secret. Max length is 255 characters." msgstr "" -#: facebookadminpanel.php:188 +#: facebookadminpanel.php:178 msgid "Facebook application settings" msgstr "" -#: facebookadminpanel.php:194 +#: facebookadminpanel.php:184 msgid "API key" msgstr "" -#: facebookadminpanel.php:195 +#: facebookadminpanel.php:185 msgid "API key provided by Facebook" msgstr "" -#: facebookadminpanel.php:203 +#: facebookadminpanel.php:193 msgid "Secret" msgstr "" -#: facebookadminpanel.php:204 +#: facebookadminpanel.php:194 msgid "API secret provided by Facebook" msgstr "" -#: FBConnectSettings.php:67 +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 msgid "Manage how your account connects to Facebook" msgstr "" -#: FBConnectSettings.php:92 +#: FBConnectSettings.php:90 msgid "There is no Facebook user connected to this account." msgstr "" -#: FBConnectSettings.php:100 +#: FBConnectSettings.php:98 msgid "Connected Facebook user" msgstr "" -#: FBConnectSettings.php:119 +#. TRANS: Legend. +#: FBConnectSettings.php:118 msgid "Disconnect my account from Facebook" msgstr "" #. TRANS: Followed by a link containing text "set a password". -#: FBConnectSettings.php:126 +#: FBConnectSettings.php:125 msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please " msgstr "" #. TRANS: Preceded by "Please " and followed by " first." -#: FBConnectSettings.php:131 +#: FBConnectSettings.php:130 msgid "set a password" msgstr "" #. TRANS: Preceded by "Please set a password". -#: FBConnectSettings.php:133 +#: FBConnectSettings.php:132 msgid " first." msgstr "" +#. TRANS: Submit button. #: FBConnectSettings.php:145 +msgctxt "BUTTON" msgid "Disconnect" msgstr "" -#: FBConnectSettings.php:181 +#: FBConnectSettings.php:180 msgid "Couldn't delete link to Facebook." msgstr "" -#: FBConnectSettings.php:197 +#: FBConnectSettings.php:196 msgid "You have disconnected from Facebook." msgstr "" -#: FBConnectSettings.php:200 +#: FBConnectSettings.php:199 msgid "Not sure what you're trying to do." msgstr "" -#: facebooksettings.php:63 +#: facebooksettings.php:61 msgid "There was a problem saving your sync preferences!" msgstr "" -#: facebooksettings.php:65 +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 msgid "Sync preferences saved." msgstr "" -#: facebooksettings.php:88 +#: facebooksettings.php:87 msgid "Automatically update my Facebook status with my notices." msgstr "" -#: facebooksettings.php:95 +#: facebooksettings.php:94 msgid "Send \"@\" replies to Facebook." msgstr "" +#. TRANS: Submit button to save synchronisation settings. #: facebooksettings.php:102 +msgctxt "BUTTON" msgid "Save" msgstr "" -#: facebooksettings.php:112 +#. TRANS: %s is the application name. +#: facebooksettings.php:111 #, php-format msgid "" "If you would like %s to automatically update your Facebook status with your " "latest notice, you need to give it permission." msgstr "" -#: facebooksettings.php:125 +#: facebooksettings.php:124 #, php-format msgid "Allow %s to update my Facebook status" msgstr "" -#: facebooksettings.php:135 +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 msgid "Sync preferences" msgstr "" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index 4006ccf1f5..111eee88ed 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: GoogleAnalyticsPlugin.php:81 +#: GoogleAnalyticsPlugin.php:80 msgid "" "Use Google Analytics to " "track web access." diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index b3a9074a29..882e8d3080 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,309 +16,746 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: OStatusPlugin.php:226 OStatusPlugin.php:951 actions/ostatusinit.php:99 +#. 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:227 OStatusPlugin.php:958 msgid "Subscribe" msgstr "" -#: OStatusPlugin.php:244 OStatusPlugin.php:663 actions/ostatussub.php:105 -#: actions/ostatusinit.php:96 +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:667 actions/ostatussub.php:107 msgid "Join" msgstr "" -#: OStatusPlugin.php:456 +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 #, php-format msgid "Sent from %s via OStatus" msgstr "" -#: OStatusPlugin.php:527 +#. TRANS: Exception. +#: OStatusPlugin.php:531 msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:647 +#: OStatusPlugin.php:570 +msgid "Follow" +msgstr "" + +#. TRANS: Success message for subscribe to user attempt through OStatus. +#. TRANS: %1$s is the subscriber name, %2$s is the subscribed user's name. +#: OStatusPlugin.php:573 +#, php-format +msgid "%1$s is now following %2$s." +msgstr "" + +#: OStatusPlugin.php:620 +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:623 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "" + +#: OStatusPlugin.php:651 msgid "Could not set up remote group membership." msgstr "" -#: OStatusPlugin.php:674 +#. TRANS: Exception. +#: OStatusPlugin.php:679 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:714 +#: OStatusPlugin.php:719 msgid "Leave" msgstr "" -#: OStatusPlugin.php:880 +#: OStatusPlugin.php:760 +msgid "Favor" +msgstr "" + +#. TRANS: Success message for adding a favorite notice through OStatus. +#. TRANS: %1$s is the favoring user's name, %2$s is URI to the favored notice. +#: OStatusPlugin.php:763 +#, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" + +#: OStatusPlugin.php:806 +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:809 +#, 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:885 msgid "Remote" msgstr "" -#: OStatusPlugin.php:919 +#. TRANS: Title for activity. +#: OStatusPlugin.php:925 msgid "Profile update" msgstr "" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:922 +#: OStatusPlugin.php:928 #, php-format msgid "%s has updated their profile page." msgstr "" -#: OStatusPlugin.php:966 +#. TRANS: Plugin description. +#: OStatusPlugin.php:973 msgid "" "Follow people across social networks that implement OStatus." msgstr "" -#: classes/Ostatus_profile.php:592 +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "" + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "" + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "" + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "" + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "" + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 msgid "Show more" msgstr "" -#: classes/Ostatus_profile.php:1034 +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "" + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "" + +#: classes/Ostatus_profile.php:1035 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: classes/Ostatus_profile.php:1044 +#: classes/Ostatus_profile.php:1045 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -#: classes/Ostatus_profile.php:1052 +#: classes/Ostatus_profile.php:1053 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" -#. TRANS: POST is a HTTP command. It should not be translated. +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "" + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "" + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "" + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #: lib/salmonaction.php:42 msgid "This method requires a POST." msgstr "" -#: lib/salmonaction.php:46 +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 msgid "Salmon requires \"application/magic-envelope+xml\"." msgstr "" -#: lib/salmonaction.php:55 +#. TRANS: Client error. +#: lib/salmonaction.php:57 msgid "Salmon signature verification failed." msgstr "" -#: lib/salmonaction.php:66 +#. TRANS: Client error. +#: lib/salmonaction.php:69 msgid "Salmon post must be an Atom entry." msgstr "" -#: lib/salmonaction.php:114 +#. TRANS: Client exception. +#: lib/salmonaction.php:118 msgid "Unrecognized activity type." msgstr "" -#: lib/salmonaction.php:122 +#. TRANS: Client exception. +#: lib/salmonaction.php:127 msgid "This target doesn't understand posts." msgstr "" -#: lib/salmonaction.php:127 +#. TRANS: Client exception. +#: lib/salmonaction.php:133 msgid "This target doesn't understand follows." msgstr "" -#: lib/salmonaction.php:132 +#. TRANS: Client exception. +#: lib/salmonaction.php:139 msgid "This target doesn't understand unfollows." msgstr "" -#: lib/salmonaction.php:137 +#. TRANS: Client exception. +#: lib/salmonaction.php:145 msgid "This target doesn't understand favorites." msgstr "" -#: lib/salmonaction.php:142 +#. TRANS: Client exception. +#: lib/salmonaction.php:151 msgid "This target doesn't understand unfavorites." msgstr "" -#: lib/salmonaction.php:147 +#. TRANS: Client exception. +#: lib/salmonaction.php:157 msgid "This target doesn't understand share events." msgstr "" -#: lib/salmonaction.php:152 +#. TRANS: Client exception. +#: lib/salmonaction.php:163 msgid "This target doesn't understand joins." msgstr "" -#: lib/salmonaction.php:157 +#. TRANS: Client exception. +#: lib/salmonaction.php:169 msgid "This target doesn't understand leave events." msgstr "" +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "" + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "" + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "" + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "" + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "" + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "" + #: tests/gettext-speedtest.php:57 msgid "Feeds" msgstr "" -#: actions/ostatusgroup.php:75 +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "" + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "" + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "" + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "" + +#: actions/userxrd.php:47 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "" + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "" + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "" + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "" + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 msgid "Join group" msgstr "" -#: actions/ostatusgroup.php:77 +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" -#: actions/ostatusgroup.php:81 actions/ostatussub.php:71 +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" msgid "Continue" msgstr "" -#: actions/ostatusgroup.php:100 +#: actions/ostatusgroup.php:103 msgid "You are already a member of this group." msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:135 +#: actions/ostatusgroup.php:138 msgid "Already a member!" msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:146 +#: actions/ostatusgroup.php:149 msgid "Remote group join failed!" msgstr "" #. TRANS: OStatus remote group subscription dialog error. -#: actions/ostatusgroup.php:150 +#: actions/ostatusgroup.php:153 msgid "Remote group join aborted!" msgstr "" #. TRANS: Page title for OStatus remote group join form -#: actions/ostatusgroup.php:163 +#: actions/ostatusgroup.php:165 msgid "Confirm joining remote group" msgstr "" -#: actions/ostatusgroup.php:174 +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" msgstr "" -#: actions/groupsalmon.php:51 +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "" + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 msgid "Can't accept remote posts for a remote group." msgstr "" -#: actions/groupsalmon.php:124 +#. TRANS: Client error. +#: actions/groupsalmon.php:127 msgid "Can't read profile to set up group membership." msgstr "" -#: actions/groupsalmon.php:127 actions/groupsalmon.php:170 +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 msgid "Groups can't join groups." msgstr "" -#: actions/groupsalmon.php:154 +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 #, php-format msgid "Could not join remote user %1$s to group %2$s." msgstr "" -#: actions/groupsalmon.php:167 +#: actions/groupsalmon.php:171 msgid "Can't read profile to cancel group membership." msgstr "" -#: actions/groupsalmon.php:183 +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 #, php-format msgid "Could not remove remote user %1$s from group %2$s." msgstr "" -#: actions/ostatussub.php:65 +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 msgid "Subscribe to" msgstr "" -#: actions/ostatussub.php:67 +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" msgstr "" -#: actions/ostatussub.php:106 +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" msgid "Join this group" msgstr "" -#. TRANS: Page title for OStatus remote subscription form -#: actions/ostatussub.php:108 actions/ostatussub.php:400 +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" msgid "Confirm" msgstr "" -#: actions/ostatussub.php:109 +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 msgid "Subscribe to this user" msgstr "" -#: actions/ostatussub.php:130 +#: actions/ostatussub.php:136 msgid "You are already subscribed to this user." msgstr "" -#: actions/ostatussub.php:247 actions/ostatussub.php:253 -#: actions/ostatussub.php:272 +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 msgid "" "Sorry, we could not reach that address. Please make sure that the OStatus " "address is like nickname@example.com or http://example.net/nickname." msgstr "" -#: actions/ostatussub.php:256 actions/ostatussub.php:259 -#: actions/ostatussub.php:262 actions/ostatussub.php:265 -#: actions/ostatussub.php:268 +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." msgstr "" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:301 +#: actions/ostatussub.php:315 msgid "Already subscribed!" msgstr "" #. TRANS: OStatus remote subscription dialog error. -#: actions/ostatussub.php:306 +#: actions/ostatussub.php:320 msgid "Remote subscription failed!" msgstr "" -#: actions/ostatussub.php:380 actions/ostatusinit.php:81 +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 msgid "Subscribe to user" msgstr "" -#: actions/ostatussub.php:411 +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 msgid "" "You can subscribe to users from other supported sites. Paste their address " "or profile URI below:" msgstr "" +#. TRANS: Client error. #: actions/ostatusinit.php:41 msgid "You can use the local subscription!" msgstr "" -#: actions/ostatusinit.php:63 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/ostatusinit.php:95 +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 #, php-format msgid "Join group %s" msgstr "" -#: actions/ostatusinit.php:98 +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 #, php-format msgid "Subscribe to %s" msgstr "" -#: actions/ostatusinit.php:111 +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 msgid "User nickname" msgstr "" -#: actions/ostatusinit.php:112 +#: actions/ostatusinit.php:118 msgid "Nickname of the user you want to follow." msgstr "" -#: actions/ostatusinit.php:116 +#. TRANS: Field label. +#: actions/ostatusinit.php:123 msgid "Profile Account" msgstr "" -#: actions/ostatusinit.php:117 +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 msgid "Your account id (e.g. user@identi.ca)." msgstr "" -#: actions/ostatusinit.php:138 +#. TRANS: Client error. +#: actions/ostatusinit.php:147 msgid "Must provide a remote profile." msgstr "" -#: actions/ostatusinit.php:149 +#. TRANS: Client error. +#: actions/ostatusinit.php:159 msgid "Couldn't look up OStatus account profile." msgstr "" -#: actions/ostatusinit.php:161 +#. TRANS: Client error. +#: actions/ostatusinit.php:172 msgid "Couldn't confirm remote profile address." msgstr "" -#: actions/ostatusinit.php:202 +#. TRANS: Page title. +#: actions/ostatusinit.php:217 msgid "OStatus Connect" msgstr "" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "" + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "" + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 2578147a2a..2afaaaa2dc 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: PiwikAnalyticsPlugin.php:108 +#: PiwikAnalyticsPlugin.php:105 msgid "" "Use Piwik Open Source web analytics " "software." diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 56de24825e..c91f21f336 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,8 @@ msgstr "" #: RSSCloudRequestNotify.php:161 msgid "" -"Thanks for the subscription. When the feed(s) update(s), you will be notified." +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." msgstr "" #: LoggingAggregator.php:93 diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 625ab83768..5a75bc5f80 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-19 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: twitter.php:353 +#: twitter.php:350 msgid "Your Twitter bridge has been disabled." msgstr "" -#: twitter.php:357 +#: twitter.php:354 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that your link to Twitter has been " @@ -33,7 +33,7 @@ msgid "" "\t%2$s\n" "\n" "Regards,\n" -"%3$s\n" +"%3$s" msgstr "" #: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 From 667cfcc84a98a3552d604b359cbd1093e254d842 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:36:09 +0200 Subject: [PATCH 100/310] * add onPluginVersion() * remove superfluous whitespace. --- plugins/BlankAd/BlankAdPlugin.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/plugins/BlankAd/BlankAdPlugin.php b/plugins/BlankAd/BlankAdPlugin.php index 0e2719aed0..d7182ebc2c 100644 --- a/plugins/BlankAd/BlankAdPlugin.php +++ b/plugins/BlankAd/BlankAdPlugin.php @@ -51,7 +51,6 @@ if (!defined('STATUSNET')) { * * @seeAlso Location */ - class BlankAdPlugin extends UAPPlugin { /** @@ -61,7 +60,6 @@ class BlankAdPlugin extends UAPPlugin * * @return void */ - protected function showMediumRectangle($action) { $action->element('img', @@ -78,7 +76,6 @@ class BlankAdPlugin extends UAPPlugin * * @return void */ - protected function showRectangle($action) { $action->element('img', @@ -95,7 +92,6 @@ class BlankAdPlugin extends UAPPlugin * * @return void */ - protected function showWideSkyscraper($action) { $action->element('img', @@ -112,7 +108,6 @@ class BlankAdPlugin extends UAPPlugin * * @return void */ - protected function showLeaderboard($action) { $action->element('img', @@ -121,4 +116,15 @@ class BlankAdPlugin extends UAPPlugin 'src' => common_path('plugins/BlankAd/redpixel.png')), ''); } -} \ No newline at end of file + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'BlankAdPlugin', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:BlankAdPlugin', + 'rawdescription' => + _m('Plugin for testing ad layout')); + return true; + } +} From a4a39a2cc36df617f5e076f38034d672a1208cd6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:37:43 +0200 Subject: [PATCH 101/310] FIx inconsistencies in onPluginVersion() --- plugins/BlankAd/BlankAdPlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/BlankAd/BlankAdPlugin.php b/plugins/BlankAd/BlankAdPlugin.php index d7182ebc2c..49243aeea9 100644 --- a/plugins/BlankAd/BlankAdPlugin.php +++ b/plugins/BlankAd/BlankAdPlugin.php @@ -119,12 +119,12 @@ class BlankAdPlugin extends UAPPlugin function onPluginVersion(&$versions) { - $versions[] = array('name' => 'BlankAdPlugin', + $versions[] = array('name' => 'BlankAd', 'version' => STATUSNET_VERSION, 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:BlankAdPlugin', 'rawdescription' => - _m('Plugin for testing ad layout')); + _m('Plugin for testing ad layout.')); return true; } } From 7f3731e2badc9db38e75e7a145dbccaf533fd59a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:38:00 +0200 Subject: [PATCH 102/310] Add onPluginVersion() --- plugins/Adsense/AdsensePlugin.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/Adsense/AdsensePlugin.php b/plugins/Adsense/AdsensePlugin.php index c02430a583..3d733e1509 100644 --- a/plugins/Adsense/AdsensePlugin.php +++ b/plugins/Adsense/AdsensePlugin.php @@ -198,4 +198,15 @@ class AdsensePlugin extends UAPPlugin } return true; } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'BlankAdPlugin', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Adsense', + 'rawdescription' => + _m('Plugin to add Google Adsense to StatusNet sites.')); + return true; + } } From 2236e2eaf0c20442df49090725dea4ec98eb69bd Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:38:36 +0200 Subject: [PATCH 103/310] Remove superfluous whitespace. --- plugins/APC/APCPlugin.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/APC/APCPlugin.php b/plugins/APC/APCPlugin.php index 666f64b147..0069779004 100644 --- a/plugins/APC/APCPlugin.php +++ b/plugins/APC/APCPlugin.php @@ -116,4 +116,3 @@ class APCPlugin extends Plugin return true; } } - From 3005f26aa23cf8fb8dca0a5ffed284e054fb77b9 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:42:56 +0200 Subject: [PATCH 104/310] Add onPluginVersion() --- plugins/BlogspamNet/BlogspamNetPlugin.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/plugins/BlogspamNet/BlogspamNetPlugin.php b/plugins/BlogspamNet/BlogspamNetPlugin.php index d52e6006ac..51a86b4f36 100644 --- a/plugins/BlogspamNet/BlogspamNetPlugin.php +++ b/plugins/BlogspamNet/BlogspamNetPlugin.php @@ -53,7 +53,6 @@ define('BLOGSPAMNETPLUGIN_VERSION', '0.1'); * * @see Event */ - class BlogspamNetPlugin extends Plugin { var $baseUrl = 'http://test.blogspam.net:8888/'; @@ -142,4 +141,15 @@ class BlogspamNetPlugin extends Plugin { return 'BlogspamNetPlugin/'.BLOGSPAMNETPLUGIN_VERSION . ' StatusNet/' . STATUSNET_VERSION; } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'BlogspamNet', + 'version' => BLOGSPAMNETPLUGIN_VERSION, + 'author' => 'Evan Prodromou, Brion Vibber', + 'homepage' => 'http://status.net/wiki/Plugin:BlogspamNet', + 'rawdescription' => + _m('Plugin to check submitted notices with blogspam.net.')); + return true; + } } From f975c1732936c3380048769bdf7ec55c24086856 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:45:43 +0200 Subject: [PATCH 105/310] Add onPluginVersion() --- plugins/Comet/CometPlugin.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/plugins/Comet/CometPlugin.php b/plugins/Comet/CometPlugin.php index 29cb3004bf..70b324b5c2 100644 --- a/plugins/Comet/CometPlugin.php +++ b/plugins/Comet/CometPlugin.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.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 CometPlugin extends RealtimePlugin { public $server = null; @@ -104,4 +103,15 @@ class CometPlugin extends RealtimePlugin } return '/' . implode('/', $path); } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Comet', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Comet', + 'rawdescription' => + _m('Plugin to do "real time" updates using Comet/Bayeux.')); + return true; + } } From dfa164069d2dd69c49d1d7eb4182bfffd86329d4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:46:01 +0200 Subject: [PATCH 106/310] Superfluous whitespace removed. --- plugins/Blacklist/BlacklistPlugin.php | 1 - plugins/ClientSideShorten/shorten.php | 1 - 2 files changed, 2 deletions(-) diff --git a/plugins/Blacklist/BlacklistPlugin.php b/plugins/Blacklist/BlacklistPlugin.php index bc8b82492d..10f89ef723 100644 --- a/plugins/Blacklist/BlacklistPlugin.php +++ b/plugins/Blacklist/BlacklistPlugin.php @@ -348,7 +348,6 @@ class BlacklistPlugin extends Plugin * * @return boolean hook value */ - function onAdminPanelCheck($name, &$isOK) { if ($name == 'blacklist') { diff --git a/plugins/ClientSideShorten/shorten.php b/plugins/ClientSideShorten/shorten.php index 8c2fc1b3cd..53c2cf5d1a 100644 --- a/plugins/ClientSideShorten/shorten.php +++ b/plugins/ClientSideShorten/shorten.php @@ -41,7 +41,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 ShortenAction extends Action { private $text; From 96794672012bcbfa9a2e5613f8d176846ec7d1b3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 19:59:13 +0200 Subject: [PATCH 107/310] Add onPluginVersion() --- plugins/DiskCache/DiskCachePlugin.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/plugins/DiskCache/DiskCachePlugin.php b/plugins/DiskCache/DiskCachePlugin.php index b709ea3b31..47d4b153cf 100644 --- a/plugins/DiskCache/DiskCachePlugin.php +++ b/plugins/DiskCache/DiskCachePlugin.php @@ -164,5 +164,15 @@ class DiskCachePlugin extends Plugin Event::handle('EndCacheDelete', array($key)); return false; } -} + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'DiskCache', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:DiskCache', + 'rawdescription' => + _m('Plugin to implement cache interface with disk files.')); + return true; + } +} From b4887a075696b022e699da393613a8d39741f16b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 20:00:33 +0200 Subject: [PATCH 108/310] Add FIXME for bad message implementation. --- plugins/Disqus/DisqusPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index c07eaaabdd..681be19dc9 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -68,7 +68,6 @@ if (!defined('STATUSNET')) { * * @see Event */ - class DisqusPlugin extends Plugin { function onEndShowContentBlock($action) @@ -106,6 +105,7 @@ ENDOFSCRIPT; $action->elementStart('div', $attrs); $action->elementStart('noscript'); + // @todo FIXME: No i18n yet, because of bad implementation. Should be one string. $action->raw('Please enable JavaScript to view the '); $noscriptUrl = 'http://disqus.com/?ref_noscript=' . $this->shortname; $action->element('a', array('href' => $noscriptUrl), 'comments powered by Disqus.'); From c0bc3b3042b5964c958d93c53270511674ac95c9 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 20:39:28 +0200 Subject: [PATCH 109/310] Superfluous whitespace removed. --- plugins/Echo/EchoPlugin.php | 1 - plugins/EmailAuthentication/EmailAuthenticationPlugin.php | 2 -- 2 files changed, 3 deletions(-) diff --git a/plugins/Echo/EchoPlugin.php b/plugins/Echo/EchoPlugin.php index 7b51866ebd..cd8d8c0e73 100644 --- a/plugins/Echo/EchoPlugin.php +++ b/plugins/Echo/EchoPlugin.php @@ -65,7 +65,6 @@ if (!defined('STATUSNET')) { * * @see Event */ - class EchoPlugin extends Plugin { // NOTE: The Echo documentation says that this script will change on diff --git a/plugins/EmailAuthentication/EmailAuthenticationPlugin.php b/plugins/EmailAuthentication/EmailAuthenticationPlugin.php index 4c018537b8..689d6231d1 100644 --- a/plugins/EmailAuthentication/EmailAuthenticationPlugin.php +++ b/plugins/EmailAuthentication/EmailAuthenticationPlugin.php @@ -34,7 +34,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { class EmailAuthenticationPlugin extends Plugin { //---interface implementation---// - function onStartCheckPassword($nickname, $password, &$authenticatedUser) { if(strpos($nickname, '@')) @@ -62,4 +61,3 @@ class EmailAuthenticationPlugin extends Plugin return true; } } - From e0952bf56bea07f0a1ef1ec26803594cd7f97fdd Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 20:40:55 +0200 Subject: [PATCH 110/310] Superfluous whitespace removed. --- plugins/Enjit/enjitqueuehandler.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/Enjit/enjitqueuehandler.php b/plugins/Enjit/enjitqueuehandler.php index 14085cc5e3..56fc396d17 100644 --- a/plugins/Enjit/enjitqueuehandler.php +++ b/plugins/Enjit/enjitqueuehandler.php @@ -80,5 +80,4 @@ class EnjitQueueHandler extends QueueHandler return $response->isOk(); } - } From 2475e25e7850d203e90c5f188e80580d41e60a48 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 11:49:39 -0700 Subject: [PATCH 111/310] Update DirectionDetector plugin to 0.2.0 from everplays --- .../DirectionDetectorPlugin.php | 85 ++++++++++++------- .../jquery.DirectionDetector.js | 61 +++++++++++++ 2 files changed, 113 insertions(+), 33 deletions(-) create mode 100644 plugins/DirectionDetector/jquery.DirectionDetector.js diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index b1362b166f..2a85725e39 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -1,4 +1,5 @@ + * @author Behrooz shabani (everplays) - * @copyright 2009-2010 Behrooz shabani * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * */ if (!defined('STATUSNET')) { - exit(1); + exit(1); } -define('DIRECTIONDETECTORPLUGIN_VERSION', '0.1.2'); +define('DIRECTIONDETECTORPLUGIN_VERSION', '0.2.0'); class DirectionDetectorPlugin extends Plugin { /** * SN plugin API, here we will make changes on rendered column - * - * @param object $notice notice is going to be saved */ public function onStartNoticeSave(&$notice){ if(!preg_match('//', $notice->rendered) && self::isRTL($notice->content)) @@ -44,32 +43,48 @@ class DirectionDetectorPlugin extends Plugin { /** * SN plugin API, here we will add css needed for modifiyed rendered - * - * @param */ - public function onEndShowStatusNetStyles($xml){ - $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;width:490px;} .notice .author {float:left}'); + public function onEndShowStatusNetStyles(&$xml){ + $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;} .notice .author {float:left}'); } + /** - * checks that passed string is a RTL language or not - * - * @param string $str String to be checked + * is passed string a rtl content or not */ - public static function isRTL($str){ - self::getClearText($str); + public static function isRTL($content){ + self::getClearText($content); + $words = explode(' ', $content); + $rtl = 0; + foreach($words as &$str) + if(self::startsWithRTLCharacter($str)) + $rtl++; + else + $rtl--; + if($rtl>0)// if number of rtl words is more than ltr words so it's a rtl content + return true; + elseif($rtl==0) + // check first word again + return self::startsWithRTLCharacter($words[0]); + return false; + } + + /** + * checks that passed string starts with a RTL language or not + */ + public static function startsWithRTLCharacter(&$str){ if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) $cc = $cc[0]; else return false; - if($cc>=1536 && $cc<=1791) // Arabic, Persian, Urdu, Kurdish, ... + if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... return true; - if($cc>=65136 && $cc<=65279) // Arabic peresent 2 + if($cc>=65136 && $cc<=65279) // arabic peresent 2 return true; - if($cc>=64336 && $cc<=65023) // Arabic peresent 1 + if($cc>=64336 && $cc<=65023) // arabic peresent 1 return true; - if($cc>=1424 && $cc<=1535) // Hebrew + if($cc>=1424 && $cc<=1535) // hebrew return true; - if($cc>=64256 && $cc<=64335) // Hebrew peresent + if($cc>=64256 && $cc<=64335) // hebrew peresent return true; if($cc>=1792 && $cc<=1871) // Syriac return true; @@ -83,25 +98,30 @@ class DirectionDetectorPlugin extends Plugin { } /** - * clears text from replies, tags, groups, repeats & whitespaces - * - * @param string &$str string to be cleared + * clears text from replys, tags, groups, reteets & whitespaces */ private static function getClearText(&$str){ $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces } + + /** + * adds javascript to do same thing on input textarea + */ + function onEndShowScripts($action){ + if (common_logged_in()) { + $action->script('plugins/DirectionDetector/jquery.DirectionDetector.js'); + } + } /** - * Takes a UTF-8 string and returns an array of ints representing the - * Unicode characters. Astral planes are supported i.e. the ints in the - * output can be > 0xFFFF. Occurrances of the BOM are ignored. Surrogates - * are not allowed. ### modified ### returns first character code - * - * Returns false if the input string isn't a valid UTF-8 octet sequence. + * Takes an UTF-8 string and returns an array of ints representing the + * Unicode characters. Astral planes are supported ie. the ints in the + * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates + * are not allowed. */ - private static function utf8ToUnicode($str){ + private static function utf8ToUnicode(&$str){ $mState = 0; // cached expected number of octets after the current octet // until the beginning of the next UTF8 character sequence $mUcs4 = 0; // cached Unicode character @@ -199,7 +219,7 @@ class DirectionDetectorPlugin extends Plugin { } } else { /* ((0xC0 & (*in) != 0x80) && (mState != 0)) - * + * * Incomplete multi-octet sequence. */ return false; @@ -216,9 +236,8 @@ class DirectionDetectorPlugin extends Plugin { $versions[] = array( 'name' => 'Direction detector', 'version' => DIRECTIONDETECTORPLUGIN_VERSION, - 'author' => 'Behrooz Shabani', - // TRANS: Direction detector plugin description. - 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') + 'author' => 'behrooz shabani', + 'rawdescription' => _m('shows notices with right-to-left content in correct direction.') ); return true; } diff --git a/plugins/DirectionDetector/jquery.DirectionDetector.js b/plugins/DirectionDetector/jquery.DirectionDetector.js new file mode 100644 index 0000000000..6808bcabd8 --- /dev/null +++ b/plugins/DirectionDetector/jquery.DirectionDetector.js @@ -0,0 +1,61 @@ + +/** + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * @category Plugin + * @package StatusNet + * @author Behrooz shabani (everplays) - + * @copyright 2009-2010 Behrooz shabani + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * + */ + +(function($){ + $.fn.isRTL = function(str){ + if(typeof str != typeof "" || str.length<1) + return false; + var cc = str.charCodeAt(0); + if(cc>=1536 && cc<=1791) // arabic, persian, ... + return true; + if(cc>=65136 && cc<=65279) // arabic peresent 2 + return true; + if(cc>=64336 && cc<=65023) // arabic peresent 1 + return true; + if(cc>=1424 && cc<=1535) // hebrew + return true; + if(cc>=64256 && cc<=64335) // hebrew peresent + return true; + if(cc>=1792 && cc<=1871) // Syriac + return true; + if(cc>=1920 && cc<=1983) // Thaana + return true; + if(cc>=1984 && cc<=2047) // NKo + return true; + if(cc>=11568 && cc<=11647) // Tifinagh + return true; + return false; + }; + $(document).ready(function(){ + var tArea = $("#notice_data-text"); + var tCleaner = new RegExp('@[^ ]+|![^ ]+|#[^ ]+|^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]+', 'g') + tArea.keyup(function(){ + var cleaned = tArea.val().replace(tCleaner, '').replace(/^[ ]+/, ''); + if($().isRTL(cleaned)) + tArea.css('direction', 'rtl'); + else + tArea.css('direction', 'ltr'); + }); + }); +})(jQuery); From 500f8e5a8727bc09e0b935813482881a468af10b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 20:54:30 +0200 Subject: [PATCH 112/310] * i18n/L10n updates. * remove superfluous whitespace. --- plugins/FirePHP/FirePHPPlugin.php | 1 - plugins/GeoURL/GeoURLPlugin.php | 3 -- plugins/Geonames/GeonamesPlugin.php | 7 ---- plugins/Gravatar/GravatarPlugin.php | 1 - plugins/Imap/imapmanager.php | 2 +- plugins/LdapCommon/LdapCommon.php | 22 +++++------- plugins/LdapCommon/MemcacheSchemaCache.php | 42 +++++++++++----------- plugins/LilUrl/LilUrlPlugin.php | 3 +- plugins/Linkback/LinkbackPlugin.php | 2 -- plugins/Memcache/MemcachePlugin.php | 7 ---- 10 files changed, 32 insertions(+), 58 deletions(-) diff --git a/plugins/FirePHP/FirePHPPlugin.php b/plugins/FirePHP/FirePHPPlugin.php index d984ec1af4..27f760c81c 100644 --- a/plugins/FirePHP/FirePHPPlugin.php +++ b/plugins/FirePHP/FirePHPPlugin.php @@ -69,4 +69,3 @@ class FirePHPPlugin extends Plugin return true; } } - diff --git a/plugins/GeoURL/GeoURLPlugin.php b/plugins/GeoURL/GeoURLPlugin.php index 01178f39c0..91da81a5aa 100644 --- a/plugins/GeoURL/GeoURLPlugin.php +++ b/plugins/GeoURL/GeoURLPlugin.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * * @seeAlso Location */ - class GeoURLPlugin extends Plugin { public $ping = 'http://geourl.org/ping/'; @@ -58,7 +57,6 @@ class GeoURLPlugin extends Plugin * * @return boolean event handler flag */ - function onEndShowHeadElements($action) { $name = $action->trimmed('action'); @@ -94,7 +92,6 @@ class GeoURLPlugin extends Plugin * * @return boolean event handler flag */ - function onHandleQueuedNotice(&$notice) { if ($notice->is_local == 1) { diff --git a/plugins/Geonames/GeonamesPlugin.php b/plugins/Geonames/GeonamesPlugin.php index 3815a31fa6..310641ce60 100644 --- a/plugins/Geonames/GeonamesPlugin.php +++ b/plugins/Geonames/GeonamesPlugin.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * * @seeAlso Location */ - class GeonamesPlugin extends Plugin { const LOCATION_NS = 1; @@ -71,7 +70,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue (results in $location) */ - function onLocationFromName($name, $language, &$location) { $loc = $this->getCache(array('name' => $name, @@ -129,7 +127,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue (results in $location) */ - function onLocationFromId($id, $ns, $language, &$location) { if ($ns != self::LOCATION_NS) { @@ -198,7 +195,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue (results in $location) */ - function onLocationFromLatLon($lat, $lon, $language, &$location) { // Make sure they're canonical @@ -276,7 +272,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue */ - function onLocationNameLanguage($location, $language, &$name) { if ($location->location_ns != self::LOCATION_NS) { @@ -344,7 +339,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue */ - function onLocationUrl($location, &$url) { if ($location->location_ns != self::LOCATION_NS) { @@ -368,7 +362,6 @@ class GeonamesPlugin extends Plugin * * @return boolean whether to continue */ - function onLocationRdfUrl($location, &$url) { if ($location->location_ns != self::LOCATION_NS) { diff --git a/plugins/Gravatar/GravatarPlugin.php b/plugins/Gravatar/GravatarPlugin.php index e4782cb9fb..dd8ff72176 100644 --- a/plugins/Gravatar/GravatarPlugin.php +++ b/plugins/Gravatar/GravatarPlugin.php @@ -132,7 +132,6 @@ class GravatarPlugin extends Plugin return false; } - function gravatar_save() { $cur = common_current_user(); diff --git a/plugins/Imap/imapmanager.php b/plugins/Imap/imapmanager.php index 68b8b7d874..e2f8c6d543 100644 --- a/plugins/Imap/imapmanager.php +++ b/plugins/Imap/imapmanager.php @@ -44,7 +44,7 @@ class ImapManager extends IoManager */ public static function get() { - throw new Exception('ImapManager should be created using it\'s constructor, not the static get method'); + throw new Exception(_m('ImapManager should be created using its constructor, not the using the static get method.')); } /** diff --git a/plugins/LdapCommon/LdapCommon.php b/plugins/LdapCommon/LdapCommon.php index 1f1647a753..7dea1f0ed4 100644 --- a/plugins/LdapCommon/LdapCommon.php +++ b/plugins/LdapCommon/LdapCommon.php @@ -60,13 +60,13 @@ class LdapCommon $this->ldap_config = $this->get_ldap_config(); if(!isset($this->host)){ - throw new Exception("must specify a host"); + throw new Exception(_m("A host must be specified.")); } if(!isset($this->basedn)){ - throw new Exception("must specify a basedn"); + throw new Exception(_m('"basedn" must be specified.')); } if(!isset($this->attributes['username'])){ - throw new Exception("username attribute must be set."); + throw new Exception(_m('The username attribute must be set.')); } } @@ -173,7 +173,7 @@ class LdapCommon $ldap = $this->get_ldap_connection($config); $entry = $this->get_user($username,array(),$ldap); - + $newCryptedPassword = $this->hashPassword($newpassword, $this->password_encoding); if ($newCryptedPassword===false) { return false; @@ -254,15 +254,14 @@ class LdapCommon * @return string The hashed password. * */ - - function hashPassword( $passwordClear, $encodageType ) + function hashPassword( $passwordClear, $encodageType ) { $encodageType = strtolower( $encodageType ); switch( $encodageType ) { - case 'crypt': - $cryptedPassword = '{CRYPT}' . crypt($passwordClear,$this->randomSalt(2)); + case 'crypt': + $cryptedPassword = '{CRYPT}' . crypt($passwordClear,$this->randomSalt(2)); break; - + case 'ext_des': // extended des crypt. see OpenBSD crypt man page. if ( ! defined( 'CRYPT_EXT_DES' ) || CRYPT_EXT_DES == 0 ) {return FALSE;} //Your system crypt library does not support extended DES encryption. @@ -345,8 +344,7 @@ class LdapCommon * @param int $length The length of the salt string to generate. * @return string The generated salt string. */ - - function randomSalt( $length ) + function randomSalt( $length ) { $possible = '0123456789'. 'abcdefghijklmnopqrstuvwxyz'. @@ -360,10 +358,8 @@ class LdapCommon return $str; } - } class LdapInvalidCredentialsException extends Exception { - } diff --git a/plugins/LdapCommon/MemcacheSchemaCache.php b/plugins/LdapCommon/MemcacheSchemaCache.php index 4ee2e8e16a..960164fd31 100644 --- a/plugins/LdapCommon/MemcacheSchemaCache.php +++ b/plugins/LdapCommon/MemcacheSchemaCache.php @@ -1,5 +1,5 @@ c = $cfg['c']; @@ -57,18 +57,18 @@ class MemcacheSchemaCache implements Net_LDAP2_SchemaCache } /** - * Store a schema object in the cache - * - * This method will be called, if Net_LDAP2 has fetched a fresh - * schema object from LDAP and wants to init or refresh the cache. - * - * To invalidate the cache and cause Net_LDAP2 to refresh the cache, - * you can call this method with null or false as value. - * The next call to $ldap->schema() will then refresh the caches object. - * - * @param mixed $schema The object that should be cached - * @return true|Net_LDAP2_Error|false - */ + * Store a schema object in the cache + * + * This method will be called, if Net_LDAP2 has fetched a fresh + * schema object from LDAP and wants to init or refresh the cache. + * + * To invalidate the cache and cause Net_LDAP2 to refresh the cache, + * you can call this method with null or false as value. + * The next call to $ldap->schema() will then refresh the caches object. + * + * @param mixed $schema The object that should be cached + * @return true|Net_LDAP2_Error|false + */ public function storeSchema($schema) { return $this->c->set($this->cacheKey, $schema); } diff --git a/plugins/LilUrl/LilUrlPlugin.php b/plugins/LilUrl/LilUrlPlugin.php index 1c3d6f84b3..bd98026fe8 100644 --- a/plugins/LilUrl/LilUrlPlugin.php +++ b/plugins/LilUrl/LilUrlPlugin.php @@ -40,7 +40,7 @@ class LilUrlPlugin extends UrlShortenerPlugin function onInitializePlugin(){ parent::onInitializePlugin(); if(!isset($this->serviceUrl)){ - throw new Exception("must specify a serviceUrl"); + throw new Exception(_m('A serviceUrl must be specified.')); } } @@ -71,4 +71,3 @@ class LilUrlPlugin extends UrlShortenerPlugin return true; } } - diff --git a/plugins/Linkback/LinkbackPlugin.php b/plugins/Linkback/LinkbackPlugin.php index 8e44beae18..797572d7f8 100644 --- a/plugins/Linkback/LinkbackPlugin.php +++ b/plugins/Linkback/LinkbackPlugin.php @@ -49,7 +49,6 @@ define('LINKBACKPLUGIN_VERSION', '0.1'); * * @see Event */ - class LinkbackPlugin extends Plugin { var $notice = null; @@ -154,7 +153,6 @@ class LinkbackPlugin extends Plugin // Largely cadged from trackback_cls.php by // Ran Aroussi , GPL2 or any later version // http://phptrackback.sourceforge.net/ - function getTrackback($text, $url) { if (preg_match_all('/()/sm', $text, $match, PREG_SET_ORDER)) { diff --git a/plugins/Memcache/MemcachePlugin.php b/plugins/Memcache/MemcachePlugin.php index c3ca5c1359..f0c473c313 100644 --- a/plugins/Memcache/MemcachePlugin.php +++ b/plugins/Memcache/MemcachePlugin.php @@ -48,7 +48,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class MemcachePlugin extends Plugin { static $cacheInitialized = false; @@ -70,7 +69,6 @@ class MemcachePlugin extends Plugin * * @return boolean flag value */ - function onInitializePlugin() { if (self::$cacheInitialized) { @@ -101,7 +99,6 @@ class MemcachePlugin extends Plugin * * @return boolean hook success */ - function onStartCacheGet(&$key, &$value) { $this->_ensureConn(); @@ -121,7 +118,6 @@ class MemcachePlugin extends Plugin * * @return boolean hook success */ - function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success) { $this->_ensureConn(); @@ -160,7 +156,6 @@ class MemcachePlugin extends Plugin * * @return boolean hook success */ - function onStartCacheDelete(&$key, &$success) { $this->_ensureConn(); @@ -194,7 +189,6 @@ class MemcachePlugin extends Plugin * * @return void */ - private function _ensureConn() { if (empty($this->_conn)) { @@ -253,4 +247,3 @@ class MemcachePlugin extends Plugin return true; } } - From d055b63187b262682c10d18b361b7e828948cad9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 12:00:39 -0700 Subject: [PATCH 113/310] DirectionDetector plugin: cleanup on reference usage & code comments. Changed getClearText() to return its value instead of changing the input to keep things clearer to maintainers. --- .../DirectionDetectorPlugin.php | 37 ++++++++++++++----- 1 file changed, 28 insertions(+), 9 deletions(-) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index 2a85725e39..26eb896968 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -34,8 +34,10 @@ define('DIRECTIONDETECTORPLUGIN_VERSION', '0.2.0'); class DirectionDetectorPlugin extends Plugin { /** * SN plugin API, here we will make changes on rendered column + * + * @param object $notice notice is going to be saved */ - public function onStartNoticeSave(&$notice){ + public function onStartNoticeSave($notice){ if(!preg_match('//', $notice->rendered) && self::isRTL($notice->content)) $notice->rendered = ''.$notice->rendered.''; return true; @@ -43,19 +45,24 @@ class DirectionDetectorPlugin extends Plugin { /** * SN plugin API, here we will add css needed for modifiyed rendered + * + * @param Action $xml */ - public function onEndShowStatusNetStyles(&$xml){ + public function onEndShowStatusNetStyles($xml){ $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;} .notice .author {float:left}'); } /** * is passed string a rtl content or not + * + * @param string $content + * @return boolean */ public static function isRTL($content){ - self::getClearText($content); + $content = self::getClearText($content); $words = explode(' ', $content); $rtl = 0; - foreach($words as &$str) + foreach($words as $str) if(self::startsWithRTLCharacter($str)) $rtl++; else @@ -70,8 +77,11 @@ class DirectionDetectorPlugin extends Plugin { /** * checks that passed string starts with a RTL language or not + * + * @param string $str + * @return boolean */ - public static function startsWithRTLCharacter(&$str){ + public static function startsWithRTLCharacter($str){ if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) $cc = $cc[0]; else @@ -99,15 +109,21 @@ class DirectionDetectorPlugin extends Plugin { /** * clears text from replys, tags, groups, reteets & whitespaces + * + * @param string $str + * @return string */ - private static function getClearText(&$str){ + private static function getClearText($str){ $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces + return $str; } /** * adds javascript to do same thing on input textarea + * + * @param Action $action */ function onEndShowScripts($action){ if (common_logged_in()) { @@ -120,8 +136,11 @@ class DirectionDetectorPlugin extends Plugin { * Unicode characters. Astral planes are supported ie. the ints in the * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates * are not allowed. + * + * @param string $str + * @return mixed array of ints, or false on invalid input */ - private static function utf8ToUnicode(&$str){ + private static function utf8ToUnicode($str){ $mState = 0; // cached expected number of octets after the current octet // until the beginning of the next UTF8 character sequence $mUcs4 = 0; // cached Unicode character @@ -236,8 +255,8 @@ class DirectionDetectorPlugin extends Plugin { $versions[] = array( 'name' => 'Direction detector', 'version' => DIRECTIONDETECTORPLUGIN_VERSION, - 'author' => 'behrooz shabani', - 'rawdescription' => _m('shows notices with right-to-left content in correct direction.') + 'author' => 'Behrooz Shabani', + 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') ); return true; } From a3de417ca54c1cc1a99b25880e944335c43bbdc2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 12:02:04 -0700 Subject: [PATCH 114/310] DirectionDetector plugin: tabs to spaces --- .../DirectionDetectorPlugin.php | 410 +++++++++--------- 1 file changed, 205 insertions(+), 205 deletions(-) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index 26eb896968..ac6b43c1f3 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -26,240 +26,240 @@ */ if (!defined('STATUSNET')) { - exit(1); + exit(1); } define('DIRECTIONDETECTORPLUGIN_VERSION', '0.2.0'); class DirectionDetectorPlugin extends Plugin { - /** - * SN plugin API, here we will make changes on rendered column + /** + * SN plugin API, here we will make changes on rendered column * * @param object $notice notice is going to be saved - */ - public function onStartNoticeSave($notice){ - if(!preg_match('//', $notice->rendered) && self::isRTL($notice->content)) - $notice->rendered = ''.$notice->rendered.''; - return true; - } + */ + public function onStartNoticeSave($notice){ + if(!preg_match('//', $notice->rendered) && self::isRTL($notice->content)) + $notice->rendered = ''.$notice->rendered.''; + return true; + } - /** - * SN plugin API, here we will add css needed for modifiyed rendered + /** + * SN plugin API, here we will add css needed for modifiyed rendered * * @param Action $xml - */ - public function onEndShowStatusNetStyles($xml){ - $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;} .notice .author {float:left}'); - } - - /** - * is passed string a rtl content or not + */ + public function onEndShowStatusNetStyles($xml){ + $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;} .notice .author {float:left}'); + } + + /** + * is passed string a rtl content or not * * @param string $content * @return boolean - */ - public static function isRTL($content){ - $content = self::getClearText($content); - $words = explode(' ', $content); - $rtl = 0; - foreach($words as $str) - if(self::startsWithRTLCharacter($str)) - $rtl++; - else - $rtl--; - if($rtl>0)// if number of rtl words is more than ltr words so it's a rtl content - return true; - elseif($rtl==0) - // check first word again - return self::startsWithRTLCharacter($words[0]); - return false; - } - - /** - * checks that passed string starts with a RTL language or not + */ + public static function isRTL($content){ + $content = self::getClearText($content); + $words = explode(' ', $content); + $rtl = 0; + foreach($words as $str) + if(self::startsWithRTLCharacter($str)) + $rtl++; + else + $rtl--; + if($rtl>0)// if number of rtl words is more than ltr words so it's a rtl content + return true; + elseif($rtl==0) + // check first word again + return self::startsWithRTLCharacter($words[0]); + return false; + } + + /** + * checks that passed string starts with a RTL language or not * * @param string $str * @return boolean - */ - public static function startsWithRTLCharacter($str){ - if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) - $cc = $cc[0]; - else - return false; - if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... - return true; - if($cc>=65136 && $cc<=65279) // arabic peresent 2 - return true; - if($cc>=64336 && $cc<=65023) // arabic peresent 1 - return true; - if($cc>=1424 && $cc<=1535) // hebrew - return true; - if($cc>=64256 && $cc<=64335) // hebrew peresent - return true; - if($cc>=1792 && $cc<=1871) // Syriac - return true; - if($cc>=1920 && $cc<=1983) // Thaana - return true; - if($cc>=1984 && $cc<=2047) // NKo - return true; - if($cc>=11568 && $cc<=11647) // Tifinagh - return true; - return false; - } + */ + public static function startsWithRTLCharacter($str){ + if( is_array($cc = self::utf8ToUnicode(mb_substr($str, 0, 1, 'utf-8'))) ) + $cc = $cc[0]; + else + return false; + if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... + return true; + if($cc>=65136 && $cc<=65279) // arabic peresent 2 + return true; + if($cc>=64336 && $cc<=65023) // arabic peresent 1 + return true; + if($cc>=1424 && $cc<=1535) // hebrew + return true; + if($cc>=64256 && $cc<=64335) // hebrew peresent + return true; + if($cc>=1792 && $cc<=1871) // Syriac + return true; + if($cc>=1920 && $cc<=1983) // Thaana + return true; + if($cc>=1984 && $cc<=2047) // NKo + return true; + if($cc>=11568 && $cc<=11647) // Tifinagh + return true; + return false; + } - /** - * clears text from replys, tags, groups, reteets & whitespaces + /** + * clears text from replys, tags, groups, reteets & whitespaces * * @param string $str * @return string - */ - private static function getClearText($str){ - $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group - $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet - $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces + */ + private static function getClearText($str){ + $str = preg_replace('/@[^ ]+|![^ ]+|#[^ ]+/u', '', $str); // reply, tag, group + $str = preg_replace('/^RT[: ]{1}| RT | RT: |^RD[: ]{1}| RD | RD: |[♺♻:]/u', '', $str); // redent, retweet + $str = preg_replace("/[ \r\t\n]+/", ' ', trim($str)); // remove spaces return $str; - } - - /** - * adds javascript to do same thing on input textarea + } + + /** + * adds javascript to do same thing on input textarea * * @param Action $action - */ - function onEndShowScripts($action){ - if (common_logged_in()) { - $action->script('plugins/DirectionDetector/jquery.DirectionDetector.js'); - } - } + */ + function onEndShowScripts($action){ + if (common_logged_in()) { + $action->script('plugins/DirectionDetector/jquery.DirectionDetector.js'); + } + } - /** - * Takes an UTF-8 string and returns an array of ints representing the - * Unicode characters. Astral planes are supported ie. the ints in the - * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates - * are not allowed. + /** + * Takes an UTF-8 string and returns an array of ints representing the + * Unicode characters. Astral planes are supported ie. the ints in the + * output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates + * are not allowed. * * @param string $str * @return mixed array of ints, or false on invalid input - */ - private static function utf8ToUnicode($str){ - $mState = 0; // cached expected number of octets after the current octet - // until the beginning of the next UTF8 character sequence - $mUcs4 = 0; // cached Unicode character - $mBytes = 1; // cached expected number of octets in the current sequence - $out = array(); - $len = strlen($str); + */ + private static function utf8ToUnicode($str){ + $mState = 0; // cached expected number of octets after the current octet + // until the beginning of the next UTF8 character sequence + $mUcs4 = 0; // cached Unicode character + $mBytes = 1; // cached expected number of octets in the current sequence + $out = array(); + $len = strlen($str); - for($i = 0; $i < $len; $i++) { - $in = ord($str{$i}); - if (0 == $mState) { - // When mState is zero we expect either a US-ASCII character or a - // multi-octet sequence. - if (0 == (0x80 & ($in))) { - // US-ASCII, pass straight through. - $out[] = $in; - $mBytes = 1; - } elseif (0xC0 == (0xE0 & ($in))) { - // First octet of 2 octet sequence - $mUcs4 = ($in); - $mUcs4 = ($mUcs4 & 0x1F) << 6; - $mState = 1; - $mBytes = 2; - } elseif (0xE0 == (0xF0 & ($in))) { - // First octet of 3 octet sequence - $mUcs4 = ($in); - $mUcs4 = ($mUcs4 & 0x0F) << 12; - $mState = 2; - $mBytes = 3; - } elseif (0xF0 == (0xF8 & ($in))) { - // First octet of 4 octet sequence - $mUcs4 = ($in); - $mUcs4 = ($mUcs4 & 0x07) << 18; - $mState = 3; - $mBytes = 4; - } elseif (0xF8 == (0xFC & ($in))) { - /* First octet of 5 octet sequence. - * - * This is illegal because the encoded codepoint must be either - * (a) not the shortest form or - * (b) outside the Unicode range of 0-0x10FFFF. - * Rather than trying to resynchronize, we will carry on until the end - * of the sequence and let the later error handling code catch it. - */ - $mUcs4 = ($in); - $mUcs4 = ($mUcs4 & 0x03) << 24; - $mState = 4; - $mBytes = 5; - } elseif (0xFC == (0xFE & ($in))) { - // First octet of 6 octet sequence, see comments for 5 octet sequence. - $mUcs4 = ($in); - $mUcs4 = ($mUcs4 & 1) << 30; - $mState = 5; - $mBytes = 6; - } else { - /* Current octet is neither in the US-ASCII range nor a legal first - * octet of a multi-octet sequence. - */ - return false; - } - } else { - // When mState is non-zero, we expect a continuation of the multi-octet - // sequence - if (0x80 == (0xC0 & ($in))) { - // Legal continuation. - $shift = ($mState - 1) * 6; - $tmp = $in; - $tmp = ($tmp & 0x0000003F) << $shift; - $mUcs4 |= $tmp; - if (0 == --$mState) { - /* End of the multi-octet sequence. mUcs4 now contains the final - * Unicode codepoint to be output - * - * Check for illegal sequences and codepoints. - */ - // From Unicode 3.1, non-shortest form is illegal - if ( - ((2 == $mBytes) && ($mUcs4 < 0x0080)) || - ((3 == $mBytes) && ($mUcs4 < 0x0800)) || - ((4 == $mBytes) && ($mUcs4 < 0x10000)) || - (4 < $mBytes) || - // From Unicode 3.2, surrogate characters are illegal - (($mUcs4 & 0xFFFFF800) == 0xD800) || - // Codepoints outside the Unicode range are illegal - ($mUcs4 > 0x10FFFF) - ){ - return false; - } - if (0xFEFF != $mUcs4) { - $out[] = $mUcs4; - } - //initialize UTF8 cache - $mState = 0; - $mUcs4 = 0; - $mBytes = 1; - } - } else { - /* ((0xC0 & (*in) != 0x80) && (mState != 0)) - * - * Incomplete multi-octet sequence. - */ - return false; - } - } - } - return $out; - } + for($i = 0; $i < $len; $i++) { + $in = ord($str{$i}); + if (0 == $mState) { + // When mState is zero we expect either a US-ASCII character or a + // multi-octet sequence. + if (0 == (0x80 & ($in))) { + // US-ASCII, pass straight through. + $out[] = $in; + $mBytes = 1; + } elseif (0xC0 == (0xE0 & ($in))) { + // First octet of 2 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x1F) << 6; + $mState = 1; + $mBytes = 2; + } elseif (0xE0 == (0xF0 & ($in))) { + // First octet of 3 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x0F) << 12; + $mState = 2; + $mBytes = 3; + } elseif (0xF0 == (0xF8 & ($in))) { + // First octet of 4 octet sequence + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x07) << 18; + $mState = 3; + $mBytes = 4; + } elseif (0xF8 == (0xFC & ($in))) { + /* First octet of 5 octet sequence. + * + * This is illegal because the encoded codepoint must be either + * (a) not the shortest form or + * (b) outside the Unicode range of 0-0x10FFFF. + * Rather than trying to resynchronize, we will carry on until the end + * of the sequence and let the later error handling code catch it. + */ + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 0x03) << 24; + $mState = 4; + $mBytes = 5; + } elseif (0xFC == (0xFE & ($in))) { + // First octet of 6 octet sequence, see comments for 5 octet sequence. + $mUcs4 = ($in); + $mUcs4 = ($mUcs4 & 1) << 30; + $mState = 5; + $mBytes = 6; + } else { + /* Current octet is neither in the US-ASCII range nor a legal first + * octet of a multi-octet sequence. + */ + return false; + } + } else { + // When mState is non-zero, we expect a continuation of the multi-octet + // sequence + if (0x80 == (0xC0 & ($in))) { + // Legal continuation. + $shift = ($mState - 1) * 6; + $tmp = $in; + $tmp = ($tmp & 0x0000003F) << $shift; + $mUcs4 |= $tmp; + if (0 == --$mState) { + /* End of the multi-octet sequence. mUcs4 now contains the final + * Unicode codepoint to be output + * + * Check for illegal sequences and codepoints. + */ + // From Unicode 3.1, non-shortest form is illegal + if ( + ((2 == $mBytes) && ($mUcs4 < 0x0080)) || + ((3 == $mBytes) && ($mUcs4 < 0x0800)) || + ((4 == $mBytes) && ($mUcs4 < 0x10000)) || + (4 < $mBytes) || + // From Unicode 3.2, surrogate characters are illegal + (($mUcs4 & 0xFFFFF800) == 0xD800) || + // Codepoints outside the Unicode range are illegal + ($mUcs4 > 0x10FFFF) + ){ + return false; + } + if (0xFEFF != $mUcs4) { + $out[] = $mUcs4; + } + //initialize UTF8 cache + $mState = 0; + $mUcs4 = 0; + $mBytes = 1; + } + } else { + /* ((0xC0 & (*in) != 0x80) && (mState != 0)) + * + * Incomplete multi-octet sequence. + */ + return false; + } + } + } + return $out; + } - /** - * plugin details - */ - function onPluginVersion(&$versions){ - $versions[] = array( - 'name' => 'Direction detector', - 'version' => DIRECTIONDETECTORPLUGIN_VERSION, - 'author' => 'Behrooz Shabani', - 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') - ); - return true; - } + /** + * plugin details + */ + function onPluginVersion(&$versions){ + $versions[] = array( + 'name' => 'Direction detector', + 'version' => DIRECTIONDETECTORPLUGIN_VERSION, + 'author' => 'Behrooz Shabani', + 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') + ); + return true; + } } /* From 5cc08ccd079e026370bcba142328bfaa6b57f14d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 21:11:05 +0200 Subject: [PATCH 115/310] Superfluous whitespace removed. --- plugins/Memcached/MemcachedPlugin.php | 6 ------ plugins/Minify/MinifyPlugin.php | 1 - 2 files changed, 7 deletions(-) diff --git a/plugins/Memcached/MemcachedPlugin.php b/plugins/Memcached/MemcachedPlugin.php index 77b989b951..3b3383d496 100644 --- a/plugins/Memcached/MemcachedPlugin.php +++ b/plugins/Memcached/MemcachedPlugin.php @@ -69,7 +69,6 @@ class MemcachedPlugin extends Plugin * * @return boolean flag value */ - function onInitializePlugin() { $this->_ensureConn(); @@ -87,7 +86,6 @@ class MemcachedPlugin extends Plugin * * @return boolean hook success */ - function onStartCacheGet(&$key, &$value) { $this->_ensureConn(); @@ -107,7 +105,6 @@ class MemcachedPlugin extends Plugin * * @return boolean hook success */ - function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success) { $this->_ensureConn(); @@ -146,7 +143,6 @@ class MemcachedPlugin extends Plugin * * @return boolean hook success */ - function onStartCacheDelete(&$key, &$success) { $this->_ensureConn(); @@ -169,7 +165,6 @@ class MemcachedPlugin extends Plugin * * @return void */ - private function _ensureConn() { if (empty($this->_conn)) { @@ -224,4 +219,3 @@ class MemcachedPlugin extends Plugin return true; } } - diff --git a/plugins/Minify/MinifyPlugin.php b/plugins/Minify/MinifyPlugin.php index 6c1e49eb93..b375311652 100644 --- a/plugins/Minify/MinifyPlugin.php +++ b/plugins/Minify/MinifyPlugin.php @@ -51,7 +51,6 @@ class MinifyPlugin extends Plugin * * @return boolean hook return */ - function onStartInitializeRouter($m) { $m->connect('main/min', From a58877a2f8b580c47a9b73128dba1f3a7b2c38c4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 21:12:07 +0200 Subject: [PATCH 116/310] * i18n/L10n update. * added onPluginVersion(). * superfluous whitespace removed. --- plugins/Meteor/MeteorPlugin.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/plugins/Meteor/MeteorPlugin.php b/plugins/Meteor/MeteorPlugin.php index ec8c9e217c..a48c52b569 100644 --- a/plugins/Meteor/MeteorPlugin.php +++ b/plugins/Meteor/MeteorPlugin.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.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 MeteorPlugin extends RealtimePlugin { public $webserver = null; @@ -112,7 +111,8 @@ class MeteorPlugin extends RealtimePlugin // May throw an exception. $this->_socket = stream_socket_client("tcp://{$controlserver}:{$this->controlport}", $errno, $errstr, $timeout, $flags); if (!$this->_socket) { - throw new Exception("Couldn't connect to {$controlserver} on {$this->controlport}"); + // TRANS: Exception. %1$s is the control server, %2$s is the control port. + throw new Exception(sprintf(_m('Couldn\'t connect to %1$s on %2$s.'),$controlserver,$this->controlport)); } } @@ -124,7 +124,8 @@ class MeteorPlugin extends RealtimePlugin $cnt = fwrite($this->_socket, $cmd); $result = fgets($this->_socket); if (preg_match('/^ERR (.*)$/', $result, $matches)) { - throw new Exception('Error adding meteor message "'.$matches[1].'"'); + // TRANS: Exception. %s is the Meteor message that could not be added. + throw new Exception(sprintf(_m('Error adding meteor message "%s"'),$matches[1])); } // TODO: parse and deal with result } @@ -146,4 +147,15 @@ class MeteorPlugin extends RealtimePlugin } return implode('-', $path); } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Meteor', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Meteor', + 'rawdescription' => + _m('Plugin to do "real time" updates using Comet/Bayeux.')); + return true; + } } From bccbe8f519d8368ed86d08969d0639e401b46ba7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 20 Sep 2010 21:12:43 +0200 Subject: [PATCH 117/310] * i18n/L10n update. * superfluous whitespace removed. --- plugins/MobileProfile/MobileProfilePlugin.php | 60 ++++++++----------- 1 file changed, 24 insertions(+), 36 deletions(-) diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index 72a6a04fbd..b042bf7edd 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -36,7 +36,6 @@ define('PAGE_TYPE_PREFS_MOBILEPROFILE', require_once INSTALLDIR.'/plugins/Mobile/WAP20Plugin.php'; - /** * Superclass for plugin to output XHTML Mobile Profile * @@ -46,7 +45,6 @@ require_once INSTALLDIR.'/plugins/Mobile/WAP20Plugin.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 MobileProfilePlugin extends WAP20Plugin { public $DTD = null; @@ -60,14 +58,13 @@ class MobileProfilePlugin extends WAP20Plugin parent::__construct(); } - function onStartShowHTML($action) { // XXX: This should probably graduate to WAP20Plugin // If they are on the mobile site, serve them MP if ((common_config('site', 'mobileserver').'/'. - common_config('site', 'path').'/' == + common_config('site', 'path').'/' == $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'])) { $this->serveMobile = true; @@ -78,18 +75,18 @@ class MobileProfilePlugin extends WAP20Plugin //if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) { // $this->serveMobile = true; //} else { - // If they are a mobile device that supports WAP 2.0, + // If they are a mobile device that supports WAP 2.0, // serve them MP // XXX: Browser sniffing sucks - // I really don't like going through this every page, + // I really don't like going through this every page, // perhaps use $_SESSION or cookies - // May be better to group the devices in terms of + // May be better to group the devices in terms of // low,mid,high-end - // Or, detect the mobile devices based on their support for + // Or, detect the mobile devices based on their support for // MP 1.0, 1.1, or 1.2 may be ideal. Possible? $this->mobiledevices = array( @@ -165,11 +162,11 @@ class MobileProfilePlugin extends WAP20Plugin } //} - // If they are okay with MP, and the site has a mobile server, + // If they are okay with MP, and the site has a mobile server, // redirect there - if ($this->serveMobile && + if ($this->serveMobile && common_config('site', 'mobileserver') !== false && - (common_config('site', 'mobileserver') != + (common_config('site', 'mobileserver') != common_config('site', 'server'))) { // FIXME: Redirect to equivalent page on mobile site instead @@ -193,8 +190,8 @@ class MobileProfilePlugin extends WAP20Plugin $type = common_negotiate_type($cp, $sp); if (!$type) { - throw new ClientException(_('This page is not available in a '. - 'media type you accept'), 406); + throw new ClientException(_m('This page is not available in a '. + 'media type you accept.'), 406); } //} @@ -217,7 +214,6 @@ class MobileProfilePlugin extends WAP20Plugin return false; } - function setMobileFeatures($useragent) { $mobiledeviceInputFileType = array( @@ -234,7 +230,6 @@ class MobileProfilePlugin extends WAP20Plugin } } - function onStartShowStatusNetStyles($action) { if (!$this->serveMobile) { @@ -262,7 +257,6 @@ class MobileProfilePlugin extends WAP20Plugin return false; } - function onStartShowUAStyles($action) { if (!$this->serveMobile) { return true; @@ -288,18 +282,17 @@ class MobileProfilePlugin extends WAP20Plugin return false; } - function _showLogo($action) { $action->elementStart('address', 'vcard'); $action->elementStart('a', array('class' => 'url home bookmark', 'href' => common_local_url('public'))); - if (common_config('site', 'mobilelogo') || - file_exists(Theme::file('logo.png')) || + if (common_config('site', 'mobilelogo') || + file_exists(Theme::file('logo.png')) || file_exists(Theme::file('mobilelogo.png'))) { $action->element('img', array('class' => 'photo', - 'src' => (common_config('site', 'mobilelogo')) ? common_config('site', 'mobilelogo') : + 'src' => (common_config('site', 'mobilelogo')) ? common_config('site', 'mobilelogo') : ((file_exists(Theme::file('mobilelogo.png'))) ? (Theme::path('mobilelogo.png')) : Theme::path('logo.png')), 'alt' => common_config('site', 'name'))); } @@ -308,44 +301,42 @@ class MobileProfilePlugin extends WAP20Plugin $action->elementEnd('address'); } - function _showPrimaryNav($action) { $user = common_current_user(); $action->elementStart('ul', array('id' => 'site_nav_global_primary')); if ($user) { $action->menuItem(common_local_url('all', array('nickname' => $user->nickname)), - _('Home')); + _m('Home')); $action->menuItem(common_local_url('profilesettings'), - _('Account')); + _m('Account')); $action->menuItem(common_local_url('oauthconnectionssettings'), - _('Connect')); + _m('Connect')); if ($user->hasRight(Right::CONFIGURESITE)) { $action->menuItem(common_local_url('siteadminpanel'), - _('Admin'), _('Change site configuration'), false, 'nav_admin'); + _m('Admin'), _m('Change site configuration'), false, 'nav_admin'); } if (common_config('invite', 'enabled')) { $action->menuItem(common_local_url('invite'), - _('Invite')); + _m('Invite')); } $action->menuItem(common_local_url('logout'), - _('Logout')); + _m('Logout')); } else { if (!common_config('site', 'closed')) { $action->menuItem(common_local_url('register'), - _('Register')); + _m('Register')); } $action->menuItem(common_local_url('login'), - _('Login')); + _m('Login')); } if ($user || !common_config('site', 'private')) { $action->menuItem(common_local_url('peoplesearch'), - _('Search')); + _m('Search')); } $action->elementEnd('ul'); } - function onStartShowNoticeFormData($form) { if (!$this->serveMobile) { @@ -367,11 +358,11 @@ class MobileProfilePlugin extends WAP20Plugin if (common_config('attachments', 'uploads')) { if ($this->mobileFeatures['inputfiletype']) { - $form->out->element('label', array('for' => 'notice_data-attach'), _('Attach')); + $form->out->element('label', array('for' => 'notice_data-attach'), _m('Attach')); $form->out->element('input', array('id' => 'notice_data-attach', 'type' => 'file', 'name' => 'attach', - 'title' => _('Attach a file'))); + 'title' => _m('Attach a file'))); $form->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota')); } } @@ -383,7 +374,6 @@ class MobileProfilePlugin extends WAP20Plugin return false; } - function onStartShowAside($action) { if ($this->serveMobile) { @@ -391,13 +381,11 @@ class MobileProfilePlugin extends WAP20Plugin } } - function onStartShowScripts($action) { } - function _common_path($relative, $ssl=false) { $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : ''; From 2f38c9c99cb10be8fab28a624fa6f64cec6c0a9b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 13:19:58 -0700 Subject: [PATCH 118/310] Fix bug in db queue manager: when receiving an invalid or deleted notice, we were running it through the 'temporary fail, release it to try again' path instead of the 'done, discard item' path. Should fix some infinite-loop-of-doom-in-queue cases. --- lib/dbqueuemanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dbqueuemanager.php b/lib/dbqueuemanager.php index 3dda9fd1ac..51553b8999 100644 --- a/lib/dbqueuemanager.php +++ b/lib/dbqueuemanager.php @@ -100,7 +100,7 @@ class DBQueueManager extends QueueManager } } else { $this->_log(LOG_INFO, "[$queue] Got empty/deleted item, discarding"); - $this->_fail($qi); + $this->_done($qi); } return true; } From 64cdbe6c5578df1dc49d8e3dd72451ab0ac96bd2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 13:42:58 -0700 Subject: [PATCH 119/310] Ticket #2750: fixes to HTTP caching behavior across login/logout boundaries * now ignoring if-modified-since if we failed an etag if-none-match comparison, per spec * now including a hash of user id/nickname in most etags, so we'll update the view properly after login/logout For API methods, checking the API-auth'ed user. (Many change results to include things like 'you're subscribed to this user' or 'this is one of your favorites', so user info is again needed) There'll still be some last-modified stamps that aren't including user info properly, probably. --- actions/apidirectmessage.php | 1 + actions/apigrouplist.php | 1 + actions/apigrouplistall.php | 1 + actions/apigroupmembership.php | 1 + actions/apigroupshow.php | 1 + actions/apistatusesshow.php | 1 + actions/apisubscriptions.php | 1 + actions/apitimelinefavorites.php | 1 + actions/apitimelinefriends.php | 1 + actions/apitimelinegroup.php | 1 + actions/apitimelinehome.php | 1 + actions/apitimelinementions.php | 1 + actions/apitimelinepublic.php | 1 + actions/apitimelinetag.php | 1 + actions/apitimelineuser.php | 1 + actions/shownotice.php | 1 + lib/action.php | 15 ++++++++++----- lib/util.php | 23 +++++++++++++++++++++++ plugins/Autocomplete/autocomplete.php | 1 + 19 files changed, 50 insertions(+), 5 deletions(-) diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index 7a0f46274c..e7ea38dfa1 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -357,6 +357,7 @@ class ApiDirectMessageAction extends ApiAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), strtotime($this->messages[0]->created), strtotime($this->messages[$last]->created) diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index 148c802f43..319a1e424d 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -213,6 +213,7 @@ class ApiGroupListAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->groups[0]->created), diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index a8317608d7..cc7cd901dc 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -204,6 +204,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), strtotime($this->groups[0]->created), strtotime($this->groups[$last]->created)) diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index ffd5c7c7d5..b7f3064b5a 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -183,6 +183,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->group->id, strtotime($this->profiles[0]->created), diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 2998e505e2..9b90e6b383 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -149,6 +149,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->group->id, strtotime($this->group->modified)) diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index 476820a43d..84f8079db5 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -194,6 +194,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->notice->id, strtotime($this->notice->created)) diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index 63d65f2893..749d16f067 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -181,6 +181,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, isset($this->ids_only) ? 'IDs' : 'Profiles', diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index 7228960c0b..f5ce5d2fd4 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -259,6 +259,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->notices[0]->created), diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 40ce35979b..c96391c129 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -346,6 +346,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->notices[0]->created), diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index 7a40fd8084..5138a4b5e1 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -229,6 +229,7 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->group->id, strtotime($this->notices[0]->created), diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 27eb741691..1ceb3d902b 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -254,6 +254,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->notices[0]->created), diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php index ed1ad20e32..354dc58b68 100644 --- a/actions/apitimelinementions.php +++ b/actions/apitimelinementions.php @@ -244,6 +244,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->notices[0]->created), diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index f901642882..0119b504a7 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -311,6 +311,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), strtotime($this->notices[0]->created), strtotime($this->notices[$last]->created)) diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index c7ec172aeb..712703694f 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -232,6 +232,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->tag, strtotime($this->notices[0]->created), diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 17a2836639..0c97aad21c 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -234,6 +234,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction return '"' . implode( ':', array($this->arg('action'), + common_user_cache_hash($this->auth_user), common_language(), $this->user->id, strtotime($this->notices[0]->created), diff --git a/actions/shownotice.php b/actions/shownotice.php index 9c5d83441b..86df5f9f30 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -151,6 +151,7 @@ class ShownoticeAction extends OwnerDesignAction strtotime($this->avatar->modified) : 0; return 'W/"' . implode(':', array($this->arg('action'), + common_user_cache_hash(), common_language(), $this->notice->id, strtotime($this->notice->created), diff --git a/lib/action.php b/lib/action.php index 5c4b4a7b7d..5dcf78dcc9 100644 --- a/lib/action.php +++ b/lib/action.php @@ -1018,17 +1018,22 @@ class Action extends HTMLOutputter // lawsuit } } + $checked = false; if ($etag) { $if_none_match = (array_key_exists('HTTP_IF_NONE_MATCH', $_SERVER)) ? $_SERVER['HTTP_IF_NONE_MATCH'] : null; - if ($if_none_match && $this->_hasEtag($etag, $if_none_match)) { - header('HTTP/1.1 304 Not Modified'); - // Better way to do this? - exit(0); + if ($if_none_match) { + // If this check fails, ignore the if-modified-since below. + $checked = true; + if ($this->_hasEtag($etag, $if_none_match)) { + header('HTTP/1.1 304 Not Modified'); + // Better way to do this? + exit(0); + } } } - if ($lm && array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER)) { + if (!$checked && $lm && array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER)) { $if_modified_since = $_SERVER['HTTP_IF_MODIFIED_SINCE']; $ims = strtotime($if_modified_since); if ($lm <= $ims) { diff --git a/lib/util.php b/lib/util.php index 6d2e99b2ae..e0457140e2 100644 --- a/lib/util.php +++ b/lib/util.php @@ -494,6 +494,29 @@ function common_is_real_login() return common_logged_in() && $_SESSION['real_login']; } +/** + * Get a hash portion for HTTP caching Etags and such including + * info on the current user's session. If login/logout state changes, + * or we've changed accounts, or we've renamed the current user, + * we'll get a new hash value. + * + * This should not be considered secure information. + * + * @param User $user (optional; uses common_current_user() if left out) + * @return string + */ +function common_user_cache_hash($user=false) +{ + if ($user === false) { + $user = common_current_user(); + } + if ($user) { + return crc32($user->id . ':' . $user->nickname); + } else { + return '0'; + } +} + // get canonical version of nickname for comparison function common_canonical_nickname($nickname) { diff --git a/plugins/Autocomplete/autocomplete.php b/plugins/Autocomplete/autocomplete.php index 5a010572f6..a4e2d9baa4 100644 --- a/plugins/Autocomplete/autocomplete.php +++ b/plugins/Autocomplete/autocomplete.php @@ -79,6 +79,7 @@ class AutocompleteAction extends Action function etag() { return '"' . implode(':', array($this->arg('action'), + common_user_cache_hash(), crc32($this->arg('q')), //the actual string can have funny characters in we don't want showing up in the etag $this->arg('limit'), $this->lastModified())) . '"'; From 521daf5562051d0cc319c35a0dceaae3e0fd49b7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 15:57:46 -0700 Subject: [PATCH 120/310] Ticket #2327: fixing block to remove the blocking user's subscription to the blockee if present; also cleaning up inbox delivery to apply the block checks more consistently, instead of just to group posts. --- classes/Notice.php | 33 ++++++++++++++++++++------------- classes/User.php | 3 +++ 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index f1b012465b..13b322828b 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -753,8 +753,15 @@ class Notice extends Memcached_DataObject } /** - * @param $groups array of Group *objects* - * @param $recipients array of profile *ids* + * Pull up a full list of local recipients who will be getting + * this notice in their inbox. Results will be cached, so don't + * change the input data wily-nilly! + * + * @param array $groups optional list of Group objects; + * if left empty, will be loaded from group_inbox records + * @param array $recipient optional list of reply profile ids + * if left empty, will be loaded from reply records + * @return array associating recipient user IDs with an inbox source constant */ function whoGets($groups=null, $recipients=null) { @@ -787,27 +794,27 @@ class Notice extends Memcached_DataObject $ni[$id] = NOTICE_INBOX_SOURCE_SUB; } - $profile = $this->getProfile(); - foreach ($groups as $group) { $users = $group->getUserMembers(); foreach ($users as $id) { if (!array_key_exists($id, $ni)) { - $user = User::staticGet('id', $id); - if (!$user->hasBlocked($profile)) { - $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; - } + $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; } } } foreach ($recipients as $recipient) { - if (!array_key_exists($recipient, $ni)) { - $recipientUser = User::staticGet('id', $recipient); - if (!empty($recipientUser)) { - $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY; - } + $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY; + } + } + + // Exclude any deleted, non-local, or blocking recipients. + $profile = $this->getProfile(); + foreach ($ni as $id => $source) { + $user = User::staticGet('id', $id); + if (empty($user) || $user->hasBlocked($profile)) { + unset($ni[$id]); } } diff --git a/classes/User.php b/classes/User.php index 8033229c4b..4c25ee3d97 100644 --- a/classes/User.php +++ b/classes/User.php @@ -552,6 +552,9 @@ class User extends Memcached_DataObject if (Subscription::exists($other, $self)) { Subscription::cancel($other, $self); } + if (Subscription::exists($self, $other)) { + Subscription::cancel($self, $other); + } $block->query('COMMIT'); From f9e04993dd965ba0bbf812742ee17f900c541be0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 16:26:50 -0700 Subject: [PATCH 121/310] Bump up HTTP timeout for OStatus remote-tests.php to 60 seconds; when running without queues and with only bcmath, salmon key generation is absurdly slow. --- plugins/OStatus/tests/remote-tests.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/OStatus/tests/remote-tests.php b/plugins/OStatus/tests/remote-tests.php index c2c9a5d97b..64c60a8a4c 100644 --- a/plugins/OStatus/tests/remote-tests.php +++ b/plugins/OStatus/tests/remote-tests.php @@ -4,6 +4,8 @@ if (php_sapi_name() != 'cli') { die('not for web'); } +define('TIMEOUT', 60); // ssslllloowwwww salmon if queues are off + define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); set_include_path(INSTALLDIR . '/extlib' . PATH_SEPARATOR . get_include_path()); @@ -188,7 +190,7 @@ class SNTestClient extends TestBase { $url = $this->basepath . '/' . $path; - $http = new HTTP_Request2($url, 'POST'); + $http = new HTTP_Request2($url, 'POST', array('timeout' => TIMEOUT)); if ($auth) { $http->setAuth($this->username, $this->password, HTTP_Request2::AUTH_BASIC); } @@ -215,7 +217,7 @@ class SNTestClient extends TestBase protected function web($path, $form, $params=array()) { $url = $this->basepath . '/' . $path; - $http = new HTTP_Request2($url, 'GET'); + $http = new HTTP_Request2($url, 'GET', array('timeout' => TIMEOUT)); $response = $http->send(); $dom = $this->checkWeb($url, 'GET', $response); From 24bb6feba708d68764a35a4209760be712a8221a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 16:39:51 -0700 Subject: [PATCH 122/310] Clean up notice spew from accessing member variables of null when opening the add/edit oauth application form --- lib/applicationeditform.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index f126b84ae3..224b6eaa1b 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -256,8 +256,9 @@ class ApplicationEditForm extends Form // Default to Browser - if ($this->application->type == Oauth_application::$browser - || empty($this->application->type)) { + if (empty($this->application) + || empty($this->application->type) + || $this->application->type == Oauth_application::$browser) { $attrs['checked'] = 'checked'; } @@ -274,7 +275,7 @@ class ApplicationEditForm extends Form 'class' => 'radio', 'value' => Oauth_application::$desktop); - if ($this->application->type == Oauth_application::$desktop) { + if (!empty($this->application) && $this->application->type == Oauth_application::$desktop) { $attrs['checked'] = 'checked'; } @@ -298,8 +299,9 @@ class ApplicationEditForm extends Form // default to read-only access - if ($this->application->access_type & Oauth_application::$readAccess - || empty($this->application->access_type)) { + if (empty($this->application) + || empty($this->application->access_type) + || $this->application->access_type & Oauth_application::$readAccess) { $attrs['checked'] = 'checked'; } @@ -316,7 +318,8 @@ class ApplicationEditForm extends Form 'class' => 'radio', 'value' => 'rw'); - if ($this->application->access_type & Oauth_application::$readAccess + if (!empty($this->application) + && $this->application->access_type & Oauth_application::$readAccess && $this->application->access_type & Oauth_application::$writeAccess ) { $attrs['checked'] = 'checked'; From a47e66409488dac8ff3e59f97a5b0fb496ec4115 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 16:43:00 -0700 Subject: [PATCH 123/310] Fix for #2419: There is no function maxDescription in Oauth_application class (broke the 'description too long' error message when editing oauth app registrations) --- actions/editapplication.php | 2 +- actions/newapplication.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/editapplication.php b/actions/editapplication.php index 64cf0a5745..b25457069c 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -188,7 +188,7 @@ class EditApplicationAction extends OwnerDesignAction } elseif (Oauth_application::descriptionTooLong($description)) { $this->showForm(sprintf( _('Description is too long (max %d chars).'), - Oauth_application::maxDescription())); + Oauth_application::maxDesc())); return; } elseif (mb_strlen($source_url) > 255) { $this->showForm(_('Source URL is too long.')); diff --git a/actions/newapplication.php b/actions/newapplication.php index 0f819b3499..8b150c3151 100644 --- a/actions/newapplication.php +++ b/actions/newapplication.php @@ -170,7 +170,7 @@ class NewApplicationAction extends OwnerDesignAction } elseif (Oauth_application::descriptionTooLong($description)) { $this->showForm(sprintf( _('Description is too long (max %d chars).'), - Oauth_application::maxDescription())); + Oauth_application::maxDesc())); return; } elseif (empty($source_url)) { $this->showForm(_('Source URL is required.')); From aef42e2f65d67db0c27521a69d15675515c9a80c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 16:52:22 -0700 Subject: [PATCH 124/310] Don't spew a notice warning to output while processing logging for PEAR DB errors --- lib/util.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index e0457140e2..dc853f657b 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1480,7 +1480,12 @@ function common_log_db_error(&$object, $verb, $filename=null) { $objstr = common_log_objstring($object); $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError'); - common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename); + if (is_object($last_error)) { + $msg = $last_error->message; + } else { + $msg = 'Unknown error (' . var_export($last_error, true) . ')'; + } + common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename); } function common_log_objstring(&$object) From 85bf20d95afeadd682584e595df9157ad853a3ed Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 16:57:07 -0700 Subject: [PATCH 125/310] Fix error when editing OAuth app registration and only changing the icon. --- actions/editapplication.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/actions/editapplication.php b/actions/editapplication.php index b25457069c..477bcd6f0b 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -253,7 +253,10 @@ class EditApplicationAction extends OwnerDesignAction $result = $this->app->update($orig); - if (!$result) { + // Note: 0 means no rows changed, which can happen if the only + // thing we changed was the icon, since it's not altered until + // the next step. + if ($result === false) { common_log_db_error($this->app, 'UPDATE', __FILE__); $this->serverError(_('Could not update application.')); } From 28b06864fbb5a14e4a1b06803461b4022682dac6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 17:37:21 -0700 Subject: [PATCH 126/310] Fix for #2227: 'view profile designs' and other default-on options are initially mis-set to off due to caching at account creation --- classes/User.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/classes/User.php b/classes/User.php index 4c25ee3d97..080e338fe7 100644 --- a/classes/User.php +++ b/classes/User.php @@ -255,6 +255,19 @@ class User extends Memcached_DataObject $user->inboxed = 1; + // Set default-on options here, otherwise they'll be disabled + // initially for sites using caching, since the initial encache + // doesn't know about the defaults in the database. + $user->emailnotifysub = 1; + $user->emailnotifyfav = 1; + $user->emailnotifynudge = 1; + $user->emailnotifymsg = 1; + $user->emailnotifyattn = 1; + $user->emailmicroid = 1; + $user->emailpost = 1; + $user->jabbermicroid = 1; + $user->viewdesigns = 1; + $user->created = common_sql_now(); if (Event::handle('StartUserRegister', array(&$user, &$profile))) { From d342899677d208d7e300b29ad3a8d053e4c6f704 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 Sep 2010 18:07:19 -0700 Subject: [PATCH 127/310] Fix #2323: typo on oauth connections page --- actions/oauthconnectionssettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index 8a206d7101..1fa70662fc 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -80,7 +80,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction function getInstructions() { - return _('You have allowed the following applications to access you account.'); + return _('You have allowed the following applications to access your account.'); } /** From ab24007f4c2f0e1290e8546893e7fa4394e367d5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Sep 2010 06:12:43 -0400 Subject: [PATCH 128/310] throw a catchable exception in getUser() --- scripts/commandline.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/commandline.inc b/scripts/commandline.inc index a29f588448..6d94a318d6 100644 --- a/scripts/commandline.inc +++ b/scripts/commandline.inc @@ -178,6 +178,10 @@ function get_option_value($opt, $alt=null) return null; } +class NoUserArgumentException extends Exception +{ +} + function getUser() { $user = null; @@ -195,8 +199,7 @@ function getUser() throw new Exception("Can't find user with nickname '$nickname'"); } } else { - show_help(); - exit(1); + throw new NoUserArgumentException("No user argument specified."); } return $user; From f7ec40fa427e87c9a04465ba52e82b3c62f7fefd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Sep 2010 06:13:19 -0400 Subject: [PATCH 129/310] make some static functions public for OStatus_profile --- plugins/OStatus/classes/Ostatus_profile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 19fe5169b4..bf2bcb44ff 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1088,7 +1088,7 @@ class Ostatus_profile extends Memcached_DataObject * @return mixed URL string or false */ - protected static function getActivityObjectAvatar($object, $hints=array()) + public static function getActivityObjectAvatar($object, $hints=array()) { if ($object->avatarLinks) { $best = false; @@ -1390,7 +1390,7 @@ class Ostatus_profile extends Memcached_DataObject } } - protected static function updateProfile($profile, $object, $hints=array()) + public static function updateProfile($profile, $object, $hints=array()) { $orig = clone($profile); @@ -1518,7 +1518,7 @@ class Ostatus_profile extends Memcached_DataObject return $bio; } - protected static function getActivityObjectNickname($object, $hints=array()) + public static function getActivityObjectNickname($object, $hints=array()) { if ($object->poco) { if (!empty($object->poco->preferredUsername)) { From 556a2a8fd8ce278f5c0b5ced9e762c6f9bac8659 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Sep 2010 06:21:47 -0400 Subject: [PATCH 130/310] use Profile::getUri() to get a profile's URI --- classes/Notice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index 0539ca3b1d..04dcd24cd5 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1255,7 +1255,7 @@ class Notice extends Memcached_DataObject foreach ($reply_ids as $id) { $profile = Profile::staticGet('id', $id); if (!empty($profile)) { - $ctx->attention[] = $profile->uri; + $ctx->attention[] = $profile->getUri(); } } From 91a186251047127ad7f1238f47ff761d9127627c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Sep 2010 14:06:39 -0400 Subject: [PATCH 131/310] printfv and printfq functions in commandline.inc --- scripts/commandline.inc | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/scripts/commandline.inc b/scripts/commandline.inc index 6d94a318d6..9390890ef3 100644 --- a/scripts/commandline.inc +++ b/scripts/commandline.inc @@ -204,3 +204,43 @@ function getUser() return $user; } + +/** "Printf not quiet" */ + +function printfnq() +{ + if (have_option('q', 'quiet')) { + return null; + } + + $cargs = func_num_args(); + + if ($cargs == 0) { + return 0; + } + + $args = func_get_args(); + $format = array_shift($args); + + return vprintf($format, $args); +} + +/** "Print when verbose" */ + +function printfv() +{ + if (!have_option('v', 'verbose')) { + return null; + } + + $cargs = func_num_args(); + + if ($cargs == 0) { + return 0; + } + + $args = func_get_args(); + $format = array_shift($args); + + return vprintf($format, $args); +} \ No newline at end of file From 28fdc733a7e90146ae7803d61c352c1758285bd8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 21 Sep 2010 14:09:46 -0400 Subject: [PATCH 132/310] change the location and title of the feeds section --- lib/action.php | 8 ++++---- lib/feedlist.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/action.php b/lib/action.php index e503975147..dc21c75e5a 100644 --- a/lib/action.php +++ b/lib/action.php @@ -715,14 +715,14 @@ class Action extends HTMLOutputter // lawsuit { $this->elementStart('div', array('id' => 'aside_primary', 'class' => 'aside')); - if (Event::handle('StartShowExportData', array($this))) { - $this->showExportData(); - Event::handle('EndShowExportData', array($this)); - } if (Event::handle('StartShowSections', array($this))) { $this->showSections(); Event::handle('EndShowSections', array($this)); } + if (Event::handle('StartShowExportData', array($this))) { + $this->showExportData(); + Event::handle('EndShowExportData', array($this)); + } $this->elementEnd('div'); } diff --git a/lib/feedlist.php b/lib/feedlist.php index 9ae83f5e88..7493e3575e 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -61,7 +61,7 @@ class FeedList extends Widget { $this->out->elementStart('div', array('id' => 'export_data', 'class' => 'section')); - $this->out->element('h2', null, _('Export data')); + $this->out->element('h2', null, _('Feeds')); $this->out->elementStart('ul', array('class' => 'xoxo')); foreach ($feeds as $feed) { From 94de78fa0f795e7eecb8dc59a3abfeaf131f05c3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 12:38:04 -0700 Subject: [PATCH 133/310] Workaround for #2485: in profile output on feeds, fall back to the Twitter 73x73 avatar instead of going straight to the 96x96 default image on twitter-import profiles. --- lib/activityobject.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/activityobject.php b/lib/activityobject.php index 677a48197f..444577775f 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -430,6 +430,17 @@ class ActivityObject $alink->height = $size; $alink->width = $size; $alink->url = Avatar::defaultImage($size); + + if ($size == AVATAR_PROFILE_SIZE) { + // Hack for Twitter import: we don't have a 96x96 image, + // but we do have a 73x73 image. For now, fake it with that. + $avatar = $profile->getAvatar(73); + if ($avatar) { + $alink = AvatarLink::fromAvatar($avatar); + $alink->height= $size; + $alink->width = $size; + } + } } $object->avatarLinks[] = $alink; From da4463cb765937190e8a202d20ca5d33ecd46beb Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 21 Sep 2010 13:06:23 -0700 Subject: [PATCH 134/310] License admin panel should allow empty or valid URLs for (license URL and license image URL) when selecting private or allrightsreserved licenses. --- actions/licenseadminpanel.php | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/actions/licenseadminpanel.php b/actions/licenseadminpanel.php index c9aad5c4f0..9165ca19d9 100644 --- a/actions/licenseadminpanel.php +++ b/actions/licenseadminpanel.php @@ -161,12 +161,31 @@ class LicenseadminpanelAction extends AdminPanelAction $options = array('allowed_schemes' => array('http', 'https')); - if (!Validate::uri($values['license']['url'], $options)) { - $this->clientError(_("Invalid license URL.")); + // URLs should be set for cc license + + if ($values['license']['type'] == 'cc') { + if (!Validate::uri($values['license']['url'], $options)) { + $this->clientError(_("Invalid license URL.")); + } + if (!Validate::uri($values['license']['image'], $options)) { + $this->clientError(_("Invalid license image URL.")); + } } - if (!Validate::uri($values['license']['image'], $options)) { - $this->clientError(_("Invalid license image URL.")); + // can be either blank or a valid URL for private & allrightsreserved + + if (!empty($values['license']['url'])) { + if (!Validate::uri($values['license']['url'], $options)) { + $this->clientError(_("License URL must be blank or a valid URL.")); + } + } + + // can be either blank or a valid URL for private & allrightsreserved + + if (!empty($values['license']['image'])) { + if (!Validate::uri($values['license']['image'], $options)) { + $this->clientError(_("License image must be blank or valid URL.")); + } } } } From 324fada5ea80ece851a2481127a5cbd5732e171f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 20 Apr 2010 18:49:07 +0200 Subject: [PATCH 135/310] initial work on yammer importer code --- plugins/YammerImport/YammerImportPlugin.php | 77 ++++++++++ plugins/YammerImport/yamdump.php | 157 ++++++++++++++++++++ 2 files changed, 234 insertions(+) create mode 100644 plugins/YammerImport/YammerImportPlugin.php create mode 100644 plugins/YammerImport/yamdump.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php new file mode 100644 index 0000000000..02923493fb --- /dev/null +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -0,0 +1,77 @@ +. + */ + +/** + * @package YammerImportPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } + +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/'); + +class YammerImportPlugin extends Plugin +{ + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('admin/import/yammer', + array('action' => 'importyammer')); + return true; + } + + /** + * Set up queue handlers for import processing + * @param QueueManager $qm + * @return boolean hook return + */ + function onEndInitializeQueueManager(QueueManager $qm) + { + $qm->connect('importym', 'ImportYmQueueHandler'); + + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($cls) { + case 'yammerimqueuehandler': + case 'importyammeraction': + require_once $base . $lower . '.php'; + return false; + default: + return true; + } + } +} diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php new file mode 100644 index 0000000000..60be81ca5d --- /dev/null +++ b/plugins/YammerImport/yamdump.php @@ -0,0 +1,157 @@ +consumerKey = $consumerKey; + $this->consumerSecret = $consumerSecret; + $this->token = $token; + $this->tokenSecret = $tokenSecret; + } + + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return array + * + * @throws Exception for HTTP error + */ + protected function fetch($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + $headers = array('Authorization: ' . $this->authHeader()); + var_dump($headers); + + $client = HTTPClient::start(); + $response = $client->get($url, $headers); + + if ($response->isOk()) { + return $response->getBody(); + } else { + throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); + } + } + + /** + * Hit the main Yammer API point and decode returned JSON data. + * + * @param string $method + * @param array $params + * @return array from JSON data + * + * @throws Exception for HTTP error or bad JSON return + */ + protected function api($method, $params=array()) + { + $body = $this->fetch("api/v1/$method.json", $params); + $data = json_decode($body, true); + if (!$data) { + throw new Exception("Invalid JSON response from Yammer API"); + } + return $data; + } + + /** + * Build an Authorization header value from the keys we have available. + */ + protected function authHeader() + { + // token + // token_secret + $params = array('realm' => '', + 'oauth_consumer_key' => $this->consumerKey, + 'oauth_signature_method' => 'PLAINTEXT', + 'oauth_timestamp' => time(), + 'oauth_nonce' => time(), + 'oauth_version' => '1.0'); + if ($this->token) { + $params['oauth_token'] = $this->token; + } + if ($this->tokenSecret) { + $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; + } else { + $params['oauth_signature'] = $this->consumerSecret . '&'; + } + if ($this->verifier) { + $params['oauth_verifier'] = $this->verifier; + } + $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); + return 'OAuth ' . implode(', ', $parts); + } + + /** + * @param string $key + * @param string $val + */ + protected function authHeaderChunk($key, $val) + { + return urlencode($key) . '="' . urlencode($val) . '"'; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function requestToken() + { + if ($this->token || $this->tokenSecret) { + throw new Exception("Requesting a token, but already set up with a token"); + } + $data = $this->fetch('oauth/request_token'); + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function accessToken($verifier) + { + $this->verifier = $verifier; + $data = $this->fetch('oauth/access_token'); + $this->verifier = null; + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * Give the URL to send users to to authorize a new app setup + * + * @param string $token as returned from accessToken() + * @return string URL + */ + public function authorizeUrl($token) + { + return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); + } + + public function messages($params) + { + return $this->api('messages', $params); + } +} + + +// temp stuff +require 'yam-config.php'; +$yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); +var_dump($yam->messages()); \ No newline at end of file From 025184ce75b1e6a16fe6facfcd52f3da3a121c3d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 13:29:44 -0700 Subject: [PATCH 136/310] Split SN_YammerClient out to own class file --- plugins/YammerImport/sn_yammerclient.php | 165 +++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 plugins/YammerImport/sn_yammerclient.php diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php new file mode 100644 index 0000000000..c77fc4ce36 --- /dev/null +++ b/plugins/YammerImport/sn_yammerclient.php @@ -0,0 +1,165 @@ +. + */ + +/** + * Basic client class for Yammer's OAuth/JSON API. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class SN_YammerClient +{ + protected $apiBase = "https://www.yammer.com"; + protected $consumerKey, $consumerSecret; + protected $token, $tokenSecret; + + public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) + { + $this->consumerKey = $consumerKey; + $this->consumerSecret = $consumerSecret; + $this->token = $token; + $this->tokenSecret = $tokenSecret; + } + + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return array + * + * @throws Exception for HTTP error + */ + protected function fetch($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + $headers = array('Authorization: ' . $this->authHeader()); + + $client = HTTPClient::start(); + $response = $client->get($url, $headers); + + if ($response->isOk()) { + return $response->getBody(); + } else { + throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); + } + } + + /** + * Hit the main Yammer API point and decode returned JSON data. + * + * @param string $method + * @param array $params + * @return array from JSON data + * + * @throws Exception for HTTP error or bad JSON return + */ + protected function api($method, $params=array()) + { + $body = $this->fetch("api/v1/$method.json", $params); + $data = json_decode($body, true); + if (!$data) { + throw new Exception("Invalid JSON response from Yammer API"); + } + return $data; + } + + /** + * Build an Authorization header value from the keys we have available. + */ + protected function authHeader() + { + // token + // token_secret + $params = array('realm' => '', + 'oauth_consumer_key' => $this->consumerKey, + 'oauth_signature_method' => 'PLAINTEXT', + 'oauth_timestamp' => time(), + 'oauth_nonce' => time(), + 'oauth_version' => '1.0'); + if ($this->token) { + $params['oauth_token'] = $this->token; + } + if ($this->tokenSecret) { + $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; + } else { + $params['oauth_signature'] = $this->consumerSecret . '&'; + } + if ($this->verifier) { + $params['oauth_verifier'] = $this->verifier; + } + $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); + return 'OAuth ' . implode(', ', $parts); + } + + /** + * @param string $key + * @param string $val + */ + protected function authHeaderChunk($key, $val) + { + return urlencode($key) . '="' . urlencode($val) . '"'; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function requestToken() + { + if ($this->token || $this->tokenSecret) { + throw new Exception("Requesting a token, but already set up with a token"); + } + $data = $this->fetch('oauth/request_token'); + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function accessToken($verifier) + { + $this->verifier = $verifier; + $data = $this->fetch('oauth/access_token'); + $this->verifier = null; + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * Give the URL to send users to to authorize a new app setup + * + * @param string $token as returned from accessToken() + * @return string URL + */ + public function authorizeUrl($token) + { + return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); + } + + public function messages($params) + { + return $this->api('messages', $params); + } +} From 14a3697a619ae22034aad4e6cb8d11a0ad7ff623 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 13:56:30 -0700 Subject: [PATCH 137/310] Beginning stub of Yammer message->notice import --- plugins/YammerImport/YammerImportPlugin.php | 6 +- plugins/YammerImport/yamdump.php | 162 +++----------------- plugins/YammerImport/yammerimporter.php | 68 ++++++++ 3 files changed, 90 insertions(+), 146 deletions(-) create mode 100644 plugins/YammerImport/yammerimporter.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 02923493fb..a3520d8a86 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -65,10 +65,12 @@ class YammerImportPlugin extends Plugin { $base = dirname(__FILE__); $lower = strtolower($cls); - switch ($cls) { + switch ($lower) { + case 'sn_yammerclient': + case 'yammerimporter': case 'yammerimqueuehandler': case 'importyammeraction': - require_once $base . $lower . '.php'; + require_once "$base/$lower.php"; return false; default: return true; diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 60be81ca5d..953b7d1a62 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -8,150 +8,24 @@ define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); require INSTALLDIR . "/scripts/commandline.inc"; -class SN_YammerClient -{ - protected $apiBase = "https://www.yammer.com"; - protected $consumerKey, $consumerSecret; - protected $token, $tokenSecret; - - public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) - { - $this->consumerKey = $consumerKey; - $this->consumerSecret = $consumerSecret; - $this->token = $token; - $this->tokenSecret = $tokenSecret; - } - - /** - * Make an HTTP hit with OAuth headers and return the response body on success. - * - * @param string $path URL chunk for the API method - * @param array $params - * @return array - * - * @throws Exception for HTTP error - */ - protected function fetch($path, $params=array()) - { - $url = $this->apiBase . '/' . $path; - if ($params) { - $url .= '?' . http_build_query($params, null, '&'); - } - $headers = array('Authorization: ' . $this->authHeader()); - var_dump($headers); - - $client = HTTPClient::start(); - $response = $client->get($url, $headers); - - if ($response->isOk()) { - return $response->getBody(); - } else { - throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); - } - } - - /** - * Hit the main Yammer API point and decode returned JSON data. - * - * @param string $method - * @param array $params - * @return array from JSON data - * - * @throws Exception for HTTP error or bad JSON return - */ - protected function api($method, $params=array()) - { - $body = $this->fetch("api/v1/$method.json", $params); - $data = json_decode($body, true); - if (!$data) { - throw new Exception("Invalid JSON response from Yammer API"); - } - return $data; - } - - /** - * Build an Authorization header value from the keys we have available. - */ - protected function authHeader() - { - // token - // token_secret - $params = array('realm' => '', - 'oauth_consumer_key' => $this->consumerKey, - 'oauth_signature_method' => 'PLAINTEXT', - 'oauth_timestamp' => time(), - 'oauth_nonce' => time(), - 'oauth_version' => '1.0'); - if ($this->token) { - $params['oauth_token'] = $this->token; - } - if ($this->tokenSecret) { - $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; - } else { - $params['oauth_signature'] = $this->consumerSecret . '&'; - } - if ($this->verifier) { - $params['oauth_verifier'] = $this->verifier; - } - $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); - return 'OAuth ' . implode(', ', $parts); - } - - /** - * @param string $key - * @param string $val - */ - protected function authHeaderChunk($key, $val) - { - return urlencode($key) . '="' . urlencode($val) . '"'; - } - - /** - * @return array of oauth return data; should contain nice things - */ - public function requestToken() - { - if ($this->token || $this->tokenSecret) { - throw new Exception("Requesting a token, but already set up with a token"); - } - $data = $this->fetch('oauth/request_token'); - $arr = array(); - parse_str($data, $arr); - return $arr; - } - - /** - * @return array of oauth return data; should contain nice things - */ - public function accessToken($verifier) - { - $this->verifier = $verifier; - $data = $this->fetch('oauth/access_token'); - $this->verifier = null; - $arr = array(); - parse_str($data, $arr); - return $arr; - } - - /** - * Give the URL to send users to to authorize a new app setup - * - * @param string $token as returned from accessToken() - * @return string URL - */ - public function authorizeUrl($token) - { - return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); - } - - public function messages($params) - { - return $this->api('messages', $params); - } -} - - // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -var_dump($yam->messages()); \ No newline at end of file +$imp = new YammerImporter(); + +$data = $yam->messages(); +/* + ["messages"]=> + ["meta"]=> // followed_user_ids, current_user_id, etc + ["threaded_extended"]=> // empty! + ["references"]=> // lists the users, threads, replied messages, tags +*/ + +// 1) we're getting messages in descending order, but we'll want to process ascending +// 2) we'll need to pull out all those referenced items too? +// 3) do we need to page over or anything? + +foreach ($data['messages'] as $message) { + $notice = $imp->messageToNotice($message); + var_dump($notice); +} diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php new file mode 100644 index 0000000000..b322c9b64e --- /dev/null +++ b/plugins/YammerImport/yammerimporter.php @@ -0,0 +1,68 @@ +. + */ + +/** + * Basic client class for Yammer's OAuth/JSON API. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerImporter +{ + function messageToNotice($message) + { + $messageId = $message['id']; + $messageUrl = $message['url']; + + $profile = $this->findImportedProfile($message['sender_id']); + $content = $message['body']['plain']; + $source = 'yammer'; + $options = array(); + + if ($message['replied_to_id']) { + $replyto = $this->findImportedNotice($message['replied_to_id']); + if ($replyto) { + $options['replyto'] = $replyto; + } + } + $options['created'] = common_sql_date(strtotime($message['created_at'])); + + // Parse/save rendered text? + // Save liked info? + // @todo attachments? + + return array('orig_id' => $messageId, + 'profile' => $profile, + 'content' => $content, + 'source' => $source, + 'options' => $options); + } + + function findImportedProfile($userId) + { + // @fixme + return $userId; + } + + function findImportedNotice($messageId) + { + // @fixme + return $messageId; + } +} \ No newline at end of file From 05af14e1ca785b65723935486bb236fd6352758e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 14:56:20 -0700 Subject: [PATCH 138/310] YammerImport: initial processing code for users, groups, and messages --- plugins/YammerImport/yamdump.php | 33 ++++- plugins/YammerImport/yammerimporter.php | 169 ++++++++++++++++++++++-- 2 files changed, 189 insertions(+), 13 deletions(-) diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 953b7d1a62..ad739760a8 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -25,7 +25,36 @@ $data = $yam->messages(); // 2) we'll need to pull out all those referenced items too? // 3) do we need to page over or anything? -foreach ($data['messages'] as $message) { - $notice = $imp->messageToNotice($message); +// 20 qualifying messages per hit... +// use older_than to grab more +// (better if we can go in reverse though!) +// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. + +foreach ($data['references'] as $item) { + if ($item['type'] == 'user') { + $user = $imp->prepUser($item); + var_dump($user); + } else if ($item['type'] == 'group') { + $group = $imp->prepGroup($item); + var_dump($group); + } else if ($item['type'] == 'tag') { + // could need these if we work from the parsed message text + // otherwise, the #blarf in orig text is fine. + } else if ($item['type'] == 'thread') { + // Shouldn't need thread info; we'll reconstruct conversations + // from the reply-to chains. + } else if ($item['type'] == 'message') { + // If we're processing everything, then we don't need the refs here. + } else { + echo "(skipping unknown ref: " . $item['type'] . ")\n"; + } +} + +// Process in reverse chron order... +// @fixme follow paging +$messages = $data['messages']; +array_reverse($messages); +foreach ($messages as $message) { + $notice = $imp->prepNotice($message); var_dump($notice); } diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index b322c9b64e..7710d41b52 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -25,29 +25,160 @@ */ class YammerImporter { - function messageToNotice($message) - { - $messageId = $message['id']; - $messageUrl = $message['url']; - $profile = $this->findImportedProfile($message['sender_id']); - $content = $message['body']['plain']; + /** + * Load or create an imported profile from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return Profile + */ + function importUserProfile($item) + { + $data = $this->prepUser($item); + + $profileId = $this->findImportedProfile($data['orig_id']); + if ($profileId) { + return Profile::staticGet('id', $profileId); + } else { + $user = User::register($data['options']); + // @fixme set avatar! + return $user->getProfile(); + } + } + + /** + * Load or create an imported group from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return User_group + */ + function importGroup($item) + { + $data = $this->prepGroup($item); + + $groupId = $this->findImportedGroup($data['orig_id']); + if ($groupId) { + return User_group::staticGet('id', $groupId); + } else { + $group = User_group::register($data['options']); + // @fixme set avatar! + return $group; + } + } + + /** + * Load or create an imported notice from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return Notice + */ + function importNotice($item) + { + $data = $this->prepNotice($item); + + $noticeId = $this->findImportedNotice($data['orig_id']); + if ($noticeId) { + return Notice::staticGet('id', $noticeId); + } else { + $notice = Notice::saveNew($data['profile'], + $data['content'], + $data['source'], + $data['options']); + // @fixme attachments? + return $notice; + } + } + + function prepUser($item) + { + if ($item['type'] != 'user') { + throw new Exception('Wrong item type sent to Yammer user import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + // @fixme check username rules? + + $options['nickname'] = $item['name']; + $options['fullname'] = trim($item['full_name']); + + // We don't appear to have full bio avail here! + $options['bio'] = $item['job_title']; + + // What about other data like emails? + + // Avatar... this will be the "_small" variant. + // Remove that (pre-extension) suffix to get the orig-size image. + $avatar = $item['mugshot_url']; + + // Warning: we don't have following state for other users? + + return array('orig_id' => $origId, + 'orig_url' => $origUrl, + 'avatar' => $avatar, + 'options' => $options); + + } + + function prepGroup($item) + { + if ($item['type'] != 'group') { + throw new Exception('Wrong item type sent to Yammer group import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + $privacy = $item['privacy']; // Warning! only public groups in SN so far + + $options['nickname'] = $item['name']; + $options['fullname'] = $item['full_name']; + $options['created'] = $this->timestamp($item['created_at']); + + $avatar = $item['mugshot_url']; // as with user profiles... + + + $options['mainpage'] = common_local_url('showgroup', + array('nickname' => $options['nickname'])); + + // @fixme what about admin user for the group? + // bio? homepage etc? aliases? + + $options['local'] = true; + return array('orig_id' => $origId, + 'orig_url' => $origUrl, + 'options' => $options); + } + + function prepNotice($item) + { + if (isset($item['type']) && $item['type'] != 'message') { + throw new Exception('Wrong item type sent to Yammer message import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + $profile = $this->findImportedProfile($item['sender_id']); + $content = $item['body']['plain']; $source = 'yammer'; $options = array(); - if ($message['replied_to_id']) { - $replyto = $this->findImportedNotice($message['replied_to_id']); + if ($item['replied_to_id']) { + $replyto = $this->findImportedNotice($item['replied_to_id']); if ($replyto) { $options['replyto'] = $replyto; } } - $options['created'] = common_sql_date(strtotime($message['created_at'])); + $options['created'] = $this->timestamp($item['created_at']); // Parse/save rendered text? // Save liked info? // @todo attachments? - return array('orig_id' => $messageId, + return array('orig_id' => $origId, + 'orig_url' => $origUrl, 'profile' => $profile, 'content' => $content, 'source' => $source, @@ -60,9 +191,25 @@ class YammerImporter return $userId; } + function findImportedGroup($groupId) + { + // @fixme + return $groupId; + } + function findImportedNotice($messageId) { // @fixme return $messageId; } -} \ No newline at end of file + + /** + * Normalize timestamp format. + * @param string $ts + * @return string + */ + function timestamp($ts) + { + return common_sql_date(strtotime($ts)); + } +} From 8d019c03ee7a2a3a25bfb3f2afa25951eac06428 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Tue, 21 Sep 2010 18:04:28 -0400 Subject: [PATCH 139/310] Do not allow blank passwords when authenticating against LDAP. --- plugins/LdapCommon/LdapCommon.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/LdapCommon/LdapCommon.php b/plugins/LdapCommon/LdapCommon.php index 7dea1f0ed4..159b2d265a 100644 --- a/plugins/LdapCommon/LdapCommon.php +++ b/plugins/LdapCommon/LdapCommon.php @@ -144,6 +144,12 @@ class LdapCommon if(!$entry){ return false; }else{ + if(empty($password)) { + //NET_LDAP2 will do an anonymous bind if bindpw is not set / empty string + //which causes all login attempts that involve a blank password to appear + //to succeed. Which is obviously not good. + return false; + } $config = $this->get_ldap_config(); $config['binddn']=$entry->dn(); $config['bindpw']=$password; From 9b1b9b711b79663ece7c306225342b9f9d750cff Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:24:14 -0700 Subject: [PATCH 140/310] Poking around at import funcs... --- plugins/YammerImport/yammerimporter.php | 75 ++++++++++++++++++++----- 1 file changed, 62 insertions(+), 13 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 7710d41b52..2c8d09b9b8 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -26,22 +26,27 @@ class YammerImporter { + protected $users=array(); + protected $groups=array(); + protected $notices=array(); + /** * Load or create an imported profile from Yammer data. * * @param object $item loaded JSON data for Yammer importer * @return Profile */ - function importUserProfile($item) + function importUser($item) { $data = $this->prepUser($item); - $profileId = $this->findImportedProfile($data['orig_id']); + $profileId = $this->findImportedUser($data['orig_id']); if ($profileId) { return Profile::staticGet('id', $profileId); } else { $user = User::register($data['options']); // @fixme set avatar! + $this->recordImportedUser($data['orig_id'], $user->id); return $user->getProfile(); } } @@ -62,6 +67,7 @@ class YammerImporter } else { $group = User_group::register($data['options']); // @fixme set avatar! + $this->recordImportedGroup($data['orig_id'], $group->id); return $group; } } @@ -85,10 +91,17 @@ class YammerImporter $data['source'], $data['options']); // @fixme attachments? + $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; } } + /** + * Pull relevant info out of a Yammer data record for a user import. + * + * @param array $item + * @return array + */ function prepUser($item) { if ($item['type'] != 'user') { @@ -121,6 +134,12 @@ class YammerImporter } + /** + * Pull relevant info out of a Yammer data record for a group import. + * + * @param array $item + * @return array + */ function prepGroup($item) { if ($item['type'] != 'group') { @@ -151,6 +170,12 @@ class YammerImporter 'options' => $options); } + /** + * Pull relevant info out of a Yammer data record for a notice import. + * + * @param array $item + * @return array + */ function prepNotice($item) { if (isset($item['type']) && $item['type'] != 'message') { @@ -160,7 +185,7 @@ class YammerImporter $origId = $item['id']; $origUrl = $item['url']; - $profile = $this->findImportedProfile($item['sender_id']); + $profile = $this->findImportedUser($item['sender_id']); $content = $item['body']['plain']; $source = 'yammer'; $options = array(); @@ -185,22 +210,46 @@ class YammerImporter 'options' => $options); } - function findImportedProfile($userId) + private function findImportedUser($origId) { - // @fixme - return $userId; + if (isset($this->users[$origId])) { + return $this->users[$origId]; + } else { + return false; + } } - function findImportedGroup($groupId) + private function findImportedGroup($origId) { - // @fixme - return $groupId; + if (isset($this->groups[$origId])) { + return $this->groups[$origId]; + } else { + return false; + } } - function findImportedNotice($messageId) + private function findImportedNotice($origId) { - // @fixme - return $messageId; + if (isset($this->notices[$origId])) { + return $this->notices[$origId]; + } else { + return false; + } + } + + private function recordImportedUser($origId, $userId) + { + $this->users[$origId] = $userId; + } + + private function recordImportedGroup($origId, $groupId) + { + $this->groups[$origId] = $groupId; + } + + private function recordImportedNotice($origId, $noticeId) + { + $this->notices[$origId] = $noticeId; } /** @@ -208,7 +257,7 @@ class YammerImporter * @param string $ts * @return string */ - function timestamp($ts) + private function timestamp($ts) { return common_sql_date(strtotime($ts)); } From 5b9efbb5014307c6ed3e4cf9a6e87ceb4331c223 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:29:04 -0700 Subject: [PATCH 141/310] fix notices in SN_YammerClient --- plugins/YammerImport/sn_yammerclient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index c77fc4ce36..21caa7b7ca 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -27,7 +27,7 @@ class SN_YammerClient { protected $apiBase = "https://www.yammer.com"; protected $consumerKey, $consumerSecret; - protected $token, $tokenSecret; + protected $token, $tokenSecret, $verifier; public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) { @@ -158,7 +158,7 @@ class SN_YammerClient return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); } - public function messages($params) + public function messages($params=array()) { return $this->api('messages', $params); } From 3e2cf3876db1cdb546f9bc9c16b2f28ceb693107 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:54:39 -0700 Subject: [PATCH 142/310] Initial semi-working yammer import :D * no avatars * no details of user accounts or their auth info * no group memberships or subscriptions * no attachments * will probably esplode if >20 messages in your network *whistle innocently* --- plugins/YammerImport/yammer-import.php | 59 ++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 plugins/YammerImport/yammer-import.php diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php new file mode 100644 index 0000000000..d6ec975132 --- /dev/null +++ b/plugins/YammerImport/yammer-import.php @@ -0,0 +1,59 @@ +messages(); +/* + ["messages"]=> + ["meta"]=> // followed_user_ids, current_user_id, etc + ["threaded_extended"]=> // empty! + ["references"]=> // lists the users, threads, replied messages, tags +*/ + +// 1) we're getting messages in descending order, but we'll want to process ascending +// 2) we'll need to pull out all those referenced items too? +// 3) do we need to page over or anything? + +// 20 qualifying messages per hit... +// use older_than to grab more +// (better if we can go in reverse though!) +// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. +foreach ($data['references'] as $item) { + if ($item['type'] == 'user') { + $user = $imp->importUser($item); + echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; + } else if ($item['type'] == 'group') { + $group = $imp->importGroup($item); + echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; + } else if ($item['type'] == 'tag') { + // could need these if we work from the parsed message text + // otherwise, the #blarf in orig text is fine. + } else if ($item['type'] == 'thread') { + // Shouldn't need thread info; we'll reconstruct conversations + // from the reply-to chains. + } else if ($item['type'] == 'message') { + // If we're processing everything, then we don't need the refs here. + } else { + echo "(skipping unknown ref: " . $item['type'] . ")\n"; + } +} + +// Process in reverse chron order... +// @fixme follow paging +$messages = $data['messages']; +$messages = array_reverse($messages); +foreach ($messages as $item) { + $notice = $imp->importNotice($item); + echo "Imported Yammer notice " . $item['id'] . " as $notice->id\n"; +} From 8091c4d2913b9bbfa24235ad8d263ae324e56765 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:10:44 -0700 Subject: [PATCH 143/310] Avatars for Yammer import --- plugins/YammerImport/yammerimporter.php | 61 +++++++++++++++++++++++-- 1 file changed, 57 insertions(+), 4 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 2c8d09b9b8..15970d0729 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -45,9 +45,14 @@ class YammerImporter return Profile::staticGet('id', $profileId); } else { $user = User::register($data['options']); - // @fixme set avatar! - $this->recordImportedUser($data['orig_id'], $user->id); - return $user->getProfile(); + $profile = $user->getProfile(); + try { + $this->saveAvatar($data['avatar'], $profile); + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + } + $this->recordImportedUser($data['orig_id'], $profile->id); + return $profile; } } @@ -66,7 +71,11 @@ class YammerImporter return User_group::staticGet('id', $groupId); } else { $group = User_group::register($data['options']); - // @fixme set avatar! + try { + $this->saveAvatar($data['avatar'], $group); + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + } $this->recordImportedGroup($data['orig_id'], $group->id); return $group; } @@ -261,4 +270,48 @@ class YammerImporter { return common_sql_date(strtotime($ts)); } + + /** + * Download and update given avatar image + * + * @param string $url + * @param mixed $dest either a Profile or User_group object + * @throws Exception in various failure cases + */ + private function saveAvatar($url, $dest) + { + // Yammer API data mostly gives us the small variant. + // Try hitting the source image if we can! + // @fixme no guarantee of this URL scheme I think. + $url = preg_replace('/_small(\..*?)$/', '$1', $url); + + if (!common_valid_http_url($url)) { + throw new ServerException(sprintf(_m("Invalid avatar URL %s."), $url)); + } + + // @fixme this should be better encapsulated + // ripped from oauthstore.php (for old OMB client) + $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); + if (!copy($url, $temp_filename)) { + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + } + + $id = $dest->id; + // @fixme should we be using different ids? + $imagefile = new ImageFile($id, $temp_filename); + $filename = Avatar::filename($id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + // @fixme hardcoded chmod is lame, but seems to be necessary to + // keep from accidentally saving images from command-line (queues) + // that can't be read from web server, which causes hard-to-notice + // problems later on: + // + // http://status.net/open-source/issues/2663 + chmod(Avatar::path($filename), 0644); + + $dest->setOriginal($filename); + } } From 0ff28ac8e07994267b3e7b83fd82690e33ba222b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:19:02 -0700 Subject: [PATCH 144/310] Fix for replies in Yammer import --- plugins/YammerImport/yammerimporter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 15970d0729..ae0037ffee 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -200,9 +200,9 @@ class YammerImporter $options = array(); if ($item['replied_to_id']) { - $replyto = $this->findImportedNotice($item['replied_to_id']); - if ($replyto) { - $options['replyto'] = $replyto; + $replyTo = $this->findImportedNotice($item['replied_to_id']); + if ($replyTo) { + $options['reply_to'] = $replyTo; } } $options['created'] = $this->timestamp($item['created_at']); From 9be9d2f72013a451820e3e3e9e7905466ddb8857 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:27:10 -0700 Subject: [PATCH 145/310] Full dump of input data in yamdump also for my reference... --- plugins/YammerImport/yamdump.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index ad739760a8..96127dd176 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -14,6 +14,8 @@ $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter(); $data = $yam->messages(); +var_dump($data); + /* ["messages"]=> ["meta"]=> // followed_user_ids, current_user_id, etc From 47cf29b2a2fd82b0045dad7686633200479a6b37 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:27:26 -0700 Subject: [PATCH 146/310] Copy favorites in Yammer importer --- plugins/YammerImport/yammerimporter.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index ae0037ffee..08cbbf790b 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -99,6 +99,12 @@ class YammerImporter $data['content'], $data['source'], $data['options']); + foreach ($data['faves'] as $nickname) { + $user = User::staticGet('nickname', $nickname); + if ($user) { + Fave::addNew($user->getProfile(), $notice); + } + } // @fixme attachments? $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; @@ -207,8 +213,13 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); + $faves = array(); + foreach ($item['liked_by']['names'] as $liker) { + // "permalink" is the username. wtf? + $faves[] = $liker['permalink']; + } + // Parse/save rendered text? - // Save liked info? // @todo attachments? return array('orig_id' => $origId, @@ -216,7 +227,8 @@ class YammerImporter 'profile' => $profile, 'content' => $content, 'source' => $source, - 'options' => $options); + 'options' => $options, + 'faves' => $faves); } private function findImportedUser($origId) From ed3d9a11bfc1718ba88f359b393bb41ad9c80497 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:08:40 -0700 Subject: [PATCH 147/310] Image file attachment support for Yammer import --- plugins/YammerImport/sn_yammerclient.php | 51 ++++++++++++---- plugins/YammerImport/yamdump.php | 2 +- plugins/YammerImport/yammer-import.php | 2 +- plugins/YammerImport/yammerimporter.php | 78 +++++++++++++++++++++--- 4 files changed, 112 insertions(+), 21 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index 21caa7b7ca..f7382abae1 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -38,25 +38,34 @@ class SN_YammerClient } /** - * Make an HTTP hit with OAuth headers and return the response body on success. + * Make an HTTP GET request with OAuth headers and return an HTTPResponse + * with the returned body and codes. * - * @param string $path URL chunk for the API method - * @param array $params - * @return array + * @param string $url + * @return HTTPResponse * - * @throws Exception for HTTP error + * @throws Exception on low-level network error */ - protected function fetch($path, $params=array()) + protected function httpGet($url) { - $url = $this->apiBase . '/' . $path; - if ($params) { - $url .= '?' . http_build_query($params, null, '&'); - } $headers = array('Authorization: ' . $this->authHeader()); $client = HTTPClient::start(); - $response = $client->get($url, $headers); + return $client->get($url, $headers); + } + /** + * Make an HTTP GET request with OAuth headers and return the response body + * on success. + * + * @param string $url + * @return string + * + * @throws Exception on low-level network or HTTP error + */ + public function fetchUrl($url) + { + $response = $this->httpGet($url); if ($response->isOk()) { return $response->getBody(); } else { @@ -64,6 +73,24 @@ class SN_YammerClient } } + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return string + * + * @throws Exception on low-level network or HTTP error + */ + protected function fetchApi($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + return $this->fetchUrl($url); + } + /** * Hit the main Yammer API point and decode returned JSON data. * @@ -75,7 +102,7 @@ class SN_YammerClient */ protected function api($method, $params=array()) { - $body = $this->fetch("api/v1/$method.json", $params); + $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); if (!$data) { throw new Exception("Invalid JSON response from Yammer API"); diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 96127dd176..ef39275981 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -11,7 +11,7 @@ require INSTALLDIR . "/scripts/commandline.inc"; // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter(); +$imp = new YammerImporter($yam); $data = $yam->messages(); var_dump($data); diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index d6ec975132..da99c48e90 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -11,7 +11,7 @@ require INSTALLDIR . "/scripts/commandline.inc"; // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter(); +$imp = new YammerImporter($yam); $data = $yam->messages(); /* diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 08cbbf790b..48bb5dda29 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -25,11 +25,16 @@ */ class YammerImporter { - + protected $client; protected $users=array(); protected $groups=array(); protected $notices=array(); + function __construct(SN_YammerClient $client) + { + $this->client = $client; + } + /** * Load or create an imported profile from Yammer data. * @@ -95,17 +100,39 @@ class YammerImporter if ($noticeId) { return Notice::staticGet('id', $noticeId); } else { - $notice = Notice::saveNew($data['profile'], - $data['content'], + $content = $data['content']; + $user = User::staticGet($data['profile']); + + // Fetch file attachments and add the URLs... + $uploads = array(); + foreach ($data['attachments'] as $url) { + try { + $upload = $this->saveAttachment($url, $user); + $content .= ' ' . $upload->shortUrl(); + $uploads[] = $upload; + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer attachment: " . $e->getMessage()); + } + } + + // Here's the meat! Actually save the dang ol' notice. + $notice = Notice::saveNew($user->id, + $content, $data['source'], $data['options']); + + // Save "likes" as favorites... foreach ($data['faves'] as $nickname) { $user = User::staticGet('nickname', $nickname); if ($user) { Fave::addNew($user->getProfile(), $notice); } } - // @fixme attachments? + + // And finally attach the upload records... + foreach ($uploads as $upload) { + $upload->attachToNotice($notice); + } $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; } @@ -219,8 +246,14 @@ class YammerImporter $faves[] = $liker['permalink']; } - // Parse/save rendered text? - // @todo attachments? + $attachments = array(); + foreach ($item['attachments'] as $attach) { + if ($attach['type'] == 'image') { + $attachments[] = $attach['image']['url']; + } else { + common_log(LOG_WARNING, "Unrecognized Yammer attachment type: " . $attach['type']); + } + } return array('orig_id' => $origId, 'orig_url' => $origUrl, @@ -228,7 +261,8 @@ class YammerImporter 'content' => $content, 'source' => $source, 'options' => $options, - 'faves' => $faves); + 'faves' => $faves, + 'attachments' => $attachments); } private function findImportedUser($origId) @@ -326,4 +360,34 @@ class YammerImporter $dest->setOriginal($filename); } + + /** + * Fetch an attachment from Yammer and save it into our system. + * Unlike avatars, the attachment URLs are guarded by authentication, + * so we need to run the HTTP hit through our OAuth API client. + * + * @param string $url + * @param User $user + * @return MediaFile + * + * @throws Exception on low-level network or HTTP error + */ + private function saveAttachment($url, User $user) + { + // Fetch the attachment... + // WARNING: file must fit in memory here :( + $body = $this->client->fetchUrl($url); + + // Save to a temporary file and shove it into our file-attachment space... + $temp = tmpfile(); + fwrite($temp, $body); + try { + $upload = MediaFile::fromFileHandle($temp, $user); + fclose($temp); + return $upload; + } catch (Exception $e) { + fclose($temp); + throw $e; + } + } } From db5a4ce70df4528c0efc7eef71aec6d783f5423f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:25:02 -0700 Subject: [PATCH 148/310] Pull group descriptions in Yammer import --- plugins/YammerImport/yammerimporter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 48bb5dda29..fb88fc5069 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -195,6 +195,7 @@ class YammerImporter $options['nickname'] = $item['name']; $options['fullname'] = $item['full_name']; + $options['description'] = $item['description']; $options['created'] = $this->timestamp($item['created_at']); $avatar = $item['mugshot_url']; // as with user profiles... From 9652e77376ae6b16496e93085a7b573e242e96e1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:35:32 -0700 Subject: [PATCH 149/310] Yammer import: mark group posts with the proper group inbox (should we append a !foo or leave them as is, as current?) --- plugins/YammerImport/yammerimporter.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index fb88fc5069..bb6db73528 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -241,6 +241,13 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); + if ($item['group_id']) { + $groupId = $this->findImportedGroup($item['group_id']); + if ($groupId) { + $options['groups'] = array($groupId); + } + } + $faves = array(); foreach ($item['liked_by']['names'] as $liker) { // "permalink" is the username. wtf? From da87d4334ab7ffb1dd76fc58b8ac6384597dd1e7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 18:15:32 -0700 Subject: [PATCH 150/310] Fetch more user data in Yammer imports, including the primary email address (preconfirmed, so we can do stuff like tell people to reset their passwords and log in!) and some bio info. --- plugins/YammerImport/sn_yammerclient.php | 28 ++++++++++ plugins/YammerImport/yamdump.php | 48 ++++------------- plugins/YammerImport/yammer-import.php | 42 +++++---------- plugins/YammerImport/yammerimporter.php | 68 +++++++++++++++++++++--- 4 files changed, 112 insertions(+), 74 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index f7382abae1..0f244ced6a 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -185,8 +185,36 @@ class SN_YammerClient return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); } + /** + * High-level API hit: fetch all messages in the network (up to 20 at a time). + * Return data is the full JSON array returned, including meta and references + * sections. + * + * The matching messages themselves will be in the 'messages' item within. + * + * @param array $options optional set of additional params for the request. + * @return array + * + * @throws Exception on low-level or HTTP error + */ public function messages($params=array()) { return $this->api('messages', $params); } + + /** + * High-level API hit: fetch all users in the network (up to 50 at a time). + * Return data is the full JSON array returned, listing user items. + * + * The matching messages themselves will be in the 'users' item within. + * + * @param array $options optional set of additional params for the request. + * @return array of JSON-sourced user data arrays + * + * @throws Exception on low-level or HTTP error + */ + public function users($params=array()) + { + return $this->api('users', $params); + } } diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index ef39275981..809baa1223 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -13,50 +13,22 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); -$data = $yam->messages(); +$data = $yam->users(); var_dump($data); - -/* - ["messages"]=> - ["meta"]=> // followed_user_ids, current_user_id, etc - ["threaded_extended"]=> // empty! - ["references"]=> // lists the users, threads, replied messages, tags -*/ - -// 1) we're getting messages in descending order, but we'll want to process ascending -// 2) we'll need to pull out all those referenced items too? -// 3) do we need to page over or anything? - -// 20 qualifying messages per hit... -// use older_than to grab more -// (better if we can go in reverse though!) -// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. - -foreach ($data['references'] as $item) { - if ($item['type'] == 'user') { - $user = $imp->prepUser($item); - var_dump($user); - } else if ($item['type'] == 'group') { - $group = $imp->prepGroup($item); - var_dump($group); - } else if ($item['type'] == 'tag') { - // could need these if we work from the parsed message text - // otherwise, the #blarf in orig text is fine. - } else if ($item['type'] == 'thread') { - // Shouldn't need thread info; we'll reconstruct conversations - // from the reply-to chains. - } else if ($item['type'] == 'message') { - // If we're processing everything, then we don't need the refs here. - } else { - echo "(skipping unknown ref: " . $item['type'] . ")\n"; - } +// @fixme follow paging +foreach ($data as $item) { + $user = $imp->prepUser($item); + var_dump($user); } -// Process in reverse chron order... +/* +$data = $yam->messages(); +var_dump($data); // @fixme follow paging $messages = $data['messages']; -array_reverse($messages); +$messages = array_reverse($messages); foreach ($messages as $message) { $notice = $imp->prepNotice($message); var_dump($notice); } +*/ diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index da99c48e90..7241809ba0 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -13,44 +13,26 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); +// First, import all the users! +// @fixme follow paging -- we only get 50 at a time +$data = $yam->users(); +foreach ($data as $item) { + $user = $imp->importUser($item); + echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; +} + $data = $yam->messages(); -/* - ["messages"]=> - ["meta"]=> // followed_user_ids, current_user_id, etc - ["threaded_extended"]=> // empty! - ["references"]=> // lists the users, threads, replied messages, tags -*/ - -// 1) we're getting messages in descending order, but we'll want to process ascending -// 2) we'll need to pull out all those referenced items too? -// 3) do we need to page over or anything? - -// 20 qualifying messages per hit... -// use older_than to grab more -// (better if we can go in reverse though!) -// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. +// @fixme pull the full group list; this'll be a partial list with less data +// and only for groups referenced in the message set. foreach ($data['references'] as $item) { - if ($item['type'] == 'user') { - $user = $imp->importUser($item); - echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; - } else if ($item['type'] == 'group') { + if ($item['type'] == 'group') { $group = $imp->importGroup($item); echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; - } else if ($item['type'] == 'tag') { - // could need these if we work from the parsed message text - // otherwise, the #blarf in orig text is fine. - } else if ($item['type'] == 'thread') { - // Shouldn't need thread info; we'll reconstruct conversations - // from the reply-to chains. - } else if ($item['type'] == 'message') { - // If we're processing everything, then we don't need the refs here. - } else { - echo "(skipping unknown ref: " . $item['type'] . ")\n"; } } // Process in reverse chron order... -// @fixme follow paging +// @fixme follow paging -- we only get 20 at a time, and start at the most recent! $messages = $data['messages']; $messages = array_reverse($messages); foreach ($messages as $item) { diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index bb6db73528..583ed3a8c1 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -158,16 +158,60 @@ class YammerImporter $options['nickname'] = $item['name']; $options['fullname'] = trim($item['full_name']); - // We don't appear to have full bio avail here! - $options['bio'] = $item['job_title']; - - // What about other data like emails? - // Avatar... this will be the "_small" variant. // Remove that (pre-extension) suffix to get the orig-size image. $avatar = $item['mugshot_url']; - // Warning: we don't have following state for other users? + // The following info is only available in full data, not in the reference version. + + // There can be extensive contact info, but for now we'll only pull the primary email. + if (isset($item['contact'])) { + foreach ($item['contact']['email_addresses'] as $addr) { + if ($addr['type'] == 'primary') { + $options['email'] = $addr['address']; + $options['email_confirmed'] = true; + break; + } + } + } + + // There can be multiple external URLs; for now pull the first one as home page. + if (isset($item['external_urls'])) { + foreach ($item['external_urls'] as $url) { + if (common_valid_http_url($url)) { + $options['homepage'] = $url; + break; + } + } + } + + // Combine a few bits into the bio... + $bio = array(); + if (!empty($item['job_title'])) { + $bio[] = $item['job_title']; + } + if (!empty($item['summary'])) { + $bio[] = $item['summary']; + } + if (!empty($item['expertise'])) { + $bio[] = _m('Expertise:') . ' ' . $item['expertise']; + } + $options['bio'] = implode("\n\n", $bio); + + // Pull raw location string, may be lookupable + if (!empty($item['location'])) { + $options['location'] = $item['location']; + } + + // Timezone is in format like 'Pacific Time (US & Canada)' + // We need to convert that to a zone id. :P + // @fixme timezone not yet supported at registration time :) + if (!empty($item['timezone'])) { + $tz = $this->timezone($item['timezone']); + if ($tz) { + $options['timezone'] = $tz; + } + } return array('orig_id' => $origId, 'orig_url' => $origUrl, @@ -325,6 +369,18 @@ class YammerImporter return common_sql_date(strtotime($ts)); } + private function timezone($tz) + { + // Blaaaaaarf! + $known = array('Pacific Time (US & Canada)' => 'America/Los_Angeles', + 'Eastern Time (US & Canada)' => 'America/New_York'); + if (array_key_exists($known, $tz)) { + return $known[$tz]; + } else { + return false; + } + } + /** * Download and update given avatar image * From 0ed506ee9384f95bd01cdcd72a253d08ae89b92e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 18:21:36 -0700 Subject: [PATCH 151/310] Add group link on Yammer import (won't work until memberships are fixed) --- plugins/YammerImport/yammerimporter.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 583ed3a8c1..6dc72f4766 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -289,6 +289,12 @@ class YammerImporter $groupId = $this->findImportedGroup($item['group_id']); if ($groupId) { $options['groups'] = array($groupId); + + // @fixme if we see a group link inline, don't add this? + $group = User_group::staticGet('id', $groupId); + if ($group) { + $content .= ' !' . $group->nickname; + } } } From 7a381f2533c5f5da9702c6968655d52a76cb47dc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 22:00:25 -0700 Subject: [PATCH 152/310] Support non-image file uploads in Yammer import --- plugins/YammerImport/yammerimporter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 6dc72f4766..bfe486770c 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -306,8 +306,8 @@ class YammerImporter $attachments = array(); foreach ($item['attachments'] as $attach) { - if ($attach['type'] == 'image') { - $attachments[] = $attach['image']['url']; + if ($attach['type'] == 'image' || $attach['type'] == 'file') { + $attachments[] = $attach[$attach['type']]['url']; } else { common_log(LOG_WARNING, "Unrecognized Yammer attachment type: " . $attach['type']); } From acd76139333aa29a415de6103fc87e3955b232b1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 23:19:36 -0700 Subject: [PATCH 153/310] Fixes for Yammer groups import: pulling explicit list, fixed avatar fetch --- plugins/YammerImport/sn_yammerclient.php | 18 ++++++++++++++++- plugins/YammerImport/yammer-import.php | 16 +++++++-------- plugins/YammerImport/yammerimporter.php | 25 ++++++++++++++---------- 3 files changed, 40 insertions(+), 19 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index 0f244ced6a..8f9f1d4131 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -100,7 +100,7 @@ class SN_YammerClient * * @throws Exception for HTTP error or bad JSON return */ - protected function api($method, $params=array()) + public function api($method, $params=array()) { $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); @@ -217,4 +217,20 @@ class SN_YammerClient { return $this->api('users', $params); } + + /** + * High-level API hit: fetch all groups in the network (up to 20 at a time). + * Return data is the full JSON array returned, listing user items. + * + * The matching messages themselves will be in the 'users' item within. + * + * @param array $options optional set of additional params for the request. + * @return array of JSON-sourced user data arrays + * + * @throws Exception on low-level or HTTP error + */ + public function groups($params=array()) + { + return $this->api('groups', $params); + } } diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index 7241809ba0..4931d1bc52 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -21,18 +21,18 @@ foreach ($data as $item) { echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; } -$data = $yam->messages(); -// @fixme pull the full group list; this'll be a partial list with less data -// and only for groups referenced in the message set. -foreach ($data['references'] as $item) { - if ($item['type'] == 'group') { - $group = $imp->importGroup($item); - echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; - } +// Groups! +// @fixme follow paging -- we only get 20 at a time +$data = $yam->groups(); +foreach ($data as $item) { + $group = $imp->importGroup($item); + echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; } +// Messages! // Process in reverse chron order... // @fixme follow paging -- we only get 20 at a time, and start at the most recent! +$data = $yam->messages(); $messages = $data['messages']; $messages = array_reverse($messages); foreach ($messages as $item) { diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index bfe486770c..9ce0d1e588 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -51,10 +51,12 @@ class YammerImporter } else { $user = User::register($data['options']); $profile = $user->getProfile(); - try { - $this->saveAvatar($data['avatar'], $profile); - } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + if ($data['avatar']) { + try { + $this->saveAvatar($data['avatar'], $profile); + } catch (Exception $e) { + common_log(LOG_ERR, "Error importing Yammer avatar: " . $e->getMessage()); + } } $this->recordImportedUser($data['orig_id'], $profile->id); return $profile; @@ -76,10 +78,12 @@ class YammerImporter return User_group::staticGet('id', $groupId); } else { $group = User_group::register($data['options']); - try { - $this->saveAvatar($data['avatar'], $group); - } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + if ($data['avatar']) { + try { + $this->saveAvatar($data['avatar'], $group); + } catch (Exception $e) { + common_log(LOG_ERR, "Error importing Yammer avatar: " . $e->getMessage()); + } } $this->recordImportedGroup($data['orig_id'], $group->id); return $group; @@ -111,7 +115,7 @@ class YammerImporter $content .= ' ' . $upload->shortUrl(); $uploads[] = $upload; } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer attachment: " . $e->getMessage()); + common_log(LOG_ERR, "Error importing Yammer attachment: " . $e->getMessage()); } } @@ -254,7 +258,8 @@ class YammerImporter $options['local'] = true; return array('orig_id' => $origId, 'orig_url' => $origUrl, - 'options' => $options); + 'options' => $options, + 'avatar' => $avatar); } /** From 4d01f8fbb650ea246d24ebde1001c8c42f98faa4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 22 Sep 2010 12:08:17 -0400 Subject: [PATCH 154/310] save a URI with the user --- classes/User.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/classes/User.php b/classes/User.php index 080e338fe7..b85192b29c 100644 --- a/classes/User.php +++ b/classes/User.php @@ -282,7 +282,13 @@ class User extends Memcached_DataObject } $user->id = $id; - $user->uri = common_user_uri($user); + + if (!empty($uri)) { + $user->uri = $uri; + } else { + $user->uri = common_user_uri($user); + } + if (!empty($password)) { // may not have a password for OpenID users $user->password = common_munge_password($password, $id); } From be14f409e485ae037b14bb9a0e6ae7230cbad5a8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 22 Sep 2010 12:08:39 -0400 Subject: [PATCH 155/310] initial script to restore a backed-up user --- scripts/restoreuser.php | 376 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 376 insertions(+) create mode 100644 scripts/restoreuser.php diff --git a/scripts/restoreuser.php b/scripts/restoreuser.php new file mode 100644 index 0000000000..363ef42fb2 --- /dev/null +++ b/scripts/restoreuser.php @@ -0,0 +1,376 @@ +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:f:'; +$longoptions = array('id=', 'nickname=', 'file='); + +$helptext = <<documentElement->namespaceURI != Activity::ATOM || + $dom->documentElement->localName != 'feed') { + throw new Exception("'$filename' is not an Atom feed."); + } + + return $dom; +} + +function importActivityStream($user, $doc) +{ + $feed = $doc->documentElement; + + $subjectEl = ActivityUtils::child($feed, Activity::SUBJECT, Activity::SPEC); + + if (!empty($subjectEl)) { + $subject = new ActivityObject($subjectEl); + printfv(_("Backup file for user %s (%s)\n"), $subject->id, Ostatus_profile::getActivityObjectNickname($subject)); + } else { + throw new Exception("Feed doesn't have an element."); + } + + if (is_null($user)) { + printfv(_("No user specified; using backup user.\n")); + $user = userFromSubject($subject); + } + + $entries = $feed->getElementsByTagNameNS(Activity::ATOM, 'entry'); + + printfv(_("%d entries in backup.\n"), $entries->length); + + for ($i = $entries->length - 1; $i >= 0; $i--) { + try { + $entry = $entries->item($i); + + $activity = new Activity($entry, $feed); + + switch ($activity->verb) { + case ActivityVerb::FOLLOW: + subscribeProfile($user, $subject, $activity); + break; + case ActivityVerb::JOIN: + joinGroup($user, $activity); + break; + case ActivityVerb::POST: + postNote($user, $activity); + break; + default: + throw new Exception("Unknown verb: {$activity->verb}"); + } + } catch (Exception $e) { + print $e->getMessage()."\n"; + continue; + } + } +} + +function subscribeProfile($user, $subject, $activity) +{ + $profile = $user->getProfile(); + + if ($activity->objects[0]->id == $subject->id) { + + $other = $activity->actor; + $otherUser = User::staticGet('uri', $other->id); + + if (!empty($otherUser)) { + $otherProfile = $otherUser->getProfile(); + } else { + throw new Exception("Can't force remote user to subscribe."); + } + // XXX: don't do this for untrusted input! + Subscription::start($otherProfile, $profile); + + } else if (empty($activity->actor) || $activity->actor->id == $subject->id) { + + $other = $activity->objects[0]; + $otherUser = User::staticGet('uri', $other->id); + + if (!empty($otherUser)) { + $otherProfile = $otherUser->getProfile(); + } else { + $oprofile = Ostatus_profile::ensureActivityObjectProfile($other); + $otherProfile = $oprofile->localProfile(); + } + + Subscription::start($profile, $otherProfile); + } else { + throw new Exception("This activity seems unrelated to our user."); + } +} + +function joinGroup($user, $activity) +{ + // XXX: check that actor == subject + + $uri = $activity->objects[0]->id; + + $group = User_group::staticGet('uri', $uri); + + if (empty($group)) { + $oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]); + if (!$oprofile->isGroup()) { + throw new Exception("Remote profile is not a group!"); + } + $group = $oprofile->localGroup(); + } + + assert(!empty($group)); + + if (Event::handle('StartJoinGroup', array($group, $user))) { + Group_member::join($group->id, $user->id); + Event::handle('EndJoinGroup', array($group, $user)); + } +} + +// XXX: largely cadged from Ostatus_profile::processNote() + +function postNote($user, $activity) +{ + $note = $activity->objects[0]; + + $sourceUri = $note->id; + + $notice = Notice::staticGet('uri', $sourceUri); + + if (!empty($notice)) { + // This is weird. + $orig = clone($notice); + $notice->profile_id = $user->id; + $notice->update($orig); + return; + } + + // Use summary as fallback for content + + if (!empty($note->content)) { + $sourceContent = $note->content; + } else if (!empty($note->summary)) { + $sourceContent = $note->summary; + } else if (!empty($note->title)) { + $sourceContent = $note->title; + } else { + // @fixme fetch from $sourceUrl? + // @todo i18n FIXME: use sprintf and add i18n. + throw new ClientException("No content for notice {$sourceUri}."); + } + + // Get (safe!) HTML and text versions of the content + + $rendered = purify($sourceContent); + $content = html_entity_decode(strip_tags($rendered)); + + $shortened = common_shorten_links($content); + + $options = array('is_local' => Notice::LOCAL_PUBLIC, + 'uri' => $sourceUri, + 'rendered' => $rendered, + 'replies' => array(), + 'groups' => array(), + 'tags' => array(), + 'urls' => array()); + + // Check for optional attributes... + + if (!empty($activity->time)) { + $options['created'] = common_sql_date($activity->time); + } + + if ($activity->context) { + // Any individual or group attn: targets? + + list($options['groups'], $options['replies']) = filterAttention($activity->context->attention); + + // Maintain direct reply associations + // @fixme what about conversation ID? + if (!empty($activity->context->replyToID)) { + $orig = Notice::staticGet('uri', + $activity->context->replyToID); + if (!empty($orig)) { + $options['reply_to'] = $orig->id; + } + } + + $location = $activity->context->location; + + if ($location) { + $options['lat'] = $location->lat; + $options['lon'] = $location->lon; + if ($location->location_id) { + $options['location_ns'] = $location->location_ns; + $options['location_id'] = $location->location_id; + } + } + } + + // Atom categories <-> hashtags + + foreach ($activity->categories as $cat) { + if ($cat->term) { + $term = common_canonical_tag($cat->term); + if ($term) { + $options['tags'][] = $term; + } + } + } + + // Atom enclosures -> attachment URLs + foreach ($activity->enclosures as $href) { + // @fixme save these locally or....? + $options['urls'][] = $href; + } + + $saved = Notice::saveNew($user->id, + $content, + 'restore', // TODO: restore the actual source + $options); + + return $saved; +} + +function filterAttention($attn) +{ + $groups = array(); + $replies = array(); + + foreach (array_unique($attn) as $recipient) { + + // Is the recipient a local user? + + $user = User::staticGet('uri', $recipient); + + if ($user) { + // @fixme sender verification, spam etc? + $replies[] = $recipient; + continue; + } + + // Is the recipient a remote group? + $oprofile = Ostatus_profile::ensureProfileURI($recipient); + + if ($oprofile) { + if (!$oprofile->isGroup()) { + // may be canonicalized or something + $replies[] = $oprofile->uri; + } + continue; + } + + // Is the recipient a local group? + // @fixme uri on user_group isn't reliable yet + // $group = User_group::staticGet('uri', $recipient); + $id = OStatusPlugin::localGroupFromUrl($recipient); + + if ($id) { + $group = User_group::staticGet('id', $id); + if ($group) { + // Deliver to all members of this local group if allowed. + $profile = $sender->localProfile(); + if ($profile->isMember($group)) { + $groups[] = $group->id; + } else { + common_log(LOG_INFO, "Skipping reply to local group {$group->nickname} as sender {$profile->id} is not a member"); + } + continue; + } else { + common_log(LOG_INFO, "Skipping reply to bogus group $recipient"); + } + } + } + + return array($groups, $replies); +} + +function userFromSubject($subject) +{ + $user = User::staticGet('uri', $subject->id); + + if (empty($user)) { + $attrs = + array('nickname' => Ostatus_profile::getActivityObjectNickname($subject), + 'uri' => $subject->id); + + $user = User::register($attrs); + } + + $profile = $user->getProfile(); + Ostatus_profile::updateProfile($profile, $subject); + + // FIXME: Update avatar + return $user; +} + +function purify($content) +{ + $config = array('safe' => 1, + 'deny_attribute' => 'id,style,on*'); + return htmLawed($content, $config); +} + +try { + try { + $user = getUser(); + } catch (NoUserArgumentException $noae) { + $user = null; + } + $doc = getActivityStreamDocument(); + importActivityStream($user, $doc); +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} From 12ec7efe901d5667e26c86e11543010105656d84 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 12:52:34 -0700 Subject: [PATCH 156/310] Split Yammer importer files into subdirs before I get too lost adding UI --- plugins/YammerImport/YammerImportPlugin.php | 4 +--- plugins/YammerImport/{ => lib}/sn_yammerclient.php | 0 plugins/YammerImport/{ => lib}/yammerimporter.php | 0 plugins/YammerImport/{ => scripts}/yamdump.php | 2 +- plugins/YammerImport/{ => scripts}/yammer-import.php | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) rename plugins/YammerImport/{ => lib}/sn_yammerclient.php (100%) rename plugins/YammerImport/{ => lib}/yammerimporter.php (100%) rename plugins/YammerImport/{ => scripts}/yamdump.php (90%) rename plugins/YammerImport/{ => scripts}/yammer-import.php (94%) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index a3520d8a86..79b8260b69 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -68,9 +68,7 @@ class YammerImportPlugin extends Plugin switch ($lower) { case 'sn_yammerclient': case 'yammerimporter': - case 'yammerimqueuehandler': - case 'importyammeraction': - require_once "$base/$lower.php"; + require_once "$base/lib/$lower.php"; return false; default: return true; diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php similarity index 100% rename from plugins/YammerImport/sn_yammerclient.php rename to plugins/YammerImport/lib/sn_yammerclient.php diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php similarity index 100% rename from plugins/YammerImport/yammerimporter.php rename to plugins/YammerImport/lib/yammerimporter.php diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/scripts/yamdump.php similarity index 90% rename from plugins/YammerImport/yamdump.php rename to plugins/YammerImport/scripts/yamdump.php index 809baa1223..a358777ad1 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/scripts/yamdump.php @@ -4,7 +4,7 @@ if (php_sapi_name() != 'cli') { die('no'); } -define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); +define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php similarity index 94% rename from plugins/YammerImport/yammer-import.php rename to plugins/YammerImport/scripts/yammer-import.php index 4931d1bc52..ac258e1c7d 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -4,7 +4,7 @@ if (php_sapi_name() != 'cli') { die('no'); } -define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); +define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; From a0052104388b4b73866aaa4d4cfafd08694247e0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 13:12:39 -0700 Subject: [PATCH 157/310] Initial README for yammer importer --- plugins/YammerImport/README | 75 +++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 plugins/YammerImport/README diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README new file mode 100644 index 0000000000..5ab080647a --- /dev/null +++ b/plugins/YammerImport/README @@ -0,0 +1,75 @@ +Yammer Import Plugin +==================== + +This plugin allows a one-time import pulling user accounts, groups, and +public messages from an existing Yammer instance, using Yammer's public API. + +Requirements +------------ + +* An account on the Yammer network you wish to import from +* An administrator account on the target StatusNet instance +* This YammerImport plugin enabled on your StatusNet instance + +Setup +----- + +The import process will be runnable through an administration panel on +your StatusNet site. + +The user interface and OAuth setup has not yet been completed, you will +have to manually initiate the OAuth authentication to get a token. + +Be patient, there will be a UI soon. ;) + + +Limitations +----------- + +Paging has not yet been added, so the importer will only pull up to: +* first 50 users +* first 20 groups +* last 20 public messages + + +Subscriptions and group memberships +----------------------------------- + +Yammer's API does not expose user/tag subscriptions or group memberships +except for the authenticating user. As a result, users will need to re-join +groups and re-follow their fellow users after the import. + +(This limitation may be lifted in future for sites on the Silver or Gold +plans where the import is done by a verified admin, as it should be possible +to fetch the information for each user via the admin account.) + + +Authentication +-------------- + +Account passwords cannot be retrieved, but the primary e-mail address is +retained so users can reset their passwords by mail if you're not using a +custom authentication system like LDAP. + + +Private messages and groups +--------------------------- + +At this time, only public messages are imported; private direct and group +messages are ignored. (This may change with Silver and Gold plans in future.) + +Yammer groups may be either public or private. Groups in StatusNet currently +have no privacy option, so any private groups will become public groups in the +imported site. + + +Attachments +----------- + +Attached image and document files will be copied in as if they had been +uploaded to the StatusNet site. Currently images do not display inline like +they do on Yammer; they will be linked instead. + +File type and size limitations on attachments will be applied, so beware some +attachments may not make it through. + From 870be512d23f4f6dadb97a72fec45a9596ac62ef Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 23 Sep 2010 00:37:16 +0200 Subject: [PATCH 158/310] Update POT files for plugins. --- plugins/APC/locale/APC.pot | 2 +- plugins/Adsense/locale/Adsense.pot | 6 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- plugins/Blacklist/locale/Blacklist.pot | 10 ++-- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/CasAuthentication.pot | 2 +- .../locale/ClientSideShorten.pot | 4 +- .../locale/DirectionDetector.pot | 5 +- plugins/Disqus/locale/Disqus.pot | 4 +- plugins/Echo/locale/Echo.pot | 4 +- .../locale/EmailAuthentication.pot | 4 +- plugins/Facebook/locale/Facebook.pot | 2 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- plugins/GeoURL/locale/GeoURL.pot | 4 +- plugins/Geonames/locale/Geonames.pot | 4 +- .../locale/GoogleAnalytics.pot | 2 +- plugins/Gravatar/locale/Gravatar.pot | 12 ++-- plugins/Imap/locale/Imap.pot | 8 ++- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/LdapAuthentication.pot | 2 +- .../locale/LdapAuthorization.pot | 2 +- plugins/LilUrl/locale/LilUrl.pot | 6 +- plugins/Linkback/locale/Linkback.pot | 4 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- plugins/Memcache/locale/Memcache.pot | 4 +- plugins/Memcached/locale/Memcached.pot | 4 +- plugins/Minify/locale/Minify.pot | 4 +- .../MobileProfile/locale/MobileProfile.pot | 56 ++++++++++++++++++- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- plugins/OStatus/locale/OStatus.pot | 50 +++++------------ .../locale/OpenExternalLinkTarget.pot | 2 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/PoweredByStatusNet.pot | 2 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/RequireValidatedEmail.pot | 2 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- plugins/Sample/locale/Sample.pot | 2 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/SubscriptionThrottle.pot | 2 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- plugins/XCache/locale/XCache.pot | 2 +- 55 files changed, 155 insertions(+), 112 deletions(-) diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 122a51f973..c1e83ee5ac 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 6d69f639cd..6871677923 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,6 +26,10 @@ msgstr "" msgid "AdSense" msgstr "" +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" + #: adsenseadminpanel.php:52 msgctxt "TITLE" msgid "AdSense" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index ff4f387761..8b89da3611 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 27f74bf09b..5149425c7a 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 4c4455da9f..00c5405d94 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index f6bb591a80..23ad4d902c 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,19 +45,19 @@ msgstr "" msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" -#: BlacklistPlugin.php:376 blacklistadminpanel.php:52 +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 msgid "Blacklist" msgstr "" -#: BlacklistPlugin.php:377 +#: BlacklistPlugin.php:376 msgid "Blacklist configuration" msgstr "" -#: BlacklistPlugin.php:403 +#: BlacklistPlugin.php:402 msgid "Add this nickname pattern to blacklist" msgstr "" -#: BlacklistPlugin.php:412 +#: BlacklistPlugin.php:411 msgid "Add this homepage pattern to blacklist" msgstr "" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index fbcd6dd084..34c42385f3 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 203fd5ede4..13ea401073 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 8ef97c61b2..509f1931b1 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,6 +22,6 @@ msgid "" "shorten URLs as they entered, and before the notice is submitted." msgstr "" -#: shorten.php:56 +#: shorten.php:55 msgid "'text' argument must be specified." msgstr "" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 995bc42eca..6b0fa74a75 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. TRANS: Direction detector plugin description. -#: DirectionDetectorPlugin.php:221 +#: DirectionDetectorPlugin.php:259 msgid "Shows notices with right-to-left content in correct direction." msgstr "" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 0f9ae44a5f..f3c3fa9226 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DisqusPlugin.php:167 +#: DisqusPlugin.php:170 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 5f45d2a995..f034cf6400 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: EchoPlugin.php:112 +#: EchoPlugin.php:111 msgid "" "Use Echo to add commenting to notice " "pages." diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 469435c6b3..6d22b23668 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: EmailAuthenticationPlugin.php:61 +#: EmailAuthenticationPlugin.php:60 msgid "" "The Email Authentication plugin allows users to login using their email " "address." diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index e6215df01e..11072ca60f 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index ebcc8d3feb..3b27b7c4f0 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 3bc63b8511..1f910e52a0 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: GeoURLPlugin.php:127 +#: GeoURLPlugin.php:124 msgid "" "Ping GeoURL when new geolocation-enhanced " "notices are posted." diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 1d91af3017..94ead0234b 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: GeonamesPlugin.php:498 +#: GeonamesPlugin.php:491 msgid "" "Uses Geonames service to get human-" "readable names for locations based on user-provided lat/long pairs." diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index 111eee88ed..b3c0bc92b2 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index fda09b7975..b425259814 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -44,23 +44,23 @@ msgstr "" msgid "To use a Gravatar first enter in an email address." msgstr "" -#: GravatarPlugin.php:141 +#: GravatarPlugin.php:140 msgid "You do not have an email address set in your profile." msgstr "" -#: GravatarPlugin.php:159 +#: GravatarPlugin.php:158 msgid "Failed to save Gravatar to the database." msgstr "" -#: GravatarPlugin.php:163 +#: GravatarPlugin.php:162 msgid "Gravatar added." msgstr "" -#: GravatarPlugin.php:181 +#: GravatarPlugin.php:180 msgid "Gravatar removed." msgstr "" -#: GravatarPlugin.php:201 +#: GravatarPlugin.php:200 msgid "" "The Gravatar plugin allows users to use their Gravatar with StatusNet." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 1f7497446a..5537c45bc3 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,12 @@ msgstr "" msgid "Error" msgstr "" +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" + #: ImapPlugin.php:54 msgid "A mailbox must be specified." msgstr "" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index b1af9664f6..b8e25d01a3 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index d40dd5ebd8..14342d59ea 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 60a7106f97..bd7adbb094 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 66505e5f82..586b7a63f5 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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" +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "" + #: LilUrlPlugin.php:68 #, php-format msgid "Uses %1$s URL-shortener service." diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index f97eccdcc6..5c5d63860f 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: LinkbackPlugin.php:243 +#: LinkbackPlugin.php:241 msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 7a971cabed..b7a849d1b4 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index cba1fe73bd..848a39af8f 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MemcachePlugin.php:252 +#: MemcachePlugin.php:246 msgid "" "Use Memcached to cache query results." msgstr "" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 3748566bd7..86a57375e5 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MemcachedPlugin.php:223 +#: MemcachedPlugin.php:218 msgid "" "Use Memcached to cache query results." msgstr "" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 2425d50bc4..fb19ccfc49 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "File type not supported." msgstr "" -#: MinifyPlugin.php:180 +#: MinifyPlugin.php:179 msgid "" "The Minify plugin minifies StatusNet's CSS and JavaScript, removing " "whitespace and comments." diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 7c58516b1b..34dfa8d7db 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,58 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: MobileProfilePlugin.php:429 +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "" + +#: MobileProfilePlugin.php:417 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index f5a9628313..f6df630042 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 882e8d3080..86c1e0acad 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,12 +18,12 @@ 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:227 OStatusPlugin.php:958 +#: OStatusPlugin.php:227 OStatusPlugin.php:937 msgid "Subscribe" msgstr "" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:246 OStatusPlugin.php:667 actions/ostatussub.php:107 +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 msgid "Join" msgstr "" @@ -38,82 +38,60 @@ msgstr "" msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:570 -msgid "Follow" -msgstr "" - -#. TRANS: Success message for subscribe to user attempt through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the subscribed user's name. -#: OStatusPlugin.php:573 -#, php-format -msgid "%1$s is now following %2$s." -msgstr "" - -#: OStatusPlugin.php:620 +#: OStatusPlugin.php:605 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:623 +#: OStatusPlugin.php:608 #, php-format msgid "%1$s stopped following %2$s." msgstr "" -#: OStatusPlugin.php:651 +#: OStatusPlugin.php:636 msgid "Could not set up remote group membership." msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:679 +#: OStatusPlugin.php:667 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:719 +#: OStatusPlugin.php:707 msgid "Leave" msgstr "" -#: OStatusPlugin.php:760 -msgid "Favor" -msgstr "" - -#. TRANS: Success message for adding a favorite notice through OStatus. -#. TRANS: %1$s is the favoring user's name, %2$s is URI to the favored notice. -#: OStatusPlugin.php:763 -#, php-format -msgid "%1$s marked notice %2$s as a favorite." -msgstr "" - -#: OStatusPlugin.php:806 +#: OStatusPlugin.php:785 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:809 +#: OStatusPlugin.php:788 #, 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:885 +#: OStatusPlugin.php:864 msgid "Remote" msgstr "" #. TRANS: Title for activity. -#: OStatusPlugin.php:925 +#: OStatusPlugin.php:904 msgid "Profile update" msgstr "" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:928 +#: OStatusPlugin.php:907 #, php-format msgid "%s has updated their profile page." msgstr "" #. TRANS: Plugin description. -#: OStatusPlugin.php:973 +#: OStatusPlugin.php:952 msgid "" "Follow people across social networks that implement OStatus." diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 4ceaddf187..540b8cae53 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 033eab320b..9330e1905a 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 2afaaaa2dc..ff63aacab2 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 1d67b75104..93c9a585de 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index 77c1822c42..dc2b85db1e 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index c7a8b06677..5d75e0c85d 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index c91f21f336..d4fb04df7d 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 547f73ba12..c59820bfa4 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 97539f9a0d..08eaadc2cd 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index f2128e7941..d6e58ea4d5 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:07+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index c0e66561cb..e1b3daf762 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/Sample.pot b/plugins/Sample/locale/Sample.pot index b58819655b..4f1bf587f9 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index 8fd5aa6bee..f1e0abf0c2 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index b463077043..a2953b9076 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index f0fb4dd3cb..98b8073850 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 31cc259662..582daf2530 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 41026d711b..dae56b6a48 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index c42fea8719..bd2377e848 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 5a75bc5f80..48c0a7a987 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-19 15:29+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index fcce8f6762..54952712e9 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index cae1daa5af..10f3945d62 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 6da28186c9..e1a5e10f11 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+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/XCache.pot b/plugins/XCache/locale/XCache.pot index 82992fc821..856ca28059 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-22 22:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 77609e0c4a1b76748ab320027b0696aced92b52c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 22 Sep 2010 23:30:50 +0000 Subject: [PATCH 159/310] Fix for ticket 2756 - Calls to OAuth endpoints are redirected to the login page when a site is in private mode --- actions/apioauthauthorize.php | 2 +- lib/router.php | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index e7c6f37611..c2fbbcdd87 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -270,7 +270,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction $this->elementStart('form', array('method' => 'post', 'id' => 'form_apioauthauthorize', 'class' => 'form_settings', - 'action' => common_local_url('apioauthauthorize'))); + 'action' => common_local_url('ApiOauthAuthorize'))); $this->elementStart('fieldset'); $this->element('legend', array('id' => 'apioauthauthorize_allowdeny'), _('Allow or deny access')); diff --git a/lib/router.php b/lib/router.php index fb5a3c7c36..00b2993734 100644 --- a/lib/router.php +++ b/lib/router.php @@ -488,19 +488,19 @@ class Router // Social graph $m->connect('api/friends/ids/:id.:format', - array('action' => 'apiuserfriends', + array('action' => 'ApiUserFriends', 'ids_only' => true)); $m->connect('api/followers/ids/:id.:format', - array('action' => 'apiuserfollowers', + array('action' => 'ApiUserFollowers', 'ids_only' => true)); $m->connect('api/friends/ids.:format', - array('action' => 'apiuserfriends', + array('action' => 'ApiUserFriends', 'ids_only' => true)); $m->connect('api/followers/ids.:format', - array('action' => 'apiuserfollowers', + array('action' => 'ApiUserFollowers', 'ids_only' => true)); // account @@ -672,13 +672,13 @@ class Router $m->connect('api/trends.json', array('action' => 'ApiTrends')); $m->connect('api/oauth/request_token', - array('action' => 'apioauthrequesttoken')); + array('action' => 'ApiOauthRequestToken')); $m->connect('api/oauth/access_token', - array('action' => 'apioauthaccesstoken')); + array('action' => 'ApiOauthAccessToken')); $m->connect('api/oauth/authorize', - array('action' => 'apioauthauthorize')); + array('action' => 'ApiOauthAuthorize')); // Admin From 84331ca7bd2a93283762b638eb25bbbd7d5e36f7 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 22 Sep 2010 23:30:50 +0000 Subject: [PATCH 160/310] Fix for ticket 2756 - Calls to OAuth endpoints are redirected to the login page when a site is in private mode --- actions/apioauthauthorize.php | 2 +- lib/router.php | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index e7c6f37611..c2fbbcdd87 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -270,7 +270,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction $this->elementStart('form', array('method' => 'post', 'id' => 'form_apioauthauthorize', 'class' => 'form_settings', - 'action' => common_local_url('apioauthauthorize'))); + 'action' => common_local_url('ApiOauthAuthorize'))); $this->elementStart('fieldset'); $this->element('legend', array('id' => 'apioauthauthorize_allowdeny'), _('Allow or deny access')); diff --git a/lib/router.php b/lib/router.php index fb5a3c7c36..00b2993734 100644 --- a/lib/router.php +++ b/lib/router.php @@ -488,19 +488,19 @@ class Router // Social graph $m->connect('api/friends/ids/:id.:format', - array('action' => 'apiuserfriends', + array('action' => 'ApiUserFriends', 'ids_only' => true)); $m->connect('api/followers/ids/:id.:format', - array('action' => 'apiuserfollowers', + array('action' => 'ApiUserFollowers', 'ids_only' => true)); $m->connect('api/friends/ids.:format', - array('action' => 'apiuserfriends', + array('action' => 'ApiUserFriends', 'ids_only' => true)); $m->connect('api/followers/ids.:format', - array('action' => 'apiuserfollowers', + array('action' => 'ApiUserFollowers', 'ids_only' => true)); // account @@ -672,13 +672,13 @@ class Router $m->connect('api/trends.json', array('action' => 'ApiTrends')); $m->connect('api/oauth/request_token', - array('action' => 'apioauthrequesttoken')); + array('action' => 'ApiOauthRequestToken')); $m->connect('api/oauth/access_token', - array('action' => 'apioauthaccesstoken')); + array('action' => 'ApiOauthAccessToken')); $m->connect('api/oauth/authorize', - array('action' => 'apioauthauthorize')); + array('action' => 'ApiOauthAuthorize')); // Admin From 084befc32f6ddefc8aa7743dc0ad332a985c98f5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 17:51:50 -0700 Subject: [PATCH 161/310] WORK IN PROGRESS: Starting infrastructure to initiate Yammer import from web UI and process it in the background queues. Totally not complete yet. --- plugins/YammerImport/YammerImportPlugin.php | 61 +++++- .../YammerImport/actions/yammeradminpanel.php | 153 +++++++++++++++ plugins/YammerImport/actions/yammerauth.php | 17 ++ .../YammerImport/classes/Yammer_common.php | 165 +++++++++++++++++ plugins/YammerImport/classes/Yammer_group.php | 79 ++++++++ .../YammerImport/classes/Yammer_notice.php | 79 ++++++++ .../classes/Yammer_notice_stub.php | 174 ++++++++++++++++++ plugins/YammerImport/classes/Yammer_state.php | 37 ++++ plugins/YammerImport/classes/Yammer_user.php | 79 ++++++++ plugins/YammerImport/lib/yammerimporter.php | 27 +-- .../YammerImport/lib/yammerqueuehandler.php | 47 +++++ 11 files changed, 892 insertions(+), 26 deletions(-) create mode 100644 plugins/YammerImport/actions/yammeradminpanel.php create mode 100644 plugins/YammerImport/actions/yammerauth.php create mode 100644 plugins/YammerImport/classes/Yammer_common.php create mode 100644 plugins/YammerImport/classes/Yammer_group.php create mode 100644 plugins/YammerImport/classes/Yammer_notice.php create mode 100644 plugins/YammerImport/classes/Yammer_notice_stub.php create mode 100644 plugins/YammerImport/classes/Yammer_state.php create mode 100644 plugins/YammerImport/classes/Yammer_user.php create mode 100644 plugins/YammerImport/lib/yammerqueuehandler.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 79b8260b69..f55169a55b 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -22,9 +22,7 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - -set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/'); +if (!defined('STATUSNET')) { exit(1); } class YammerImportPlugin extends Plugin { @@ -36,8 +34,8 @@ class YammerImportPlugin extends Plugin */ function onRouterInitialized($m) { - $m->connect('admin/import/yammer', - array('action' => 'importyammer')); + $m->connect('admin/yammer', + array('action' => 'yammeradminpanel')); return true; } @@ -53,6 +51,56 @@ class YammerImportPlugin extends Plugin return true; } + /** + * Set up all our tables... + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $tables = array('Yammer_state', + 'Yammer_user', + 'Yammer_group', + 'Yammer_notice', + 'Yammer_notice_stub'); + foreach ($tables as $table) { + $schema->ensureTable($table, $table::schemaDef()); + } + + return true; + } + + /** + * If the plugin's installed, this should be accessible to admins. + */ + function onAdminPanelCheck($name, &$isOK) + { + if ($name == 'yammer') { + $isOK = true; + return false; + } + + return true; + } + + /** + * Add the Yammer admin panel to the list... + */ + function onEndAdminPanelNav($nav) + { + if (AdminPanelAction::canAdmin('yammer')) { + $action_name = $nav->action->trimmed('action'); + + $nav->out->menuItem(common_local_url('yammeradminpanel'), + _m('Yammer'), + _m('Yammer import'), + $action_name == 'yammeradminpanel', + 'nav_yammer_admin_panel'); + } + + return true; + } + /** * Automatically load the actions and libraries used by the plugin * @@ -70,6 +118,9 @@ class YammerImportPlugin extends Plugin case 'yammerimporter': require_once "$base/lib/$lower.php"; return false; + case 'yammeradminpanelaction': + require_once "$base/actions/yammeradminpanel.php"; + return false; default: return true; } diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php new file mode 100644 index 0000000000..875debac92 --- /dev/null +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -0,0 +1,153 @@ +. + * + * @category Settings + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +class YammeradminpanelAction extends AdminPanelAction +{ + /** + * Returns the page title + * + * @return string page title + */ + function title() + { + return _m('Yammer Import'); + } + + /** + * Instructions for using this form. + * + * @return string instructions + */ + function getInstructions() + { + return _m('Yammer import tool'); + } + + /** + * Show the Yammer admin panel form + * + * @return void + */ + function showForm() + { + $form = new YammerAdminPanelForm($this); + $form->show(); + return; + } +} + +class YammerAdminPanelForm extends AdminForm +{ + /** + * ID of the form + * + * @return string ID of the form + */ + function id() + { + return 'yammeradminpanel'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('yammeradminpanel'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $this->out->element('p', array(), 'yammer import IN DA HOUSE'); + + /* + Possible states of the yammer import process: + - null (not doing any sort of import) + - requesting-auth + - authenticated + - import-users + - import-groups + - fetch-messages + - import-messages + - done + */ + $yammerState = Yammer_state::staticGet('id', 1); + $state = $yammerState ? $yammerState->state || null; + + switch($state) + { + case null: + $this->out->element('p', array(), 'Time to start auth:'); + $this->showAuthForm(); + break; + case 'requesting-auth': + $this->out->element('p', array(), 'Need to finish auth!'); + $this->showAuthForm(); + break; + case 'import-users': + case 'import-groups': + case 'import-messages': + case 'save-messages': + $this->showImportState(); + break; + + } + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // No submit buttons needed at bottom + } +} diff --git a/plugins/YammerImport/actions/yammerauth.php b/plugins/YammerImport/actions/yammerauth.php new file mode 100644 index 0000000000..7e6e7204ae --- /dev/null +++ b/plugins/YammerImport/actions/yammerauth.php @@ -0,0 +1,17 @@ +requestToken(); + $url = $yam->authorizeUrl($token); + + // We're going to try doing this in an iframe; if that's not happy + // we can redirect but there doesn't seem to be a way to get Yammer's + // oauth to call us back instead of the manual copy. :( + + //common_redirect($url, 303); + $this->element('iframe', array('id' => 'yammer-oauth', + 'src' => $url)); +} + diff --git a/plugins/YammerImport/classes/Yammer_common.php b/plugins/YammerImport/classes/Yammer_common.php new file mode 100644 index 0000000000..81e302ab29 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_common.php @@ -0,0 +1,165 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Common base class for the Yammer import mappings for users, groups, and notices. + * + * Child classes must override these static methods, since we need to run + * on PHP 5.2.x which has no late static binding: + * - staticGet (as our other classes) + * - schemaDef (call self::doSchemaDef) + * - record (call self::doRecord) + */ + +class Yammer_common extends Memcached_DataObject +{ + public $__table = 'yammer_XXXX'; // table name + public $__field = 'XXXX_id'; // field name to save into + public $id; // int primary_key not_null + public $user_id; // int(4) + public $created; // datetime + + /** + * @fixme add a 'references' thing for the foreign key when we support that + */ + protected static function doSchemaDef($field) + { + return array(new ColumnDef('id', 'bigint', null, + false, 'PRI'), + new ColumnDef($field, 'integer', null, + false, 'UNI'), + new ColumnDef('created', 'datetime', null, + false)); + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + $this->__field => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K', $this->__field => 'U'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $user_id ID of the status in StatusNet + * @param integer $orig_id ID of the notice in Yammer + * + * @return Yammer_common new object for this value + */ + + protected static function doRecord($class, $field, $orig_id, $local_id) + { + $map = self::staticGet('id', $orig_id); + + if (!empty($map)) { + return $map; + } + + $map = self::staticGet($field, $local_id); + + if (!empty($map)) { + return $map; + } + + common_debug("Mapping Yammer $field {$orig_id} to local $field {$local_id}"); + + $map = new $class(); + + $map->id = $orig_id; + $map->$field = $local_id; + $map->created = common_sql_now(); + + $map->insert(); + + return $map; + } +} diff --git a/plugins/YammerImport/classes/Yammer_group.php b/plugins/YammerImport/classes/Yammer_group.php new file mode 100644 index 0000000000..4e7a6ebd03 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_group.php @@ -0,0 +1,79 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_group extends Yammer_common +{ + public $__table = 'yammer_group'; // table name + public $__field = 'group_id'; // field to map to + public $group_id; // int + + /** + * 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 Yammer_group object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_group', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('group_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported group. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $group_id ID of the status in StatusNet + * + * @return Yammer_group new object for this value + */ + + static function record($orig_id, $group_id) + { + return self::doRecord('Yammer_group', 'group_id', $orig_id, $group_id); + } +} diff --git a/plugins/YammerImport/classes/Yammer_notice.php b/plugins/YammerImport/classes/Yammer_notice.php new file mode 100644 index 0000000000..0f63db6303 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_notice.php @@ -0,0 +1,79 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_notice extends Yammer_common +{ + public $__table = 'yammer_notice'; // table name + public $__field = 'notice_id'; // field to map to + public $notice_id; // int + + /** + * 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 Yammer_notice object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_notice', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('notice_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported notice. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $notice_id ID of the status in StatusNet + * + * @return Yammer_notice new object for this value + */ + + static function record($orig_id, $notice_id) + { + return self::doRecord('Yammer_notice', 'notice_id', $orig_id, $notice_id); + } +} diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php new file mode 100644 index 0000000000..98a5e2cf77 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -0,0 +1,174 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Temporary storage for imported Yammer messages between fetching and saving + * as local notices. + * + * The Yammer API only allows us to page down from the most recent items; in + * order to start saving the oldest notices first, we have to pull them all + * down in reverse chronological order, then go back over them from oldest to + * newest and actually save them into our notice table. + */ + +class Yammer_notice_stub extends Memcached_DataObject +{ + public $__table = 'yammer_notice_stub'; // table name + public $id; // int primary_key not_null + public $json_data; // text + public $created; // datetime + + /** + * Return schema definition to set this table up in onCheckSchema + */ + static function schemaDef($field) + { + return array(new ColumnDef('id', 'bigint', null, + false, 'PRI'), + new ColumnDef('json_data', 'text', null, + false), + new ColumnDef('created', 'datetime', null, + false)); + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'json_data' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Save the native Yammer API representation of a message for the pending + * import. Since they come in in reverse chronological order, we need to + * record them all as stubs and then go through from the beginning and + * save them as native notices, or we'll lose ordering and threading + * data. + * + * @param integer $orig_id ID of the notice on Yammer + * @param array $data the message record fetched out of Yammer API returnd data + * + * @return Yammer_notice_stub new object for this value + */ + + static function record($orig_id, $data) + { + common_debug("Recording Yammer message stub {$orig_id} for pending import..."); + + $stub = new Yammer_notice_stub(); + + $stub->id = $orig_id; + $stub->json_data = json_encode($data); + $stub->created = common_sql_now(); + + $stub->insert(); + + return $stub; + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $user_id ID of the status in StatusNet + * + * @return Yammer_notice_stub new object for this value + */ + + static function retrieve($orig_id) + { + $stub = self::staticGet('id', $orig_id); + if ($stub) { + return json_decode($stub->json_data, true); + } else { + return false; + } + } +} diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php new file mode 100644 index 0000000000..a476fd3bec --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -0,0 +1,37 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_user extends Yammer_common +{ + public $__table = 'yammer_user'; // table name + public $__field = 'user_id'; // field to map to + public $user_id; // int + + /** + * 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 Yammer_user object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_user', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('user_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $user_id ID of the status in StatusNet + * + * @return Yammer_user new object for this value + */ + + static function record($orig_id, $user_id) + { + return self::doRecord('Yammer_user', 'user_id', $orig_id, $user_id); + } +} diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 9ce0d1e588..b1d2815b9e 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -26,9 +26,6 @@ class YammerImporter { protected $client; - protected $users=array(); - protected $groups=array(); - protected $notices=array(); function __construct(SN_YammerClient $client) { @@ -330,44 +327,32 @@ class YammerImporter private function findImportedUser($origId) { - if (isset($this->users[$origId])) { - return $this->users[$origId]; - } else { - return false; - } + return Yammer_user::staticGet('id', $origId); } private function findImportedGroup($origId) { - if (isset($this->groups[$origId])) { - return $this->groups[$origId]; - } else { - return false; - } + return Yammer_group::staticGet('id', $origId); } private function findImportedNotice($origId) { - if (isset($this->notices[$origId])) { - return $this->notices[$origId]; - } else { - return false; - } + return Yammer_notice::staticGet('id', $origId); } private function recordImportedUser($origId, $userId) { - $this->users[$origId] = $userId; + Yammer_user::record($origId, $userId); } private function recordImportedGroup($origId, $groupId) { - $this->groups[$origId] = $groupId; + Yammer_group::record($origId, $groupId); } private function recordImportedNotice($origId, $noticeId) { - $this->notices[$origId] = $noticeId; + Yammer_notice::record($origId, $noticeId); } /** diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php new file mode 100644 index 0000000000..ca81cbb344 --- /dev/null +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -0,0 +1,47 @@ +. + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * Queue handler for bumping the next chunk of Yammer import activity! + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerQueueHandler extends QueueHandler +{ + function transport() + { + return 'yammer'; + } + + function handle($notice) + { + $importer = new YammerImporter(); + if ($importer->hasWork()) { + return $importer->iterate(); + } else { + // We're done! + return true; + } + } +} From 44ff13c947095fb2307d6e9a10362e940ef1b9af Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 17:53:38 -0700 Subject: [PATCH 162/310] More doc comments on SN_YammerClient --- plugins/YammerImport/lib/sn_yammerclient.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php index 8f9f1d4131..830f9dabb8 100644 --- a/plugins/YammerImport/lib/sn_yammerclient.php +++ b/plugins/YammerImport/lib/sn_yammerclient.php @@ -139,8 +139,11 @@ class SN_YammerClient } /** + * Encode a key-value pair for use in an authentication header. + * * @param string $key * @param string $val + * @return string */ protected function authHeaderChunk($key, $val) { @@ -148,6 +151,9 @@ class SN_YammerClient } /** + * Ask the Yammer server for a request token, which can be passed on + * to authorizeUrl() for the user to start the authentication process. + * * @return array of oauth return data; should contain nice things */ public function requestToken() @@ -162,6 +168,9 @@ class SN_YammerClient } /** + * Get a final access token from the verifier/PIN code provided to + * the user from Yammer's auth pages. + * * @return array of oauth return data; should contain nice things */ public function accessToken($verifier) @@ -175,7 +184,7 @@ class SN_YammerClient } /** - * Give the URL to send users to to authorize a new app setup + * Give the URL to send users to to authorize a new app setup. * * @param string $token as returned from accessToken() * @return string URL From 5f409a0d7caa3b075657eef947deb7b62452b82d Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Wed, 22 Sep 2010 22:41:17 -0400 Subject: [PATCH 163/310] Cloudy theme fixes: show notice form only on appropriate pages; IE fix for top padding. --- theme/cloudy/css/display.css | 53 ++++++++++++++---------------------- theme/cloudy/css/ie.css | 29 +++++++++++--------- 2 files changed, 37 insertions(+), 45 deletions(-) diff --git a/theme/cloudy/css/display.css b/theme/cloudy/css/display.css index d93cd398fe..a113797730 100644 --- a/theme/cloudy/css/display.css +++ b/theme/cloudy/css/display.css @@ -1513,6 +1513,27 @@ width:auto; min-width:0; } +#form_notice { +display: none; +} + +#public.user_in #form_notice, +#groups.user_in #form_notice, +#publictagcloud.user_in #form_notice, +#featured.user_in #form_notice, +#favorited.user_in #form_notice, +#all.user_in #form_notice, +#replies.user_in #form_notice, +#showstream.user_in #form_notice, +#showfavorites.user_in #form_notice, +#subscriptions.user_in #form_notice, +#subscribers.user_in #form_notice, +#showgroup.user_in #form_notice, +#conversation.user_in #form_notice, +#attachment.user_in #form_notice { +display: inline; +} + #public.user_in #content, #groups.user_in #content, #publictagcloud.user_in #content, @@ -1532,38 +1553,6 @@ min-width:0; padding-top:12.5em; } -#profilesettings #form_notice, -#avatarsettings #form_notice, -#passwordsettings #form_notice, -#emailsettings #form_notice, -#openidsettings #form_notice, -#othersettings #form_notice, -#smssettings #form_notice, -#twittersettings #form_notice, -#imsettings #form_notice, -#userdesignsettings #form_notice, -#groupdesignsettings #form_notice, -#grouplogo #form_notice, -#editgroup #form_notice, -#blockedfromgroup #form_notice, -#groupmembers #form_notice, -#doc #form_notice, -#usergroups #form_notice, -#invite #form_notice, -#deletenotice #form_notice, -#newgroup #form_notice, -#register #form_notice, -#shownotice #form_notice, -#confirmaddress #form_notice, -#tag #form_notice, -#siteadminpanel #form_notice, -#designadminpanel #form_notice, -#useradminpanel #form_notice, -#pathsadminpanel #form_notice, -#adminprofileflag #form_notice { -display:none; -} - #public #core, #showstream #core, #showgroup #core { diff --git a/theme/cloudy/css/ie.css b/theme/cloudy/css/ie.css index e8f964ef43..a7b34a2f39 100644 --- a/theme/cloudy/css/ie.css +++ b/theme/cloudy/css/ie.css @@ -52,19 +52,22 @@ width:181px; top:190px; } -#public #content, -#groups #content, -#publictagcloud #content, -#featured #content, -#favorited #content, -#all #content, -#replies #content, -#showstream #content, -#showfavorites #content, -#inbox #content, -#outbox #content, -#subscriptions #content, -#subscribers #content { +#public.user_in #content, +#groups.user_in #content, +#publictagcloud.user_in #content, +#featured.user_in #content, +#favorited.user_in #content, +#all.user_in #content, +#replies.user_in #content, +#showstream.user_in #content, +#showfavorites.user_in #content, +#inbox.user_in #content, +#outbox.user_in #content, +#subscriptions.user_in #content, +#subscribers.user_in #content, +#showgroup.user_in #content, +#conversation.user_in #content, +#attachment.user_in #content { padding-top:138px; } From a2bfcc9734f5fc699961fd5fe63daf42f099e99b Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 23 Sep 2010 10:50:45 -0400 Subject: [PATCH 164/310] Provisional versions of two new themes (plus new base). --- theme/clean/css/display.css | 195 ++ theme/clean/css/mp-screen.css | 7 + theme/clean/default-avatar-mini.png | Bin 0 -> 1262 bytes theme/clean/default-avatar-profile.png | Bin 0 -> 9002 bytes theme/clean/default-avatar-stream.png | Bin 0 -> 3463 bytes theme/clean/images/page_bg.png | Bin 0 -> 204352 bytes theme/clean/images/sn-tiny.png | Bin 0 -> 4175 bytes theme/clean/logo.png | Bin 0 -> 13034 bytes theme/clean/mobilelogo.png | Bin 0 -> 4017 bytes theme/clean/theme.ini | 1 + theme/rebase/css/display.css | 1922 +++++++++++++++++ theme/rebase/css/ie.css | 60 + theme/rebase/css/ie6.css | 47 + theme/rebase/css/jquery.Jcrop.css | 42 + theme/rebase/css/mp-screen.css | 7 + theme/rebase/css/uap.css | 54 + theme/rebase/default-avatar-mini.png | Bin 0 -> 1262 bytes theme/rebase/default-avatar-profile.png | Bin 0 -> 9002 bytes theme/rebase/default-avatar-stream.png | Bin 0 -> 3463 bytes theme/rebase/images/icons/README | 59 + theme/rebase/images/icons/icon_atom.png | Bin 0 -> 807 bytes theme/rebase/images/icons/icon_foaf.gif | Bin 0 -> 1144 bytes theme/rebase/images/icons/icon_processing.gif | Bin 0 -> 673 bytes theme/rebase/images/icons/icon_rss.png | Bin 0 -> 763 bytes theme/rebase/images/icons/icon_vcard.gif | Bin 0 -> 331 bytes theme/rebase/images/icons/icons-01.gif | Bin 0 -> 4107 bytes .../images/icons/twotone/green/admin.gif | Bin 0 -> 100 bytes .../images/icons/twotone/green/against.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/arrow-left.gif | Bin 0 -> 73 bytes .../icons/twotone/green/arrow-right.gif | Bin 0 -> 74 bytes .../images/icons/twotone/green/badge.gif | Bin 0 -> 105 bytes .../images/icons/twotone/green/checkmark.gif | Bin 0 -> 76 bytes .../images/icons/twotone/green/clear.gif | Bin 0 -> 82 bytes .../images/icons/twotone/green/clip-01.gif | Bin 0 -> 78 bytes .../images/icons/twotone/green/clip-02.gif | Bin 0 -> 70 bytes .../icons/twotone/green/disfavourite.gif | Bin 0 -> 88 bytes .../images/icons/twotone/green/edit.gif | Bin 0 -> 75 bytes .../images/icons/twotone/green/favourite.gif | Bin 0 -> 73 bytes .../images/icons/twotone/green/flag.gif | Bin 0 -> 80 bytes .../rebase/images/icons/twotone/green/key.gif | Bin 0 -> 76 bytes .../images/icons/twotone/green/mail.gif | Bin 0 -> 82 bytes .../images/icons/twotone/green/minus.gif | Bin 0 -> 90 bytes .../images/icons/twotone/green/news.gif | Bin 0 -> 76 bytes .../images/icons/twotone/green/plus.gif | Bin 0 -> 74 bytes .../images/icons/twotone/green/quote.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/recycle-02.gif | Bin 0 -> 77 bytes .../images/icons/twotone/green/recycle.gif | Bin 0 -> 87 bytes .../images/icons/twotone/green/reply.gif | Bin 0 -> 79 bytes .../images/icons/twotone/green/sandbox.gif | Bin 0 -> 104 bytes .../images/icons/twotone/green/shield.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/silence.gif | Bin 0 -> 103 bytes .../images/icons/twotone/green/skull.gif | Bin 0 -> 85 bytes .../images/icons/twotone/green/trash.gif | Bin 0 -> 77 bytes theme/rebase/images/icons/twotone/green/x.gif | Bin 0 -> 79 bytes .../images/illustrations/illu_jcrop.gif | Bin 0 -> 329 bytes .../images/illustrations/illu_pattern-01.png | Bin 0 -> 538 bytes .../illu_progress_loading-01.gif | Bin 0 -> 5886 bytes theme/rebase/logo.png | Bin 0 -> 13034 bytes theme/rebase/mobilelogo.png | Bin 0 -> 4017 bytes theme/shiny/css/display.css | 395 ++++ theme/shiny/css/ie.css | 9 + theme/shiny/css/mp-screen.css | 7 + theme/shiny/default-avatar-mini.png | Bin 0 -> 1262 bytes theme/shiny/default-avatar-profile.png | Bin 0 -> 9002 bytes theme/shiny/default-avatar-stream.png | Bin 0 -> 3463 bytes theme/shiny/images/global_bg.png | Bin 0 -> 403 bytes theme/shiny/images/page_bg1.png | Bin 0 -> 204352 bytes theme/shiny/images/sn-tiny.png | Bin 0 -> 4175 bytes theme/shiny/logo.png | Bin 0 -> 13034 bytes theme/shiny/mobilelogo.png | Bin 0 -> 4017 bytes theme/shiny/theme.ini | 1 + 71 files changed, 2806 insertions(+) create mode 100644 theme/clean/css/display.css create mode 100644 theme/clean/css/mp-screen.css create mode 100644 theme/clean/default-avatar-mini.png create mode 100644 theme/clean/default-avatar-profile.png create mode 100644 theme/clean/default-avatar-stream.png create mode 100644 theme/clean/images/page_bg.png create mode 100644 theme/clean/images/sn-tiny.png create mode 100644 theme/clean/logo.png create mode 100644 theme/clean/mobilelogo.png create mode 100644 theme/clean/theme.ini create mode 100644 theme/rebase/css/display.css create mode 100644 theme/rebase/css/ie.css create mode 100644 theme/rebase/css/ie6.css create mode 100644 theme/rebase/css/jquery.Jcrop.css create mode 100644 theme/rebase/css/mp-screen.css create mode 100644 theme/rebase/css/uap.css create mode 100644 theme/rebase/default-avatar-mini.png create mode 100644 theme/rebase/default-avatar-profile.png create mode 100644 theme/rebase/default-avatar-stream.png create mode 100644 theme/rebase/images/icons/README create mode 100644 theme/rebase/images/icons/icon_atom.png create mode 100644 theme/rebase/images/icons/icon_foaf.gif create mode 100644 theme/rebase/images/icons/icon_processing.gif create mode 100644 theme/rebase/images/icons/icon_rss.png create mode 100644 theme/rebase/images/icons/icon_vcard.gif create mode 100644 theme/rebase/images/icons/icons-01.gif create mode 100644 theme/rebase/images/icons/twotone/green/admin.gif create mode 100644 theme/rebase/images/icons/twotone/green/against.gif create mode 100644 theme/rebase/images/icons/twotone/green/arrow-left.gif create mode 100644 theme/rebase/images/icons/twotone/green/arrow-right.gif create mode 100644 theme/rebase/images/icons/twotone/green/badge.gif create mode 100644 theme/rebase/images/icons/twotone/green/checkmark.gif create mode 100644 theme/rebase/images/icons/twotone/green/clear.gif create mode 100644 theme/rebase/images/icons/twotone/green/clip-01.gif create mode 100644 theme/rebase/images/icons/twotone/green/clip-02.gif create mode 100644 theme/rebase/images/icons/twotone/green/disfavourite.gif create mode 100644 theme/rebase/images/icons/twotone/green/edit.gif create mode 100644 theme/rebase/images/icons/twotone/green/favourite.gif create mode 100644 theme/rebase/images/icons/twotone/green/flag.gif create mode 100644 theme/rebase/images/icons/twotone/green/key.gif create mode 100644 theme/rebase/images/icons/twotone/green/mail.gif create mode 100644 theme/rebase/images/icons/twotone/green/minus.gif create mode 100644 theme/rebase/images/icons/twotone/green/news.gif create mode 100644 theme/rebase/images/icons/twotone/green/plus.gif create mode 100644 theme/rebase/images/icons/twotone/green/quote.gif create mode 100644 theme/rebase/images/icons/twotone/green/recycle-02.gif create mode 100644 theme/rebase/images/icons/twotone/green/recycle.gif create mode 100644 theme/rebase/images/icons/twotone/green/reply.gif create mode 100644 theme/rebase/images/icons/twotone/green/sandbox.gif create mode 100644 theme/rebase/images/icons/twotone/green/shield.gif create mode 100644 theme/rebase/images/icons/twotone/green/silence.gif create mode 100644 theme/rebase/images/icons/twotone/green/skull.gif create mode 100644 theme/rebase/images/icons/twotone/green/trash.gif create mode 100644 theme/rebase/images/icons/twotone/green/x.gif create mode 100644 theme/rebase/images/illustrations/illu_jcrop.gif create mode 100644 theme/rebase/images/illustrations/illu_pattern-01.png create mode 100644 theme/rebase/images/illustrations/illu_progress_loading-01.gif create mode 100644 theme/rebase/logo.png create mode 100644 theme/rebase/mobilelogo.png create mode 100644 theme/shiny/css/display.css create mode 100644 theme/shiny/css/ie.css create mode 100644 theme/shiny/css/mp-screen.css create mode 100644 theme/shiny/default-avatar-mini.png create mode 100644 theme/shiny/default-avatar-profile.png create mode 100644 theme/shiny/default-avatar-stream.png create mode 100644 theme/shiny/images/global_bg.png create mode 100644 theme/shiny/images/page_bg1.png create mode 100644 theme/shiny/images/sn-tiny.png create mode 100644 theme/shiny/logo.png create mode 100644 theme/shiny/mobilelogo.png create mode 100644 theme/shiny/theme.ini diff --git a/theme/clean/css/display.css b/theme/clean/css/display.css new file mode 100644 index 0000000000..be72993b55 --- /dev/null +++ b/theme/clean/css/display.css @@ -0,0 +1,195 @@ +/** theme: clean + * + * @package StatusNet + * @author Samantha Doherty + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + + +@media screen, projection, tv { + +body { + background: #9a9aa4 url(../images/page_bg.png) no-repeat fixed 50% 100%; + background-color: #6e6e8c; + font-family: "Liberation Sans", "Nimbus Sans L", "FreeSans", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 86%; +} + +#wrap { + width: 860px; + margin: 0px auto; + padding: 10px; + padding-top: 0px; + background-color: #fff; + box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); + -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); + -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); +} + +#header { + padding-top: 70px; +} + +address { + float: left; + margin-right: 20px; + margin-top: 0px; +} + +.poweredby { + background: url(../images/sn-tiny.png) no-repeat top left; + height: 40px; + font-size: 0.8em; + color: #fff; + line-height: 42px; + padding-left: 50px; + position: absolute; + top: 6px; + left: 0; + z-index: 99; + font-style: normal; +} + +.poweredby a { + color: #fff !important; + font-weight: bold; +} + +#site_nav_global_primary { + display: block; + position: absolute; + top: 0; + z-index: 98; + background-color: #829d25; + width: 880px; + left: 50%; + margin-left: -440px; + margin-top: 0px; + height: 30px; + line-height: 30px; + text-align: right; + border-top: 10px solid #fff; + border-bottom: 1px solid #fff; +} + +#site_nav_global_primary a { + color: #fff !important; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); +} + +#site_notice { + float: right; + width: 266px; + margin-left: 40px; +} + +.form_notice { + float: right; + width: 500px; + margin-top: 0px; +} + +#anon_notice { + clear: both; + background: none; + padding: 0px; + margin-bottom: 0px; +} + +.form_notice fieldset { + width: 100%; +} + +.form_notice textarea { + width: 364px; + height: 54px; +} + +.form_notice #notice_data-geo_wrap label, +.form_notice #notice_data-geo_wrap input { + top: 48px; +} + +.form_notice #notice_action-submit { + font-size: 0.9em; + top: 74px; + right:0; + height: 2.4em; + width: 106px; +} + +#core { + clear: both; + margin-top: 14px; +} + +#content { + padding-top: 10px; +} + +#site_nav_local_views { + background-color: #6e6e8c; + height: 2em; + line-height: 2em; + margin-bottom: 0px; + padding-left: 4px; +} + +#site_nav_local_views a { + color: #fff !important; + padding: 2px 6px 2px 6px; +} + +#site_nav_local_views .current a { + background: #fff !important; + color: #000 !important; + text-decoration: none; +} + +.notice { + line-height: 1.35em; +} + +#content .notice .author .photo { + left: 0px; +} + +#content .notice .entry-title { + min-height: 26px; +} + +#showstream .notice .entry-title { + min-height: 0px; +} + +#shownotice .notice .entry-title { + min-height:123px; +} + +.user_in .notice div.entry-content { + max-width: 360px; + opacity: 0.6; +} + +.user_in .notice div.entry-content:hover { + opacity: 1; +} + +.notice div.entry-content { + font-size: 0.9em; + line-height: 1.2em; + margin-top: 10px; +} + +.notice-options { + margin-top: 6px; +} + +.pagination { + height: 1.2em; +} + +}/*end of @media screen, projection, tv*/ + diff --git a/theme/clean/css/mp-screen.css b/theme/clean/css/mp-screen.css new file mode 100644 index 0000000000..c9fb6dcc4f --- /dev/null +++ b/theme/clean/css/mp-screen.css @@ -0,0 +1,7 @@ +/* just a placeholder for now */ + +address img + .fn { +display:block; +margin-top:1em; +float:left; +} diff --git a/theme/clean/default-avatar-mini.png b/theme/clean/default-avatar-mini.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9fc0348b7c9e8080a9b3a6e1a30542bfb378ef GIT binary patch literal 1262 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`I@FIUCIA2gfJsC_R5;6x zR7*%3T^RkoduQ^jNesTQr5cJzbyHEK)fSN!d@bq&Dn&#o3houD;zC4eNh7vZp&$q% z6|A(IE)-n2vUcM_G%kECBtGhB5+hC~lgZpJZW{ku7ysGJEY3aO^Lzk*fB^9R{d-N* z2qI==WEczvN+|^ZyWI`|fQTa_Bk=k2XZSDPy?aLpDJm)g00ID&m6dnz-qm&e)vH%= zU5>J{vggmApPrrqA`(IXfYNvf00582)7sj)w6uhX06+mCJw3goq~yhm7o(%2nVFdY z0JF2RPo6v(A0OwBNOg5JV@y#LRaLJl0RXev91e&3`ueuEwh#bBQGE9782~WG78Vu& z;N{DgCX>l#vrSJ=`~Ci_OuM?e($mu!W3OMouCK5E_U)S}ilwEcKA%rWkaBZ#lai7o zNn(td&E~POFxElgR`C z0s!RYAD^Yg;rKpii(O{E|=5klq6|xZthCIy}f;Sc-ZZBbAhj4zw!w2#QA4p zVuCS72yr+ZjIoA>1|Ffjyxd~3T=fYNO(v7oY7GX14u|8zhY#oH=Yc>V7K_D6PN(zs z?c0Qqv$Hb*c>DIPqA1_Le_vi+&d$z`lRkd@h=_dDPoF+zjE#9rzprUpR#sMmL@gG}y?ghjrltacKu%81 z>gwu`A3q*He*Ey^!{g)Qlamvd%Z0oy#u$Ip(b4hg)2I9Q?>9C!YMK@bg?|40dBf~7 zGBS>jkF8c~ZEfxO`T6$tHUa=4#A2}+jYdjoLX|P*_xoe97+;g*+=JcS z-H6C@xwyC(8XAhlVuX;HnVErs0k7A~cOxOeAzTys_3PK#+FE{oKHp5c-JY77dUSLo ziehtfb2J(iMX|oVzOu5?VzJ1w91I5c_xHVCukddp)6&vXQc@_Tf*@#`rfC`?DvDw> z8sEHmW4GINU5`W}(P&grl#7cCS(YP_$aSH%wl;pZ_z>3C)+9+nM5oi)-`~$Y6bJ;| zZg(&kyrHzDq@?|%s;ZcSndMNup)EYx*fRaIG*Pft&O Y173~_lhC4!RsaA107*qoM6N<$f><0!*8l(j literal 0 HcmV?d00001 diff --git a/theme/clean/default-avatar-profile.png b/theme/clean/default-avatar-profile.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f87006a0d082626a3dadc70ef990fc66c20551 GIT binary patch literal 9002 zcmW-n2Q*vnAI4*=TGbeht*EAos#SZh+MC*Hs}Wm`;%BBtDQXKJ_LdXyBsfLp;fw{(LX48@ckzLCu__MYsjH)-U_YK zt<^$pnM;GB;Z+~;ycKY;hFy4>cX{Qg(ueH#-g|kxIlShRroKGUapkM8KMHPSY;5f4 z;J|0$GbnZP_cAm=`7S9w)(hNO1Es^j%*+gfwfGD(`_H0y)CDtti*28-mXiM%9 zO4EoXx;i@t9^s7l{$^N(n(9I;jh?~NR?oo=+%b&Co=h139m~8GWKW@TQS&CpH?Ke6 zGv!e=;LXIP=$M$%wL|UD{ZwQN*Cjmu^T8*r5{ZD_1=j1oSbECTNUU2a$@pppxDBG`E1 z5o${*oTioIKYsj3y{G+kX>Y>v;b>MLe{I@m_iD=9FXpQBd3b=?{OX(tRiy0Re&VpQ`$L@8IBBYXQmqZ+BBT6A}_EKH`IkjOTDw zV8Ytho4zB)dIh!RU8FDYC;}w@cJ?(66zK=3M8xWI_Xy=MY<>$ZL ze$r;?QET#AdFl7>-{(6WVT;{2f|%d54G$No$Xx7xS;>3(!%4{Yj*pKIITh8@6hgeq z&})=JjHg$zUe{fAM8XLbA%2p~l~`MUtsVAf(8fcaKqn_v>i-bU7r5%sqpR~Bj0x|Q zo1cx%ug$4?+oJ?Rxtb}rpf*dWQl(Kj&SmeU-f{3OxZUb%KO;_29@>LwW=g`=Pr1R< z;A!f%M;4*Gk*rN~?iXh8v_z&S_)3!CsYK_4>p9iTD*fEu6URR*dE12rf{H)cn!%oZ zr;@o4$kp;@S~&{x-}#vkb$UL3eU+*$t*gdn>(biNa&~_HGAPJ^Ra-+tHm9*sL`fHn zE*%o*-|W=r$we&(RTAV;(q#!b97Z&MKe*`Zl;z7vwQn}(yI!R4C~dzr=#|40?~Zv! z{hyN%7-27!a@^TMB-Qo|rrMlOX0Q8p1lz7;*x%h>8r+f9oorvRSY(f_NOt8`i>iuA z*vWj@^}@o!>@3sZL1@P{x+G7XJGIC57ShSrR~SlG>3%9PU)i_5KwG@Md#Lq-@Ekvk^b{%j87q=KuySByYMu2YF*`dOJd5ODf8D2-C+4f45C$f5_GuQy3_tNi^Fi-(eBtNMn60}1QW3knJnm_H4^>W;gO%c8wCNyQ}QdA@~V zOi(_qmq*F^y*gPAWbtZn*t}I?RNiG>x<|d2@(Gqee5^E#jvlN!mj2CG0~1Sp%1M)^ zUTn@cYB1(^)s*|Ur!zxISJHC{Y~^rVExqW@Nlhtf4U;a zBT31e-sguwQsXb!s5{THGBc+-!a8{SnXtaTzP)vlQc?qbKbDmFGF*Lq4O2KjeK0ED z+TND-S=F(#TiOXdY1NiKRn&c34K!EuXTaTA?)P~)IfRhB++3V>*65m0A%5GR{r&y< zt7D9l(Akgz)g{o*mB6cu(}T9QHp-YH9Uki!cIhK)J{)f*#hC7pM=QioULIpQqU@zl zf2T_4^S@Eum9&DVfh)wAsva=O?SWyGd3ns+JZI7BS3J6gXy#SZ6M`iuau`!jn9Re- zi81bTS%WJ#qvYXfW)>EP*aqY-(&_;38)SThV54W@s8_323(x3Hi~&4N4{g9pcW^4H zIavIT)R8JC>NV-0PNr1oz%pVl!2C$CkVl+}GFQvEO>e>L(WYN3b_u8m+Q7xnk8XFP zt|4jX%hg^~Bnz0rcUneAJYG^=84ClS=!o?EnO?Uw(2z@47i%ZB;P*A9D zJBHod0_2etdRPS380bYBnwrc{5Wm|_e)c=mLuDtcCj?H9h*IoN!E)Q#*dTbtJ^LW| z5iec;#YM0rOH9h{S3nn!7|1=^PyYasFF#lrByg_iFj`F$Vyqeomd@{e-qO+{a36gzz4amH3@_ILIT;k3F?kJhb5iS4GM z%1X_0934=%TAuzo-u}~I>5Tra=BlbHu+m!yKQpnvh*Y_ybW7iemu~9sjf51bhK2@a zai7wnq9Oyhypx z5Z|n_F{qM`Eb7-Un`Dvavf;7|+4C14a4tmmqSqdzsUwld|4--bNnKvL44`D`>EloU zEc%){rcSR^Q4&m$eSGM-NT-l%B9_%Wvmrn*>c< zMMZ^M!OJ@Km@mIh&OxEgxr-VNZEm_rvSiqsQWH`WRaRC)a)~3m+(b4&eWjBS6I%k> zlSe`Bz2{Na)*cjX-=k==-pRN+KMrKD6nZT>o}_P@b&ZStJC;S{$C^#o5PU< zD)0Hf;#=Gkt45sqnh6EEB-N4rE)Z>APJd?3Hv#yoaG2-8$NuH@ogF}Wgh@n$QTw#mxWA0A*`yggxK*R#)j{1SjfTE)de?`smbpBOYGsPIIHRZB zxL`XO#WovL- zk7u27T^vnLGC1oN4OTHtxkOROYNv2Uefibf+dEpKO^@txNu@5=eD338 zkiMMl-qP!iv3ppGcy2u+J4RGg^g(cPU9bUz#~V+4-oJGqsOlyk8s`FpS$2VktrNb70MSmn)FRB&-6y zoY8Jn0THGlz$V0W`WgI1m>u=+o|XQl=p6 zG%g3ju2N$s)(zJY&9PsK4t>15_Ev|BZr{GGNJisnXB9V#_h9iWTBsnk@1rwt!2c2H zMFN-Tzdeg(4b#}W`ImYkKr$~qovvfvqruEq+@jfBt5~nr#4Ru|(B7UaS8Jjt6wC@3 z^)U??1u;Px4Pmgo=@mfp{ZmOI#rKf8xjDcgcG}uhPWVc?>cuoo3UGR(2(As z=no$KjHh32>lnvOPx$Mp)!9f_B#G#Y>Hh=7Ti$*i7(}Ot61Z9}H6T!+J@JKi=Dw-4 z9#CNWZ)1I5r`cQtmT-A_NhP`a%CcI!Sg$F?m(_FJ2ZQu^CWQ}NNBvaA#7106gvmQ- zqm$}*<-~?Z$K~<)cB?iuA#@V0sh;LmdwOs1fbk}0d?64wSb`fJk}<8{zQzkTKMiIl z*Z=2@d_`Kpef;>s0tGyiq>EW%RAi7_j#f$UbB=j!LBN2ZwdJI7m+PU0L`CO)CoG5~ z@kR-oR4mCPrxzBiIo`;+xC$`Hdg7L2syeRDfaV#NKrBBRz=4WbYu?&@%s`HrMIZ-P z2xd{VkdH!-9(i5--2*Kv&GLmv_RJQLX+}~gDPiM_nds2gtOaqJIGra@?&Xtn|E+1F zn_NpgbjW6NcWdi~Z*T58m6RXz0*)dG2fXpK?IkcM2HpJZ0OB6W$Y?*rGf|ZA+Z4#u z=pJ6!0eC!y*7pEVakj&+Hj;&ZBcdkk`ijxLNlvLfC8#sG<}kjH$FH@mwKdy~RnWeE zs=2w@e?A0bsb1|cT;0(DF20n`uXgB`P5s{8O^E!FtRgBTRP*Wa_^`~?9+hE>HxYj3 zz@MwDtGQPHFX^ryqMTOVWo1R6hJ-^q^0NfL?G_F5z=*3&*dn`zrly)-o^0pkv0!G} zD0fWJ20)JE<2QvVC@6S|kV*0=9e7$gj{qVYHVB+4i&I^>KA2Iv*%KLs9`(T2Nz)jyEj@ev19Vvx#!>=8)g z4JNj}93=ZM%b$%}r?T5qOhd}3Kv+rFr`f#A+EYQKB3jl>FQSf}g0_akVRFqU<%V4p zaR0gmoV;0ASE1=|&`;U25V}yX&_>Aj5zmh}@4U7<_%pC6sa&LM(B0`E&kN$2y#SWb zzrR}4Z#Fe(mDHP6f{_4;1^BxfnFGw|yLY5f^21Khhu*S!(2^l`2|+=8)&DqPh|mQJ z1Vt$=Nn}@CT%0dl!5wp6C~Hc+%l9A>;wOqxF7Y-~K&1pTzyJMrG-;J6 zq&Wo#GaVs<{q60eR!*%2ViOo^9_|zUrnf$?<8`bzecLDm_rqj$K6~Kf$&{hNEpvTw zAdeavAOGVcuA;0A1kco;2a4~J#B!(3>vOAEpX-Mn^{v4i11HZJTn- z%gjWr@ujJ!rltaUN2ArMClv0yZA@3^QnzFu?RY>f5m#%n`8n$5OydiEC>JcjR+x<| zD=Q0FNg$L7*F1eGo;8emgB@JS>V_csad2=L{h$fZx|cn0x45{tr$;HZ7f=t|?Qg`Z z(Jj)uC$4PNGj3314=>$Q-z~gzex3WWjtmm|HBPF54~ZhIWJwtM-Q=Ty7&1{tvK2h( z3wcyf&0~mkt`b|W5TSpKYoV$ZU^6~ z?_YpUlPb`%AQFTje_4k z;$#+nIQGjkK$3-x=`itLYA@(@s+={&iRBGgmA3BH#|4_uV|!E3EC8wk4mmOPJ?<*A zR;b5^lgE773&`OsIJtMgo6$ezMu!?)+Iux;jxDm;An`wK*WrC2OGcGB)U5?JBNkvca0{v$r2G?mKQeP|gGD491XeeM<%1beEDgGX6CE!G1=fL($md;mUp3w@VA&VWGx zPnu}F_R}Yj1m1n4`hP?+m_;E>b8i`aDhwbTLM(R2fyE92MMuC*kW!xhvDa_Q9F)^J zuy9LD%jmuO=gdD*=6oRNs`+NP-<^M6d#oApSDp^#mKX7))?6r>Tsd*9)wJl>ryLA=d&_14>;6=-12dg z`1)Cub0@BSXyd4_j+_LwK55VYW96WR)HGcfrU{}uPMSBWoKP|#lN6Mc${e@eilfKA zFIH3R{XR2m4I)DMJQ5er>V3Z5e!gujKpGSoRkpFRI9aoF6ePu>%}Yn%sNpN+XTw2b z6OOg51q~16YLt|ee0+R*@V=nh@*fl?<{zZZ7R#_;5`lg;m^}=ND!r^=>6?2l7+xM3 zX1}bD=LJ>gR6Dyk7))Z85RsI8O$fDAI})QUMLQgAXuqxskEom41aQGb88hb|vte&@ zLQKpXuT?U-=JR84(71!3nTE3q2#Digo|N|=a(I-RE7GO6rU1{CwJC#=Mpj(D;4Oj@ z;@TPVx5Bl6?e+5VvI%eW8U8fIdK^@85MX*vxK6^_6kW#D)D(zA0FD=te>M7Ka#Mcp zS@i@+2wLa1!M=byrhgeBo=b-$8VE61jBy#F=2fFn)i|74h-nd-AA1546A+VmV z5R~6fQ?I!XkWUB(rf|;Pzu6o>AY?J?KB*Q|lUew#RQ7V+vzu&I10xdc$os|F)V3dp zCWnToNeLsmtQ{TisZ(vT@TjH4+V#kOi(D${rky(xDqUL2x*t22A%EkIOTV=*BTKAt zU-(3?u1Q|TIu~%-VD&u1xD&l5bWutPci(e?D!+;){zwc_f=50r!-S#vWVzzSD2d;* zU)jIxift{(M>A;zuxV~$f}WJH)5F?1b$fE6+@ab;!WP-( zmhNqTX~AgBCJaON)CC?mltv3~X8p%0QJzd5bD*PH`)AEA`KPtO$A*TZqa)P8tuj2q z5=@!1#BN`c1~6z$a(}34DHz{dYg@!l$jX5(ioy7={Kzd8*R|rCxs3{Xf#3oP4@)Ri zsSpp)FQ(AEZDC;ncxr2PwKLkO#(mSxJHtazIaxk2MU~UY$OtUZFTVr?8T;f*o16t0 zX5BG8wjh!!Fn7seK+tmKA0HnlCQ=G*b;XKwAANiZEGM8>`R9K9cZDS2Ii}hB|O46?%z`rbz z=vXh}?j#O7&3+2>_VB2l*dQ7yCV0Dk3!iBfh|bv9*y19`NBy>I>d=y+B0HdLKv3Km zv&js@aS!N_Vv}1%Nz!Cd@)O+RR%n;Qptix4)~mA(QIDUqv$Lu{HPhA96)0=w6*UxR|dAtxu2Y0g6Kdov|NvF5_+tqngTfgk$`|~=x>=S zw&d(dV>)tT37||_Ss;+cE}=7}aE~FuwzZR+o0}seG_6f8+ucrXZbHBe&_Kc7O=##9 z*z=qi@^djZ;%7NU4YQpboCbrh{I~0uXMv8ARJ?JYHH`xim#S1Vw8p@x)1{&CmO>PR zL5TS72>_O|FDzA=5tAX>t3e7#dKW6Kl2ku#YUwI(%}RSkr}rig5V~~nA0~W7mh=S; z2mkyH>yL2KD!BXpy40|sqHNK;itpI#I|}vjiEqg3#FF|oL*XA~C0G7OP7ch30WVn9 z{KCh&e|gq8HsFHkI^V-j9Y};V79mO3Qbd<4#LRdg8!LTV)%TF}#a$2lZpfl`}0FwXqT+4)Q{0$QfERi@X1~avC7n{^^tX+&5VUF#9y>fuv7nf=Q(^>`K3tugtlKJOT3nk^Gl@85l#JwS)#dZP-t zbLmJ+m`FE`*B>dT0vVEn@DSd{yAzvC_#E^Y(O)Kzmep?UPTc0lhhfA z;?|^Ck|s8krkka2_#csRY`xRq{vHQBsad5%edfNez>QVGx12Xr5ITdU@$41b9iKZd zL3@^DF&=ob231ilILM}qusx4k;~xv%@oSZkkN^y?n>U|aWj=2aFPs69dd+~S@vAi< zSHb&gTMKrsv`V_3{IVQN(OSmK9#EdSVQu@|X#v${xuYpM*L`q-)-RDqQ9sKoAv5Nr zc>;p_?Hy0C(s8YOPg0N7tbwD);i4YPsQmu`KFjI!D1)V&V5mz($C3!zdk!8SnzGBi z$`7_=fU@Um>D!H)C58Kn7?r&#zSA6>4_Nczkx~v$Jw67wyOfCe1U-R#` z0PAC*`+?9D@LFH1oU2GS1ta=0R7ONT8C@34YWZKRq8Of93QZiLUs%i+8;-zU;#&D! zt$XGqwyVWVNucZ%TRzoh~^r8a!Z*sbSqW=f8a)x zoZ2Lf*_|G{kQw&$mPf!^Zf9g<+~ej3dy4n&-BUmft*^t~Sh(jVCs#eihAN_#iwZ;I zdlvip`T(18r^=BfOgT{L7^2hkBvazGOd=e*G)AR^rVC&B^V1=-vLHdZqnzu#A_hGO zoMwCv$5nO=uv;MfT3d6@x#du60wMzJl3Xoy0s^Om)!?qLsd?of-e#Hfg>H)InFVE0 zAN>~2cH@qLIeS&QGTLC|g8z$CBMB@-=Z)%f7Z;b{;9wgYxfITfexhhbiKK5OWqk=C z4R?13s8l@a{PwrO3c=9Nduig6bcSc)V{+G5*SbSycUWDho<4mFav^3r9gdo7ZcU8Zkx2woKvee=F1Qkbjf{D&eN zMyj$MNp`m0VzBX{Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`65%?6+yDR#8A(JzR9M5U zSZPdLRU1C%%)NJ3n3Yms7&d`wIz_A{R-ma>XiHtv)Fwu4T3o8B#Kc5njcJSvNmCTp zA8oAmNBvW+DQZ(ljF>2vP(V>BrBpV@nL%cl?as`d0QqyH|gR=fP^*s)_6<2T=Y6Cp(4Cqjs#DBpeeU3YgkLI`mjcjn9)jPdc~ z$Cr0~^2sN#HDsW1p)ztF@_uI6C;GWy1K&Qa9v&9-o1MfLMnui z&*$5+WlMW|`-u}L91aIY2%R}|W@2K(YPCN9{PPGQa@SpVA%v!;rqby&y$UOe!m_L= zibswdnV+A>0CnTWjqu;#;2_5M-h1zrW!Y#nE-o%!ym*mn06qQm(_LL%Z@>LEygnfW zA!INZv|24gHl$4YJ^mpHV_x<#x5q%ks0&KD(?+gpkQ(^7(uhE?nSwzN@PXV|?w}H9-*Gc;k)bcR{(9Mx#k4lLrqT zjK|}D|NS>wd2gJ3K&4V~9Jef~wzk%0vnh%qisJC_a8*@RSy@?LUY@~V`0TUKR<3*M zsi$gdYei9f<&{?uLIVQ>J9qAk#bUB7ueid=lP598EX&?<%Pk0@=H}*TG>S1co6Q*G z6+NZXX{}aUT3Y(YAAcx{^2HZlcsw4S=LZG`2;JmxIM%LRJ2NwbF+O?nq~Gt4$KxkX zoJb@R%aXdgyBUT-2+hyWYqi=`Dm6Jd`N0PtAcR~l7sImb%P+rNQc{8tl4Y3?(%RaJ z5P}`c8fO@WY6xR2%d*?;7DdtNbgpc|7^~Il-rnBH$w`FJt+(DfGBOg4M%&xl)oL}U zblGbaMS(+y4<9~y^r*w(c;bmCWLb{KS}k3SxbMz3DIx-5xd z7?x#KDpjV`Xf&!Q3Lw_$bo4XWG(SIIuh%auEckrBY)@%wYP#c&J5(x_q9}@@$g=#y z4?q0&+i!6G!w)}XS=MAS#bU8bmo9zv)mI*mhn~#=``EE#5KZ7>ufF~_1`?S>#bc<^9DLjyu6 z5{bB6uJQ44X0;%L!C*8RL1iqc zC<>*(`uh5Uf&z@OD2i{r_140|LKXrB2)C}TuBD~L;c!qXu>5{Mz^SaP1h1APX|iqh8BHa0fq^?Jbx zIyyRn!C*R_Rum%a}p^b zM6FhXauGrd?BF;K_?<3ElH&0=C20siki~JFPNyp(-ctNCIuP-kz*Jw1< zf(W5&*RCxsEg^&wiNv;T+b9jNENd_r6h-Oj=>bAsamb~mrD!zz%rnn`IY3ZdT^(d+ zgwUEbYqoCP%5j`tub-Kj`S#my`}_MLdYAJ>=DUoIjkUG4na$?>{CtQwx7+Ra`w1a} zAUyZnbFwUVcXyvUb!u*IE|ayh9-Mja}2Op%O6-5b$!!DN#Jf*m}7#K1f4hMt59NYl4No#9sb8~a1gJFzA zp-^UV1-Ad?mtS&{48a)dbUKD%G7}y>4A3Zk$Pu{(Wp2$}ilSI77Fr+2VlhdQWLd7P zto)yXs4QT9TIy&tnmg~j6F$$*&WfTailRoNfgGD%Eng(%)HaU*N7zYA@a5(Ju`)6imRNybrOJuH4DAeEI z@9}u{@893s+lw(CA0Mx;uQ!=YsZ>gmBvBLzA)+XT!{JaUq`H1Ca=YE%fB$`Zd;93< zC?VvhpMEMYFE^XbJkN`wm`Eg|(P$_X3WY-dHXW^7w+_MuA=J>&uxZn#NF*XjQY;qp z`Fx9ui#L(iGP$*)qN1v*Dw#|ID6iMM;>R~kZPZaDNy>Q*gcq<1+zMp7ocI_9Jd6;c z*XtpKp-#xO5R=({XfztNS`E39BFl1nxF8mbLB^vm18rPEK|yAXM~~#?<-w1NqBtB5 zj^kpn*uuiX^z?KpmCC#&hbAl*OHECU-EIfc1|QA5128QuEnU2LF_B0RLS$K1sZ^3A zSuB>FJ9pY_HaMkHso)KvA0mW6={hknaplUDWHL!#=6XdoRak3l>!wYcAWc%u!+EIT zW@l&5o;@oF0?37`u&Jr((4j*{qY-ik&+}fdcXV|0*I$2~pPye`T!fvJlyVfJIhQ0! zy}i8?6BGOP?bB+t&`i>{0`{z5zuxEb_4V}uAp+v5sVPwuEf$N%;~5zl`TXgqao?p!z=zD|hTgofyv zot+&S8M*uJyVL1(Rt7`}S*_N>!a^wC0h3m%y>#i)xpU`uo(EemH%=Jq_4=ZsqRPt3 z($Z4MK!|FY}~j}r_+g|m`ovMd5E zC$KkwRI0YNw(Z-u6GEU{g@a(Mt5>h~_4RqZ-mLtoQmLRBxgH>c!Epcm z_ct{)S*_MgyU@FX!Qk-la3~alE5Qm|w{G3Kbt}X+oo5JwFfcIC)6o#oI;B-16D`lnL%-NF9=NlRtf}#}6j}WS-Bp7C7NYG(2ttU z=F-yA>gsB{-A;LVHSuId6K&`zVyo2({0Rqv*=J^E{yj00>om^SsXz!JCX=bOv~)GI z(~zP0VZ(+EI-TyO0p+|nE2qL|u!YfR+_Ghh*=){COjoX4357zUC<3(rxf_kfhaY}8 ztNp)TE`uSTR;x7{jW(OjX0utX*8Kc@P`e~afCHFtrTHbqYPD)Kn%{r_o!SUAR8dg@ zaZYDGMMXuMH*fZMJgZ47$B>8mP*G7)ad9!nap7=yZf;eR?!=4>Lf7N#Pqs;U|r8*jVqHk-{hIXU_9#~%j*0ZK>~i{;TrAFZmY zqQfkzW>{cQ7!gII(MTi`4u=DQz)cheS>Wg$B_$<0cI>d*?Pt%Ph2aK;URhbWd-raK z!yyPlJRZ-SS-})7olXma5RFE8p1--a pXK86^K|ukS44$xJu~;w|{11R=ke$IC&j$bi002ovPDHLkV1gp%iu?co literal 0 HcmV?d00001 diff --git a/theme/clean/images/page_bg.png b/theme/clean/images/page_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..d27bab591635c437425ee5d829e94882214a0067 GIT binary patch literal 204352 zcmXt=1z1&2wDva$B3;rF3P^VeN(e}ZfOLa&gLH>Fx&U?#}a#_kI^2 z@e$aE*|TTXto6RXb%MXjh@+zrqd*XZE-4`@4?)j`APA1|#dGl4&IW}Vd;`u-UR)R| z9e%Y7{_|W8qHsxpUhj37!mPB^xjp8n!K`)KCTvuTAX_xs2;NBXh*_HYU>huzlT;IB=Jxw$zZ zcw{Q9XLnUE{~H|qnQS40(~Hpo(Z(*y8rVgTE{vAR&kPQVKF{zafeh$kdw31(ehT%F zKZi!qMz5lU`;H0Vf-ZW9MP*0OhDP$;U#oc|*oJ(9ZiaP@jM)Dh{GyX+fr9g5I7v9A zf~V)IFyvjK&s5LOKK{P^X3J0awJTMJiqkFvMr3>M1^KoVf&~x?RcsPMIRE4Qn z80c@z75=O+KK34bXD_Hj>NAQoVQ$}WYtgjI#YI1HPW?Nt7hCyXE2~-CDl31(XLC}D zg}L;hSnIAT=*yV$ey31HfPT7NTbchnzdt^1ZmvbPN!r>PGXGq>W@56l!G6bWG24qW z=ykS%j6CRdyu7sh7Y^$Pm4=RvT9`aOHI*w?;9xu#wUL-ODeI>Ey%T#F8>};Mu9J7@ z{^~GU%tMKJoXs&1lbra0$=!BWzLNQAA%-Th`{8=Ug~@ULdTVI^&O`1k0wn6HUz%51 z8Wta~e6iP^-f&BMG&uO4pU?OFM7Or0aJRfibfr{VS}E4(8|)YZq()6>(- z5T3l8Z{XA*A<8!x1648NMq8;Y{JA5O_NvVM;fcxbZ2G071{&ZuQqnni{{0Rd|1#|s z`JK^B%955~r{xbt^mpZ^6M3i4AXjitd{Blj5`!J?DFKvWK3#0y;iXY)@#~vxjVjK{ zc&DhSXjEQacZ2|zD(RayS+x1}){FJO?-#6bQBAlgcLTPz@EahA!)Wkt)AvZ z>O<>9{z&bWAGd|)eBiEYl6cvAqr-mQSR&gx*~IFOYQwl3?T3f&sQBM6OzIgiF`WWi z9xLlo{>sX>?q0z1aH@d(Kth?jxpiBy5x6Nh zN1KH?CY#IFz(6f;4ui&mGuf}y2s%EZWcqdKKyZoY5a$Qm2dczpVuEaSgZFs2B?V6dWQEVrnaCEulqb=ku;Q6pI z;De|vyfT~jqKciGCVd7GQqkk55bpVvqSa;p5|;LlD0UyI5|%0^_eA)(~-$c46Du$L8>5-3*aMGv88grE}nlFhDiK!Q0n-Fg7)ZgJ+RFlO!)A7m0v>ZGf9HFFSL3^sVZ%qc%t+mE;5!jO6*`N$%y{9rr zZ!X%O=Q&urJiC+XSa1_3&4z`2TNiUW_4dxV^IV`!;WYi=V8cL5+uJ3Rw6n9mm)f}{ z12%()hsOpVwHLd?x$)V??(M~{u*fy$nqTc|XP_K`o}}dV1ss&hs%y)feWR_tU=mUK zj<3|y~OEKmKYl4wevJK7d^jP9y_@-=_mBGJ|;ycV16)0 zgI;tyd3wHY3U`Ks`xriW;<)twDf-@(?- z&YVT3b@BWD^b$AZ&1J6H<>M>zLdgLh-lsPZlL;-iHZSk_b(Jx7`pId&Y&!k-tAhr7 zBhLH#AIZF`upv=^Ge0O-@Sc*SiU#5P0(I?(h%&oOmi~U5yG4g{=5caN4&; zhlVbMT8B?)d_U66O3U4RcmOK_>#vA_yGgEcxt|}Ex{Atxy*16-xAOX@Yt+=K>M5P{ z0}1cruaVBzO$9w466eQr2l^qX)?$uPOGjtL^W<-)m5S7<`4-qYp)DMLnjgtPn2C`xA_EE0SpS1N)3cyc*>Yo%u3cnNG#;tFRr zwy60;*uk6~la-iU!IW98@_=ZI01t07oo9sp zdSU-E=c&WrYfJZozJ&!9zgO#}0^}{7{2|Bb_^PaZE#eh#%JI>XTS=Jlo7eQr%%v^d z!q!WTl13wG9$bU-*l^J1vQ=165M>esVPG(%v4w!;+oz@Za4_-o=%%!|I30IQupSf~ zoQaN(?nins_{+Id@JTgspri=tl?%aqZ}X-fg0YO3L-aDZxBH;OrUyTV7rz zYO-l*uBC&Ah>3`%L>D5Ya#B)K((R(H4K~>JwEa?-qV@DV&r}eh$t91HR}Ai<_;a5j z=x%SSC~|P^@wBI-`EsA9IZKuV2S<6P&ns$@n~Y~zGlHPHcbxBEeC!QQ3BxGSxomo<%#r%x4-ly&wBM)h6XF@|mBls;DYIW~Z z@|9Ap<$3J&=_&Q(5(oXv$P19AD%sg-sB|+9PZla5u;|Db7QEhAU;m`8vEZty15#N{ z>y_#9+^DSWaBEYBh@9xap67@eWUrDL*S2bFU%^^xYHE^~(`eD4uNoRn9|i@zTB#j4 zlX&d{3hJ&S=#{I%hkG|nR^r{`6WF)UA@8H*76pf~H}?OYmB;;Gu(7SQH+j}Hs{U@n}(&}%X+S=MLp`SME-6-SvV>2_x&e~fef&@X&py)*B zQe;#q$%fG{OOw;n4sI9i3k&Auv9VN65)$Qa zAL|SU;y+i=yJ;+_psSdhzjv2z%7UJsAm)J&3}u_x#d$dzmCGENc3*vj|Lx%5aBI3fw_LW;Qgry;K}+E| zQ~*MhBqZeT@81wf`d)kFMSfJ&k3atfuYYPBS$J=HFPBnSXv%}kOh?zQZ*5I;xVib5 zB-iM1e`WFvA_mc;&D=5ucBEw)7#gZUM|KPjaDQ&Nz5l7)q@OdA?YnVv&` zH#a}d&(HHFVcy*zE1sXss@Ga3Z+{~vUrFHqB{iJHrC|Tyj7sF>6p2IegR;Cjg~9b` z(Pi&$c*d#eY&i9aB{_M;3l2KDSY+>=ahhQ;dgtuo5>;C}%oUWAgP>w*xwL(9^30V% zrF8h1PK!aAF^11}WA?q+AsEQ`3y6Y>Doo}VyCk6wSmbdGDxU)b182(TC1*O3R8>`9 z>)PD`QummrN=I>&b>oqVj9)d`tr{|)S0Q(GS&vakwaPV4vcTka$GY4^2b)Ozw z)`EkL-Q3mLsi;)9*Se(Q2$(f3_UIz`-QcUI%T`nwnVH*_baceC=MvvLMaS=~~BDUv_?G$^ktb>*9Q&u-4^#nw_6ttM%c*XF6?sW4lhF zq@m#!WV0;dJ@FS8_O}A=H#eKN=i7%1b+GKa>lGL)Uc}nknkGnu(?PW6#2QB+L8f9= zIe&Wj&B#bhz?UUM$E8yh4qAnW z=uoKhR|e0~3$Xn-e~bA1`c?7V|E%612G&fhWfhO+~ln29)siugf$D5x&qijOnMU|Dp{u9;O+Q}|$G$lDCiKV~ya<{Gr zF>lk7ikq8z*zfMTEd-_1HMjUcYIPUD}^v8DeBA0Rqj`43B3I z-&1I&kViP%11XeYJn}XK?$-H2cAvHN8!onov(_8q!bkD2+6xkcWWvujql9Nl3ZqC zv$M3=8XEU`zRAhjH0%{`9s)%1`n62={Cu7Y{^84hEmDrEDE?O8$#v|FcHjH%m;Ko+ zsmb9^=n&L5e#5!|#1K%aG~Xm)?pN#gJSl^tV6nmO z#%iTi@?0;y>E89De8+WolgoJ$AHVE>U0wZfP^HP(n!55XH5FCi1CQ-SqWr&;zWAo3 z#L`SPcd0@@5JVD_JEa zeM*WKVMg?M85u#Xo?4Q2SM>b+(jy&uI76hH3w0b};*n(cHw0@n%d9P8k=ZJP4cImM z+p#y5(>am~p>ElXSy{po`jqAx42gv;iHWrSU7?3M*Gi99w{KePGA|DXhLUFr6>={w z%*D!dR27m3++vrbVXwZvH$h*FQS0RqY(J>T( zO~EZX8pp>&t&N{+wxbrvDS{r5P)|6CtkROY>X+Vq#cgUc>`f9<51(#5GZT|?_zJTd zwVtgZvS_Wm*029_%3a1Uonie_C*gPHgyl%C-~L$NHs%}pPdb&a%Fow+MSX>Hx245{ z_`Oml{fAe1pOi~AnLodj{rFM4+-`zfF)D^#vnk$;ijlFm=KE@T89rnA(ba#$75b~3 zZ>LzR+%B9C4-ZA*prtm!V*dz1tUtfzDYHa$bRz5OrkWYuX43edfF@Dj$QP=stMz;% zDx74AdS~6(*tiWb05kr!`CI()<^bIt_>ubJ!sn1ESOIUB!KwcI{`QtfRrO0w1iPte zLij9GWd62}(uHoF^@^3ORMYZsgnfe}Q`~PKknfxQkP*oWSkbSh_}u1xD~}Bc_4oG| zMr(_S#fOGh0|95uD9ico?(PioF4jJj??Q?E`4gHF)a{6EzCPBVpr;q!oh(Gy%eDy) zMoxmf88vDvD;2uRL<%Cp!^4#kAp=lNI&kk}bS3aG9ahR|Yd;x7Lh=eMM1OB%Cq6Z5 z>I`Lyh+H$&*VoH!2m1Kk|_tYW@{bLb0Yw{I)wY``V<#t+;Rn+MT1~c#Y5dXOqNC*%3ty6wO6t#U zEjDo6)sOj#(brU0{~OupI!IG!8=S0v3d@f-SdH_%S-UZZgeIq^n!;s(_T-d&tkW1P zoQ+=#N*xTS_v#SV3lE*GbrrFs+NVut=ZF7_Rc~GVI5;ySju8o4>)Nmi&|}uT8NqUO z((0@XcRV~RLxK!u%XOD>PR}-r($@FQ?;Tmxq@~e+e@xojt0PxkCBVYU$<%$kb$-FMsYH~(&aCF33w@28GLax8-VcBo*Wl9MT~7DI@GS)W%uS4JUl#5QOIA2XCb0KVF@_w4Z4Zl z>gV;$X5txdg%(~Qqg^O~n>ye3B(wZ8Y5yV;=m<|iLA`m$yp^efUSeKHi-IqvE>BNs z9PpVRs<5&ndnbt*kdHU2KOg*U7eP-9=D~MvzgiNISm#zrqn+UU$b5yM9xd8O!6$oN?uP4&+G8-ckaKE5?^X80yjEAAfHmz6~Z(T7BT+ms`V+l;jM8f^ASzoI@Kw8(X{g61He? zYMLKULpSnZ5|(dxWi9B0Wymr1O&i_^#HpHcgAgFh}yhECHBbi?Wg;n~=AqlycJPasU zEZN!m#BQIFqD-6X>s4F8-knc7k@JFEcsskXVNn13_i|;II}m3YLkUE_p^K--`(wTd*VZ3!t}h?keN)tx zZ59_b4IpT9{oaf=NPz$dM;am`sn`3SpJD~Nah)eDg!FG{SMi{XhzN#B-agb3Ts%CM zwr^XLL0?Xk6q_I5?YHK=eNhz{rOO+d%3{z_<~8_7b1*q@O%J59*xT(`0+sj1x}LO(U?*jFwT z7i_nOmm-VT-tjRfJQqIK{y+;+XlpN*5$5vSys3pdzrVYqJwH3k63v@_^XAQd+ukhZ zp5sxu^--O_!+8#1)=9%00JjO$;j-SU~^Q&d92 zHZc&2-o0M^@(j0R{+qQmdERv1iE{WXqKgY}DUUTDmo6wd)j`SGRb>ogPKv$Ip?nbi zdwiU~w_0&~nKxxy#nLyCs4L}z*=uZ0|K5$mX>mReMTu6A`I(J z8)Y>bH2I-XXT_1icf3%iVs|+2Fw#oz_e7JClQS5Tm^dp@)-}G$d5*^rFL`=;YU3Y3 z_SZyfZLLy0eu6XQ&stX~mA;EVGu0^uAAB>UFfN*;^vD&XM${R%w)ovookBlCShDjb~Q z$tbO7E8QAM_jgA*GP((j6$v3>VXiae)r@MDs`TvaTcl#XzkbmP`k(#WOp{cd_0%#p zu7g)oBPy+}l@+os6>B29{XZ5UvINx885}3=gI};RzpC@~CQ+=;tlhsB28EAN<=f}X zKcBrorUFGdGCzE5F+7e0#Sa9WUO2xJ!-@(r5}Pj))BnC;vgs4d2=Z{RT)tasMb#BO zfy6~GiXVPDE~A85QkfsZu(4_xwa z0^EEi;Lxv;W1qBWS z=-al;F$N@benvL1vrp272qrLd1#ZPyN-FeuVUc+oJoM*MAtgQUUp|KgI2ww=VZ>EfEpp-iXy79>O+4Lii-@k~MU6p7jkd+?rypQa~r2 zR%hVA#A$IlX3orDVRZjpnyvq}9|g%jni}&DcnF=Y7vBrh(=lO_g%eacxw)Hhv6Gr|+t7=#POJgEo>!Ybr!&)Uvf{LlMhkX$cxsi{A8p2C3OAJut%7)lWH@?BqNyKeA{Z0lrh zm!Qk|FT^h};GlMLo5}OD`L{cVhaxuzkC*$VA?rP|dUqi!n*#)!c`~WP@ebJo2?`q^ zli$Qf_@tmP5dvHq&lQzTy+B7Ci5s={8K=OXppZgaX>+~f6z}=-Cuc;4SF6ERPFqV$ ze>8zbN5I&~D4toXu{lb436HMU`7}DJQ+27kI zfqlQ0#)7c+WZ}=w(g^qWN%)QMjywFRZizUII21YfoxjT}eElk~!^WL~S7`~I|a z4V!*<931p;yDhvNL$kinO2dDDh4`XOtEoa97x*{idqgD3Tl(y~(pvOHr%Kw-?DRl(@K*WRTG1Ww`BJu%LeTff+@0z0(TV9+@J6 z3443Q{LdkKkWjlr-qVxKpHx>JoOD{e`Ky&7cj6m6|mm4ge7dx+a7Z=6zxVgFES%oaMqmH(nz+n;9 z>IIAVsHz&YakS*A2Ws0%Ubm|Y3gumAXXh^OZhAAkDU{8=nA3Du-`cRS{iGY%Oj&** z+upwUjFkl(WDkVehl4Be40UrZCIsjLP%gw=T-Mm6q`utfXP+@5W;B%4mzT zW0ld6#}sZ#e?Ps6re-z%^bB1r<1>ybY|gE#qs6{S60ZJ~?;^0j?O2jDG&A#0R!yGi znFa=nqsDkNyu6zVdV26fpD9>bU%b}{A5P{`aT+8H)dK{8d-E^#4@)%zD$xQK6M5lc zDdS8Oe?|gt1wHm!?*0I^3qV1hdtp=@9I0k=m)9#^1OUR==w(B^*p*Ee$hC((rDpP2 zYaeq{sx>)!0C1zQkZykCAklthKsxP1Fl;y#Z5_yUzlt^LlylyXq*>)-o?k3}(fYC2 z;x>SAJ~PGjW+fRILu6!GC&@h4+%_Tm!>L~YTE#%$zq&h-kFHw(Yc9xr$LMyU8H-T8 z*pYhDQ?veO&S{GZ1&&}R9FugDg7eowQrssZum(b2<&Lur%U_=#6=}0W_$q51R{UwYmqPYaFVzEoh2h9<$iaIto*Z*3I=Ke-c=mc0{?a7WxD!Dywmh4{u=JmM9x-|au9 zCpuH`cI$|PpaE*Zhnf-l1-1bmmz_rM=@shT-JDQk4~0>!CiNS(%tRusx;j_ zD#iHuIZu_H!f5k*uyO6O(9S_Mk7A?l<>~npF1mVf;%a5JZ2SNN6vc|Wxtr}87WDIQ z0GpouEKwfNK=<=CN7k(~1ytP-GR;77Lr2#I<8l=AhkB`@a zAQ$-ZCCtUvmh5_m>o4F6d`Vv^HzPp*()1IMrsG52-ric3Bs^AyM**`B`_T;p*WlKXM;zpe@z`G1j z(UIIEu-GPn`U)h(=$P{x1=#^=8XED`O{ZNMpwtGSvBlAZ9Bbs!@j#aDr^GGTaBlgxw&8`%ab~wH68U1y792E zG63(_&`{q-y;5B*_4Wo9LnG_9cGQ~b3VRyu?(Kb{1PMiu3oZ}Rdbqk8-Gh}&gk5tu zTcO`n@*+0&Ia|(5S65B6!ktQqZS1!TCfZ(|AFb&yun=mb;u+m`ft3h&m#r<#Ka!px zwz|O9K6Md@ty~{tT2htfUpPWSdivR1-x(|@2?*+D_$`|*_h&+!O5jcJBCD!mZm$2% z2`pu{IUO$>4+^@~8e&5kz;vCQkoreMP=4mI+p>S{{=tZui>pLhUOt)x8jX*S1ok_a za&)4unbEK7xtO6Le0jt4>Gk!5NikBYF04FGN3VdsBbyR5esQsQg#mqKDQnxX=x@_dUNNS zsO#!?7F~Ruor*x@QimW?PKh5#Mb?AVZ_~KHDMbSPuv>JMj7(!W4TMceax$DsS!5HL zjYo3?!Clkb@^W8k-{*9rDL2?yf4ASPVS;I(KLDP?M1fNw1{s=?ZX6~*=Gp`x8_gzZ zJs}}noHhFdMjPj`xho{aAG`b|E9c%Pv4&!G?@3s+oAsPmkVh2A$VhU2Y{^JE*LgOY z#bw__khY>7>o+vHjV_W`RVLB+Tuuxn*G=1B6$blU?5?frJ9uyIjvh5TZw=A~;K}ss!>)iJ2 z;a2n!I9=Ot5Ea#by8vZ*nV5vJs@60ujXW^1w4}w(%v_sUc{XH>Px6!m2pqw6Dz8tU zT$tZ9->`Fph;-ClpgZ+tWKhKCmjFzWp`pIM1^9(;aImp&hiLYIs2;aa*%hS3^pz>KY&4)|t)Zr}!gVc+Y6) zzcHgU^Z?JpLtsjhjF>e&&HV`gt?oBFRV^)@=Vh0KiaKhydA>^8VEPhl)$5#_-#Z-< zPX0=7V~>aJPS^xoxD535otF<#YH@H=x-X42#n9;6uM#xzV848+7@6!~&K|P8wsvI( zWc&wg?5LsQ8x&|1WMRm-{*h$-pt)g`N#n!H)8!0)l9HXWvT~%AhlaX(#lgt(@_VzB z2SAkDrLVcL2nZ+xjkWYqFyKRnOgcc;VY~Y%2S1-f89=RxQ)^pZM~5=NY8lI7VaRSB z3BqV*WHfwD3X6DbCOyj>dE3bEVe~>WW@4@hC z^aWn$A@DjYI95o(vx-`1uu}ovJdV?+u24rGz6>7T#gF1nNTKYkzh%uDXJ<_;0dyst z#SQEsMq*OZ3DFhh^&Z$;=f}HnOoSMmJ8ncD7^g0S3UdM)rl7hMkHXprFgf}&n1lLz zV`+#^xEaVq6Hf%2Ha`)b@ME*?(Ex}r-`dhLCUAs>lT&r5%TSu=*#}ZI=R$qhQ_F8F ztNs4qet^MykKbLAFf`r}T3SBd_+u}vt|CpTl-ko9j(7jbzzE(s_=b}ZHMooaf50BH zoU4k8apBLO9)=iY0s@ z8yYxzJ2o6Xtv0(wZ)SdD$qsIpx%Ga=hQ|+Ll7RKn4VVF18EdHGBUCKho_G5C!m;OHm9&+HGO@U)?d04)1ECB$(7C*lj zAkMHaLf&HHJ`6NEe$U@mFKDXmE2?Lw*HY%#e9*BiOq*+2*n$xipd-pSa?7Kyiz({bw zyRgyJO3me?5g}nKN;M%M&rT(IkfH*(B6+2gHI@U+005wXYZnuJHDxHz?1xQWZo;5! z=`#y(`ksfFx6&`4L;v;lHK3t}0v`k*e5QjvJ)!Ur4qy{ep`d~SLISc8pj4Qg^mKRc za71}2dVzJy0-)f(k@(r5PVI$*aEM(q(h4-erV7ES2?v+($dT&W`pCgnTHcq(BYMeC z9M0iBz)LMmUOeHxw@vk56q~hF^qcw?6C1mDrX;a|4?$)I2LDCM!nV`7Z;ZvT931un zxPb*az)}srpn(iw0gPKo6mh=MVF6gDAhV3+#mega+wSXZ;_t!Gk%d8sj9pz>Ss6#0 z>f4C}00|r%86FKaCg;7q#w}icCT{N9Tf##v&aXDk&K6%Oey`)wWL@yS3_~N*zdq9H zfBjnbQj3PWT*e!uUd6NXcO&^zQ`YYrWo(G_-rd|3(9?yun6cJHb zkTZS7w&ry<%cHA{t^L;bnZoOV-_O|gUs&ACktWU&9mwHZN~n5)REFW~9JN4Kkp?&( z@?YlD<}yM+X}9Bb!;Ki=F)4>_vcOo^S>$H;+p-CGXh?J0H(v_;zYhqw2~ z9DZ{WfdZ}U4QSR?>E0V#7MXvg5@7D})X zhJ)hb;_&`#uWoO{Qo<#L6GGUs;A8=JOXcXOu~ zq%|5Kjpu&+gUL=?I+B%2GX}2&2f1AAi~)kLC!B-8-dydMgcN_*))+~NiIva!&*p1~6xw@wuDPH;7rP4n0H0bMH1O44 zSzdnq56rBoF<%<^=KYMEoMn7|{%RuW_?7eJP+)a!t>fqw6FIf)h$a7#hMAe!qM@Oo z1t~OFXB{~|U$Z~pT7;u(W@ z=6v(FS6Ha2bDcl%^DwX{b%np;6%Hb;8H%M-5S>k&W7EP33&o&pF~CLgIWUv$w&1$lkRVBTH7De1-*>k`KI#PVU^4EyEFl5qI+g0 zFQ>iWC3j4u*iGk#?2|?15lBT?#4+Yo|1*i)qI(mSZq#WEsKulabBn%51Onslc6`cg0+cI!v ztKlF^b93J^Ut~;rI=W9v=ZMdb3U^62Vh z8NpS$zDP=`fXk;9n#>3NQ_%&*?$UVmC@5!(&CSh>*ZhEIHof{xNvXeg3Im!46F@II zYaC0GH3>*}fZ0E}v+HDI!*F`B_!}^|Hm4jG3M6>=_^Tkj&C*WfcRF&%g)%_FhUId{ z2~*gnaFDPD^~o*cmBCM~CdanjJybtSpG$P3hlH5(oT0%%MQ?!!AD<7HRkcpG>U2$d zUHy6wb)~kBOL2VOH7t!b*-h}-wMWrI#cw|yT*)E4_sHcgC`A26U<}M#!DLn+KHaUhL zw0g8piPGQ#N>_Kjy6}ypB#euVFWkV8OZEXYlM&)Nii*Bsv;VFdHLy{QH&m9sBC`ox zX4&0co_#+q37YDgOz-%RwSc{fzqJM8)fTYbX#X*4!^%ys(u`d8d6hmfhn3 zIC6)u{(oH^Gb@7SIXO9guEgJOPIMoxj|{yi=of(TB8rPUqUXMB0|H1IXrd5Ez7#?P zn0!u23A$H^0wXVPF1GAKrU;U~a*4WD??)2slu?u^2U}aZKNFyF*FGvXHdH$7c!qPO9ZcP^tdIDC>d;b2z z#|y(P^{a&5Fdr#u$$ls2#VKtA3%Z$kscH+HEvC$fpCy9q0C|8LZ?ip2`dg#!>GBmh zw_|a`H!(3I)QFGvsi|5-+M*qG1jvGd#p;{1b~~f1bzyfu0afHBBQq>+^e*TIIDJ}L z;rZ3oVY~0uK)a*n@k*WhF7n9gIq1C;`-h=l6XZ*O3A?qkCG$dn2)WF1{-nNlY9e(p zp4#34>hV8Y{+D_@XcG<6Y>b`%&wXW+eA9B_sc@&rb`34II2zpC)0q-_m3*3(RvBp7 zpjLL}0x-Sy!}Zk__ny3js;Vdi8(LThG$P;pM{gs6hvw&hI0Kl{rlhnq<{|bIAYIqo zG#8h^{-le21annxn+aOU`k&qB>%QX?P6AUF?5MU70YD|I#dlG;Qir+gYci{{78(C& z?%^*}uNfGmwB|uiZ6$oZ8*}?MB?CjJ0uaCbv0K2bDSedn5)<1B^hFY>FjmAeHlE2U zRZAip!y#MIes#c8F<mp8KF?&I-d!@_63&bhf7taQiSaq4lm zD})^oANDO5whG@+QTeGvW*@KcOdPm?h}iNgjt}67W=xa<{8MmqFK z_}QIY*MwbBblLGR!JzRA91|_AB_IY$OG__6*Jhxk74GaLI<;`UX>8yfI9?&Y z3J78*BO}XcX=%|h8mq1K`rO@}R*VSEHaeXDO@05Uy|z0KT$HM;wNC)Gpe+MHeJ4@p za?20({b|dL-?8rs?*Vu>RcCR^Xn4WTI;vyd`8-n3_DLF^gOG1B76!W3$nW{m0X7lz zmPW_qzd+J=SXt=_2{0KQ9a*zWGZkXH;r*F1rNt^^9cswCtt~w-(7mI*@c&qVo-N}? zIYDqHPTAOLh%43kgEkjC8=C?0UQ5t+a-Z?%4@Ip`XSV@ebZV;f)rn4yuL~1DiVok)NM~86fr_0Y!lSlb-Q^f4mp(|KkK3kT7_sfS*Dg5YmxO z&0iyc!jXBoE8cRt{sfigvwow81-JLv!o<@Pp~ z10WtNL=Lq&yhK&m~t0A~Sg@KTs> zJSu|Y`pF|zSa!UomK*c&*FNI;1I|}vGZ(w-g4bWk5>HN%AKBgVUi_>Zb3+IZ=iPH)~sBO)TYL^n3xIT%QTTmR#IeY}t6?@w(T zd{Y3~Mm^-PmxoK!|=vCiP5@UE#@_R21YxacP)d10x(FG0Yg+ML+*94!xny_%f%I^ey~B!#H90ufrVbF53d(< z?{|?7$vR9!gT>6_e9ND#iW3jd@Za^;C%T}V;%%@uNxJ(y9-Oi` z-4C|5z5}N#28MV8te^`?YmaUSm|w_$*CnO?A5~ugRaMk=dl3miLJ{dMDUt4y?k?$W zP#S6J?(Rl9q*J=PySux2+y8yv|Hd1`;c&>+bM8L-ti9G;bIwK0qaQ0HCYDL;HVfKA zX71PEGMb(M{t4u9b&~lAiTGzI@!`WJ@^e2fLjC30)>bTnb~6<#al4Y*onAm?x~$H1TL-}N7M2u{w++?o~>T1NEUDJdxngMe_kADLK# zogHNhvyTV~DV6nd4aj%ZPo3f5;1EqrOtQAN$mV$kmWUy3H`$-lfh2_KPxY0=Zih;l zR+sH+Tc!iVv$9f;o0*xmT|o{sgjSy}MquPwtriQkYppimve@qK!j-NrL(-uk21Z)( z46Fn%Val}EgXMYKnom%F6syRQ;TaiXS4+&-;FAi{<>Wlt zcOP0`($LcxjkUNTd_cis57+_n!xv6Q1zA~rW8Nm16A?>*HRH}TTlWLnnvYKhXUyOa zD|sz%^5Ctmk}4I|zT(wnp47n|{YwVFw;Y6TdoWRiTPzdMag-Hf%0}Ki2L&+ze&Mi#zWz2*4?TJhpmn_gKi=Yx*uXou_1O?gbhMt3VdD=r?w8(y~)lvk-6l%@``jR)? zO$=pBqj+=RKPC)QnI!0%OVHCEMKN9T5)zg-=i~%5>^Or3mcgLQ6SavFkwz9$Qde&U zD$Aa5N;B2liG22?gqOLhSB2QzAn)r8FK&N-8)^JDH@B;MfB#!}#mo6QLT@r_87Bk+ z+%{rUf!hZ2H2`AyU7uYKek!xg6srwk;JRj1^Y$~kT+GwhospwY`m`OSi3C73 z+Q}W^>6zM2A(MuhkCM(}iQov#Sjdb_C&tHdOzgw&x)VI6i|4EZjql=^0V(}_qeD84 zi>S1uL`1U>v^OLm5Rd}ii)pXa@d53_-_gvDVETspEPNW8!QW264uoU(_AEQg*VkEC z6*G+ooO*Ms>s_RC-f$@LD$k%{9`hb;gY4|7q>gPRr}l#TJE0^d1oS>mg5%<}!s6nN zvm;4*c;F!AKuYBu-l*rRfc7qIf1fJO1@qFTWAU*Tq%(j`@qutzFE5kRIqXw!E~TXWcg9#I-%IN5BmwJ>IPg zGAbh@UN7(gI(bm+>W=8^>6u*fWA!ClQ_f_I%)tUqy~}-x^W_eN_`I2s+m>AGIh^-n z%bwVLaj`lFaO0sgs4V<~$zrjoApISbz6qGvNp>#3<`!LS~vT0fK@gG)0Nal{fFCRU&@APgGPi=#^(L(7;uapP__^w zZT^rOzw&AXM~qfs9LmZXD2)a#LDP9L|6GwWOv#Ei7kM*VG(C%dRv; z$Lf8Y0dmNztjfH+ICu!5O!{`S{)coeEn4*&#Z|yZm8TN~ZQ~}j=AW^IE!GnovdZ|K zLUcQ)R^ZzT-3=i7gH`wh0wMFdA-?eAT!LtpKEkJ6OX2!!px7S!+cBfRwxp;nVB<1F+vEzJ>OH8yfv9gLBD0JoLf0jQ! z#y`2w3JV|vNrE#-5)l4}=Ccm6x;=+vEp_$iqJrHyW92JY$QRvqr)5B!s&%8ghl79n zdfsF6exnXJ7+^4i7`}YOU2uCF?G3bG7wAQo2na#D2Q#tS_gTpPZ|S!ICG?C!*%G*3 z(6(46V+_ntk582CsR2>v36ho$s|>LQ=*Fyrm6CqA0gBZo(cY+8z@qu++LS@aYw8dg z92hvRQ3GgNKNz2RpH?FQZwl#xf+9Vi9$SD3=(i1w6_(4XR_?FNea^f^t$$}1 z6l|RD?V0`rOb+Z?Yhz4vb90-uR-ma?33>W)VAk(lPCBPl*z>gt<{)JBFLE0jzp)Z{kcGr<^MFJxVVRnnrV%0oY0MI{$t;$r^+0sYFF(#+4NTS~1HP9dzJ*0e zV)+KVz#{PYtqiX`uEV&B^Nt#aEz_7$l6Khp4kOi!G6O`#NhyhucF7coh~*5BWj=LC z7$rLYEQlc&j2X?~&uwVsEj&OrZqjr=aW-~axob$R>R~=_JY!fZT?h>R3!Z&x0u z;2b{O17U&gR}bQcP&kofkx*=+JI1@Gd}-alfPn8B=*cmcJs6eFIM^*VxQ2uzBoyr| zJ0_u()8`ErH@9ce+CKn)yw0kNQ;}O8u|Q>3oPK>>Pia1XO>dw5An`GYK*PX5qv{o; zb7<(vyZI>qW20Njm0hPT&%ks>Rb>3j*rvOm6WEWQt!;n*>{9)j-?2>EPnJx ztZ^xLnwst)y@)9g0#6dK0}od`3Vw9Iow?D{Lga;l5Yy6jBrx_Uowu@(**)DGPJbwA zY&7Sc$)$=p3YR`ZHCet8xM1*a!291b$(mroB5^S$4v z<%sc+3EyMY=USbv>N=xQaI_q+c*ssaKlx)XI8#V^r8@vx#4lqiRVgXWPYgER?;(U| zXK!-y@_@sQ>d#34rx({;Bl`G@l-n(|d3oD5HDic-r0+MZ5R;Jj{&s0@-nnSb`zCi* zf$o0(A#Q!-T=D&ThazWZ=Xk`d;)@*xB%sI~+*r%WAwA&W;AkfAC!wVc1@v`#b`l!p zK7ao*l4dkz85!-}siOE2#f2908EJF^0_}E_D9Z&FYFf>PU+Bz+rlv$G(HBj=1g@I( zQC2KAInVK%u+^WLFCXqR{}!u# zelI5015>H8F<&k55%inLa~{Ce27y2{RigSa7-Iw{9E))+f3c@RzsF&VOyZF@tB(Y0 zsT--V&@2Rnp#P;T8M&gEP}Wsu|Lpwyx$Wt=JG97WSy6SCDy{3L)>;Aw!mQW+`*qO~ z8o8tq?d;6d)Y+vWu-+3C5fNydY0c+^5CTsz16rT1P74*yrdjp4*{UYJy^W2BNW6GZ zVKTHjo&9pw&?x3`na`C_`7ZdA=G&&!)+uwCu7$3y9P@)?%ri9pGpj{_?4~!t=)R5z z9A39KiJPS4pF-fj0q>&a@}OIfX?dHQhKM0A1-v!dD)<^*?<%b#BXMHu_E_~gWh)5A z{AOoU%@9A*M69uT$d8{1^Zz0F{8`xzWVrQ*C-Mq1IC;6LtP;{Zf8A$^LNMt$tlK=H z^aQ!;bp?F%WJkr7Cub7q(GcL?ViHbAVg%=}J$y2StgyvLMd@rU)zVdLKG1w^2^%d^ zAuHissO;|QDpdQHRK$?j1}GY+uf@d0slvinRC>~+MMPu@ayHRL9>&LqlYvlj4Mq-+ zLK=4}jlSaw>G_jE(fN2T6yU;uA7wEEW4+qP%bhkawueTmh$|_s3>8O;5&&4!4XcY_i)!@JjLV z^g9678R~CwSoU9d&TZ{dNYkQhYTlI%fo4-kP!LK1K0CH`W?v`phKW5oJY-6cBu9gI z_PySoDw+|WDOr%6YB8$U2F;sgb$5I5{Iq1ACAIZ%UTJq2NS)h*a5%rWA5U)kjfvfz z$LPL)nHLi)D^I( zZ-N4;)df1m-agLQd_mw(l@zGN1}bX_;w-IsX->EC@2cGrIxg77OWtJ z;@F7woCrn!?^kNk-))lqp0`hzA}Mg$Y0Yz5 z*ArCSca>Jn&q(fw0@*Y?5)KO$MyT@RXeRXt3M(NHA*`YP3MZgW*xSRPsh_yJzjrGr zD}x&rDy>MUSdk=;p1R)LL@T~MPh`|w(b-Dmm`Y@30{Qam9wc93VLx$*Cztd2A79B< zun#NFlM^rlEtarz9l$aDv4Wc$qX{r0K5Q%YM->z8#8U6E%uZ;`$er-a*3kM;kRse<~78lZ(o|5bA5- z0crN`-Ow*@Xy=$n?+&Lyybka|m=tpr#DTg8W##M4dg`O=v$JF2wD1pxEgMHq@!C_K zOiZq<^XAi!pL>zgJt;;QjfdTz+&N6@ zI6MNbNlu7_5h@_Ziyv@a@6nsg4^p4b7%1@9s(~oq4mEsHkcN{gZmF@bAnq zi|s)yc^p>ZAA)fpz$xQ~w*cokNr>m_D&L?~-q_fJc>_ypx`qUcrJ*62`SCYN$xDBY z?JF5?rJ`TxuT^os3a81W-giWBYYGUEm?O6|Jqpmqg(WbXBaftV{L3!tz7tL1a-Z-0 zip|f*7~%LT)~7!GO;1x(bK}OoR&~+7Jrswv;+B(yWP?$Oz1jZ2K}zKm&}t^fi9BfT z*j;Z$mmHmOMt%&ZgY{a_iWWL)_&Qrq5L&o+tD>l=XV<^e6^v2rPMS^($+#v#;Bovs zrMKSMH!}Cpdn)cTk`8SQ@Cap~qUNowW^Ch_T3uBl810vnl{KJIT^+OB=q?cdb3S(v z7`{?ct>eXd{7S`a-?R#Frnhxz_OWB*RVKmNUA@0=CJ`I&VWMNrhz)9TV(nIzjL#0a z`7fqht6##pxITXTNIa6x`yw3D_#qf

&1cMQ9qDnmM7NQl!(xcc~}7z@Y$RFIyyh z=G~XlZ#p{P+3$b3Wm#!zx?RkaU0DK3R6EdqgxpsQ5uFUjFb$Io|2aKL0;u1cdD&THm~m1(DM8DUbv=v zm#clU^V>6h#b-$|F&29}yY{zl&n_-vg9GQ(yp>9;E)>DS(Wxxe{m2e{`}qU<7FIg1 zO2x-cW@cs|afy|S*AuVd$`oho=-*$+=MK9%Rod>#W~C)3!|jtU<*XJr5?2{&X?X}2v|*%w18eP?h*-D-#ax&ZN>-SM*_ z+x){)qy9trORKf^SC3<+jqcE~+FF7fiI&pIHSnU@Oy*}0uHexg6)F)aFP^-56_(%!nrCizE>qOTw7tir=EeqcR=m2cs9IXakb+BUa-(FthZjJqU{dza@A~zVS$xN&$v>FKmmr1zy1gV{wGr^#}w9t0v3;J!ELoUt7^vtxWj#*b9=E@ zIRKm?7F#>Je*KGeS_)~qPHro9j-SEZm4*XiE>-@>M>CGL$v07p@Nb)e`K+%^qvJ^? z*Hd;`8O0+oXNfCa1-^4~wW*vNqIl7$sO5^fprKokw$vX>{egsp)q`BZ){4#LI;0Dr zH5|+7zvn|t+|I{uRR&-u!xXKYp1*gd$AO`+Qg&T{ote_y12s#C{DyVg%qq1l}Us{^bLuCp)y*o?- zFE1su`&QR>$2$BBotmU?IER*=*$T7<*P?=k z20vM~IhS#D+!~8OMGz|u6AAB>GA>R*&%1(9o^+;k$z&2-=f34*n+|w!2@w#M8YVwF zY>d&vB}XUyoKLa*CKRroC{K?Mfmm5xXyxUlF;M6WR)ov|(@`_&bRJXjYLC=z63V^u zvC}nyt~n$Mxn&RE0JwLgy z@5(D*w@gjg^1rD)6P4mNd@jNXzcwu%QUZ$N_ZvCdyKqb!z#ZAkj!KlO8ycbm7*N*H zQDN9W;=7Ol`Gz6q*A0k9Th~Vm>WW%gUb1P?QOGzIIBlUgGetF=bWp&h|70b;7Tl^- zl3OzjA~0R?a?TR|d7oSMZ{^ER+q7WOH^%0)9a3eLl;*mZ5#rSyXg8nsF@t+e9vV`37~ z2li8CU-f|WhIR2Br*6KWDfB(dG%*ZIO-PxJ$8wZyHnz1p)r1QM}!E|9#Vj|V{ zR`YF>*;En==GU?hSoL>k_}m=A?tWlv1g-ME7Ibs?kw|3wcpEq`;E#;mP(MW5zHVr5 zuha*`xp6%`6q6YveZfSjHi=O-^W$Sb%z(RO^aRu1=B9$Z=21@|T2F|%SqoEaOp{dv zu#ID3Vv0y-9-u9&IHN|RlMxUQK*VpY60kY{p+G^QN7D1TcF~R3b~~mE7=fqhpH=?; z9r)GC>UalagVdv2)=`RP`*S}bp1{~d99XJtQEMe0e)+y?{m){CgIf9Z$N1Rl@H*j8 zY|6Eb4a?rrof@mqeSB2Z+pxyw_4W7goICGVNhA4@75a2}tfx!cZ zk1w@f(J(MX00sDsqYnYQ&FJ@Q3oSoxhr@ug!Ne;15nKdB_3ZcfEpY;DQj(HBz%)mF zl^20T_-#D!>%ktGl+at(f<_6y>pEoUK?Z$~S0~GOMH@#$oadnA)ji&1${v`o zQ?<)_mCRBy1CM}UxR;tM@q}Ir_)l0Xs|a~dsS2vDJ&@pFk8rdT)h!VS#MHv#72lHc zVSB~R`fLS>5yUeFWDOhn&pqKU&#;i*^)8+SW761|m_I+Aoy*rdG3c)4gbzU6s3^dh zGa5{Y1tSW6q=kk*-CwQEegVcdgB4gN(=-@!jK)zVK*wf=kJG4tQE~`gVF}2HrB9LC zgF286QXH)_G(z0l@n5soTYZH?A;$(i&%yPQ!GoHT|A_0Ck-?uU6FiI0XWrJp7c~up9-=ORG zVC+ZTfsUX5mLAb~=UPtG|H>5(0z4ut=KfKU^)`1(<9C_?y>d31VkBv_B|j%+e{GlT zh*F$@eZE79PV1>$UnFEYip<>_0?Eo|HK$XrS(k#-PtcEn11`27J#J6S$V+YBK|KF@ zd!RMiA4sFY4!`@H^nK$O&Ww{O+jkw~83j_tixVT7d*E?Z^H8W{&fz!I7pIWNwv{o) z{>j9*A8b@!z10vHeEj3{z(BadF((@E!m*0hc1sMbd139RGDIt(;z=@1u zwGMlpe0~nND^{zr9lN!7y!{~$Tuju${}xH&CJKp;BmB*HW7n_RW72%V!fPawj9tFF zdT@~a$9AVwMx$wPVi+Jw9Kje5Eq~jHiiT=xYO=s_Zz|kz*5quvb$!CC>MiUYM!B%_ z`q3{pI0Bj7xnl`mUtd2Hm}-4|2+3Hwx(aX60~sAD`ik3nCw&$0me_`Z zSj@f8t#@_S0ltucUwq~2>MEyS5l?%eayXG+8w6TL8za0E;wboB8qmC0z&qT6!{s^! z;}+2jEmvM)WC|@dx1@yfaa+n%f&%$?v0g!lJUv6VC(M!qNF-=8zcL>3n7(OszKHwY zV7e>o5{SdfAWNe6FM>MXoyWpvc)_)I%oOT{afe8A-_S4|1#BGm26(;b-a$t1649ko_dfxP zF>y_Q3f;ZK!>Ebj&dQLaBsyG4F5A4|Lx5Pyy#rN=I2HF3ga0__;EWj@YoH8Xz4CY= z3tFf>S>2)f)-Ltc9~tk9y{+xemoIPLxV-)Fp+QVY#~$%%wY4bzjI|ywJo;Ezlog-`a~4eAa)-s`bm#>2=bW=@W&Kb4 zf~3&USaFBzi}1CzcZM$?@CBk9b8-aos*LK-Kz7Mdp=pg@W#^EV2o1@|&82+2wrpf< zuwKCzkQwn6GB`kwff{>)>a0#+w`GyJ^z!m*`TpZfLVj?j)kFL2;f7$HY6`r6(RKC* z$a}%&8k)v^c-%>yGrL`YSWZfJ0`q$*rP1MN^x{mdoyZd?wZB@g#MQVPCv|Lt_oL6= zCW$HGbSOdA2$@N##b{tG74w z8?_2-s}N44EEJW^_fws$v&DLR7^lj)zJXtd=CZOGg&;25nC>mmfzx^|O%Is*_1vE4 z=9Ltgx-+S&s|N$cC$lYfcqN zB%71oB`ed=+}XCjM7zrR6vF}~Ou#l?AylTj?m6USr=g?o<*X|M$6fJ#;GPq7%qY3E z_H`^?XKOpz349qRAwBg`VL^?N%F|-7e?NxY*XOJSS3HrUK=r1-%a!-%rKl9mqhl}q zfY&MmJ^(wO9#C*L*7ej}d^nsE5eW3~ANRJl086yoRACYhBVLUiEMGGWWObYZ*B+RG zc90gP4>_&w(GzA6^gNJBe5BsUSzAkoLF8(*Z8h$|%X@x4!S&`DQ^QYfWe7N%=xh+9TYO>DO@zJs1rpuK%Mt}4FENHRkv zefba$iWn5`g88qj`jwQG-)|@BE0T}7^T|CsAs~VYB6B1dI{S(uiNj1lyLP0}>phfA za#j9zd4EdRQ1Etg^6+y^n)@B~YI*?z-*KmsA{jub-?HOEcgP9rtlCVgnM%apAL!99 zg2KZvFa!=l2+Y|9n*=w@QL*H>(#Yfy;NP{bt_F)L2ket(;ep2&gYFuUnz}TYdb0Xg zkdYzC8q5NzKU{%^j;{*aUa2H&xNRh16Tk}o9Q={iU1;2d*kI4t(2yu8qPz@&wydaV zA=n!Zt)6wY@`8dGWDY(mK*^0}&=S7QvZvE051JeH41TwRi65?Oet}(58a=wETDeR? zhF3$HsSTJ+pVAn2B&DPTTMwq0aq|OX;#xKWw75KYLhW4+THM|UYrtZ7KAIkKS$^1c zBLw-S85oH1kxV>4ANV>b-`v}a(PBV}`6Ix>!TkVo57%EVZ)<96EejA<^>HW z>TWIZ%T#600GNy-70dShs1s33PDm&hwu5iiS?gO~PTP3)^6}{elMw`%PW$H@n8k0v zDZ*Atyxi(hhV|$#VBdINegOj^#5?e)bFQ%t->#qM6A?+aN4IrwV4=q4B_pfeH@?mX z7R2^6_g>HsgHVvUro`M`xrZKi*T%*N+(pC~_XkTt>P2lKp+qw1%F1!v8zUe8GU}U4 zJC!zS^OI$#Xlb=0*Xa^<3Chm9$2;D;mJ~D4F0xr!XsqD^FMq%%8CTbo$ozbjNJ3Nc zQ^Z`L=lj;)(II>Cai!YaAB_G0Is1Bf1n^G870%Dih3TDE0i;;DxbpIH)E0WSPLdCR z9%O}xg!EO(UA;zd&)I2kXD)bbO^oEQ}3kPd2Qc_a~dYsH)Y%ew5V6Qa0 ztT@~pb5G+<;Nxp)E@Rl-95-XLkavd)@!FDC+uHfUzoA!s9A6x4oS`7r6L1EWJo`dQ z0DxdcfrsA=EJ|m!cIUBtd+P#<4A~o*yZg_|{EjuRrkNP>J|CDvXBrkH>|F(;CA#CB*51< zQME@=`9~wy8FmZMQ;F^G?+4lCz1#GLctYv)K(f1t6$0nF7sJ1pjteG&c`{Q_5U@@E z4t8`9icG zh#PnYglunHOG0$;IsU8+4q0m9BY)<=Af??NzH$mo!=o({k)e)!{=~C>1`3X?KP2E*)BI|G zMPh8eR>vzoD=*J)^K65H8q69>uDCa`wx&x1jt9Nn19V>uBBuP2vHDMBeM08v8(0Wy ztpnkC2LbkA4g=>Om$et!+lw?$t>V|z)gB9cI6kRpLqYhyee(l~#=$YK2kD0^kIS_NZIW~n_d@joa4IbNej5j;r&n|EaCe6hy=trREG{Yep;k8@-2Z{9RYH8(Y>nUmrL1(LLj0oRq?rw4|`4JnRtO z#dm!i%F1iE+gk)67uNoMagris-`$nENV&)q*PxzL8ujh6_jt{z=y9BmrOA&#*ihKJ zn$AhbTW-7K0IjVZcRD%>Bde&0djD8oc_k7PN-nbqx;GmfMS{JnVCf^sJRnkV;?_LI(MKoEYw;P1OgoR4QY(i zLJjS`MEqxuH%#zv8`_N_kd_vnet=-#!$ZogwSOgou!WzJBFso*VQJdvh;LaA-ur>k(TwBNlY&=q7Ix?=ho}Su#!WhZ zvtGGhxHvmgk&zxg2>O;HBWLGwUO_c#02`RE+zd91MkY7ip$GP0MwZ0uKF2z9!mO;U zkg;r$zPg5CMNA&o1g7Wp%dcCs>cm&gO&>q%#Dar+8Q?_A-8HJET{Ugq4GCt3hJS6v znoBHE-dqaJ)50olpHx=bB!LV>sy7D-QN08P67cI+({~V%6T#4#(SHkTxq@%`8q)iC zhj_8E;dpWB)!b@;f6XvHK{pj28(W*3uU&Ye!L-!k)+15_BbS|(b%Ge~BxAC>UkgCC zn6*5t(-gdGznw=)4-ejIu&T_jAeA5^HtP8nZUN-HVFd-BvfbXfg|jC*uyM*9)Y$Ev zt6XCH>7-Xyp0iXksaELK3scZhkRH;5(MpDgi}eQzPEH995A*&r!FZfCSkY@hk!X~5 z1w_s(z{UZPd@iUtK?imA+jPCMyZe9^3o9%111G@#2bsMC0#@wnRx1xSe?JYu;a(Oiat)V#pUi^nJjX6nM*Sf^3{}b^#@hxC&Np zkb7opr&f@b+(?9d+I11=31a~Ap+-qX73AXwdjRvg_|ts3ZnKrB=&t!O7r0&)=%3vR zmw$eBBrN=TPeWxjtqAzx2E+sez-u(v;lgi+_?E6%dkhFaV>(MHb(Wl zMs4>+#4rOb3DukYd#eNz04v zU7KR(Zs3e2s@dvZg=}qQd$lh+6cBJ_{bRd35$Ktw-XLjS_~|^y<-4md;Ol|<_edkg z_;?x5eEX>R7H0aIj55TT1g2Gnr;ngi!VCvfA!%0ynoo0i^{hh5+a7#;= zV5|F+A~;-jm|0nCBNIp{zNteK^3cJTaWPyB2pVgxm8heZpuOs|N6vD#8+6_S*-pSn z0=?z|FwG#q#@<&4fEg(*4FEW3RAcebK?Fbz)t-9s$* zhv{?LPoFlClz*b3p^bTZ=H3I&erwt9-&SBJ#r~-}_&gVIALR(p^!+?H@xV%o2Wy+_2KrI{1=XL9km@VK!`*Txtya#OE zfRII#-Hnap@K|MSZSBpif%rw2o&UY|fS+CAw&St#F05tJr zew-{nr9(lChHN5b#5uI4cxs#Ev(Y>j%Yg+I&^4eSfd(%_OUtwK)s;Qh0U0P7zg(ZG z$+xlW3^HCG=}g932-q`fYqw%(e3k5=g9S}CdBEvAjt4!R3YPPvgoJ?YogG$N4tAoX zckgh-=RS~mOUS)~cxG=H%mFaR1oWq$l!1Kj!@G*K?;K_mc}NZX{6u97q3u?-bad9^ zoYlrdNkqUk?bpVue1LqD2YXNoM+hAQoisBzoVtaxU|@V{$WyqSqb$t!)h2CAH@6z!C@CpLe?1L&*O3bn z(e81stS7XRfGV5NM z>N`QY?-QP;AaP#$fP%|*nOJ=GSGJt%-VYBX&9P|juiZ9rHG7hHoX;<9!FyQL{G?M2 zgE%Te&S>252>>xoAhlPW2-}-WhXuFM_i`p;gN{W}+ELGZeW4yy4-bqe`cTo)h3Z1j zK*Tl}N#%U;)qcF$pOSby+vo{x8rIKwK4~p;(*zS4jXURP(lLG@D-543(*7Fq-7&q$X|;`i(gmq*K&@d? z1~}hI0zFiHHJDrZ6J+>?PJ3XFL;zMS%b$8JaMY~@1%;P*a-&Gw!67WqJvlkEougoW z;X4PJ-WBFu1V~Ts|D~sgs4PR^@ySDU!myd;x6ikz?Nj$cLqa+c5D}B%xB1_d_F|^h zaB_0?f#{(Dvw8fxEky+;#pSK%Vl%$Uqu}*0Qj@j8wN=C#bW@{Bxl>}nTL!nS9iDfP z^{bDNb#4v3e#sy?ZS9c?;XW2@-L3fe6Y{~&2YgMAA#*(T)mprtKE?F>W@2D?4`#&* zB6b*7p79nTdw6Jr#*1TIbQ|7B?N?q_e6emdYA9(}K&SgD+i>6&B0ca~(ed;1GuhkS z?FBP#Yrx~%ym)?skNc2}8Bz&2-OM5z2JlY(|mQ!De&yX*r>-!kmRteYF{ ztQxn6FdO~@uNOG5x6MEjQVslyVt!z)64(%*&R4e{l&W1k05Nn8CO8*Uz7zusg?9{K zI#9_|sYsLJ`UcvUD^U;>$iVE1UbOBJz<~xFxUf^Ok5LClOF+c6!Sx^_BlC53?LFTb zP}TkU`}a-@s4Hy@;i*F|fLmWqyKEm%OA8>~dDZF?27!93}9aS+8 zAdcD5-Apt(mRY6zB!yB5@9po;@{=V2&XIXbpRi3(Q4+C}Qv=K?ein54FGb$HYXnIVL~T|J<0LLwbk!d(X_M#Jj_4oq?lF zn9+M$M#jdJZU%6FYXn7*p8>DF#4<3ZH@}?Ot5HLJX)!S3vCN~F`OlYq5o+z|CTF~u zt4ddhuSVyF5(jkR+a5|Nb1*loxG7z`EcS)|!o6m+L>=dft8> z)P$E8CoV1SC1VugU~JlqK)L<&!TT9CYq1G`_uc>dYiH&ssK#?oTT*|#k@_zeU}k2< z48F1@BH~Lo*!HAnHs$se@6%W5pvIpRPJn;n)m*D(E@JJ(Vy<>@~u=|Nlg)EG&83j z>YJSdy1KriB6IgHiHT8Jx>2zsB%F4BWo2m;I&hAx_cS%_j59UAG()4hC;GXe!_+Om zD=E)#gA1_}G%Y`eh`aGceEfb6)$Pde1ohs-%b+y^lrCmmO`_uBeQ1ARMA!XE$_fg6 zxbQX2%v)XC*ZslQTf?BUL7$HmuH9K`JWyI&6OoqA6qOm-l<4v7dJmlr5A&#dMl*Nf z*`W>pW-@4s#e820B1|Pz?6AIOYH-!RO5yP0Ly?Y&5l@h1+8Pc5i3FD&H41Lue}l&_V+9LV=qfNk{N z0I^g!Pei2MS zMskGyW@zY}`0E!!j~l6}sWF*=z>K@wxz9xtFttKJ1alj9Otuu2-2TMHs|>H_ul(mA zIMsf|$!RO7zVJ#+Ol+Gi>Sek4?Hrhk%LKsf4fgWxv9Z8+`1qv2=w58529jK799Y+J=0Y*3&Lxz<*AyOz7n%=iKa)5|#ER_ls@OF))~yMSn}Z z!LH)8#br((>3X@c{wR@9QOMf`tswM)1{X?VEn++ zbV=}|&7BR$F`h92PgAX|(v*|5ZCfh}<|pX)g%7X=$A5RlT^kA4cYhzVLhb%^WzFS= zhk_aq6uU(8@x^L~h4p)jyXYMxegj+*LEoeXVs`c$h=t0uF-(S&w#ajei_=2=^ZC6G zeTUPyS3H%wj}~qa>Ki zE<*~s{%oxI6)&%{+J#7R{_Y%lKLtnHFLc{RIoE9Tcu1S^K7Bw26LpFSGTH7_&@Fm_ zLx;l0WATfIyI>Snv4iKXRz}nS}kI#I> zdwwJP*Ec@izc(0zJqaijN?KgmQv>5`^-m)uNO!zp=MWQa2$T}KneQ&`km1a4QED=TK;1DO<^N7v3S@bG;r$s(B_q3p0u(`}l@G+fXBBgTIUt|<$a4!Cl)&Ng#uMKwwzA(a>dP%2K)ZF+KY zi1zbmJundP+%Qwi-Mus~dcuInO2f%{2n~#FX6PRo8G8)@{7MUY=4w|FpB|tcows|- z{kJh?4NxtE&Ut?I@X1`_5S}!Pn|Mza(d-OdcKIrZf$LHO;!FmJd1mH z$`V2p@_UO#vv$aJF)(tdozC+F)DH_W_m_LxfA^r#6A$*Vw&iJML`0y)q_~TW%oiF% zw$suPftY&2@=}I{Q1&O)+yey65t`Lt?Ehb#$V9uPjej*X95VOj%x0F+%r?59V9gFFfwW z#rRCUEx*LM0|Orn0Cr*s7~MBv+xY)UG~4`-mzX2fYfII!F)@u5`f7jZ`*h}rMK_Yb z6H1bQ0UpNR04Oehwk0985J4o63kV;7t6t8pj}EAS!0Z7q>RQf3fM{c*vOY8O&ekg3 zY`Ka3Jt&2)7M)X4aDB70Yt=wORtu_=HozaIzP}+*m7dPeTHATchYHcDZ1xU&sfbfa zuyDRr8zw3Y?wb<+)6n>h;+yv9eCN`~rb|^zBYrKdn#{yRrFSm(<>g<_fG0;anBQS4 zWNs`shG;7wFtM}9woM0Ml6O!{xbr+O!W0e5lcKg`QgAA#7`#m zbwvlb_7V~YDr|Ob*|cDA4&YK!QBjS9(edN7v?U=Row^6jJiitY2e29b-HgHors8) z?^k~BDQom=6sW)x15?2~S90VfuPj>Pg^ye=9Vn&cPEbU*!nsR=KfMAwlAV6~5a7Q? zU?L%TfQNhmqdl;IL;Rn?5jt01hr?T$#jR8>XN^+F6Rid?;b3GW_2B~N|Il<6Kv{3! z*M9^B3`8VUx{*#nT0uZTL8M!{yBjYGN{VzNEnU(f-QC^ILwCNL-#h<1m&%-nMV5(=cjrcA`uqD+dDVReOlgUnqT&chz?O90wyvY05Y3-z zGv*f;<4e3dZD?$5Wt8?5B(y$1!aVf#mDWs`vda`}kk`_RR~C=Ub_UN9z4_QZYqJ^;UY0mz4^uJg!Uhudlo;6`A7sPbFuDOO7Rv9N;Y4yEc?Xs`Y&UIl(;$ zw;;vT)EQsKY&%)}xLC;TObLGQl%8u*=hM^EADATkACpArg1t94)0-6(1nwCIrr(?& zPmb$v{y0RW%}mwAy}@$gCwYgX7AO_$qv zlsrn6mcEw#VbYHUjg405#;4w6fth)PJoN6Gu!Doc4jWs?$4h=LpCzEylZ|51)jlXI z@4^PXV|vo>-)Rp#5g}vErY1Ti>`x#3&dh9w>GF!ZwZm}=(Yc|CNfru%==>?92ZkaL z9F47mgRxfgjceBCDse*BE41tfgq((kE59gV3gsIs;35J1fY)WH5f>Lkk~laWv4U=B zRZRrykd`bf34}!JE7!avmtzub`lzxp^?smG4uRaYM^d_Wa?fJ!3vinlaB%iFBO@dA zGp)7thLR!a0_>e(EkOwv!QpV&PyFKT@#Nz2m@*lF(zx1VulOO_r~B@GRcgDX_Ana$ z^Al+=lM&{uj@Gx5?;}~~hJ3IR*tUmXIxvg24Gziyhq&xNvk7~yy`vc_^hCG*!+&4A zFyFj%gxcvf)K0z;ELf&WHTo%Sa(!0WgtKqd(ka;c%~7K<}@f!d0Jr2J%>VU7YEk!q!O_{t zm=OH;*7*^2E6jf`8A{b9-|?hwf*zDq;O^nUn$E&f2dbv^Ikg-a6Y{@th@7u6oqYPu znR^UqR|l}M9N+6AUG?1_GV&@m0aox`jf>}tPgXmKq#vK*vhso|?x4zr9SR^UEO^Q^h;(TKjW4PVgoQd+N zWoGvPIrs;MJ|JL5MP1#%quEGkN4E68|0p1<=>Y==M+f6U6t;*M2=XVZoZ`ctAN*@d z{`HIf7pyE!kW#ISN1#tM^X)zzJ@G@14R!rxR20N>XX^Mj|)f91YV$wPG zRp^>Oy#TVLu%e=*RWU5@y)u(V^iAVe*+U#V34fW%DEN-Gk1UjxJyf-35n9^=WmY&m z4<9=2Ef$pLnB}RFkv@^YZTYY)@Tk{!bNT_jH5Sz=DyyO7pkU#-RO#_0p zUJtL#irYU&dMKB4O7rvbdb{Z-IPK2!bg}8s)HE1FXfwt9>PuxR5R?3)IcNbfn+77W9;!b3=Z3YVbB5Wtf0G` zuI6(_MY}liP15v{I0xG6Q)r9ld6K&Kv^g11v;FSyDqUy^qL-AAz>o%fhyN@4TP-X9 zLN6yLO&M%#vP^y5IiG2MSr^nRwEv}9*%T7=x|b~TSoL%2Z|gPeD30XDw&}pJfWasi05}Q?K_3Y93vIt_V37FNo+~*sN;)URVgDo+RrA8 zVHm(ud3RP_egeKR~M|TT|O{Aw?()COVh!%a^0yW0zVABxjF6|AgclvzM*jz>vNsQ*R`W z65Ms+q5e3_LhsP_v%Kfa`)WD8$ZU7AB=UNnZ0x=Vb6(T`(6M$01l^}Y$_>2MCq8PstPf2myOYtR+*Xf*|LgoD3B<` z6wElW%P8I+%F_G-kIWvVg+&D~9Yai7CR}lf@Nj`L7LKnj$L4Ex zQ^mya`s=HsH53Q`VQoKhK%kmwDEJ6yPbPqCB7EXOj>fH$g?aMN!DM+z#d#u@)sG_l#?DrG&bXQani=mtD>nHQ{b>I*abf2YAugz zxX{Xnn`7ssf1h10cV$(Gc>6mB93cTnIzH((JCX|_J(O9n%UK>kXt3@foosA-#&APW zj{|a?T9R=R?)7Mzc#uX<@1Cf*I9*w#i+h^NO#L^F#~{1u2P}OT1O^YmtVyd~9OwFQ z#H|R-M=O_4bRkY`OtU%!Jcx$xV^>e&-;YBIpErEu%SD(FS`PdyDS5a687$%OfjV<@ zX#$tPN}uZl7s`pb9qg)}?Xf&tc&5HR?ZYJ_(y~f%$n}xDyd5~%Dzha*j&?~w!5m(% zJGiq^$^ONMGs14I84m8I<#H;cEVf0%uBmFkHyv8xE|7dTCt<3hjZ#Kt0}sX# zBe*0rB!~7#)RL~$-SHoc0F7lPat_fd^p_JBsCeLNRHbOOhfAXw4k@(dN{9V7{rZcT z+4^sTTRc2HCSLyu-?3kd`}QsDqxL)r4rk1J-8=*Wh~bTAM@XjW(UZSsLz($156~wI zVJGIfrc%?Wv=_BF*$K|;H64d!t2dD16_XKu3LD)9iGZ`-@6)#!{r5IYR@VkvhCyY` zI9Wh>w9&J^|BJfjG2;Dd_WpbmXAUGe)-3&PGfC0WwjU1JT>-FM?(}%OZbexqBkhX8 z6xZ=F)^kX#mATIrz`TJ;D!4x6p@pD0W^k|sb^bk2=TqC7f{N)gWZ4PT#9fK_JeH4O z+|A4Q^G9!fWWTpUF|S6s>J%$OqbgECR_&s2DX*5@>e=Arq}=N9OhYJ`z#0Kx^7O`H z3)#QxFnm;mo37LD^&ec-yFIaM6h*d1h?ez_&d$-fUJauoRU9H7V~_^mUXK;OiA48< zV~eo*Yv1n}5$e^vn;k*{J~uIt>$9xPwIH86@Ghvms<0TVbhswUoVk5BFc7Dah^V=h z5r)k;$oiYc_%)Z~!72b11TPb=SDnG#B;$CrX(XaOe=Gi(2{0#RAOc_xhJl1Y`yKFm*)h7X5_TjT(gOyQf44^FPP-4R6dy$2s552d8@@fNk($B&~Dx+@&)=8>Sf z=~{UreRU;CWn!{10T3y|)87MmT!=Na(I-8RmYOQ5ei-vbx~9~1(bCfT9IR?l#s*tu z4bT}RrQUt`FckCNy`0x{gc(Om;0ZMbPblfmp4D9{aF(EBZAAxweGaZqZa}r>@^YFm z)K}b5ymrR!Mn=jE5)&VHDQIa?K^t92^1|3w!ROPzsYytWT!=3zsgBQ&_zQl4FsFTf zhBBkLsMFTw?%W;@G6y!wmTO1UM=UJTZ6LzOq&oRxm`s3u`G{yz>%X+LikoB~CKwd& zJn%!Gn$(wETwE-MiOwmST1+oAeFg{xqF*HH?2$9*4%no`ur<6RLd-V)SQL95c8Yp{ z5_NE~N=tv3yvy`+5EUbV^Nye$bsvrFD#{k3RkNZ!=t>N6O~I6gSp4#U^p_Dj$|BcE z$Qp}$w2aYyP=4MU-mte~I}cIohGt%NvqlB9xprt78(YJ5kDLCzL>v8byw)SZH#^(E zx7cW)qvGF$+yRO3trf=DsalVg6p!l}jh|0F$#k9MWo2VzRL;^cnWg~Z@i$G%PCthW zb_xwCQBnEqhSGm#=b&DcgJi^~aKV>uyDgmHlai*VWMwgMI3Fl&3D9)jJdIBK%Q^kf z)3kn54&XK!4@kIV*>x0RLdG6}eRjsSk87^)OLA;yrw^CCy<5UvrP75tEbO0G)L{v3 zHjKl|>Q$IrN`%DNzF0d^Xxy6Cdu$>lb?C<9a4a!&VBF9)BTE{5Vqg$~g+t?y-5@yt zyw(?6f+r`8%$a}w=+O1uf6~3y*51x$ZKGLyh~y*7D=yB)%;#R;E3QsU!#_JB{s}+m z&4%`olWy%h!K~?)v6t-Kzxhg-IJeju>}7oS?s?6x zMRc-L!smO;Te2!D!^5T9o{WfBx_V1bu}G(jv{*zG6ar;n5qQC||L%UNRgKerCfmd; zYNq&-yX-g1XH?-I$wS5cm zBXBzV-(`-&_Eis`tzdnw4{SKY#E75p_zOwJa8+0NRbjgJdvEeRXL3{YQP6XJys+#|~Z{?wjUw$76 z?^>DLdAG{Zfw_4RwOAn0{yi)UXx9~NK6UjZJ21Jvs$BvZp-dCQ%4GTdJP%LvmIhJ` zrM%f?am1@DMfGWL@5@^NU?I}V7IfOF_FMirPi(89fl)~C(vo%g(=x~}m%O}0WVjn( zTE?oTmL@4CZjsfH1;-zgxm3vrdPtwga68>gJ^lBEatOY4%M?+qje)ow^b4)&6W9dl|HX->&_G1_VvC77013L(LK=d%1H0{`ufUYJWx|UwOC+#_Dq=y z&P79AUDX#yNJ4xtRxjOsQs#bHxSOw)j1h!hWwVmDWKoORc8bj}{(|^_hq<2Hc6ONF zQBgm301Rc>5Wd_M!=Pnm#ssG^_#|spPUerngc;FXC=zSWD=hfZ@kLOay>&DNP+8K} z+QV!cf+>lw!l0aGxi(@o9xR*B9k0|J=b0t+D9~}J5%*pw-x@vZ4IAbwYp*3}SzBZ7p0N)+! zhTU_#r*g0c>jabG+9)Z=(WC)ST@S@i%9$G!e(Y7-H`p9>#Nuk7S2S2CN7y(AS5_Si z4J}KdU>?uN%DN}u7Cp4S^mhkGh3Cf)mmySCMTN`v)Bj_T9U)`5B*RZyAEkx`2WzX< zxb{)qpu&zz$H!S_mzS@|1um;(z%1U2p0eXpGbK6e?JXa9?8>W$GWddDV-*8 zb79^|@>!e|SqZ>hj(EbHvc52O2tJf`I=b`&VE(_nXauF%*v&ONKu(AkCnjce0sjqE zK>#MqpJ*r2Zocw)Oad?r{h;zzI^t$$&+Hy^TCTjI?R^7`8imr$_kM_px#g|U43DW3 z45Q>FZI#2q$@Xsf`f8NijehvyL%>%(=mC@;Duy}TM&Oo(kGsEl&#OXGC3#&IksWng zFERBCd?ytw0!}JOkYDiipUfz;*4r_N<(h5EPdXBU+cV!DMjk0%hMcMtw*v_{-XwB7 zpIlgwO4p9sf$;wzZ8A+3YLgFBMg78E=goD1K(?18>L-NqI`+W-nbbV-Ia=#x`M-K> zeL`q$i#V(guI14!CbtI>0T5jEp3m2>86ZI2H+ynIco$3pOPrba?P(6UTy9 zW5|wse*OkTGyAKN`SCk-9B=j-sro6Q{=-(TKp)nxcV8>C$PDO|ft zQBG0u{uk-RqjmkvDrxL%ey&hShoq8)v%?Pk2Je9OiNo*3T2k1`KO3)-Gvoo-Av7 zdnb`E78yGv)=Lr%YlWgGZxQEQP_lft9{9$;Kb-St+V+2xz#{k{zbfeuBacrhs4{_ zoWKDHFVF=-lpR^^%73<18$(%Z%Ye=kmQ9yp`TZ*h%U$=8GFfJmL@_s>0irZ)$4!4)}`YNd;X8``J#&+I_~nQ&Mm=`3@UT z_y2fPt^1HBQhrIQ^77p6(Gh{}-?;ZkAhbBG;jwUj9o%EJ#_5nNep;X-Zo6ZtuB_Zu zM6s~CdJt_kJbe%GGq4VQhrB1-!Ore4t8u7^R(dtXnBuIgJ~jdYRa7Z5%c;#7ysmG5 zB|f9pD0A9Zc=pW6!tlhm;<4q5ly?A3DYVII5~C?+Zcvm4x@x6}!Rpvl%qnc`Ej@4% zJZcIFd&Z$A2}M)tozxh1_FQGK3d{W$!OYA&{9jVwN{c%}^cmW{rP;j;7VQ7@z;up_ zbd!=Y-}r$e9)zh;Tv_r&>}mD3yK7W{ixDlbFXU z%F8o%C(;1NtW>(?Fi8E8iHYfsw$HlN2SpuBHRbVkj5s2c@Acoo4yK@xPkFoj9RK5{y3Qt@aTSY#ujg~o=mU-I za}id{(#leY#H6U1{mtabZYj4FCXVe+m)iqjW=ES&!2ULp=>5Aq;9gjSmC5fGJ+i&J zs^)V9tNGd>A-6k+N|FAHxG*tmo1hFhr)uwo1N680rTu2cnWI@{TwK78MXmZUcoc{U zNmXmz<7U6zH?XU&;%{n6%1%pL)_BOSvFTPUBO`OG^lE8ovwgi6hqzjN*@x8qjQ~VA zQg%38p2>?SD;o*gmcR6KzC6qGR&t7o&SkkqmOA)7RTB^vw(URMP{d45rX15vOH6!3 z$6!)>FRN3f#`Q3(!N;b;+ZJpM9xo0K4}U#1yGBFz;nZnsnd^c5>*EtMcvqAt{B6$K`#GdW{p=ay8-CkNsaEHK@aN#NNxP*d;g=#T}cgMnaOzlq?J zCyYirKVWIi!h!qY2WGb~1fvjuq#59T<@B({3%b^vRJ63JE^WV-zHU1n?Tyn*r4IxX z^Pymn7XJzlCx?WjhyIhk9Yadx{gKFzk-51KJwPoljh+C4QtTV$YVr2KfNZF#=_V_s zIVpdcrqiXfpEUvjFq}Eb4(Iy?S6ekh>@m5bq1lMH5kc2Z$wp9eI$lwY;1~#fL$ipr<hGXo-PJX6x4pIXSAipWDJ%C3SsBz} zOCZ7>!b;$aJ$q)73lkH&d1;}pWjYNEg_*I5iF>rvsfFdDGgYS(i=-YGOLK<%Ey;7R zk4V51y71IdNm0?KHaXc32059ee)_{XMU0DfH33g7O*|j%y>2;uxNU*>ejZpO$?*KG zNNAY+2@t^!Ed3u)y?7x52D`Zzv-Q$@=?VHWM8wE2Nc6gM>+_M!b6g1%6V(xDwq&By zG6p}zHLS_T@i;T;{$51)=~KV!uV3>i_4O;JY?4YeELzw652$hA94p7kU7Gpt%>Mf7 zL0EkJ^cCzc-GHy=vV2DvyXsx;d?+#A72{B$OoOF()eM)4Gn&t#PBxb94Iotbt>BRg zQrZA>7Wo1Mr27C?lNctHuMMCM`Ef6ve#uGbfp^JO^y+*LHSx zCsCcZQu6aLHpDoo=;_tQr>2Sm$&e2dEWYRE1v!5FXo-r&uT%E>62-#(ks%A&%O|W( zZ=IceDWY!)cD63A``1@F?Pq{VVGX%zXi$0ox;5AoA}>E^K7K0l%F;Z@t`k?IhSC|| zl#`9&WmDJFj-tD!ZWVSL_%g-iKYp)TWq0J4cXI_c;4?fTIeGk4Z-x?BA+SrP+Ha1Y zdiz+>uzOgp#SHxS^p;+z>?Ey1d^5ijyP{3gy@khBS2gaJipdG?(ff{z^`E}_S5}HM zg$pNy*=2Z5@Px*>y&W2~B{p%r`$k0t4KnBr=9!M5qrB&~`wjcFGiqP`_ITjutloO8v@$EZC-(f1|@##|)i3uOZ`lg{l#w~PW&k*zG4!&IVe5G$FGMX|7$9=qo zRUhc>$xQwCU;P!V-9j;(Mik+yck}<+IetjLPcb%zPWy;yA3Ryr42lG`ksJnBAv`wt zi(m+02?8>jLYaZIE(aNj*MCf1@NPK$ijK}kh)vplT3YJnCY5W4u#OVmdWthM{r<0b zA(nNp_v<~BF47NRbAzG5C&N?l#szj^S#M3=kuHLbX`zqEYqyrZ_>As(>wTL<e7OOtdxN};>CZft8qZeIbVU;8p9bg1p;$+a`K1e!l1FM?fH4Cqva2%Mc~rF zV!;BO8T*ss^R4ZJ1Kg&>#93_4n-B3xHl(jRmaO*5*@(hKGe^zn0?s3T-j4fTuUy3K z(9D{A^@?BX1S8!HSK}kp_SkPDJmFkfzS0@BAZECRrnBi!V~)wfrr@|nsB!6C_k4eT znTTwb&EsE}i^Fl3cEia9hBNmIb;W;@s>ho@Olw?EQRtB-Mn;m4ex}X}_*0_5fZm`x z#rqplE9Cyw6(5zUS&nG$9=|((L_jHEr3;_4v#SNFKC{r#QG7;9n)O|=2OiwZ#l59{ zZ_o20CR2Xo&Hs8eqnmpG>Z`C^QaW1qs|xT#r3|qMNY#4CWe4o^n3<)LvbQ(ZjicbX zv{L6`V&eV|XpS0}6AND6ab5VN^M)0zOC3)}7oo}E7mwM$9J%ig%jZ&9nEZjoxUQzt z#_%CaZ;g%pw3^q8k{dFcMrrr^=ZuU>XqGR9Hn+DKpjsz~R7cS361KFl=z*J&zpTIF;hgFgOrb1Ri35s2n1o~S?Sx;XXQhe1kei(q_Q*~ma}+eO9*IY0vTU8z9>gtlG^ zAL&nWa-3NbhiU>s((3)JzkT-O9vEfndM7qPKwnOvqyJ}v<#@M!FTaOreE9n+C+0jSmMK%`mx z?Ya{W6Og+}Z4xv%uZgdrqqEiLUk3nHzCL#d`fLofsi~QuMnyp(6yIBKI)F{=Qbxul zrtjQR3;4h2qbMi|d=52xZv9FwF0_$6`|0A2I({@Ow-Bx1iRG)Ra-F`&>QMUL*wR9u zl1fbnNBXLPa}<>S2#%2xK?Kc^=VK$LpulBn=I{R?!eho6>z`22yY@Dol(FgQyPciG zwJ2o<;?|r#8xBAU#E6r+);&CtE}2i4A|6pKvuwkld5nuYY54i`E9ELja^jgsYbfxq zK?E)p56|ndp&_Tvhh@~Xw9i)-iTW)a9Pr?%guj1$9CAbGE^|GtZ|vWX@wqJ+3Y&vT;PNl~7<6FdfTl`Vdu~o}2o0riD=Q1d2jEm1MJ|_o zTliq4to#fooKac1RkG60Pjd9@?7`a1JzPAz1%fZo;ML=6glYK;Pw|QEa~{iCOBYK^ zPsVXRi)}L%eu6YzxJAWbR&T__RBqEBCJe)&N{(ZEl7S`fro1DPW@utiV0@w*rrcov zuTm(tu8D+066Qb))C4&>In|p^yRwc6F+SrB4I(_vfl9@O%2&Nrl{Z(x(voc56%^+& z;G%s((;fXn7Ex7=T*ae}Kg=t1sN&${{EmDaS$kch=~v^YqY7Fa@_21$P%n+|0EyDH zuxV&W*|Y;+y7MI=l!&HgZ0zjwFU?`3YT67LHg+>D@eVMsV~OQ+V1`9~sm!dkb#!KV zaq&~NRkE9&ShIUo3{7xstOx-oL0s|Yx_JXi%uOmhi1)1WP|Q|h28)+g*UguI|9)*f zQR*V0qGb9Add8n_irTr!@**RhWc0pwu=BD148>gm{vZO%XbsD=<^I%tu`I=ys?Vu1 zG&m5nkUO71kst~?=k3dF><8Cu6b>J44#p_g2b?xXWpV(+jyqT8i-2u``}liWdAa;M z0|Ru`C@wAq3W!O!mF_{B3i<>F9#ItOUuKNLe_-P*S_UOYDFm?vy!7XF*i!ofMeA!h zX=!PIXq1?p+t0Lndppz2?sXr)-ggM61*L?aKL@Qrcj8rdmputoPY?r!oS*ddqsPG{SphYUjjzEM zuwKJpC0(=3(x~xE{p2JOv5pST;L`_JS2gUnZoM{j58c`_*M^kdF2@zL`S~MyUOo#k zfo*Fzdt6dWhU4%S1D-#H|7CZ^ih`+W_Sb;{4ppB4NPSu}4iD#IvASR@xR_{Re~19^ z7vsV4jDPq1{4c@(1nV;vyv35?ESo7Mm8)mC-&wEiWhv9Qza?~4Hqr2_r}55xe4*uk znx61RTyIVN9>*eK%@h%F;C^)Y0qfzzpMAr_*i-p+nUSd)4Tdf9jP&$rcbR(p{c+`K z)4P`9;^N*@@H6o9%XQCqC?aR&lPFnjma$NvtGh;!+QX<|iu%eEe`m`N-Shk@%bUxN zf>r#TRq@UuEZ*0r-u0wX8!XC&55j~Nm-S5u2xIVZa_-+_af}dTU=Zn=oUFiQV3F=& znxAnyuCA)AbdiC?ZIZ#>74o?ltr=Qj}Z7NP6-J&(0TbPBO6*)fzFPm zo-V6+t$dU#Bo)V-3mFcX!vE%ox*TRcB%ho(nn09%0Y5qU zpKlFBj>p$vyB4*wvRe1X#Ao^b{$Cx>zOSVFm#S2ccl}qFYtHaq_UI5>;Dr3G2PKyq zNZYsh-Oj#Fe?j%p0MTitm+BZCYZ%Y=dxRK3ms%|7d{9QscmDRipF097)wkz+9dz}w zX|8ma>+;IUwH~hyS=D!m-7gROQ*L%hVFp?{It{%J{Gh$SKxQ?bxY*bXTx@J*fik6+ z1T|7`p3pwF`AVrNhCuAi;`}?^H+X>0q;lpzu??u~Mq?9`Gi&R>l7gB_%eidwkT%`D zU)xGLN1F+EvU74mjW`Le`%@YA3dWPNv#Dn1=Gu0LsW36^z{K<;bRfNFcA5yDaihx@ zCd12EIQ+?CQr)k+Mn@Y9Yp>4kAEwb0d_Y9OiiDYC&KZp;)bp!MDK4g3x;X8?gt-e+ z8|bU9t|c8OXImNMhO2+ZMn|g~oh`Hr6s4;&T<`9ElemX5`eHsj z48m8a#l@d=dgWy)<~`zsRcbuHZtpaaja{4h>SCYqn-5N##$)c^Vr<+~LY zL4bFD;6C(=FrP51{pa-3VSq+8803b`e_StyYdCAB!0;hUkCV6p}fak)spnz?hnwt9NvzTXQJl_DY zIyJntN-D2BCD^%3-G3;WLtU7izG5%TzO^&wMWC<0A(_8->n3M&kC{=K)zEZhmwv$M zwVd2n$Y^2Vec48vR6!abCK5=})d!Nkni`U^u`wB`_wQqkwY3#43Qhw;LcB8K^^Q{N;L$CM{#@nC5xwo$#zDLCv*bq`@8E`W?dh_KZ&DJ9 zvV=tRc3(2B`tjD(#AWnxIBtD?ntFihtU6v+R9uVn2{fjEV^W=@a=*UpDJh80 zf@*9)6?%Jo1dzjr4QZ%rpv@8+Ip->dBN|P%riILZg5rT2Kry8cs&s0)-i%L7L_zbdIyIH$y!V7AKulCkO^wQadzxcj;T;3R{W&O3uRw+t zFostLH!BTZn}eD1eRM^$7aSbe__(-lKFJQKes|}vm{wD8ISAaJ0{Z?I}HwUz>;bz=%s8a%za{@eY7PaTgV( zt`WLAAr2V>(Shd1Y+VB$9EShe6d%5o3RD~`ZZnee-THx34!{C}m4f?i2X~=3Wmy7|awOr+pU#;bNaw|8-Oe@%)&ypQAkMnOYU$Blmxpz5@=zD`vRO7)URJP6H9 zo2tD|to-u_JH&w)g2j4zdTI?bh)M5(2M5>E-hQ~ua!#0sWJU{k@*%Cv%z+XX(}NCR z>W}-#Pr=Qt_`{;+RLppQre!`Yt@#UVVURFi#ZXZpwq*}7c}gEOXFN$BKjxy>6QHJ6 z9_lt9$T%dSU=ImHe;horP1q8+w3@47_Q_M!LWGxq_KcXJGm0Z74a6|LQ&TT`dwWMU z4k7uqI+ga7hEN{78p4my5j6@5PW*$es$og7X_^`wsV+{M*v)nR0KZ7Ml?pHgm z-^!~|Bj3h8>b&s&@Subf1%-3*-wRHQ}3ULMx%Tv^%{N1Uvs zD_g@m9S^zH2dEDnY#037W>W;T^PLaJtLnli>=?2FvWGbe4WuLIhjTRW-mJ|-|1Jka z#@yatzgBB8!K5uahe;HlF*0v`qmnYg6CsR1z$owi2OAp(1w9-Y=yO|`n-d!v8xyH~ z6YC$4rGYH3@R{14)myQb_sc81oFRmSlRe5Gu1)Yx=FrWv@&3ceO2ItkVU7AM^}JIm^juZ^^fmVMKX^3ttsE&JBL1@yMIAM{aC=ULk`wKIGNflaU6 zkGtSD81*DPIg*o?$9nX~<6|!~oOYh6SXvt1iGB^~5yI024T^L^LbXg36cvFO9~@mQ zLIQn#-8fv|LvCc=U-xQJZ0-vS=(h%(oTT`oW0Bb6Je4)qHh2_px6aQ0{y&#&Ec0$> z1Z%}hGEYRD^#sko*VEY1vLHMg@%8g_vAY&bjxa3O)}D7IAu<2dpe7y+mjx46`Nt@3 z?J0d3uv4QS!m4<@zPdV!R%~BZR`&MlWZ?l19QFQdZeDh$;ADNj`|S1h&5p}&zqx4X zKu^WZtvb=9Cus#9aiLoRUnU}%CYwWEi`8K{MdQ4FT?wZ)7l??DUriKlv%h-r+%V$3 z+hxpj9UH~t4fLDUrY>=-F5rT8a2axtO`M#at1~h)NqFZjXf3yO^F4(N!2hxC9f4$P-J<*u(pZF&6Ssz#|sW1MEc1r^0n~8F^e2htR5?ay2MyqT--uq zx~Lh4R*D-BAOEP(9pDrqG{KK({JOtxP7~AnXyZc5H!U`n@j70ha)@p5F`Suf_7Ced z-A_}WhWBNprL|)rP&8^>$FLmv4A3#U%^0ii$a}m(AS4#rC~n#VI@*N~hw>mO0aXQ- z%vpMEQzfO0{~|{02OIjr!~7kZg(N^)|;%;aQa zHdKe#4rnRDW^)IZWB&6mn8=amw7SEtXxn5 zno4E9ZBpqaUY@bV_8UiW)7}nIq7VAHN(I8Ji)|rh3q}vg5s0NA`7+?b01w780muvSx#qt?-$Uzbr}e!;|;J%*+sC+80$-Ge%jNkaJZ5X{ZA zw6USt)N%ad2c#!F>}K(~h8c1C;MUY!S$n9j@4edMV$L6RpZ!(Vf&v3STHEaZn=%@! z6_OpO*ItzR?&A}4GbtIH5kee#UWU@iKA)bRfU<@|B2TTnzs{&C{X+~5AraB1uVRvn z?OyRe+A3Vb@vu*!Nxfb-6n6dK;-X3qj_y>#A`TIj>!qOV;W09zyQScK9^8DQutk)5K7rc1oaYFzBzOMi^+Q`N= zf!QldF$szO+kAX3Tr-dc=T(uGwjo{?2JbgrWktn8MH!UsO z-tSdZel<4-9GPC20^!_NYL5|^GOvO51CgVObQ-mHF)+xWvjTk&Piik6ZHlmo3BI%H z>dR4ly_?H#d$3wi(%0@l(c0C;#>&N2_o7BeCs|%iZL(dgeHr0oXZHddNF%};?U3N* z85lL@T_5xs)zGYYWB=sjr93UILHy)yIN%j+&kn}8?42TWYVC8@%B--jGOS(!hC!?` zSE`-g{lfdNxl%^k-A z0@bDkub$(&y90$uFZDDgCMN0uTCxMOZqOE9P=`SAx!lHl4SzvGGN=x=FOq8_9x#K4VZ(XIRm`e?N=|Th{qh z+=365!P+^T1h>}L(Po7nZG-(ZJt;h#<{85CHk$Wf6b#QBqrE=A`MT&y0F4}n*CBvT z6}yc#QO%d6AuH?0l%WLBM(fX?G0bg8PfniR*jAtD^ws<|>Dq&Aq;$Us{o}2jvy_yt z*k8&axn+ukn3zZF#NypMD*_D-!MtmR;#;I!Bz%15pAd+7B=V4%24B9#k!jTa7<8iGpAtCp8El|GZR4eVfDkEQ^ zKh#~dN5%fJfk(-{>Y}>3TGwZf1gT?c`peyolbP9k>FUaz(zXDSbh%@qqHKs; zxhN>q;QB^JnVlHEw!FSNzomNd6pqd^#l>i7Xt=brE9@E_H{eIKS6Iel0`bdDW%u4d zudt5`8{1aY3aT-F^!<8Y^X#lFulAo4U;V_0u~j@Up(6EzgsE+?(m1GZkTUhFOXneOUc#==<=L*AR4+n2&xwo$R+pHBU@y zZbsv3HnrGR;&nUY99K=|k^pf+IWGP9&fLM*uV05S+q?kZN1xAP>C_78+GThwL1RT8 z!6X~bkdFCjcex%_CoQ^C`fH4Y$TZsd{*_=S!2ZroHWf{ag5Ty$ z!f(mcPpo!2*w`{P2M2OF5YvHSBa6iw*G+Q{6Y}Y=;YVXd25u1VwZgNi_2GjVAurY} zk=lU>A=$z`8JSAj&(+DF{$P}zHZ?V6#Kfrnp3by9-n!&HVrqX5CpH11yeCstW1@Q- zd9_IZQ~dVLZjMZ(`H#4;R}L}_Dwar?N&_KW_yLQXg9Fw+V1kipX*3j7N2$fdxZh+! z0vjKA8lVKxK~Rn+l@(Ki!$ACeYGOjNq^c^3g@@u2-o+DJi!Pq0;K@ zopy0_43qsMr`z_6`o9K`T8HiJ^^6QlJg6|zXN5c|#S1Y3{7X<#**Enaauo)-%*LO8 zIg*l<^%A08$rn_BEa_-LLbY3BqEMmbR(>fd2_HQ-+#mci^L?Q@FVEtY9jTS=WQzUb z+mbI?S?7|gy0>5BDl7X$hlYinBq!^PsYNt4iMGYoKp8u;(NZA=b_%1#P_Yjm!n~=) zJwFGMYN;A%5$-2s3BGqLo(mKxF% zfq3L_Y?kWmTwxlnZEr7S;^4qNS}Ww$Yy6|I@G+FBbD7=Uxh#FtpicTn#>0~utY;Sv zywhFx762q`cu zOMsoMytzLkIUIN*lF&@O-XOuX$3P&;?KTu9lEtM}dHzbmUD)24Lq&r?xCS**42;n~ zvr9{K+!~5=p!T*ycYB3>#ADyPgXF3{&jJ&RSTSc)6ZItxjs7VDaXTxHoLuW~aPXY5 z;WluUEfuTw_V%Ku#Vfa`t9@cvqTY+y$!~6xzREwlFSt|Z48y}H*!0J-NCh|bJVto` zt$|cL{at`v95i4XgGabI2aASA`ua2;O9s-=(i)>6fSkDMtT{tGq~xZhrFF^A!jfmv z?7zK+LtB{V91)>-06VnI=c>S!N81T(3og9lF7#m%Hw6z({dq`;EWzL6;uNJrY&dKQ z7a!aN(s?i_n)wzM*?e3YytzDRJ~FTBf7B`_^$u z#=n2+zV7aP&6`q7&@x_!!MCK-9~SJB)6-U9s_KYIJ;BB%2bL%$9$uJ^{qtVv&~Wkd zqi`oCgHo+LF)=^FZi(0|l?Sv3&^MQk*H$wfD-@++Xa8j;z5$Pix4u3h2GSAEVQGaB z4{BW{kIhL%-DEO8!55H4Sa{Pi`{HuEWfvf?ZqRiW?7q<4^)SiSa`j_)U4`9pj~E|q zSsl!Fcwx3vhK>aiKe?$%{${g(G~avfZ;ZtJAm(>0`w`*P#NZ#G=(o5`(%>J%2E9cg zl}Cb%?lrJV^$_K3Q{&Tbrl%q#>XdY#KXfo8ObYc6?d5#8~e6# ze|v6@d1a+^;ZUh$s7Y^MQgtGrj6s$~v&MMog-7;2%XO~QUsl+W>gJp7e``q+0FZwn zB-oU#NKsHW4BfkTZ_M7HzJc#_3lvQPB*GiDmiesVUTa zg_`^eQ6w@>B17(;5ljvi>bLv5%!)R_NHE&X>v}w8TTxvtdzZxt$V5dPpt-eE`~;1_ zfZT?9`zJV2I53>kv3~V}fnnfZe?QvsERa|Jl*Pn|Kl5Zb-Z_2MGx$eS(kfaJS_rAn z2-aoARUsV$W9H)2<{M~F=i0G_gh69+`nV8~Mct9{?%5y+GJRiQxE(T}n z4RJBC5qUYeq%9@jaevm>fkBG+=}-Pexj>M7rf!)Z`7yyzkqU0RBkw_6XlVaaqN@9c zoeRIH{X&&JDs9)S@zVKGQS9Y)kft^>rO(db@s6JxNG?U8RY%!i1I^%;5?1soHT@yTqD-o*o_g8Z&XQrT82o{hp*=!po*PK01mI(|-AiGE;Y>oBR0b zlLTdVtU}_aKUB~<6I}?#3asQHYna=tD!+|DfIf_Vb7h6HXT!X`#_gH2g`(+0PI-lz zEsx4Qmd4>D@W)JMi37~|>$EuE-(pV7{mcEHN`BR~y1L&(baX$W9gS2}RnfZRDtqyt zK23y^|A*z&SP`GXgPB~a7E691O3)yzOVcwm*ZCY(!ukB$$dTWVAF_S!>3z3f#?$h` zq3KIyCHh2Q=XABqwmoKLWo48IALWc2cYwZ*4o`jh-^xm#v5^rD=3G-G5-D2U4WcSb zIrkFyO~$_W8;XL%-GOu`0cc4rI_9>GJL>?ZpS%fxx?duAMd4|J`?3=iqdK=ml$n*a zpCI5;bLZ77*Uw|&VPSuQB9_4rq%NJXeAw93WQ=j&&yp$Yj~xB4;NZ-G@o{#`wSK%n zHXInBjzYuv?_VvATZ}L%*^j~mNf*6L{4U$i@bDxvBcqU>8j+AI7}dUwc)Gp;XDrd- z1L)6XLJ;751B1!uL{fP{NQDgaWpS{zP1;+Ek0&W%6R=)1ECSJZ%kE@h)BX^E-S3#0 z_4Qy_3mY33;)h9yGBV{@IjG*;BBG~H>-Ww5f`h-jOy`6-TaL~L?(6dz%0MSb7}Z+m zfW|nS>TdSSjm5?1O_IceLqn%Nj*^h8iw9AYWvIeCJa+5vClU#Y+Z1ZSjTAD_w_vc9vJShV{q&sz2{2^vgfnv#l2(9ZV$?(Qdy2M@IOvqFA8 zYB_ve?X*7}bKF-0rGh$BERDkVl>ArDFul z09e;^baQjN3!gpvb0%_GWgh1w*muV7a`fPDH4RO3MwV!vX6^D?b^!cIOC4Aa6G;orYXEM{mDVq+5psLr!<%aF9lNZa_) zhi)kmBqRkXY3VKn1PKK}LP`*j?vzI9?hphC1r!u%q`Q&sM!Nf4y!$&f|LkXVcb=KK z>xyq6#s3Yg^RBlL7q^xLN71$4vRK7MH?4r&r|0oKwXC+Ejh;mmr};l|5QpHg+qi(^f=vC~=ym4;_Xh+xPG z49lkO-BBSPQ_t%u3p2fd@*s7q&UmiMwNqE`%S-5}-t8$nOx9v1on-@;-7Sx1K=pMwA0Prxo66ScF_(?9(STMv@9 z7ZTFdhpQ{3xT0-W1K!B^|-5(n<=TU9}%69(EC$8HqJ5AwI@~IACM3HU1?y#)u)M# zy>}tAOht%^gA)ZVO!^DMQ&XNllr)B>wMTftp~CF*v$mYWjlUr`aQ@l82>-*W-Eb8{ z5I6II){L6VdVr?YC!`lX^E z#lM`}q&vI0KLo;GY!nhABQH$%O-YBQ5{HHk0>Qyt3_Czd;c@VwE&LiG(U~&_gueGb zL6|`SO__-lgQBnepQgu&U~nOo*&+WL4svL5)G=F-NAu2%O#LMI_NVcUh{(-LyIoek zH8?-A0$?}M1@(`ISXd#}lT-YirF+$1b*5DP_LrAP4ou%rnzKO+iI|hWQQ=(eg+5WN)mbZFU|GCnjozrxOD}o1|#Zrs9p1iV6ofhA)C9@yL(z zsRvK9szse2XFYoiM+sqPml6+I^qRELtqo!r_|Argq)ps(AfXxC*(qGM=2X$9VJqe$ zx^#&5xljz0lX+GBW5k9av>W-ROaEy6tT*{En)IrRA3r9()V@)X zvGo$G^gjP?q9_AZ$g^) zM!v6aP@H}ESnB+uBFTBOSP3f{WIoF+t@ufhF@tTxZ{~5T(4hr*Q}%U~_P~io1KNTY z!^3=+E*^rSqR)FI~S<-Rl{KhzF06b+VTFzdSK)!J$H3H-&S`C+_$waXp^+2o5|}9DpPjiOgJz4>J?4p# zk6?YAgJu0j7W()q&z=SQw^qs1bNsYER-HdmhNrwn86!zA1URrf6yhxY;kS8)EvXFMX>`A-&toZV$W&Y6q zitHwna;oLMi0WG~Bka$kfZ{V>kBB)v-}dH(7NC=+W<;vbZEQ4EK*az`hvZ}~X!|~> zy^N;D*q4Q<*WUO^;^E)S05+)jMBgpA^HyMA3Q| z`@M}11qEN$J}-RnxT%$?w0one$;Ao-BTrR#kS6J)BM>)R2n9KL6+L}+VaUOAaFuESBytMS?tc#u!BH3GN}IWX zL@ESmJw5*u!|W%#=O5>6zmEr|Cf=+uDegrVo^67glrs7pEM3cb<3Nl9P4xTCPU`@{qgWR!RvtE-R0 zqN7RKy)SmH9yQe6Vr1qG^Nl%>eRP;A$Bb(OVt72Iuyw1S41Izy{d(G&dTPaq#{ zJKnyY3iz~WUt=hCr^^NyfY_;LLZGPC+R%{C`S77!=UCFYZsIN~a5%ld8>`#LM^_er zPedSKV30EE>noKL96U9CbQF#@8TvIOq*TVx&~8dA9DE%^(_>;3#o}iV_V-_4tqHVf-|jd>PESw22d8p=qnAwYmd;ZJ>oA`t?ZrJdGaI!i zJI2B)9p|^6{?KDqmqkoWxI@gC zs=I6C1909xqgl-*#dML7Cd^t`TGnff?(2!^t2mm2sRe)NMy7VKqk;2p2$dQ zY*L7e>o3*U(|r4xbhFZdQb1M8eVd3VXL)n;oX8WoWlcy(D8k?!6k9z+MMb4CO8XLh ze*XBe;m#-X;5Ih^ZYpvMSy!GP!FN)a-LAVfiH>1>N_2x6uCiS)6+XcwASKPdT*>er zURtD-)ZLAVi(C3pS{e&r=fZkDlCdlzf|89IZVK)s-+xmSSwI9=^O28`P6UhXou$q? zBJI=N-LY>Py1Ii&QBf}=x-*+je0`D20d@_Zsd|&rmf^0f80dkSJ*9AbW6!`&1)Vg! zUXyUED_nVP?eAA0TvAxlatj%Geh~O`AG}PLYX?C0XCmYqhY}H>1~|}oxQ~X7_K#}D zAw=XdS&L^+S)!vqCaN?8f`?-Mr%&H`ST|@)T|rv&0<1!+ClO z1AR;5ZmnW5;2%$STd8FMu{TrQ>vaXD>QB93=$aC}F#2bW7 zOu~X zA(a&g700s-aqsCv$bL1&{90NHn<0Q1>`aNr)>9t~?t%b*I z2A!suMbmo0U$1}3DJe~|e(F*MSm!}AsXpf9?|tC{aZC8uad7Sema<%9yBUmaJU~mo zUG}wL6w-29Pm92wLLa8}$8hZXXF6cHn$I;+<~==^BU8zoe~*c0)SWVCf4Vhwo>o&s zze3wzO-n;_H37;)X+_1w9Q6f{n_F8~1q6Q^R+11dMFFUqHn_a4F-g8<{gyuGAIK{G z1A#7y6;JnAV~&b7F{L;`CI$z1N+b0=B4SKH`^_aJCXUEwh1;ydZEoAe%s@@Cu=VYn z(?CuL5NqN)QdgzmAH}(WQ^c?TpgMA=PltkOd-s`YI z31x<4%R$Eep($l95(4QdZB-{7@s#Bwf zyVTmNA_qc4ZU|JkBym^Fp&Uw3?YQA2e2?Q6=4imiB@j@GEv&bB*JTOV*`F!^lUhPn z)`Z$ih#i}C=3{vH5GY}-NyOZ}*<`>EvrouFAnzX_5ocWtuFkjf`u~2_$s@mgTdgVo zVUb%W1OaRg$6NYTa4=<*TjJwR=9Ay~nV0(ImXW#n!=x1V>L{JGAf;TI+FHF1=pKs; zpRZboT#`aR2o3E?3V#*Lhmep+D2cPeQ)6|u0u(+td(Hdi$NBimFGt;uE$8&TYsNdY ztw)-r=x%^TsP{x%`kJ4}-w0&5g90&s-UTc(Mi*Dtx_atP#B*`+Yt16`wqUcOd-t}m zp?CY`%1=&C4w;W{xCXj|uc(*9;4Pi(CwzY&u5WEI0#2~|`C{kc#?$+^?sdJJ&1EYh z0q0JR`yvVH5m*2+>`LL+Jed@nrh6nW8({If%KeUKPbdo5`&{k-?WOqhV5b<%{z2 z@=F)Fy1cv~Ll+mB`*&)9>J1utDfxwk@}7H(Pe^^>nkBNe}2!@F<`Q3Me29G%?$^80pgpp3!>YF@1 zA*;YvV|?>okh(6LYX-+$@wp#a&J}82^L+xmazh_D))fes0y;Y7laoJhzvdxF^LqW7uolh`C06i@f6?3Ce&1V! zsGy>P49qz~E*9Gd2@h|Q20;&jb39gJwdc?8gP^h+BOP5qG@mDEHL#zA5<;^50@TFs zLhRG{PJ}`YEYT91n>kt>?t71ynIBYER@TlN9*{szOXFy5J)?Fpd|Sx8C;)5xAvG&6 zA0M;U;Sro_V17OX;gbf+@B>UtOuadXrgZf5MjV&BT!((-0Om#rqU{RdCS&fqcf+>c zzZ+^=6BZCK+H0fsI?)3Z)Xao<+4Rl%y7BMdhsr@fo-*sgy!O1hXpZlV(|h%ba>>w$ zxIjK!T%3rKGG}gWt=Y-wcKlx)!pbu(sE01o$Fx5-S=ta|bGzQE+D5gWt{w~g+O?m{ zGco=y_Q}(y6zZZL0^lmZ+uvdyOp5!r_i>{>oET5BSqH%|d$XV0Cnsl78~Om;<5fVu zD#yXXvZZS8@3vBmf>Wfq$v8}4{2a=qo?0!ffAzhe>XeziZ*$=jgYZK@;90`(2`1)_ zCd`*&S#@pw8nt81w<X&C6yN}JEo(fLw0ezg1iiMrd8nuXqm~A zBH$jV?r}2DZ*J1kpnZx_H-sfyyrH##R3Wf0YEI<-X~zzX1I0X z=2F3GxQ6FYNyAKM$p6lxJTg+^u)!zH5|G>M^#gBeFOMk3ddDEN@&P_umlLM@-XaHT zNvt+>hdD^uwQ2sGoyW7M_W~~C@j_|X4Q3!NuK0X@-tbwk!ST@%_ikv!=%`s*p{BRR zf{ES(7M8x!>F!iP>9=L}-GhULiAs$0t8(s!kksMM^v$$^QYuZ5|IJGM?>eEOX?W=4 zLq?&LWGLfTgFr$;+C7z2vBpMrM?yv>ry(F%Xxm9-gYG(RON{a;1-v>z2KC9_C*F)_`2paY`RC>?SAb#AwW>IfaS^QIMi^lZP=V%!toTkfdHzWnt(aHk5n76u`N zrw0`kGS%s6sMjd{&D{t_xs9+%eDshI=;L=o^E^xBX=pN$kl{i8&$Szcq+3Gs|6c#U zzeK_#fHm;{TsIH%|6VAl$p4?~=4Jk$i~8P03C@+U3xz;L0Ww0J46zKp60C?!Due_Y zA`7|xHp1r#8bZU-A+j)tu1@Oz+|#DmS?LoBA{JpVfRGSELWm-89guuztQ`r(UL(+< zUOdf77O`#+ap{a$@bNf`(T~ALG+-eRef;`cuA!>dgB zgnqjx?HJq+j9g?9_Zswq{x|JTIMyj+m=Uo za3T9>bQxR>Vj|3Bcpl^`CFS5rc+IyHGr@!>Stu4= zuYt(JWkzen_&(M;Z_M3Ld7HU?VssIdy(iiF5u-Ao;|cRmVdy3yL|;(l@Y`Koo83YW zDx*?D5C{s~`){Z+3U|3)rY7!kJ;6oz*cf@>u2ZQX5yZNwL|5Pc)U=WPmhP{fMM-g89FNFQ&;kEVx0b{snR14AXeRh50=^ z0!FscVv6EVL*98tJ>AV!ajuF6Llqe9v?i?SP%RaJF~!}5HGx|$ap ztc8$~r2>pp^>lQyQzIi?_=5JzP*MFq%&z{Q`5JW@EXW^Kgk0TlPCf?-@my+Vp>AaZzxNfJ6qjU2#|KnnrVBtF}Li2XPK;&lmg|pr}s4iSMDUl&@wyC~w8ct%{(9z*Ap_{BpK+BB>sg31hwuoL6w5@-9FfV4kQ0?88o!Y4 z6(bFV5U|CB4Av5^b#~~@mxI7vBEU;EirmV}`IMmsEW^n|AMl^WbmFm-9F}=t(Yy(R_Yl#L8djG5t=|7x!!WGnWnzr zE@gd|e#sdUEvF{pyuO=;+jXaj^HA04=X0C57Dg>Pr$-!D|FOkZCZfLmCB$)+~M=D=j0^zxjhJ zkJG{dVT_NZ5mBFO$j(DXr0HN;MTGpa?Enek!}ZR5rFW~T?P%MwXdz1|{!7n6og0wvm)|2|~FAhEZ7ArDpl7XOJ4)N|ycj7%{1-L%Q;NA2Wy%HE{2a^V8M% z`}0xBJr;a<>i^a( z)%^UYPe@3wza-Ry+>mT$^+lY=^XI=6l$1~ls^UsYT=c*qlzdzmJ0R2@v!=8(YtFNb zS-cMQcwJvo^0lPEUIybV?STpbpj0+fTfSCRS#;rN4VobjAbhZ^dE?^vEHVDR za$dX5w-;N&Sc$>({rn`un`~IRj*qVTJbty z&xyPZrMQFuKtP0VW+sD-Wum`j=GBi+mmf=ZMWwyUt+w4lI+O!SQQ|h ze?Iiu>cgE1bMSlr0h=iL0}aaq7K2Z{y)AOGO-HZkSny>fRp(v?KMwhnXwb(#rHk^o z>$p{#x@$5SiNy2x*9hCvw7tr|AH8Dk8KWs%+*MWQEuXN6d9fs=eGo{1#eDB)U6o93jcc9bEJCYRzWm$;s;uz+NAe`&4~)ra(eS z$gB}T?&vt&@#zy0T3PRp?*lS?e2yFF;y?k{xJ?{$7CKqG2mdd(!)9l1Z@h+T{}(!e z{~na!1Oo&D?e_LMKKo^uym=FBZf2Ivjz1?@ARmD=O z(}H1T<#1!_WoT&b4?#h8$wND|JbePPOHiR%yB}_FSvlLVUWJD9iW^FsECQaD=KD6- z+SQ|BOU)nuKG#}0JUr~v4Togif4SG$EYs6#v2BjK?84X2x;`G7677;ZY&Tz!fM$mS zL>+{Y(ojfWGb0cMc0IklOh{(PxIaoF{gDvTp-CVt`^adGn1zLW7-)@dpFTx5>YYqh z{Z&*~QW8S3s>R2tYX6#_ucNYxTE`enuT}Q|WD<3Y^7H+LRt=4^&p&_uTroL$rxZ7@ z2poZciOz|CIPY#SE2~UQT=;5y1q77|dpcMs?M_7)7=ky3nCtY)E`C}~>;fP^Ib0lQ zp`*dmOcMY5kXL8{15fz#45?B8#ee0+GUW`~ASJ?7l>ti(f28J9Bl|iN$V%Gk7@UT<0BdS0K{;AHBCrQS} z#$CQ@&X6n$3UqA*hdu54^C=@bT6_5Fa++vsi*?kd%=57)xOqL{<0DCqj@~=fa)834 zCbYdjbprVDMeNU4qzNXv9QusdV3BgXWmP*my6QE4G&Iat_WFP%d+Rw8ijj{hf1=A2 ztKlJ5wnuN5Km$3k*~7EMyG%9CAgUwllML6W;Hog6?;-NXBI^m^t1ychkoh^_ywu?X(zLmr+V$oQAHZ)>o8{mT9u6e416SkRxnU6(I~ z;u4{)?V2T9rJL)f(eZv&B#Qh>kFo+jB|Culm--Hbxr1{Q?EwA^bcV z*{*Tr<&pmPy+Lk5*1(B=4^a1w9}oJ&C}%)4D`<$my%a<1#FXGqcsF?2E(-~!9Q7AJpZZV#F<}YbzSRGh?_|HjT9K4a+p#1)} zwMhm`NI>AboBR2Jn~UY^^OM~)t>@2AE2^BW_vbaz@1{Yh@Up9IvVIi+x<=fuo3;KJ z+05#4X1O;gTcTc48XJ2=`_Nzx3=Bxulr7Db26Q(X{m6}tWlQU zD_%DWg@H}0cFy_@>vMCoS-H7b8`{)QemzrD3%t1O-P3v5-Q@V|pe2mpJFqV76cp^D z(xxU~oVm4P=NDSEp4vr8$Wg-{%qCB5(ekdItc=N3uFf#*@r7$kj)7nxbz+vAs z@fLk0@%t!QnA)V6h`1x%*{+|qd2J?*{O4l0zJ2=%F|}GSu=YsSQX;5h?ze`eJa(z4`|pdGMJ6PC&M7E(`S^Tt z=9=vo$VkH=e^dCFfrx>D;eiKGLVVMNk3YF3Dk!+I;O6OMcAuLGIIg4qJy^@VU?3t{ z-`>uft|XaunQzL_C+o&g{sp6`0Tl9ANp;uF_vBW~jobI=RTh) zqwSYRHSr%Y?BG`;KSe`ZDr)GRu5o9F{@wB!wP-LD{!f9_JdMRa%fl_!{?;Obog)7` z3}+c6W;~c%|7SQ?Z5LYbra@g_?VflzWt4%>%a?0=$;m<`Ral=tXE-h`-X8RFpqLAd z0BZ*YXe12F%E|FeZvFY=!FT_D+$&#quWBSImxi;3$e5U*@87?VCvid9R6~$sNji2f(2;A$y730)>xSHa~t|E4>uBs1_sm&Aq@3_^QX+Db2)Tp$KB!K9vwY( zTsQ^)`=y1};~6Irjpuygq_>U1NI=K*xkjvd-5UysoCLeO-|XBaPaYchxv)0q5(UZv zPFPr6Kg-G@20&%Khyay_h2+_d8Zj^+rLIA-C09^an|_>^ zYgz^@>+fMv*80_tZxfS{5Up-wTwY#!UgF_}S*hodzqxZ~8N3Mc`!}81I$7y!Da^rx zQ_i$EUDO2Jdksp&d~(%+K%fmxUa9IIKME-j2xOGvJD~C%x|QBO<2`e#RH#mP!iA3c zo;ny504t520Jh^9>_ze4zq>(JeYUYrCH&JKU_~7k=4*I@gJ4J05?)qzY~X<&^73GCZsv3;d(cT8l90*{6M^pAW2~}4_r`HkG5wtsY#E^tjmT}FGXyT{%`Y^*HVt~p|!8d&PK7Yx3@5o zm2LM28vPqeVJDAZy1_!rvRIjl^1J5!;N)zy}GK=q}pXddq9*n2CG#`18hG#cg} z5+ZX?KkY3}>-ljzH!-6UrQPmyqY=e@R#shC8qxREsIU(Sw%O(UxyU%u*QODrzVNbf z^~;dNbj@0N63~ugNQWHrR&MdJ zzANcS`jhAK${P!CVKeSuMnm`jsO>~n#{V}u^9h06%>1XP@a+Tr8hs~2L(9a-#Qw~q z2%S-h{c9Ap7*QhRPU`9eH>~j)xJE|gTtQkF{M9HXb{5|^P}@{vJWHoPDomSV8v%(^ z3s4cbEi5Sbt8au}OiURV<;rg3yfLBc>jhr7uaE@R@#kix%eW9WM;JuC$f?{&A=Z7X z5gNDd;O&f1e`G}Drn{Vke)uC#fKHWYMQq@sf{>d58I<4z(vnrwXU6!`wHUY^F1d^3 z;ot8r-DTu@GQ>sXndvP)n|I1pxV|QmK610AQ1JVh~ zBku0txs_778_L4i;cwO38nI0RTA?pp4^}gDm3EN+oy0~)`s>vy4dsr_oy3p)Jx2W% z)cOe9Y8v(*Z7`irvMGD?=#eoWC#Ny!fUQQl<$m_m7#^ld2;w%~?LabZVa^ufqBnA6 z@R7f6jdqu=g>7lgAAxw~PjzGz8NDZ`r$1xR7VwaxSoD?imW;z2;~d&|m*Aed*0+UP z?RBYU+7WBMWVQrgZ<*EAMYCY0DSl0Q4st!&A2Mc6qrqKI z$(qV}%O5MU-S~yY#>+$0R$>|npZa3_3PCc6RDZm&R+W)4-u4btrr`g!1W3#5g6Qb+ z5|xJ_Hl}vNbG4clVQLygQ%P_7(4F}DrEu9T3c+_Xx6ajcbpu>(U+%AXfJMLcw~CIN)oW8#ns)#9 zdxRYvs1$@!qK&{u-d=ALS#$yP$}6|xaJbyq4p3y zW)e0Z7;GPxY53R6pVZ7e6ZdPZ9)Yd!qyfAhXV^dR$$Ph58t)LgJC)e@q>(?y! zTDf^S)v5!3`5(wA3OlYF-$5X3Y+sK1#+vRgAEtU=l)m6&V#*un>B+i>=)+C`MKdz6 zsf#nz(Q#i1y&GSrM9`40&h*1SAb^Le737FbDG|M2Xw{J#12VLD*4v=3gmgK=ir(ixiBVGi(xD@xfKWMKeoWY}PLCEc(i9oaL^mNP( z^78!0$dc01VTVKc_R`_6?%x-Uk)=2h&~!A2iiyek{Owy>$blF?zdES5cnZ3h@sjms zFttIh%a4!wQxz{qtn}wkWAK;^HFa})>#D77nh?;83$$KBJv_Wkwh9jjS5u+6-aX0F@~4v&kaTrYr-PROUZaRJ1XWkeFOePuF@8$J`|;GpC|jDHZj; zD*Bb1`+8{G7vwkBEhj4kQ~Cpje_6-ehOj#&E%nZ$h8ieSFn||wigo{|`z5XU)zwFK zzkWVC9$Xi2*h0D-^7)Ec9vTUOjoCYpZZUq;v|$N#vUlegF|WKpuIKM zJ-2{BJ<>!0Ti=Vz^JDB^Rufaop$`!dB0hlrgOf=C?^@#ZrGRB5!*p=2nVs)lYkhyH8hA1P6a6kJ*9elh*ac ze#QJ~>6vSG5(nVEbcPyUUq#}W1NX$3pND5b`}aT%+P7<7zQcjtBmV!DX2{Y?e*H3X zKizY*_Vk=0Xr$%dOFse0?}^!E{T#vB=8t(sp`l72fK`&|tU4N`^bNhv9%kaU;4s-+CAj7*J- z%iX`a%(EjU{hK?tst2ulsz&pDYeOH0i#)u@)m8auK)6hSr(hU;R7P;{gM$lK-*5Qz7Hr?{0*;sG+nj^~ zMr&g~nCuuCc@)eu00SYL`TKX4^I)zOyFq_nhkzf}?lwZD2jUbZIt7y!G+ z3a`O|T6!8fLpZnOwFu$#LcFKO5qKFc{}QypVl#C!J3ABxCDpp*{j$n!=8*N?tTfYq zLNPJJHLYq6N08WRObR#pi28+z*zZ?geyD!ZS zuL?M9?d`w!q?&7rs+IM2DE#Gnl%6i;(tlcK>VsQ*yZbTQ`?-@7bll~TJTbrh+^_hP zGc=-?+3Ddu6}&me2yaS%>ubpMP$2hNQ&lA-VrT#A+0&!AZaygHLeL)r1G3TJhpA0H zYyk6c6M?A67MZD4f#=JGuY|$5oRPeBdU2|ZSFCrRSvl?P$@4Zfj#oRxWSnAwC$Gg_ z_ZajoE!pn#9=yO;cxkpvwYmymvV?Sqw4bV2OFgWorbp!C@9d!K&Ft4VHTjDe_;{R~ zHh&=b_v4LlY<=1F#0)SEM9Y?{-H&rA`p(NSd`c5>33_&egIs3njB*X!S}ScYV|}>kY0nQn`tL{cDo65E$nsNBkh0oBbVq(kiycr}Dm^=*yHp}&7sL8EmP0M1Xs!tgHr25+Ulcq|)(r1=dM zyC;1!GDPErlT+YUnR&|^{C!tTgkJzm zHTP-oAUJ*BfJQ6gfyXuag6&KacL?dvsztROk>U4V8q{PI%1ggtewRI@2d8sZ$B*~e zvK^aw^rgwFyD>AQ8zcD$ZV6&?aekwrv_Fru9v#&hGp~b_ZnpldwY|L}4*OSt7P;Am z+g5J|%1MQzqN5k!kx>Vq3JdkTiHL}ZyIGD$XNNe=Dg4DB4dS4PoU*&SApCUvA~iLB zk%B_y&3Q7&%qW;{y~-nJT#2ML2T3C>3JQwPbZl%Af4CUYH~1M42yj1G&3g*KaNN&1 z)z63f`jjaW&y$j@RbB1di4p=)Fg(aXrOMbgoG>_~)X#akCHj=$RvNO@U3&+U%awT_ zNQsrL{-F9zZtE()el2M25a3p4va(zICo{=}?MPWH5nLAuID5-zQQu{h0+1Vy1N*m5g^U4n)@z zAjeVHpP{knB9m29ROBho&)-e?EdC~3^gK^xt){s-<29PK-JS&=E9*vTOUs=ho=~X4 zbZ$>o71J@Vkyr}rSGyFL85;`~AX7p4a}LUmf=!AoQ&n@(_A5ek>DQMhT(ZuS0++nw zKU0#E6FC2Hfc#B#WCAt))L)9YBe2LhY-ZS4P5m=RU@?B8?2g@ zE1z?7vmZLi$xSB+x*fRi4OHLarv~Kwy1B*1XS(iEdL%_foS%(Bo*IXTc-;L1H&c?w z>!RtP{}b!_+FHrKsSRc!@2fxS*MCl)f{6KfZ&42;Q{4yzMA(g_zY^H(mxlgkv@wHE zOL~0#wAZeo#EQXvDjYc00gWnF0OnpY=TqsT=M&Idp~^ZuKQ_WUwxL&dbkt1(l~#J04T5c)FrTVU-dAA4!E- z&(G2+2b@4B@sX^o;J`}n=S!PEqg`Fm;V+=WTH)m4;Tf?H$z-n0*}>`LdoPLo$XzQ# zkkfon9MBxf1+eHI$rLgy0vd@~=lYwW1qQ@qU|>rC&`a1b5V7^QdGjV5u$fNy>75{|R!l%afl4?$r>k81?+Xx8@>kJL9VATZ^mEF4QuhxM) zdi<87m=itD+j{vb$-I0)cN<%$r^7)`uSriUQ3VtLb7|P8|Ik7+wm2)RmO@$cLU%V~ z6bVW*Ovlji(C>3154@F%;|mL-v)Uy}L!s)ep_xG3VOx~69f6E5E?$@|PCP`GYxT_g z@$q*onVGlUFt+I^MO-3V>kXnITrwGp$n1`ymuKeC7t>6CWaWnRH8V(O7x)*8tN$*f zYP_$Jq#GO~Ur+-1CUdECO2E@o#WDO&x+GDg^LC)3le0I-*eO4IhUvD)Aa@Q@gr|~{ z4bm5h#V>z+U==!h!k9x2*kASZC}V3?5!tW;yy|8jj05MR++tw{s4xG3#jE4^$G_d7;fQPs z>6%btKo%D-uS7ZBvc6?iBvgh8v<8AJn5;lOVYiseDYduJ$bBPXoP?Z5E(*Z!?Cj%5 zbnF-RnrvADUU+L)yJRWY?FH?DsvVtfOeMHJ-P7@KY8|rY46|vjE9Wa zxx_$C_yfseB6j-w28NNrJkRHNxS=*&o!u!}L~LvXP#g|j>wPI9K`>rnD>^oDj!2`J zXpP7=wz4#hM?%ztsA2`erylrkUWwebuN#HFfo@hoDAjo}K~zElt!h47W?7lPa?<4i zv#hg?b~SL;7lS{3ydIcT+IHG%j}ZvC%ft3Tj(Eo7WJlTk;^fKQoj^Z+4kjkjwatme zZ#z3X?@%Q_iF#egG+~wi9(m|hso~Rirlx1XQyZ`s5M%(ku=wj{Dz=mf6x!>HZ@IeO z9e{wCx8InV2Yx78MZs-scGL35{Be2Sjz#&_0 zu-;%CUpW3~*XTn}h3(l)>=`(0acTZFDYvobPIm*@NU7fR=C#qW?oOYP0azOn1qZiBFx znm#Sz;pUoz<=p(fu(R9G@$sJglbyM=M_H9OTaISSQm1!_<#cs`bxs%*ib_fnUlI`$ z|2rj`1HW&w?aw1xl?UzYn)ulE-eiWCY7ig*&{kvIXQH7 zVMQ3&&BI+m8oc9gH8t5EAAQYU@Cg6&$2X9AY|D1xU{JqSNdr=;sVe7a=#YHX5v{PY zwB(G)7#r^~tn)k%{0Hfyxywz(YP8H;5pwdE4XqK(LQP+;NEv+oJ=*wna#O-A9VpT& z^)0Nfu0Dss5O;puXacJ3&7Evv(0h^vqyV#D1{Ns8)PG)DS-JmJtF++# z*mo$spw6cA^YW_6QEc<_mHYPfrLcoabDYUy6*yW%Lh5TwB2vu0z|GCQSPBB_m+6kw z;$CXYRnEob-p9L7FM_Fe&qcix9-e*#{z#eic-iMA_qg5V?kX`9Kl8En_F~7`Y3TZ~ zNxKCdEUc_B)p(`la9JhWPMc-t2emTRMn~JROjdO!_$4QGYs$!Ik!`u^=(LiKzqwIF z&Jgqb7L{bjs66zh%AsAKmzGxfK9u9t92|0_v__u-;NS7ZKUdezl>i*7-@qd_aQqyA zlcoWIHj>-SUNj}u3O2a4vKi%G-NaitIo18mH)Nh?j^LUyH{%iNH*-dG_JM>|fQoY2 zXnL^ZJ2xrWvx}s_kDbvMiU}98;Gduq5eph70dD_Bqqs~>?@0fg1Fgs^VCpyWy$L7& z^fwS>sXJ_JN`3?e&Ey{)9lb+Al=bIAVa62F-XKGW05>LohgUc=1FdDk!onixUnOuq zzBhj6<4I}o+Md3AXSxRJKi}&`gJ>|x!$fXVQC%)Un~DUcTpuSV=bu+pb1N%BxyosO zoX-wk3VCT)Iq@a<`VzGU;!$`9uM|K%$M_~zNEfhGK>uG}t&e(jwc-yVf)gMQGI~kh zk#h4_(M2Fgq97+FmCC(YjTbak^=lv2c(8JkVImLt+W6R$wV;e&E?G@YD@wv#ARF<% z245k|p-(hJXjsB--!y{p!flefhtFa%4uDt|2^`MFPnDJPG5jb?J<^;xboWS;IA2#U zW=YHM&pN~|E*{r_7Q;Fa7_4lTfR<=9J?whIDP?u$F!=iLYi+Hh8}MVJfBz;acqe4? z;r(sI?5`ucQ%8`^XhE)O_}oZ=8J;AetMpm7YDD)de1Gg`zQ3wr>V!9*)Z^+wzowr9 zJYZTrN$cxdi)Ui>4D|Q+|FTRZIU<#4Gj(4M}Ry7hD}8+ID>lq3Js+U854uj-=?2? zD=1A1;a+{xEw3-Yc`;i?dksB5RXB*g!!Xf0E-7S^Y3t4}WS2*tv=0otGMo6h*)4EN z&ia7z+wLRV`Pi=5SbiZg-o|x)Ih5qAawPV)yNFe!6|yLdKFl_vq9aaX5xa`_W0{1p zab11HhIW?on<|sR~3pTw{!@EohI$5!?zbgM0&tz)BGB7lFB|Y=xR>ShdKDN2?nYId$F{llw=TtWRMb-WfkwUXD-l@Thih8z1|T=kK(2U@5tTnMJ2(OnBe;XDF6qZN0b12a8VwG3O zf_nEiUbcU^u`w|`^IOs`Co{vGC}Bp&TQ#SC`|}G6OwCOq1Ie&MqC`Y1;V?0+Bzxl) zkqQB3-XwFlDw8HcO9xPs&ehxMN(RkmJkpTX+gS_77-Lg z8fj3vJ4G5cEiI{ZcXy{qcXxN5$$Q4P|2VcfaINRLW6o<{!N&IRCBiQp2?~)LLGY-* z?>#imf!va0qs3HlNkt& z%0fw-@2=lE`~7#*9UV{6GHc)jsil*>z%UtK80<*vAJomK>gg7ryF>F0=dHAP0#;>_{Wba zKa!K#7WR|jhQhb7@T00G-QSm;2ps~0Q$Iw6uf(|lAt78sVe^0)tK2f|DSZ2e`LE%N ziX%AED`;zfgw1j@o02g(K28tbx)FVRW6<+_pTi=2+R`Sd2wB=jHg=lwPM~r}v==!k z<3K>*=4EbJ-UiKmYEnoDCF#$=yI$tY@H~X~eT7400Rw?ctBHH$aP^ww%^OpE$PT*Q zK*gV?f*ArQ7@1J`H#SnW-n$pgmQX!aWs`k5UThx;3BN0U>n1C$?C#}aLHivEHjFYC z`P84gyR$Du-sJf=_cnvCEPv0^`c9o^_lzsEaUcsI`ace9ENDa*n!E$BrKDJV2u8o| zYUC3N3f_!#bojCXDY;cMDPQ9nt(n=>pucSXCs%)_^V7?e!opC`NO4tF_4`+C?FFur z(rchb&;k~{k%)9^b~cm1(6XRYlu~dcKu~Iid$UMw?Z5aF4VA!Q|D_zWu#=ggVSM<{ zpTGQ$>S}8IFK({e>l*v-oUa7*y6|lgoY?w#yW87U{~P3$NiuyJq%bPtgYz#KvF@II z5+4s!7Ae>Jkk21K`Y&%5gL@6Bz2IMhM){kKe>+R6kHE$PVqm%8Zr zR-zpxvam2D^3$itLgqOSn@vs*e%C8GvoS(Oab3S|aR!U7R>~1l%!6HbIT!(LP z);ciobalMAB{3~cRPCU@rKM)B;~^#01ScJB?G`r1g|z7&zX0rqqmdE9y@d8@-!3w+ zs6gjdX8#uDQkTDL@lbrZccHZpLsAb2n|}rVjwW3_q@RTtx%-gwoXQM)ZCCPtt8ff_ zcg{<{y$;h%8r`DXSwU2b+r+YDei+E@Ujj8*#q+rC7`(lI}qv|radZ~ z!jcktHLzisgHx=sV4~D6|8rhi+OXNKqtj0pfuUJ8t1UEA98K5Xwy#qwWCsr1#UE<2 zIX*?d@Us@}TCEg^n)E<~4aYDroQey0QvhDpN$mhX)uJ&_%PuH=VbX6?8bz z{ZPRPZi@$q2o3NY@c;;4y7^_nmGY8~e*F_qd=6M7rGrmyXj||-Gp~ET%&aM}3 zXfqcF`=L}INsY?NdaE#6cDML3@9z=S+H6)G-Tfq;_KhO#W6;Q|@J&p8R#*4xvIA^m z>dW^K_p;K`kKj4CEPh#$oLqQqm-yXnl152gU6b{ieROnGUc72bHtC~NZ_m5&L1cO^ zE|RDn08Ok+C(AHD{MkP^cnwh71jO83ZEbJ=MMN+pG5!xs2s@NjC-uRBvB?z8Y`kc@ zICW7icyF(|0=XOZ$(Zmg_S6&c4@B(G1OV)Qmga^Jvp%1B0L%qSq> zaxI(mjDwvo@iyBRCQfZ{!I}HfvC-cQc5>PY*m{f0-K)Gx4r7!3{YfwNFu>(3--it8 ztBJ|x9XU#-t0`uZUE@dnyk!Pl<^nGqy^RaB&P_L?Xk_y2+l zgpZVl8c4q5y~)*#yE}Cm%uv@EzJG7K3Vu^^dQ$;JvZXL@V;>xHzEKA5;K} z@^yS8+#m+vAi4%*F;m-}mfCn7r}+9hVaUkzCP;F?{#W2rsRyg1UlgY)A1~{>AM%lt z%Roz;657`E<|3B}OWCanV-WYXlhb2@Y!hIJ#nVi?LW;+8o^y2;mAa>REvToi|FQ_W zo;_QMG2i7Eu-k{ZauKvv0!V$a&@LDqpPY1Z+iv|a2S&lDHzpC^m%!9IAe$O``^>fy zw5oxmm?)PV@~blA`5o{k1Bm*Mc4q4}mo}ZMOjyYwx2+8_<7`MtV|A&QACWj{Hjdc7 z9}HP(1_=8tc#8_Wf8Uo5>@AUmGnmbylRlOWFDZ^oVsH4&!N7RF4L%!cUf50fzJ7j8 z&0i;Tlt)qm2rDCSeNelja&ufRj{Gt**Rh6$W4*nTRNY3|gg%x852Jv9L!o-*>API1qJ#pP;sB~$jj=XSJQ#%GlI zU}UkN>4vg`hNgL&-1ZfSX+(JBcNdTJTmNv48v6_)a&mdgwSiEx!`PxC>TWO&Ppfxc z-vQl4Z_`Eqgi6@*U#DkhH&@wiSE;3y^d|}ZixHgWAivslwcG2%E-1EoP9gc5@4sLi zMaANm@UUOwVAZ@U|DvL-{Le>GR#8#0Y?sXpyo`^3E%QA{oGVYrcT?T;f3w~+bq`3g zRw34v%*>dTlM}phxyyZheWs2&zF43;S)!pA4GNN}1(SjHnm@HV?R}`6oP-@?W5k@n z?NIw4Lcv!-94p#XRySMcGODAi8@2+=VjHl7|3ct#Y%Q0{y8HN`S(^XUEYWVw`pO}; zJH=DqMcGLNrlOwZrrup}j8qSFc2?r|bIr`4#rF2(6q%Uh@=(+4{;f2Es>P``Dk=kc z`w*b(?=`h9v4aP7b}VXI4QIrhK>XDO${Ee~DE)s~uU;i4R-d6qqPgO|d*_@&PUc)| z1+Cr@IiKyT29kL2btkruS%7uX(WvDb3KVn?FowhS^t{Dh4-0C zsk_8qFk~C1Mw3tESXc~xg%-%PproX;S-u|zdgYHvV$y1z&sU_i7ana>O6?LbD1NGk zij`>H<)|-Sz0oy7wOV7dsP({l6-bc;Ik74 z1Ib#V8DFUZ@s}?Q*+9H;akwh0HQiTUUj9K{J^FcLEo8s0igtq|L(qZ11r^LYvgSLX zeLUa`al#|6n-u03u2N_<*7&*0qE;aZ@u}J(mt}Qzh2&2(k36%5^aa30i}uGq_a8rg zFi#jHCv!yrZl&eDFja{Y#>z)3S@`G<%$&5_p1|Q7p9Zq9&AH_-#&?3&+v~t)ZeH`E zvVmMSYQ6U0Y3#dq3ND}pSi&76wo!)gYEJFu?kTmjiDv^*w8&w;NldS2$zfB`J{lm( zg_ag%6GspAe{bU2&-Qh^3l1O+ew(yyELB?P3#&4j-W4EZ1EWb#zNcc{m#D`bjeJhS zhE>;o?QYh8$BWR~QWD_QStKDLJ_sKCyZ*SrM7z0PwW29s9U{%$O2|wY* zP|L@>c>6SaOMFB8?wBxSe+&5xF0gwJLIZKqicWTpzkz`p1 zNj!)9WBEZUhZ|TzJ|e}wdtb^b6HD_;Y(4g3*@~5;YL$4;gA{*%|BkGZuks+Kr?(Dr zouO5TX1S$>GP+MsODm!MNj^lW$tfuf7#Q=@ERN*LDTBmzf`cRYbj`IBa`ZByid1v}b}_ zTL8qs=iir@#mWqUS$q?0(l50vKt{wsH16kfl(P3*D+>#BLe1H~y@nh>GD~Sd2)V~^6d8g4L4fDtBGHsm zspaaV)~oqyq0tEXVk*b|g>*=I_`6LUK={+8$b3HK0LJQ=xE&$$eJB-2k-4gNk(%|c zGC04`Y<1h3L7^xNqOvI^m-Ii}KWr{f60ptBJG#2|*?-BqIx#m%}FKd`m zl9GEVgOE~Eiw&n9awBVv#$ZMqr%4u;q6R2OY~FQ^&+kzeyWq_KoV& z+pE0Se@ahJ87omGOUPooQf0^D90(7J()J-Q)c$?oN&M~UVLV&&i^J9c171TTIBHY| zW~wVIr2?&0&88~G*XIjK{xPT+87Z?r0S4pTeDmd7PR`;3NWGF+GHeGwxw!2uW0aE8 zSM|AfNa8Nl^XpA&W@eRUSQ=Jo2axb?(Fq=7E%&=_ydd52zIISO1m?2PsGC|^Vyw{a zrAtpg2+7VU?1;wVvV6&1+n(n)VTy}Wb^Va05*9l`xQknnB}5SEs%zYx;vn6^euMJ0aMcVyYU zqoAOG^k%E$`opnyEA#{m@f$oWl|=h)FKMnNWg{aac0~^UHzMo)gdU|9B7f_bpv~3Q+(v1KSSKU7DbvAWdjFU-s@}a`PvJp`t4;Z&!G;Ti2{bv9iN=j`)EjWCXTzAJ^D@}v zEcQomlAHV0%|DO0XFj->_m#ng_)9u`moGL}R?DmKF#%lPuCQDt&AJ?f5o9(fNK(FO zzofaADAD0&<>J!2qrN>PAXsK(Vc7-3t)biT#y?*YWF*sds-xC;%Pz@s2uIDuWRQjA zCEGNPjEszw;9$%Ev>=fxYk-FFR8&Z{@!uNYB0Tt_qk{riPF665KybzV5|9!o14>;M z6C?I)DBipLb~N|W3!1Zp>im$mGBVea-O<3rRgjmL0iJ6g)XHVrU{-Jn$$Kv({OMq3 ze^#*Z9L(5}?$WrnQ^4LjQ?G1xd)vfYM_YSsMW2L(;NmAjcuZ%@zHmKO$XSlNug z)oy~@(ubUQZ>3j`NnZXCtK=mvIqwtB_>)`Yn9c(Jro|tpP8<}Z9tXeNyw6`AL^8Z4 zFPUXlS^8LJwQ75>q>+O1_DI_PESC+*^ScoM7n03w`ih*2ybcb^uMva^W}G)SA6NfO zH#4A1Ckobp+>oCPoRj5F9er?!n^)8n8uY(^&CbrAsn@NziiO3^J5}!{k(r*p-91sd z*%d+|FoK0}Hlq3a{kcC-2K?cmF(@sU{}VW}+~DEzc4cK`Tyh-`PrDR{QZNj6^cLjL zX)p)Mh00lXbY!Gq#%O(KN3@C#30%S*2R1q&;`v0rwj;RrP{6FG z)odDr0U{kf@*&K{4bCqVeV^<#@pA_3RZnP)xN*7+O3wg3US?sk)6qQj(B*}NXAtLF zWZfRDj_rjV{py<{gM;Hvx5&p9W0Tb-?;k%p?jF)f!i4*2-hC}+EU#yPa2f8~2rG>- zorAt(2KzDRXPlK#Slb7TDoZ&P*6Rmw+u$jYXx**1{CeiM*dp_nc`lC$j^%10)XfI! z%}7`<_4MkxFL9S(_ay&%!eXey&gWFI3_z1MZ=jK>Dak(he-PBrQ%N8dH3N^*Pv4bn zhzLRziuClBBRpE^d1<-f06m$mUW)P%6XfjycA0nD=$GSL;3SI@Kwvz0Grg@$n)NPg z4EV4)avcIbv^NnLDOfC`$4on1PkYCI+CG{V4_dcQqX_Li>J9o$UqkyN$j0_T@cxC$ zx*L%;)qOBw#1XWypgNl@;8|80UOV{;sS&=CLy30iqa!Q6M(xWB&h zFQ(^Hb>uS+m$vplAbV!jolkbGj#8Xa906Hka$#c<^zv}Zz7C@#C*M}! zs70MoBBX_L{sZ}1Id27rtLy3{@M#UYx)}@!mA5l8$j^tthdt2;OW#=OtMN0yD>BPTd5>Pr%$BO$i0ya6YGiUkz-^flh^ zo|TJ>PRW-S>oC8B1Xu|nMP*QD@zXFdzyom@TzQRv@Fy=Xg)h%>&b@qKrI+H^{Mcb{ zE;uVD28DTCNkL%<#0yavX*aVq<20Ya(-U+7gnxzESy{h83=AO)MI!Q@=rQGnggvKd zaUrD?ve+K3{*{hK_I;Bq2Y1on_i{m? zf(*we5G~tSTWeE%0?BW>C2Ub%HC~B!2Q~PHS94rr(>Kd3$v_IwC`d!*39~galA47y zK!yFKQp3Tpu!;&g_5FP|Fj>sg<)Gc_OJGgEdzPpqlokIaBw$wK=^Gk8zkhnQ*gj0E zZv=yg`_RQ)*wxkTXO;M3no=Y^Lc=jRTmXpV->ko`iPp z?MFkhlDL@j11BfdJ`j4m0+FR(aw<9er(m#3>j3`A@6?9`tXAILJplA($#v58ldncb z+PsL*8M1#_Jrc6X^1vUev0dpo*B0N910&1)l$19=k}icH2fqF@S;zu-w7+DN?XSfS z9BOE4;$?rfGU&^_u)enT>t@$&Gdm|oUk{8BL+>^txG@EE4;29bDf#4aEz#GxHu3lG zP0h^B|D$HNLC3CT4k=lSkBN~o;Mkg6?fg&P*X6S2@!f*JfAlE5&?L?WL1h*hSuH}) zZYS`2LW0PS`@V<&@#bxNx%oVvXsUTvL}v}yFV=h0kf?CgApE+#FlZ6t`EuZt!y%F= z8=JdZXSIU(K z?@5lf%Uv$@KcxB1fm!;iz^>AUhF>QG1K&u^_1anm&NVzZN&J!#&4DlAnWyA17mA4$ zB7%D6`EZlG;X;$`ua)S^OHre?i!kXPN9Sepad@kk=(Jd_9`tc zu1H``x2(WG!1DSc=pT36bEwzAbGF9Drqs7j?C7Y?|MHA1>uGr96I4CwSPh~03TOL8 zlEHMnRylL=+J^@)@XVT;s?iXtXa5KR=Q*M;_^1~?c*VwIsG6F(vS@ge>UE#+x|>IZ zd7R)nXng!QvAb%g_;tDpJJM@*wx05Xf5h(jVe|_kMsw=fI&$$w`8MDq-g!fQIlOxk zqZh|6 zBFf4i%z@0QjNdg76xPx4C$FNyP#t21IMN)qXKK}3z-KMym8JfR`V4JbERdUFDE;`Jj>q+bzof*(1z=8kTg2AJbRQi(vpLfo zN6PBfRhK}m5<*fJxww+35|cE?hW`B<=K_!R%tv%LJex>_X zd1P>q0EIRB67I=oa8CxSG>Dp)!^B{uAsu98+6-J=F`~(V?~n~pgRbX^(No9olVtKz zbumE*$QTU{w1<|arrmEzjJq2a6a`R%Gdw(Amj*61S6u%&xX_ArjCf1O?J+H~qZ zMKiFo;Yyxlq@rr1qN3{40kh`S`QFJ(VJqDwBy3gHOET05JODnR^wdT=cvQv&$-FL5 z0z;S}J3BGiZ9zY*(o}6TAr?xRom|yZpN=w<>a~k!%sWz#)aqauP5y3g#r@q-)c0>f zQFO9AJS2p;AtvUDT**jiCzt@QqC+NVDX{;bmstZ+mKEx{F#K~Ho0}If3lId<=yIIK z==+t9{jM1z0*9D{(2##{@KSkMS?~8vcK9H!;QYCLnwaSHSVud>`oRTxnFfdR%e4Q+ zaX`zAX_#c7tNV|A&}^W7vAuk`1$~zAneOI)w-OQ(Uug!{7>54--L$f_yo=jqguc!H zrT(Qpu}gQLv8Tx{iwp9%Mnt-u{H|Y+vi@~=eX_jyIS?(wNpxS`a5PMd2sw@9FM~dX zq~gfW&rh=ga3c*3Csvwolmd>DC545VcEaag$|lNw73mJw7oQS+tUM?n{JZ7cd?_+#6Fzjgb03E`ZA7dS&?xTy!SDU9n}!cX@Mk zq$v-{kXQ07Gt}yi!-HBk6~ka67F$ud9`aD`Ir%U&t@}ub_4r@EZGH(kek&z)pEYjv ziHOeqnHq<`>~=e3c}e3C#Vs&KFb78qFEIZJfpf~C9f1x1Lm+B+SV0+77{2R%A4NpG-n&{r8<^(ZK*XZ)(uFZ2Ir-kn zOPJ-#5M4OCi88->6=XWPyuauZdlz794#4fv-k8SXd|_={*H`_vh1P&`I8jpKvTe5~ z`5*J3g$}5_wP|hc>E*(^#lSdOs(DSL*Vc|n!?zfF+2F6 znb328x;Bn^L`s^%YPW+pY_E40x(mFwY$yxC5BwmX*#J%A-fdo}Zhd=yZ?D+;<}JV{ z-Gv)vV1Xkg+(0V^xDH;ht^4jjeY?|FpMU}SSFAB7H&-mM=rO)^>2-@=cy9=$#0IQN ze`el4+1Z$83d14^NN6~()aqTm5TkuU2RVWv>|mKHQp?ylYGQEkT>TPIrEuF;5Quk3 z^h`J^5~^K*?4}&(v+A)Yl_1Owue~;Ikz53?4P*2EPF;$q`C&If&N@z?yWjwL7ea&TC|c{ap3j+}v7oqp`6$2h@IevmU%!o)pF{Rya7eL;24& z8~0M@Z;I+61#yhi*6#F(Ee^)&W)GID)6$-{_b>T*oLhAi&&_3Hfc}j{(rWB@^Yx38 zevluiy<)9@$xWA+dvGwp;2D)sR~P*DnN@K|*V|$opJxCn>v?(R*?vji-2FWy@OUi9 zM`m_(w3*|&x{CL5J~4G2t}$O9A0JcKeb^8@a}+Vm*L5zJk4<1OHXtY~BeMy7bl;`Z z2&$c(Z&^?+O(UM(z%isA&8$BB<^mvk{S~NgwW+8+6BwNbfENcop5>?g0V+y12B4Zt zIzY2SZ#-6z8GCXL!W-8reoUOYtOB^l@i=Y}5rpA@z^}{Tak)?cO7Q(|7Vac02E2YL73zJU#4*j!b43<@{-7qLSx3e?cE9m&-$OGiCnvrH%<{Y9TU<;)wCIQm z(!xp$3uWr9*YigR7@`htjz>{QV9$p!C^9Z%@Xgm%4^wu z0y%|6WsQLCmi;Gl^8sT04SX1w|LyCeLeq(Vlb0uL4*>ghPtTbtAhc;N5ZJ>ck!($M z5a-i=vLPM)L+zb6LIaV_3E!M*H8(f6R=X>N92c~STd>urw$03FykI{j6LWX<;0@mD zBJ)F@6vx5g%urVXkqNrRDuiv6?iw73s;TjNYy22V$*bEPE3B4OvR_-axO)NxtOj45 zWq+~~TA>|ugf8CgI|cC}A{*GG`cOyjdkxoNZP^mT?>Nss>#pJXa8MnD~LH?{oR?HV<2r#zwDp6cTQ`u`u?XapoJpeS77$KX@o*e z7M~D}53GgH#@$geLfeMl;emeT*3r4SLW$urMb>e21%chy$*fOq5&5d+$r}gD**_;| zfQwK2C1RK|7!uE_7KH${`zh`b8TqP**6ei)x&Q+M=18-mqoX)bniAjijNDF?K2XZn z#edsQRN=P))>IY2e9NmuU~SLL;CjXVQ9@CXG&&51AYTLo-K;%Kd1t44eMJt8<}>&&nKbKO z^tb6h%h)e+D3*x)^@LIy+E}M|U?iL%?o}btf7ImkLusFBB_;gbB|~vAJTc1t6beX-26Yw> zI_>J+^HA@)xw(H3HC=r=qb?_vxO#aaZyMvIzjDN5^^BWaH#pcoC@5FGSRWhrEDn*5 zUWxL06%sRx3_>XWepJ=g9+K10h{B2G{= zN<>7XqpwfBwzx=7N=V2UnUwVVBNXd4{fX1gNBy@)e@}`cBGP!)p9Afqp{uKmO-M*q zFS+g8-JjRrIQrBOuRxa=XOvT@gr%*b07KBo{fVBh7)yui>&i5JeZfs~rz1J%LL~3a z!C6$^A3dHl&@DUHMx?YFOA$KQ^h?YEnl0jbWxbgH6k3Q~9QH)6ouu2a*s zvZy3AH34egJPeL)aq%BgcOU8H`&AiX;s5BTW#r@#=o2tSQU`yoIKlMH`5h@-nUCG8 zU z$+E3;94S249448f_P~!|R2kPp2@>LT(R7XND||>^NXP6R<0wWUqIk=1-|=UHx^t+( z-V6?GJc!{+{I@Df&BDpZsI&pyeD~slwjLs4urCa#FyKlHSXy1pd`d^x#e%PK_X0XQ z{SJh#OKOd+t?@0UAWNfbb8%6#-~Re!+ev|vQubecX8iSK!uLAIZo4S-Fx4Mr#9UUbX z&>$7~EQ!I3>g?`5Bqb*MgNEQ9AHT&cE6Wwy(XlozV-M&c2Q*hdJU#gdT&|I94oO(x zHNYjoq-}2ge1mizF8!w6*?hV@;4cmh5A$<_ia;tk@Gs1~48eL!3E+pJxw*M9O1G;) zBBE$veYB(mzH%vz8l@>=HyL?(X?%o+gQx0nGd8ZRJ+k6=gB~Lf#EgxJG(~#dxCe4) z+p}g$JBy2A7?=UV72x&YJEynRI! zw-3cO9aOUq0b_1=z09>9?%(a$k}5THmt1NE8e&MV5BNa*{QIy&cg>pPVpm*L^wmp^ z{H&}Uz33mn^cMp^9kFN6p3woxx`UseUkUgNSfL$0kzrwTiz_P&phLSof@A84Ml2jI zwh7n~72m#X{-ie0*UxxM#6lQd$PgY(8R8k3qoS(n=iqo@?J2ug?g`ckk`917a-Dax ze74q)cNjLGbH7&)L*Q4#wf#bxv>rc_;Jv?{D%A0*sHusU)6rQ(@P3n!BG+d0=u!Az z5Gzl8{rVyW(k7ehuTNCnR8-m?s7yhiY6j$5rxC9!$jW}EVqo}<^*)-d&I*3En}&v9 zyHOqpc(Ges#bT@NHd9n`!QUqL8T!fAc<<%7!JX*wS5?*5ttM}2GZ`7C$K0*7FJ5GX z!;@m2AO&tf3Ialge;gZIp;t5u(I%9naZD4S7>Wjkzdm-vRbXJC2U8g}J$-AxvrHJJ zRK1gmuOlI3KTd(xi29yLs<^4?%M9I_bxPX2TwTtQl)ve-02OvxZXE5{Motfdrzu1xT87?mQ#Mlfr*QO#Gx&*Uz&9P@gI{ z$XpGD6&ln_i;5RrSopBMtSk!nSy;DF2da<+swrM0A93%F7srjZEH#9wSDz@F&ejDz z0ZndXw4FY(_P9)YPft-1+*$rXg^AaEurvp|x-#zdR;(`R(ua47EV92L-yq5Oc5-6t zsak&XloAh5<#5t0{gEWc2Q_C6tJ58qPe+TdsY5GpC~fih9FJB_@5dso_7fTIO#T*< zAO=kw{bOP>L-$LH2v27;9GsIT$RJ!*GBTp~PIhxIl%WnK3J(v@%*w8&9Lm&N-a|#B z3_my(n&|Y*xQ9XEzW7SfxpjB#`uCDi{8O>3#7O_CxBU*Q+9h6pGZGat-+Ut7=MMae9c+v5z zRFBMzjNtyRE)p#=J9t zX2zqvzh9L}sQwo%*J;m#KW& zXB|jMHO)^{+p*jZrSrZ4je8Aj zZ=>I;*uMuS=_4aQ>5z~piv*UueR`l>RLrgbG2dRyKFyw|NYqU8+=?D8|2@?lLj6i@E5B=xX*1J~%0!STy{`SVzJL`WjpZnzI zcFW<(x};HN%(JsSIk+Ag8oCaE!n?pACbjqF_4Oe?fnBo$a%Y-5(H4lVSWT`V{GAY_ zJPV*T*V>dTK3wfL0uY0eEzJ6OgEoQP;2`ec5R*Gt?V%s?JAM7CuWD+}@t|hMK1N zDKNpGe5Nus$wh%9&NpWVU@{L6id(K(XBvoY|J$)aA}ee6QCC+%$jc*J(qPV&<0qSY zH&F`HA2vEXKls*IuYijYTUc1HNHLPD>T|fi|Izz`nbaACT~Y9Hf>2Q@He+zXf{$() zI^s;Z!?^J9bX{%j5d?AzYAqd|5QZncl%bLhU}5#GV1Z3p*@ziZGMTwu&yWLZMRmxzpEJ1I;@pa7Qo)(>yM0>Nz-i1gEA3z8m8hL{v!VMoRp7YYddpKOhw0R%z zo9#V>ZcKbQ1<(8|jA~y251-L$x&CtJ@f%?7ih_i7cuKgJDp{}F`n$35mcjYV*qG#8 zH_K?ifaYbs;30uXcIte?$cRcodb-{MFg$c9!R)US{*qhDweN4?nfxo|b-! z$GX}_VA$B%G&~$Z3&u<`9o!cI5Ttv`+6PwL{Z?ytX|^@s|15n1#xZlE%&V)bS%Pji zNp)*$KRwO^jcjeJ79dJhH_aBThbyqLu)dEc)8R=W$3;eFc4mRIMzkSJ>=od381BrP z$rb)r77v>B5Wx1Ml9DJf!N04W5a=Y@C&Xr0|Kr~%; zLyNh*IzJ4q_eNUS+Ij*m9Re{)njK{xJ#YPtCrZ%sf0xVFKqGaw)G5CdGTnZ4#hwMT z{D|-0Tlx+T{LvMAyrPWeBIs%@@3M()Y-}_OUOa%qqM3(>{3EDf^Ojql+nRGfO#{>3 zv+e>PTdcnL&QEMFUy4V@qOQ6RV7BaAbRB^yn6Vu8E5QAhItS)pz$4AmSLm`z z#X%vhs=D}O7}4ZoCrGGBOhUZ1TJLr{sN}?Vs1G^zOcc=3?ccZ_h`wp+6nx&UAtvSr zaS&vxDi>HoPohIZmm$;qlh4Qh4n08M$1+`IgC=is22s5{PENlSD=P1T=jGcTDIT}GETHejBNj9^*f-Vp&8lO9EY3pLw{X+Qc-dCTAZ}A zvr~bEkW)3Dq` z3$lEL@qi2jh?exUXKFr&!!!&B)vHl>{XUY{^%d|SrgAP`YEGK5@jQ9Cd(L;%&2B6L z5t-H>2G8q$%et*{`zw94)NmTjb6I}yu5PI#v|(hiy*Uzxj5YImZ1D;8o2Epb@Y<>V zUCD8`n?uAQbROq1DaZyiIOvISj{2vxwPoy$fq~(JhN_gm6A=+V%E?up_uWa~^$nlI z-PiH^B=kNpFxt-CT)P^vHHt~-K{c2HDwkryAz|?9=omYjuqp&R01!`irXQP_?Z&?m zF{2ENnjymR_CAkwbVQAeuXR$Cm+dbIBM_LXb;`e8Xk94Z)oHl8zHYg^xcCEE+Qp5i zl$2%wm6^A!fsi7mA@)_als*4L&?54vC@Bqxh`Irmng)V*oWP(Df}a{L9wVtZmKPTj zsFZG4X(1SXF*kQ7B`2Sq9=und1l&96*0Hgi;6}-z@k*MHx9I7Z=eGa2W~XXUNHM(aTG1-qo;Fx}$=jZu>2iYJsDp{jWR&0$2=T zYE-VBTrcqy4@B-6o<~I(Vg*L)!Q|CE7`D2)@roq{+++927G4gQT&B7v75stw7be!#PCQBh5ehSn(mY_(NmxGuf zZ%HscigSj=zkj~RGxU=Q5iRXng!>7Zh~+^hEmW~gm|9Q41?D+qnZ9Dh=&<{Kc`s1B z%v?rV+RW*$?dj;}nl*mre7=m@*w8R%y0#{@fd^JY8Mr3#Z%AB#;`2-dJ>RTu{N3Dq zqZV}NevW?A6BBRuz^IUedleId({#$6i13+(dZnda<6CtoH4{FosYNi*=$NAGvasL| zo}Hb!J{JR!xg|F(t%He{wzavv-RCY}P-Tq`B713Orlv$=Bi|_BpZo4QH`CeM`w?oL zY|V~kb4BM=0N_$7PZt)bbEm6qh=zU776Mqz0U1aX;^i%)boQ(lsKFJH7Z>;c28Q4@ zM@2blOP(ir>Q1xOYVdepH}p%AVI35XB^whrR8NR45G%1f#9gg!j?}ihFx_gvwc4TMG%8FsWzJ>>sV~ zCVMUOwLwqc`{;3@p(zh3D3r_p<8Q_|I4Jt`2=D!?RKGy*ZkMFs zBgBfKHeY#{7#lk15sORzSywl$a+W7pl=`97mHqdrH)3tDNPIN`s-hIYhF2!USTdy> z$m{leb&(wG47$91B&>x=c(;g|F^yQ0LwUfa)k{k&^l(B4lqUO_NQVTrIN$?6#V;b?D`sn9^4J{)scBZo{aK%%R}K*GZ|ptvDSJc)+Z2Q;j)9Sn zAUY{e*R)S(nkV;aYP@%H^+g>VcjMF z5A$~<>T2Rp$f%95u{tzXU9)9@!(pcSvl&h!I8b25^VzxTI$yCMW&WDWaRl1)X6d*3 z0s^+%gYIK{BO?+DJgM)PA#`7$;cs`lJ|1zJ6a{H26(Nyb(JuK6_`BX*@#KPVSwx%( zk{#~K9>KFBH8r&y@F2%b^RU}ra7X}0(n8(;AX+;ZyxE@`7#nk%(SSRyL+86%o8ZRL zQB^QFF)m44>LP0o5q_dgP5ov$K0#gOySG>YKtEZsNrKyOX^80gii>`i0^KLx!r~)U z%{pg4-r628SAdN6+yiuUbQ?I5Z+|)Df>q8GNE5&2tYIS{-2ISmBROp%`}gp#UGJYk z9IvmJ*R_0q;`M8n(UAPQ3x5`{tLLA!1qzh;p~>na#`o?+-LqeVF^@T&{mj07 zOZaN6YpXDKbbN_S6y2Pblhf1aaqp#WTlY$D-2Ee7W)>ES>xO&b8>ikODGPWzHk%`O zcShhdb>s=u;XWB=Q)f02>Ml@R=UD<$ke8AYK$Bz4Atola1DUJAEVRobm$%2es^>J)Fg*AMD *TSlaP z%nS!S)dav9!^WsAlKq>z7a?cAHBlPA+ZsR=(bo2?Oc5cN9P_{bqM}wHp@#|w8(SVE z3A2ejR%N(B2oj5i5B%(VfVXgVc-YUD{s|14Gl7N4S)}tHO`~&s!NLNjGz|POV+=0d zvk~COf0C8t{@1cjR-Y;h^&`M=!wMoIix0eC3ceD2pL|akNjmEJzJEZ#zI^7eAAoB% z!a%(oJP;0zjNpMe{4i3ojFXXT@;luCoJNDmF>r@>;$%+l}?=Rli^FZv5!^1}EGng}%Ov zwOd{H-P|aFx*dkKklNi#E+NZ|$@dwX*wDJk?6@XKsy5WY2(>P&y%_Uj?v zf1#ln&es<#)4)J*yJQ|fCWue@nECg^2R7r~WD7ex0$^bv#;9Kheh1>f*Ue&s9x)*d z%>J)y>ukFL;9!Lkl9qRD@9<5rMpW#%+@Y2+Y+)sixz&30mJt>hFIr zDxF7Y@br!-Zx2S11pA^lMUW+&|7T5`Ww^r6_r4Z3JSeCUWKsqVOMd+tAbd_|dblEk z4BUlCpmOUwl0$FWnx2{2*i6i*yF50u+1=Cgt`u6TeJ-=E4qz*XL-|kxxyezGW&K*h z*qFatcoi&r?Dy>XQL}^sdhfl?st?YHVx=?bosm~iSVDBKV13s0e_Q}mB{pq1ovxtK z?X)gUBe7_NMljRS-u@LNjL8g5qwOZ5V`E3{A0L|;;8*&argw)5OvCX( zpZ9Pc;&(_WD3aBxtSdKR_}+}gjgYoa^}zS%-{0X1U{L6Dbsb{c7)YOW`{=%XPnFH4 z#a*??#l=O?)zd@aNjeKed=yZ(5`O1o1AwQpGIQXr0d`nu@yl54zfEI3kyTPcevE%q zJau%$fvuN@jD+y3vVuEYTW4_%`#mWFg4Oy^YdYZZ4l?~|p`r6#_p>Sf^wE1b?k=<* zPCV#)&`ml9%Ce{MeiLKPwLLvOi#On=_d-C}8cg+wr{MKba3W(JAR?RDif2Gn4IpoI zB1S-vdHXh&fs^xNZ$m>x*bR^Rw7`{I-|G(_>Vos~?q&VS_w{}78CU@;%|0Q#+B&Q8 z+iaKl0RiD17ss3FGVk7Xlbp;J@LSOWCe=GNm9;W`JU6Ek_TfWeEp&F01`$0Pnza{J za4&=-VyZ0b@;4$5;Z_^4J=w<}8kdV7;u4k$Ftq=U3asyb%u&cRpMw+Xg^~(Ij*bV- zQn{s7@$lLjvdEJM9@*L9N`{7_xIIqAI@`<3%y7=WAjZR+xP#g|&uZXUGzCkA%DlWC zHn-cAG5lLO zI_jZ%?s{~5OsHDtTyzFlD%ScOG{C#sf~UgJJzh81P&tSd58&`s41HR+!QDi&=@mvX6t8zLqJNF z;_`x}($PYzwx#@|5}HR86x55`+oOGRE-cg4pLe|?d*8{(C{|f4iubn$(9#?lt&-0G z`Vu`h&cn)73OK3}F$_`O@ZGev=@Wp8>yIxz{rXZEICBOA!bRgay1xGV(^|wye5HSo zz@UT>^T+$MJ_Bum;3SfIEc`u)ejdXCT2Yg zjD|`<$OfM56l7#=C8U+E*DB7CNP`@E|0~==2i};i2|zXzj>M@n=x4rxI}^jf-kv7I z47ezyTr~GHB{{k<$~`@sf+x#&16^XzZw0uWI6n)pvR2dq`pWi|{DHXwH8pjSk47-) zDs~c*F)#tB4~Ih)7|DUW(@&uX`!_vZot%xyBbNE+xu)vp(O+au4?J zjCc?3x_d)2GlJkN4eFI&U(9wpboY39ctXMK=tDXd5q|t&puc~vMC$47*GZ3-{{9eb zY_U9ELsQciN*_PIZ2IYcj3Y!(FU8EC=&q$Vne2Ua#UBJf&<{9guAVR;g@t`oBgVpp z!>@O~Q>PvAX$S@OmbMR9@)Pc}p9<#YlB1gAcs*4+y>X+Db-eh?JNqp}K91AviY@$r|;-@nIsnr6VnggXK=y89x% z|ANUU&u7@CE^Q%0Xs$E-w-;<(G%9>c($G2Ws;W_6=h0nI$sg2)02S5o+$$(p#gv^;4im!nju~20D zi#xzoJM3mDcw^T%Fi@eQp%F~S&yQ93Uv~?#O{_*R4=ZY79OE zniMSX(jPxAnuKmDyotOivVhjal(=7&G&@*k_wpqii`U_Y`@yIELBzzwpRZ?cbDy1G zIQqR70E%;3>aV#gxwl>PVijd~_inB1-P34mZwH@bqT`+M;s6LEfJ=Q(u0L0;GX8r8 z=$;TwTwGG$mh^##VoQ6{mh9WN8^E`D6OkJeGcE%4@Qc7vke;L6Rls!bTmJO619L!! zLDSyeH_)TeBMWyK!jXg(6e{pi54B*qbab8H$HfhQy?K|JRDV0zS5opfE5}+LP~Qvf zMOstV5O&^`-IztTBZ`>({AliG%OggZZ-PJSf0yHpqhJcj!^|uW4!e=`GS69d-|^|F zR#qB_!(3Mq1r^n$;Dr)g0}x((?GI9bbU;eTOhjwIM|rI?+`_-N*Q7bn1=s*#AnP>~ zBQ5v!m7{(9xZ3gk+WbOmSh>*E9+C-!M12PWZ{y0q?f;|cDuA+DyEUP-AcAxX5`y%h zrBjiVM!LH@L|Rgi5&@Btl18MZyBlc%>F&CVf99SUXB_3o$KG$O^{gj0^-_%E;#88j zwZO^uQGK1D2Xr3K7VH%jW7fENc<|nq8vf#ql*)u_Y0#WYBqc5FGq9V9dwY8~tZZ#X z@#TRvWQU2-ZwVSa4)*Gp7`E||k=G!V&GCQC0zp^#cWD2Ahx8~{0bshWVGlT6;NO+U zf$bfPaT?47;Vt|6Az&CnDd;{5r$CourVbc}aN*$K@E{;?a&d9>^K!%HU0!pmK(Xir zXmV(9Y^->}+4}hCh)G2`_Km4IiBxi$o#~a7uCA_tzetl9UmAEcPlkrZJmq}KcdK-G zgTCPW7!g?#2gV1)knVT-1Jo&swmdX zwy!Fx*xFXL_v&zV#Rdlcm8x(8DUm?z6WbilgIk z0cX#bk`lJWdiT=5HZWI@(*Y621He%7vC$JDK#Uw#35WbY2mN<)0`7xVLO@kdV85S+ z3nRx6qDFQhA#6Fhh`^Vx(vKXUd6AQCfi?UwzMWlT6wdQTZ5aI$HJ;D9&3Bucnu_<& zKoS&JEiVPHzH(1@u#LGnng4Ld*1a$DA;KO}5u+C!ar%z2Vv2ZL^%TaQKgKT+up1Vco zE%WpuEImaVJ3C6rM~<+4BL_czV9O3b-PRwm@9kx_`Ynt``}AowBw)UQ*gI6H=W3x& z2SG&4rI%WfR?y*r<6U&6Rh{QC$w+%Y=mLH~$zuY+Pk$p|?1)PY4~N_RsY9r-g@^sz z*lQrvkU*wJH)_zb0I%B*b6VKBX+km%0Kt`(n>qdW;6Y@vS{2M|@IQX}tgttL%=`2O zFE5wRS&0?27@^EGHh5_F2-}5Z_>}4QjzO(;1O32`AI96J zt^_wodvbYgzsGI?6`Ye=Ol+KjC6p2GUYHr(tyW*(21^JdeG3)c9YbUlt9+GS5L2H6eU`Gr=cVsb+ykehkqO`~06zh|=4jP7vWt>*~rTMv*SD9DDW!X0MMiuNGFJ`D9_)DT0auUo(Qzw0*&A z^Pf3u`(y(&VBgEjwV7zrqM}X=?|$8V9sII!?tSl1G697$BPVA#|6P3o%Vq_{QwOD= z1AxU66&#GxHK+&SwiC$?LTuK9hy|tondn$Abz8nB5poTbdZNO*%rDfc`~USJeFsAjSd2D26 z_MF2=qx6EV9bh8~z4`A*Qu0*mt5c1Aea|=R>R-?B!WJw8Cng)+o+_M;&L~Ero@V97?;)20=q>A(jxZ=Y(Zh$YZU+8q_qw>>%Lw zqvSz;A5_M2KXiT}DctriENtb|qTClQEjWGXK^QJpnxRDWoet4rDI{2mLD6O(K;&j; z3Rgpb!stQW=Ki&Tk*X=$jOb1ZFfpZ+ zSJW7FU_U}?AflwiiG+fk5gQA)Q)rkSzvo;Fh6D^omoN^%i*P5v|1u`zbK&eKCT2+a zGS{yElAGK00dU4h6y)R-O^*wKi&g8xN#t{Vjf9Fb{icj&@?kp)710-S_Xn^h-zkf7 z)ZY;^EX>UGZehMUUuMwM_x|HYhoH*Jr|W~%0!kNdkQj3Tk+lvHXMpxp;6zd2ke59L z6$n>G3_B5iJ0cr^+BfUDl;;ch?QmbB5Y6y|^WVGVYl+R0G%liJEkn^4@wyNmE{OM>jl0RJEgT~4ky z9|(lG0Resql8h=-4qJTLc3k`vVRIVY{-`(($bPHFW)2R@kn7^ z2Z*_4V3d&wnrlOq)&F2Z9!A*+Mt*>Bpeo+2HfVfJfJS~wgj$9h84ymSsI0Dz`_9tJ zK1L8xvJo!-&wU7FK5U*5k6B@>EKS*eWoPg;cfq7>2)D%Jr-YR-dJL`=9xGAUIC0d8 zNi{W|Ny-u+J>#4H1e4tXay-1JQ2PAJhEz2Yn7>u@r?YC1ka^2ViHb%Qy#bHB*f}79 zD(Dl2fTV7K{id>lOEPBem)EK9rC7g#xw$*fqa7&MFtb1XyJcbEEyymm(_j~pPn|fR zN|sBj`srrf33pXM4GifDrk>8F`(7vo%TZiNuP~M)LBk~b^5q+DcJ|`WcG~FZVLsW} z(b51$1^p}5)|_I?_5rK;-wFIz7n^=v%+7j|5l4>~cGgx>iIqVLzBB|oTK2}R&R%B$ z&l~9;n1U5Td6=BN2xbR4WqILkj1J}L&qmYQH1!X^U}RaDti&?F zyL1T5xaqFt4kG~&m?mBo4+ekyXweoSj?e%v`B4Qqb;tIGr-maP8Ye3n8X8D@5u|*! zc5e^KQX5VC2;KRY$sQS-tlTGbWbQORs7Oy|wZ1x<)7@SkA(?gi&Rg;5=(Z1fJuU&1TGg?>$yl#J}# zubP^lcVd~|*49ETIEWqRg|0c^s)x#Nb_D8gn55RcH=p)C`p3Sq@H^n;AvyHO8R*rQ z={{9tej9Iwo5Ti|Z>}#*7Ir`Zjomyu(BD4@!E=Q=GGBW8o?8LyZ-uxRUIsNX0vk-g zc-`EhYuZ|Ib`KLjIV(f-Rf9ps^yPq`uKXSB=X1Hu<6W2rIdKo4#C361yXrQ0&;A_r z+1}Y97Z)vuD03YIgow<{dUKJc(*E1W(`QF1^U*T2OSi)>Hs{DO1lD}PAdsrAkOMcF z@4NMHdk`umJ30w4qo2x2OA{8RJ!jypb*5h7NS4b1;Nd4P|8)2byiACb;6Omg{7OZS zo^%XX~{Wxqz9AGo4z%4 z0`8F3D1MLtD9MM3R~(RF{>z0NI2 z5uKqpS!`epVD%~3f#vk60uleu>8`N;1r!zu3knUkDmW&cG+$l>->ff!6}d$u;^wmHZ!Y5=qhyObfdjX>UQ0JhTeYH7JAANTf{ zlv|j2{I@4dBL{|tvPpzIqgy~MFT4KFJj}3EgE>en1AO#wQ0@mcQ6Qad7XQ2e74aR{ z)bvoKw$>|0P7WK*X6hgy0xI*iTQOP|8k*O$&CM9D5qDp=y^Yh=-PMI=$VSvVIM{gx zh-MAMlxx_&uLIfl3|PQs0}>>nhWrSK&D|-$+r7_f1=Hsb)k<%4z-d!eNofeY`wP^3 zSg;ZPp{6h3eMNutwcEVNBX0RMK%fx&^Ku-QP)KL?1a&Qn9CQ*Ryk^2W&VYuq&KdsNxb_!ap3ey~H1Rd0t*8);AA_1wgh}fA{7g2hE8)_3+?8Eb1DVHd=h!;Ji8W z7g!`_-!lEKt!VZ^w_!(!C(N9WUkHG`7)cDPZr#_MtS?L7gZEQ-R$>?_p(&3s3l#J| zBhCMm1)WDF7FI;}lu`4|M0nc}_~4?u&H%)84fh~we=o|z&bGGu zDL=&M;xrQiuU1ov+d_gnN9>myT(`Bv^z{`(($W@Fd@hglh~eLXb>d7yLV^YvJf&H2 zcPJkP-%`gLdTnj(@Y~-3(r*|15MUx*jf~`Ls@W#1t(^iC=eL=)wQkdGZAG%`6AQ-; zJ{QHz%!T=|PEY~@qGiERE40*e9*z=FnaZPYq=5$d+qZ)6-^uj;34x{VlPb8>+55H> zXGuOKCN8@=Iu@N9tN9_hHUV4<)_|&L8x+_f0r5Rgp6nr#$@`C;Es(_iPyhbf6OUH|pNEV*YYpCrWdf^S)Y_2%QLi2&?YrYL!4;ogn)sK=!L`C{ zgE+~L)>d6Lny027TOxBvDJq6;p6z!&1?(msPA;O5w8Sd|Ow5AMg@w)!)aG5CoefA- zh>7`r17&P9&-~f5Zo!V|5Y{e84eT5cE@uWZ<7d!Y;h&LaAq0kmSXNYsFLsMY( zXZD5mtCv3_XzALS$}fI={fa>Q!myMm@Qp18FmUjG4jM7Cu!J!rN=r%Q^4Z+xrdM@l zBo9DG5OzmCwLgfQ_w$nn1;RYd=D3gl_n#msF72)R$Wh{TD&NUfKJV-G2Q+HEE!aZI z$rk)(1FJaVGj9X%!Xwg~z6qfFv;-f==xSN4kL(|BPGGWtbWn8^9E)_U6^_y&kjHTBz>n6#Z;Cbd8S z2pq^6G0j zoLK+B9)*eVZ5Ghw^Pi8O->niXtSik6IOvRQZFgRyVkfB*k&q-#%?SJl(DBAhnF%JV z)|4M?*;+UyzaO21{`_h8_$Y}O13F8WfqRkq2IirH+Z!80M6fovoGGug8ZRtqR7iCF zZV|re=>D|be%~Vsj>WBpSoqz%9g_cJSyg{4^=nKUg%F&zc-@nYF{TYLje8oCc6q+` z)l`sTp!E{u%&PCk$JT!y%;oQrHr1{4Ey#d$!dib4)PadOC8^%h1TBsu6m{9_sqX1$Jzr$7^z^BccU2M1xS zw-0@baVPfoy`wPD_9cXCc4uBlL55vLmuTAkIhuAT5{#iKm^r%Bj z>b@SBW71YuOy|(XMV5=VfSH>OoIQUOE6QwVwPdAq@(VT@5Ehy7R8>uIv&;~@o|dv- zU0u1qvxh8us|nPM={lE9TT~IfVY~n;g`osX6!XjW94y1co0yju-##91ecCZO^+x1+ z`gu(oBWZa!4y5auibe(5*^C(UrvM9df<~e>S`0grm=H!LnLu>IBTO7bmgb>-6jmz8 zq){b@x(ic^`<7QQhjnglp{Z5s7l3vH7!?P}3-?9@wztWR-USRFGn{`UpXFZr1&p4e zy}iyK@7|>gX!e~(lJZDF@z)L3eZt>zb8GR*qJZoeaQDcs?P7+cAX3ML#4_SPF0QkG zJJiESL1KuIYKjjvXV8)oY0A_Rw=-f(8anOt#l>cyGQ$=Q!X!iVpSd}HBs0Cvt}aKy z$8U*5&x`ns%q%URd`Wam!0On&dpjp5@{tS{*a>Sd1O>IV9TP1dJa)Y!dPB~4wwQQJ&7@*y z$xCKf=3sm&ch5Eg@6n?f(>hZuj27$uTL?{@3JL6h|M?@*KO80TLfpGCL z|Ng!6Q$ap>hf18zk)2(iuGKR<7~nh2&B>wO&CNDBfm{)X5lJ?>g+Nbd=g~(%s>i^W zM>^|Cs^5pLYSm(E%My$5w$Hr+<+&vymLw&p5AZ`a*5>MK?~{>z*}#o3%=yLg+~*~q zW2?dgOC8;M&pziWh-`H00QZaP#WRpUFxfCXCMOBv!IOPv9f0>9DCx}r23r2+gK}MJ%#p$ZEu+cT2>s*tn9H^?dHY&ZrWJv;lbo zL#$}I-8==~r(mvpk)g$w{sVlB$K##e>h<9_7f|IeaNs!`ku*j`6iRWg`kdUpO56w) zt5;EW{Dtb@_;JTTaTt@t3^F1_l!s+2L9M_vH2ngC(I_Ir!*`=X(bPr4NTrk<(Elz1 z6V5hPI_jSDS2T&f-@;5xW>j2UG87-Ay}Z1L2b!Cp>3`1g$Y!X^iFQu(aT5seR3Zdk!xMUIu9MHElCP*&1fzXT$V_H98jXjj(w0uApx58^qb)sX`<+_YHR6Y;ns}=-iq|N?v67W-2#*ls-3e+u2JSbPiB*M(0J~T9+2KRyq zXD27K+7oxEH%C)=OlW!%))xpc^&a5hh-y*IR5|Ewef{wRyG&~U;7aOn;jNjUgsv?> zhZ-6L&qY;&{DC_tK*qb?_nM!54_)Xt>U${NkDt77y18moqn+x*20koFX}+4OstaYH zZs4EEt@U-5uvYcLh2G>V?(dsG9VF-B8YR?XK7^~h2&`Zfdv?6=G2#vYKC=0vg1!?Y7UNkCaNaC-`wmWK|$tN4}KHwL4xLj z21|5QRCCb=0>rMe;NTRu2W2HLEX24ncm+_P-9s{dDr00+esFe%SCZ1dysU6SLY!RZ z;Oc5~w7+jvT2}Vs?)Px-C%@m!1s7$9Qne)QHz|YbekUhUE|9R%#cZ4+D;xIN-+%D< z3ff0>ncc+1MAkFn`#|szml*)FM28CYpSihi(=fCo*+~Y*gas?BLS@juSCE8esISjv z_~5W3`c*QwH>7Bb+qPs1&E`j9(%qW+f$Z)K6`j|#I51b(^u-{93 zV>o;IOeI(Ob4*&wmoN9iRk3|9t`B{|3zYOf4i0>Oztu!|XtdiwXS$vj7JZ|mN1|D4 z(847DfHaq9z2yln||&LmY@Vh_N)&DE&K@OPnp_V?159 zr&$$K?I31J!M|ZnWEKAwm}IdTE620A2p+oA{1Q4al+7hHw1%1KGy8urDv!(RRezV( z12qHLE2@8Iwl+x9=HJ?%xvvOt*`gz8zcY(5p#}k7Cjnq!AA?%gfu@oD@84vaF(B{rCXI?;t;x;yu<&50LvEh{KrdXtE(ge-ut%y zWbWZQ=s@X5&C^p`&HIW>nBoT&9bGpJu7pf%d}6@E5arkU?D%+tBRrS7aR1!Szto*$ zze`K^8T)69-zq1+O#NC)n*3Swg$MA)4(k+Tpf-*1KG`DP%DDjbA>Qn4{f2Pcitz7{ zK)Z(IzC1JZoE(A`2qigO3ZRkp&ISm)SjyA(?q9c?`y^f%BNnd5Od!De3xuZjqMNAx zk`CO-VPPKygT%5$yTbA4zr};lw*(&}s0v2OhCptrdWYcjcV=v?erWoF3VmJs`uZAg z@F1?cR3|Nu;(mrghWc1mR@OtFq{JIF|nww0YaFHxTJyh<1uigC;TO` zCfg$Z?ClL!fYxjpWMVcTvW~hJ7Z6aN6dqn47}-ZXnLV19$JqMxnHtI;?{_ekR*J#I z#B|UhoNH+*@W|;UZRX`0%gUj1dK1(NKS5qmQQY+ScoYL0lz^p*J^q|2+sXO>Z5IbT zDk!j`xhA8&1Bptn5y3!wW8D`#>M$7S1I021 zL8J0X8|#Yp36jskCs0#$V8;RjJFODAS#SWZvBx-&o-iGgmX`lpmgK{`cU0We)Vgg0 zcKxfG1Qk} zE+MBK8z28$bRdkj!%hf|+85%)GKDUX5M~P+57Y=EuQsD3%b;X5+GKQx6 zoFsR8uNG%#$0OP8zLsyqsrkKVUn2Nmr5Y3CV4z=CT)ZU<7%&OFz0S|&RoJ4*_Tyj} z`{eE^1xR9tbKeiYfy+oqG;@e;YKnLoxZIL11ffAee2mcJ9sliW6{>kj4&=mD7~MFK zlNa%si2_a`PhH7KP2I3iS>oXl7Me$wn)=r0@Vp&t7XBjUuZYk5Zv_w&Ti90E+<98A ztr5mR=^^xC6%2+?ED#Y9bA)hk8dLAZxD=IpIq(WfJJ;CG^3TC87F&W77pYdF*6&tG z83ytru}%hy=elaIey*;n#YaVjBqiwA*4B0qAX9>~{sCgAv;R15lS6*9dd#bSLqpmf z==E~;f#)Xf^CJ?fTA*K)Ly5__!6hgyjS6}S6$feQT+b}C`}giuKcUIoY|5?ps?dmY zMM^>O4Z~ z$W0t+(AG#2?N$R8Ls{8DX3tAZOwM7u#(0i(RG@T-e&0ku=v{320ThfpIYy_ImB*oL zuey4e_Qc=PKeQM8a$;cG_-y3(=_`Dy6;@CWY>C?-pzt2<}bi3uqUUd%Uxb_#lOt>^@}_K3o|^aybg>ZtU7;L+S#Rl2p7m$+UmVg z{#LXt+BQ6_oKvn3Qq)(*U;Lyr%8b!jos560(=jmMS5;L5a!iGwFaKX6V6&3AV=1^% z4{_s~67E?0nvzc!zXHX^F-TUyt`TjNsGOAV0cQ9Xn70DcrxNg!MKFJO8^OfHOGdH0 zxcKZT3^lCmc0)hQ!|-Sno1!8Q34mwsd$5%&E!XdeB_#vU zWB;7v5IWrcnF0(cmlfaZW3^mZmG^6zV2D{G78E3De6b1YL*wsj#cyl5m)6#vlRtVi z_uIDdZcH5i@nak9?sH~2Ne+%ORH2i)7#UiM)%b|l60EFxlc5I%>UK%o`xB$1Pi#kF z((5nhhk=e>jQ8+i6E+S`Ie8Hn)uQ~Bx&`0{L$CIv2W|NnUg2@cNCR*dXeb5(WEB*~ zJdZbA^mKHP;%um?sNO;RQ4Aa)IusOhugz!1$7bnOwJx#@gq#>a_z;+T+OZqd54q;# z<3b=0m&*%z@uJ=?!+pIyQrix)4OBxq4)yQW82on+1qG#@UqAqu<2HV#Z0P9pUPO_C2u%p# zRci}La4a7K)mv9e2Yic!;kAA!$ji&-@OC>Prq1BYQzYWP>~K#-L1>cee~TXIeFJ!U zL@;&m4?X+&l=}IRkymYt_8QMzT=^(AfU$xA@*q4ocH<$47?_}1HmJDzRn|@?9rof#MOjbBiVUB##1B5 zyIFn9-h}1Tg(Yei_Dq!%UUG*A}543OK z2vyFQgOGt{#80S5CT43faj}p7ne9I*{U zbp@*9ND%4~@5%xkjZnk+VvwRCC>S*<%?eIyS2wq~;ENyd_*`DTjHP?8#E*H$(FG>` zcA@?A=RVUtlZ0NE;!9vPNfwZyBJoQZLUkNA-Z-X1)xs^@m}!%jXW;`(hd7xdgqGrnt*borpWMnkVJU#R2NI4!OAh5NyJr&2r?GONcdWj|iDAjADm18v5bG8zhDS9EeGb zadkS(H;|kFg>zrT_1@{J(pN>g!9DICKHr1C>l%iJj?p0avI5GUwx_45pO;q$K51RV z`9?uxov0|ai*+|ir&->c4cb`UA;>|LFz7+7aO`Vue@QG$03piQY)kC?{M;Vv!z&+S zVvL@#9U$3%4PYbdeg;8wVpcf)7FJ4jVtO+6E-#psw6yrevgHRgRQKS1_Ak;NS$ciZe`Df1uG^k>%v&-+)AzzeSDIdqisd&;n5liOY2C<<)PX&X3 zz~x4DHC{K&{!7*@y>GAGyaCZt21rLl?eE2U?(-|KkPRKH0Y{w&Y-$S_XlT|zKEu?` zZGenaMiVe$ifipZ`?s<4_$81)ggrQP$3QXsDP0dCyk(K?+c#R4yG1`%AWRSUOsA=t z*+1~ud0DQ)h!wKDXy`J~-u~km4RXzA!WTd^>IOMpWMZPa*f1o=<~oDV*N9I4R>sA5 zs%I~kIR5+Z<2(C6q2Kgp4Eh!pZL%xqCbeZ|EiXrll~tfd8fMU!#$oh(sBo4brz9qR z+rvBX<$Xj1mpWt|A=mA+8L+&q>HTCY3?osiWoWW2Zdkh-8r$fOfNY4-zjh5v;}x9E z7oa<)Z_+a(6dCXIy*MH^oV8F;D4y<1xozW_7Xs@tLYSlGNqPP#D~qj*F@jzE)&*pU z;~i-uFf`A3tqjzM02r%iq{%LAc~|>Or8I+FeSBzQo;9Ln5t5g%utQq3v?=k0efTvu z0qSAoyhNdzIlI^_Zp(Y~Or*IOcKb6>LnE@KlHJ}9gNNkUq6>(vt3>NQOZ(>S`2gk{ zQtp-(@%XyBKPDeOuwVgJKLPHKW7#=5$I%g3Bftv%x4D^aYqy)^dvm4m6823k$bLLD zG>q5EO!xzVX~VDQd;ZkWA6x)#6TW^Gx!>f7oTHizSFbYQ!j<5#;OXiFe1K;VTN$dO zp;5B*kp|I*Rj(ljiMxO7ZlgSY_;B)u-9rA&r&b#qA4N;k+o9aP!F1p7)wO@_)j}*R ztC{J;x9 zWM&>?1qFr7W>y9UMe4h655^1BAXU2%4EJV5^E4L`D>NE0p}%s$(1AbvUUX?`J`IkxuKGO?E=r{{=$GuN@!G+Mhxd5l!Bwc(dWf3_Nq6A zQEW1I9#BMj2{iB2`M_<@fVqSJ8a^S^Uw`H$b`Y@;L~Pi-WWaU$6&wt1!af(DwnMW+ zLQ?Pv!rLSy$jqi0PTL5rLIGDavUIw;eL-*QchWCVn78S(ux1)}Po{a!t0ufMN=sea zs$g76-D<|pAspsQkRnQDi!0q`X=7zI#&1nkCL7pC)uC7(B=y>hrD#{H*)erfp^bsO^ zd}ud5c!NQ5@#*{f;pMk|Wv^w=r_FAzf;3YPbKLCwrsJ6=?oY#v-{c{9&x8WR>*!K1 zw5?gs-%Twfl!4W_Wn-^dY1#KGd@bR*wq>7bIm7-wY0tyv!4OJceSXVPnSz*@71jro z9qm6{BEmHF^0U{vkAKdyya985`%8)h;JtX*Og>D{mF0%`8<n(WxBQO@FTL{P_5% z>+2(HhTbm}7=0lZNe2NiwUYaotD1E5yLsn7jbU1r!0UG-2t562j(Z3%KEc0L6B7L6 zOno4Gs=+6G=3r&J-2Bt+!0YBz<&RW;)BamVyx7!>* z+x-RJ_n`f1?=L#>k)K{}u@n8NT|tojV9ArFS!JDf41VYNs#BQk}#DJx3n4Xu%c>$@>*p%%RAr4JWBQ zb_O9%gUrmlt<>VdgD}S`I-ifNZ1C|?ff1hJ=UB(Df7c^zzXzB02J@ zhCAEaZM;sa);3a7Ir1uzOH1Q?=t0k6oXC?mTgt#_Q5*6sV1FaJZ5w+`e|+ z@3x+z*x&?7SXj7wZ?UDff{(IDtYQEbg`_4c>1X3!a1VlL2)jZ1l^<^fUg$9>8zrXa z=F)3YEiiEfz0Qa!O$Ndi&w|E-VY8XC2Qw3Jdsk)AdHtAxUaEx{4M zpr_+wV@zDc2jK+IOQwI?HFiq@HzygNpz4pR_HqGJrc`8BG}$?}blh@gw-Ot^OK@P7 z9eZ-lJqWTfbZ{ueidM;D0)miZwco91OFWbMeKZ75UPeZ}OYjC+;o`xJ@Ky5%>!Iun zfBK26#1}7KbP*7cDX(GIgofJJg0DcvbkcSksolN7PU9yz`J8(}AHT$u{BD^{H9 z^j^wvb0uyqRl97OP6VJfKJVC+Shws^V!*d<4gI<9&d;gJXYQV=DcB#L<9X+O&*>6X znVydGRM0zU?dBR4V{{DHg^d3wQaF7ek!YrYtqS?u>1Pxi9JjK}Od8PseK0l@qv>98 z%od?ie50oJGCcehZG3zU(=+%IM=X?;BG0Y)+t;$DIj$j=CtC_r(ot8f zDt24jds;PITpfzkMC^w5t}~lf7o4|hI zXg!y+2wWv!13aKRELe{icq7Gk$}qvetB%H;rjJup49%rGOSE#>Ee-d zeF|V!Eqzy_kpn?|&f!VV-P`O-Z&b`)Bqy(*Uc5TTbcv>L=|dwFL))Hj9B}*nUeYpt z0}{txBtF-+#b3#ir!X=y`U3uGucmo0Af?L{lKxf!*U!5+p3o!R-1In5qyPB&3#VCB zC7dy1Lvey~$CyZT&MaFu}#`DxQ~N@cIkyZ|keGXfntJR`cGT zrhHF$JO~VY4xpNoVuy&=gI&!EX6m(=Fn~>sTw2xEnxTCI!nZownwlmhc+K#n)BS`} zVEQ=mY-SVU^h$t-VFK;wdf9&%K(9a5`NhGZpxO~qT+G_m{9b&t4dr)%*MGQpc-x_7 zso$vg{}o;)%h6FYTPN4o*S|Ofhp)#_Xe~Dm_CQQPD;$VZxM=qZ>scle*^S!SVApSz zxbHv8^Bw`Wtfc-(g0JHI_J-5h^ytFuEx5#IJBufS}2@Ax>Imv=Jm zIWw~?K1SHPhlpdNZ(aek4Y6VthCTuhKs{LQ;wl2%j4)i>#UIg>!i(3}r}IEOK(bgv zv*#uI79P&&FgLAlgUkfJHDcSNL-RPK^M-y5MRN#qfk8Y5)@^`eg zB|7`MEw!SX8gme*3VL*ZH8?G9oLerpH;9>AdjS>7N7KdWz|jBa0`z^hsJ9qNaJ+gf zJY>`Mp%cl)gp{(ew1Ua=(!~Oe5ubyAq^4Is(K*j>cW!nrpCs<-D+0~ygPyz#s5{T! zAzoXEiiZDDQO3q!aCp`cLEMtWZuI$(XP%6?&hOS=9;In(DjnPl$t^3brw+dCbQ&T2 zduBRt^NAd=vZ+!dGbIOyFsxk|P2LBKzcLsSev^`tTI3I)rZbJq6w7$iU@tgY8SpCM zo+cQG^2`tRXY{4uy&ZGml1t@pV+NG#YHNzqL4D1^(D40TK;Q?}^$&Y{k6mSDYoECc z(FD6}>NSPCvW@LC%> zA6ZTS!F+YO!!OTjKFrq2O8jc8T%iaAKYi+jp`D9|=hadSxp1fDbO&cBGE9!<#r3%` zt^wUy18_-nU1!=lGC%CnhKA+dq#|ve+9Hk8GX0@%K?%T?ctn}57?u0w@_5tEcXM3t zI5|1_8%O{WP3Zx!edOcq{oStdMT8`keo{U*rXY4G&Tzvi`|8e)JT@k#3pxfyzvNjz z)tT9VK41n12P-{)AT#-`hMF3kI2t23ez%*Jqv6rXEx3Dl00sX3THV?!8yNJI14 zd7t@)Szox{y56|pSWJfa4u18gYirAng|b9)ZEZ$y4Jpe*@3eou1qF*pq_V1tjy)Nx zIRF(W&?YiC=lY}GbWa@wP3-u%$FU3{a(s57&&$Q!l~#N)oWCP)Hh(Q3Ym!v6K;lGTGmF=``ljo8zybC)F; zE=#{@4a4i*nfIgmN2`uT9oPotT~xFJv#mB-@wPXTi`l#HOxp1tr7#LfzmIv7+?~6% zr2}&dHu-d+kdU&?M$D~DNsh6lFpOTv*M>mvN$JAOq1Lgc&M}_$23=- z!$#haQ8YVDm*PHv|62undMR3qXFAF1KYbCuyAsmZz#xO_`EzlZ%po*7I<5$L9_o{w z*_qLyp`k)(DZy94zswaoyz0p9Y}G8i&k)!b!`wF0%J2wu)2le2^49@(Rvg%1&YQ;O z%R;%CD$({K2dUgP7)C6@0e#tYN3DRbiJV9*DoCaF*Y_d)P2V zx1s*F+ZXW?}5Mh2M5lpfRpAHZ|pf&gGTFH-c;#S~U#~jhL(JYdK)lz9u0hy)zsv zaz9~y{q6OHRo)2eSmfQ!&1u+bf7#UJVX?8Xe6*gPG+Tf9vjq6=!4>J7Ba5e{M)O87 zUHFEt!WCUN$F~!>X>?}KiCDA4#HjHISaq!{oy?R~*RE_*s6XaerLcJ%&>n)82s|1S zh%ESUR@x}h(f0v$Cp&`i*h?a=w}D;8kAktu#S*)WUw)Lya=$oA zt}Z7eCM8`a!@~>r%9n!^uOP?ci#2yh=W?DN)7`6TypKs>_WdBRBa+nW1jLALn_Y!A z9~6x);PEov-Ad3*Ccka)j%R(i_xRsqVAOWAb8^;t{OxqJ9_{mcTls7_t>?8(jraMp zoyD`ie`$+>-a%&6?(+M+M*^UaKwZ_XeDMqthPc7ck2UorzxkkumW@rlps=vs^sGl6 zkd)>n!{5J&3aq=msqF>2{QBYAdbJlRsBX7Poy;7SQj~X_{teL(dkg6ad7YR=F*2gQ z0-GfkDFlQ%Wm-DAYS5tkGHs7o@6Vs^Bpe{)J5UK?anX63a`_E-n=>gFYw14&XH#`w z^K;yNdKMPZl?Y^vpa@tpJ#f>;U>QYKv*^|hZh-Uq@#ifRE98PkpYdgZHQ72C~<(H){BOPk_xU9Pdsh}`xdHTu%n8NisP%D zXM-*U-AsZSs_`LUzwt~om^GOt1k4)xzre>Nbv4iDWGZ)y(r>F;?Y&rrepi=(4+sTx zT;WZ_BvqJ$lxGKd2HJv^{QM-S_9+ezRub2eqbP4bCMz<0(rdht{>iKh9a&Tx7(x#;3V-FNFxlQ!mtMw?uneSH`pEzbc9M=#Hjs2+a6iUFa^-UjGai^JdFL--|T;fUCK?r5ksGH;sWIc>IfvR0= zVm*@L#RqolNkvy3ow}FgLN?R%t9A|NC~H&YN9{j8ShyOFmm~(5FzISD)PVm*h_wsRaD&N|g(%S^$7dLG9o}3)1E`MayP2H+Ko*GcQVEnZC zQM5xGHf;tpa}|{2&ccD(bY`SV$CQMa8m@ao{}+_ z&DFZ;RbqrRAHm(%oS(mejdJ6Utamw(@>6kTiNem#uDf7k1TOJ(o8H}y`qWMsy1 zU+Qx6nU?weZghIUjf@LM5;rQQ8w9m(ES#@F7!j*h^kMH$wS$W79fqZw4+rI+W*89D z3JKv(XnidyF{uJSh{DmYU%|>KG0)~|t@ph9$$!Tg;6y_I#KnY==q!Gw&ZFk}C-7-9 zqyq${9w8+VN z%d@iliCS@#GYDYpnDX=A*kQ5Vefz--@j@5}mg%8tlKp2%o7s>?Z#R!!f4(X*9e|pr zW%iHu>GmE5j$U%OnU}dZWJ4XOCC*!Ohs$IrDw+wrQMpz!*>p{i7L<@KcK8rJqc}{y z!sW6-d-&&%_dWzLNm`P{$W`Www70eKyX79@5)y6}h9CMr6m$Hwl|2;k>64G|#+RVO zH9sp|I7*8ScVSAQtW5<_X)J8u25xGD04w!upMf;vc>pou7afEiiv3$lk9JYa!6abr zj|dBM-I*w6-Bwj+0ZTV4fFf=VuP;yYT_S+ze(;1wotJ}1?tM-7^jN=iL7|U|fI+i6 zcJd$3M|>%LPw41uRi_5Q%d_&4-V2R2IlwYN4lDP%A5{#^=X4gw1^nEy(a}kDrmP8+ zv?uT0?4NRaO`8Va!@i$w8}eB2nVauA)CU`1aA48|)9XZZa9OGIC3|tfX}7Y5f=rj~iAw(^7|Nc_=&kQ2*xx(0&Y8 zmLIZP40o9JBn0K9PC13)iGIUusz7-d|oY27Vuv~`>LHvzr~Bt?aVvfSL` zmYd|b)W%ci9niVR)H<$cfoft<>lYb0xoiMRy{zA6(N7|Xx55_?&{hUQO25+|@LuWC z*%5!c=F^RVi7DV6E<-B|ves4-vJa*d#Tfz1u_-C^;GIXE|EgHxi7FU<)KfEBgs4kO z29@OJcQZKAOGlD)p(9qxcojpdbIRMHG2#OMc^VmV$1h#4Ty?YcgV-vI`=$iFqsOV)~(};x4S$k zqUh@Ks^F)B7kBU$?!n@6Z_8z9lODv;`}M}kWPPZq;g5X45hSLhEu5d9Z!9Y-;LV~_ zJ^A|~k?;-8$lak~=@^QS!T0j@3I;9$Lh)0KAhNgBd$m&a-XLq5OMB7PkeUwsDh)_; zE2*y5$e+&B*uClF390Dkm@KEC;$dbMB#gEh)|3XIF>+-1Nvze#M=p}rIWMKbp5ftL z4W9I$72W0KZeuZSn8a*Z8W2&rl;nD~*1(6sb@H+E{!-95002xQqbYjo>huGho!%=G z3lE4nCXL~*qF{u7p5LuY^)M8G343zybGY{j!X)xTqjYWFXfwi&V+uAX1MG6h{p@d+ zEai;z56YfIRwrSv6P?Hl$HGMD+FLWqvF@Sxu77_;(%sWz0tUnep#RvcNSm3Rjl3Gy zwqu`jUw%-Nm`K7Qldgl=UI$&gG#kzg;AE>pp9x0c8@NIgBXo^FTHBR+F zKvpj01ifc^I@t64z+^7nZ|+e;lGT7d8yf709EDW=DHcINqzP9mYwi^2IgJpTe>$}Z zS3LjFannc`B!9O3bN>8ubJqZCO#SVRmnjfP)&~pr#E+4b^_UygDl3vZk_iE&sP?TyZ-oQ&dZ1yrYx`1gcX*2C&yqh&II1pMv6~^;(oB2#@bLE9stPd22DInyof8t_M@3L8(aQA1^f5n-K zs+1*eB8WM8eJ+kTz$VuwqhUWq*smcz3_X6ZiZpBd05YvTx+p-Y_Snj6psQ=H?vN7< zdbn(M0aD!x@?rTX69e=Xa_Yd%(C}YQ$j@<`2SM6G0*7Vmt)F&^=pA5rxExJCX`!8o zPfV;z1kf7Dq)vzBXq49|mzE6Qe#GCe9xI^$_je2l%X&VBE+$KR=&7 z-RLLWt{_Z4#=8Z4DpC2@ug5$>iu&h%h)}(OGTkdDH8uQXa#90Nb(V)c18?6u4lZR@ z9imTQ_$Zq!?DxY+Ts+Qstv`#yU*s^a(&zFd+vj2(%M0YlGbPlewEzA0CYM?XB|sF= z+g$UPGniG@Q)>ON&>b8$b-razJg)EWwrKkhKXnJWz(E)p{ZNcX3hU<>ogEtWU$BqW zDyQq-?EFY02^}D#G@8X9Qs8HX41viTVDZH)w;He0U`oYigb5KcXtW` z64EUoA|>4=B1i}b2m;b6jYvpKcXvs5_kB74+2{QCjyuQLo4tv(=KAIrZ#?nv8@WG5 zP-Dsu&A(3-eSmtKx-lA|md(U0eCaSaO9y^u#H=a@39s4dvXGoWOom)=mMZ*STX18H|@E9JqLes+e$A zmO;7w(<6o*n|Aw+QP$}qa5NW0!jqPfF$|F6 z!IennBF%%y{8u2Pnz~uj-o6%VrhyTB*Y_R&PvaoUIEBG8^f-kUE}Q8^Jp3vF>BK}Y z&>XD?g$8>l)pb!~$&LbEYiK+pQ|a4_IBBRoCq#C5jK1gCxF#X0Y5AGBpJH1FphO2* z$i+D*O|lgyrhn5POM)ZCT`2oFM!Ok2#AAEEyZp`T{d<)p_j(-!RmnTGmGCILNYo!AD8!*7)pi&LimDcFpzQj`qn>0MV7k-`7`#2 z#`o|l$G*|+PVB8TuMBjy;_LXnf2`Ne;3Jatg!@h26s##bOfgyt3cpOM=~wH+U3!pa z)4r@^p)FAzwcJ01nBc+n83cc@%k$E{D!Qpuqf7|L!nU(9TmM-oQJBxX`}g9AWxsE^ zIj{XFw-c2)=cTPmGWFpY)JprS9e?1mLDIVh1lOE5X|}GJlK)=u`~9-Oyb31vOLs@zJ8~5?(^|F6b>l zxiU))C9c&9BPKe!3}oq$dlJvfRwsYzvzHEHM%%u#wKXhrbiRt>2HDxdev^kqV~qU) z4{$B{mL+v{JsyM|Nnz9Po3%w!aiyem*hd_d#NBMQh+uNm1nc)8*8c@Iz@e(DrI3A|wO$B2|mZ%<3p9onwmN8g8*3629> zEv6W9Zca`l$b3XjjF)uu`j}o~$^B%GXW#*@r_I(yb!_atB}i`` zB{s(M*!rGA5d{<}(z2 zS8E(BT8X~XXZ!-~dzi1)+>XON+Jw(1=QHGq4R}n&W9wK2`%`W3RwGBgL^ys;G4)y1RAM38moXl%y*d*ii&JQz#i5@& zSY@}I_*PwgL9I9!2{&al|5rfwAUWd###9{?Qw}XgR`*q&fR?j05Qo!C^^Gl|Dk&=? zv%!MG4&|NoygWj~g#8qa^NM$yRbrqxEoU&R5fg;&k^3%G5ky%ukyEPh*fV}kR=cn_ zis+iYCtUw-9l^lF}5`F_eUL0%XnEIvGqIoptn#)nNBt)I5YYiKEA9rD)Z8`Dlbn5&}40A z(DLa87BIESBQ8Ht8YlGJM&-`)?N3GO$37L)t{sqZ7h$XhgHnz7R1H`MWXHy4cJuSF z#wiq|n2Ufuo#0#;k#>!)u5R1Y>Q%_hen!feC=B`LLGfWMl^6x0C#aNtZ=ai7Ss8lP z5gRmmx$UL@QbMZ0K|w*`t!gw$Mg}UmYbYkN|A!wxl$~H@(Z`-EZ>rS-28NrnJE)sc zw~7(0oUTBmJ2zl^tHVlm@*+R{QUdlFVbb1Qw{`8HS_ zE>7<2ojWMR9~7NJ9*jT1r;bJrb!5A>LA>eqXa>STL2-aN!?`h0L_xRh7?S|J{R*z- z?{{wC3l7kdxPpe6@l#Ef9*~4>gVRgs=~yVBvuZ6M<(U@b^ne72{&;V#^81TirXL*k z0~vRZou*xacCXpE`rHrKWTaob>wsFjCg|ryb^m%I#}} zj6+j16*kxM&!$4Mm7a(pGtkpNF1`MB$?3Re(h34`0afSY1>!-q`5xOfPKrZQPWJZS z*YVB3DXJ)kg#h3ALvQaRUclNHM^H$|?>VEj!(Q{q)Wk%NPk4RSKq)LVv}1@H_9g4d z%K8MrvTR+PgGcrhNKwgG*eK@D2` zpJl2JO}SlN(0R2*HkaRw*{Nd;UgfNBu2mtN!jGRmeOk6z3y6qA*wU~pQ5ris{H!;e ziFo&n6U)s71O+=ent$cwyaehe4X657eE6J@FAW{74kTo(0XkE3A6#8@L8URRu%vTw z8Mm79A@~FBo7(;`w)?R7%$h|vR%bS_HPdl zH-I7m2r!|5ilb5r^p?Bo>yz98-I8%~(!}1w%75G}_^+XFP1 z=MZ8;oYFrxPk&mqW=Z;!-c~kv0mgo-(j`zY_}DpBZrve24c?3t3yxcyyk1vg zQGgGX)6%SUkMnr@_I*ph7>Sp_wEOn7$u)41d6~3|N2#G6VSDopm;$dRp9;WkY=3d` zuxoItFe_`Y@>!RGnybpudrAGs>eB8zWrsE#NjMmkEI0X#}ee1y0y8BS=Dm@%@ zm<476zSEu4xu97 zrjB4?exARgaR?Hf^>uk@oc9ocaB03BO&?f(^}}Y}oj3!){V3p(=dU@&#M&+h{iuZm z6aAh6ke>S3IUFRzTr-(8u%PdQ53$ndm6N`{KDt;|aprKy*%{v|Xf|5x&DP&ZEH_Sq z_VsyZoV{xq@ahn=?G|71-|2i05`t`_V-;m(&nL#1qT2XI#WgK0>0imhhf0>lLYtax z`UeYuF)KZ5$Bq+@4L|zV#dRZffUtss>V5N7@Q=%yv@~sIK*u9`GSK_|*ERd1WO?<8 zm>#vx7B<-;5`3>0+xr#O<$r!1VV1M8=c%_yru>S|7Q4{D z{$R%j;SMSMSR@u3qc?;cr#}r3Pe*eM6kq;zUE2cgf`w04;;-ERWjIs^5JWU?|LYI_ z{R{v8QvD8t6inLwpUZjbf9~f0{!0Rr%({_o3s1pNuZKkxdVAI+BCK@$1T|NZkH z&YS=Lmz4=eMA(@jBlQj=Ta*@+5tDo`B8mK5`_Nk~41?OLX3_eZ<_`u|TYy*wC52zE z|0E=%|6Iv5bIZ8ieXH&$VjSdRC|F{0SYi@J>vizuF1eUYAO;pi8U}>~CdFs6IlF+~ zo?8glm_MMw_y-Ze*#qB`JdxRuLSmNG{|ho50VX*YIVC2A1lIik%D4hQynMrU1x%HA zGXFR-|3Aod378G>7!CN9ldV{PT>g1~_*&)b?R|yg|2ePR^S-KoI1ZU9wwPv=vW#W- zpV@ZD`-P6Z5>jF^QsVE$BxT-&VVH$s%u}Rg;iAw9=r%%!XZhx_?8p(^@?gXy=OOif ziJ>w`G1#zRXa6fd;%NT?Y455XgFj9=GUf?#8$;!!xfm_p|9bZWGScLSL}aN%Vkp#N z{&Fedno$w;FC1o$1%r{}s=w%1`i7@|?C?;3Ky?S9keUVIHbUWN%-&BQG3+Fe;|`mU zDy<&}P>FqE5H9BhZVfIQb(R!M!6aXWSO)L4vuH+{%?zBa4h#jX@3u_hP%blgZ`8 zwOb1x!yDAHDVK!Y|2z`C|KEx5+be{78adhUOD8s&7`vEObK#!hVm`L|qi*E3Rb)E5 z%E@ImT0?{tm){7;2nQ^;Z@VUtO6*7>Gk6hcDBit$P$c=@fDR{;ZB`i!AO5+VFLz=5 z`&Ze7{c*~4wo2MZm^|`xwLTvq(-r@mTxL?9N9eV`nbIrI(agM@{KG$YcHm-k5X^0rklhM8YDX;ep7^tDs}rnKby z`H*lzbw31=hX^o!v-&pRwFw2F*z>d>Rt-+1q$U`wF2yMuQoXCdofsJKHmTpmBKh1Oh@1*b^NgR&GkTV)NbUer; zO)HgLZ?7TJmF2+j)aKE1eWbew#uWZvF;(_3$Y0q0eApZqB-@Iy zS1g7+M&WPiFQy_Xg`{Cv&2wBKDr3>TB-Dn~_Rpxm%V|V;dwWhJ8;0s^EzlbWtS;k< zBoCOrLndSJSLPMt*5hR^OqZeZ%@Mqx?%lgvc(ZK#j?_W>9VM&M%p$);?>)yZa zsfYBfB(iMfB+XLG{q38-An{lJt}MgM`ghiUZTrxiBF#ba{g>7yq1SAYh6aHc^;)!) z>GeNJ|9dw(YrU@1L3y}hAB>of<08)PPqT>2Z24fQ|5+0H>u7s%-=S*oKAA}v23^OK zC|T`+-X3By37=@#47P99)Xq~3jNaD!WaMluF-ovzUqW-Ig-n-+ z*}(R5l17EXf7w5r(DrAK!MY8?irLK`UsZ#-*(xSu*tI0o!6lG)^$fX97UsV%aX2%B z|K}JnGTwpSAp+|TQ>!Z1ci<@SpQ~jBdj;0Lh3QK9aDJ{#T5bMvIKEK0k#p5qC7Hx$ zJoDRDB-_Jnxk~sVMhMC0q*-USv%h^tfBW1iI`XnYk(ekMpB}+6TlU(m4Ow<^?0Mxn z68_fF<(>_`L)$~$j+StqEP8Imne7XmbDP{KpQE~5H~kkp&h2_r6(67f#R_i9E-ubc zP$jm?^#i(srih5Jm;aB)j(#M8F^N?I>bT5-5mqn=vXq8(x9;3lILLR(zed@^P^mIC zS;QWSW}m+3r@k}pIgs9s|GnVdkel;jr?OT(L5$FuPVC;uvbM8{6mCs6b9YM&w)NaX zzVKPO>iGB*-SrR5RazwHzcC1I62)JZ^D(IK)nU7YqF8(m0H!M9fn_p5@ zE?hM%DDWMV-oObzyEfz{4-RC5` zYZkhP!L^s-XX7?ir6YlVi1iZl>4aKVe)YvXb}Y^+WHNZoOT_b*^e?Os5t-G%aMGS| zK0yN!@B4|&>me91=SDl?`ub8D+G11t`5w%g^529!YapU1J^K*fo}K^n52g}-THzJ9 zS)FfzV^{B$q2i(9$d#p{<71mD$FftjO+T(QB@`v#;M{xF!ChT@kC@~I$;54?iJ&rF z1O$gWii(bajA@>1Y8p)5Oq3w6)t3+X@wKb`&4z`=1-O{M|1SM-ZGU4dYWdDR^yt-Z z8fcFJNMmZ$;GGY&oPVz5p#FaHop8ByG&8e2K95Ej#TxOoflU4F^^tAi8zZsm%=C!X zTrQ~3PYk^3L~Y#5855_E2Hy^?LEl9Lk&&qQ_#8?RE(DQd(e!>odIl?bwEN<;uivTA znsf=;?%W~shl(UsVGe!I#z3acQ}KqjZqI2MN~6D1kG4VONlr`4NA|@F#P8+h;~mSsg?`s+N|v9Ne3Ts)G1!ikspJbuE01~>p_Vi?D6u7ax@B4L( zkWw_SuJ+lg+syto^4(4e`e?4w($bv=59Cj$r)!P;d*$yXfQSVKbO}&y_!f%k{fwXG z0;Fxy+S0PBNad5Q|JVxCBmerQgu0;0q;G{&$Fx2BW= zG3M(gAKE7TU0eIZ!OCg~MXDIFl-F~+Yq>f)0-;Khr&p`k}yCTtPyX4<&x z1X8N1H8!Ay9anU5Sdf;IGW>!u2HE=cM(!aRSU^nYLi@W#a|y`9uHaJri1H5-!V0m1 z0xbvJ1sf$QN`MLZV|o8VG1uH2d`eI|N3tfP!azkgK{N>`(&u0=WI0^!uL zibCP~@X8O(NZQGP+M!su z^M7tzL<5ikI+zVCs;bXkYMd8CVM_%5p%q7texdf6?}bLJYF_@PBmP^=U`muCO%sD_ zaw$-o(n!@vE)-{cLq?CI<~QHIFck7dff`%%8zX|lgCCcV5FD^UfLShG1&z;NfzlGQ z@0G(@Zuqp*G!P{*cFW3w39|Mi^2;yn6P%@|3qGwVv1eS};sAaUE+{$< z?VO@rMn;x5p!_Q*{GVIKm6g?&b@vpn^Yu*yUm{qOt7D@qIg?x|Erp_U75n zGf{HsM)X5X$+hS{-ZK~7{1jdK0d}c{;IG=4cBFek&1VLolhx5%H-dj2J8Da1l1 zmU%B=j+RD%?fvSP5u{J;unkoxXLBGuminE|-31 zSKL=nly)UroK61$9GVx5kLR?ILJ*Ocz~6jxV|7G-2iM)fQo=4WRgoI$(&m9yjEY`r+*Na1xHuX(r5H73P$ zlXj~^n^Rg4aYL>#D`6GtKuVY){`3&HXVo9}ehe@11I$47>z#6Q=W%_HMoFX-&{|n|G;sDt-i{PHz zi1VuDLwtrh$1*F&G8a~g4&VXsvT~qTjc4m(YKXsnq!7XsysF%NcJj8x5_@;hUU#FW z;7!nh^*)Qqm+leuH@YbgSOoX62A&VI2reSBC%?hB)L*kawi@7XIZ*s)(L+YDdQSm> zTn>MP^Xoo6*`)^Jo6hz6$aN>7fO8hY_OIpc#Ps1oHP^DUf~6!xL|)L&{~04GdCJAf z8Lf9))cCrpO0KT%>dY@pTIgnMmu?1m#>M&I;HPvU^BZJ)gSD zT`gsJKzWS|0AYsK*577S2jY{i2HX4l`v=2$(4Sy<();;+F|(>*~%)kz*=CO)~-blKZ6vEMs+EBui0B8C9HITsxpe)v?oby&O^48kP zE{Pkc+CR3k;?K{Oe|f3(kpIDh2?gt(XGsE~JDU~fXQB9FgK}C57cUb{d5ZxLU#z4SFM|7Fs`z0!Dv$9`6Enql$>O zMW*qOH<(mR=j!-cEiH>O!Z1g^r22>c7%zVqL^L%t@Z|#0Bd#@fl>oa$YW=sZl@88m zzP5&<=-Gb`V}uu_XCF~eduF8-I`OeSX$(}rpNzquKIoaf0krKl3$O+mCniNlt9L96 z9RSq@Uo=6OA*xNgxVYcCGyw1z_a()}jW>4}q+g@81r-_7;EVzgFOk>2A&n+R_2#1h z+S_bpwsoQPAun5;4zeE!La#^Z%pOGXa)g8%Us2J3Ra4@xkfHn`&k|0AUH)^P$c zDEW?v6WCyoL8Iu<#U<`tVBiu6Zyg-0Hde*Qf2d7Kk-r+s-*ET1Eb8wUa{?k`RcNTk zOIO#V{_q{}|6Ppx_DvrgPu|3pn|~s?4i3W*gCqCRD_3R?2fAPh@`R5h*Q_()l>pz$ zOOi`xt9U(@b{NhrRHr3I-bYJ%`k$lFn_h+zKcL5ExGK`PBSsO2KDwQd%|x??Y=%Ji z%2+5^g6lq-ZcY)&T)?NxhUMWVuxK|uJv~hyDb(NNpnS8s>H>%BIS1UJtA$0%ufjs% zBbyk-S1VX5ii(mmnMx$Xy!^i&;o*Y~Sw^A=DR@+T3in>TBXWG}rU=wkS>^gU{tL^O z>})3{G&HM=lWcbehF_T-F-#@7d5pW4+(=>{KG-FK2FX13lgb}IthxL}aUPrTmzN@+ z+SG97q4(@V+qa1RX<^pT(d2fWel$gz#P~-60Vx_WIsaAzLpDV^yPs-EDxjwS?<-4; zIkx?af@(hY@=Fh8ss?sECG32mqT(*;VFec#$xS#>@^<{sVW(Mp`O^QQq2aZ(_&tK?=OF{#zWgpmGnFD^ny+|Wt2pS5D|ZFiKQf`YZQ7u8c$-PZ{K&_TXY#}3MSze-TZGwj?aE;Qme%C z(siP;(s^-q_jJ`EFgPK>ytZ}*Ji^{S4sM!c6UobJGp0Y`SSAIDFKz>sQf2vqA=A{v5+O$#E|KtQFwhsNEvYC;&hl}Wztoi zKYwn!FkRCYO7rY%ggD&3Kg7mVP|du^94n=Z-~*rx#H$&k-XdJVWk~sj@_sd^%O~kh@ydV+2 zlGg>KbWN-#I*E`ka5q3YKt8Mt?t@tH%-B#uqIC3&Ei>((T>y;T*8P~4nkrBTraR+K zGejY77^`bT@~^$T^fN)UD|4OgExY>(as$X!o&z*8I+W<#(64+MS`=n;YisTG#!dfy z4%fQih+Yk#*mdcTPrf_S_=Cyx40YV!W4-CE3W-nVVPVHqt^X?FYh#C8af&h9_ zI@nxcojCc&pz^275+3_EF6$59yWvcgApf!*C_I|gEBvP? z3%k)je>Te*x14?wF0ci<-D@y;7}ymMzM0g39n0q>EC*2&`_1N%x{*MC|6qsHzZa)I zY1fzA4CNqE2OT&}LSfHh4svo8R8F*$r>PbQcg2yjb9Xkk9X+?2r`_ey46|KH2KK^o zct|;WW`p@N#0hts?pXvgBst^np?TC6GV3d63N)x@Y<8px$}yRSas0tz6Jh3Teh!xQ z!Ix+27P!DDjk2lb{ftZSOK+TxIA;%`!u>0sW2eK;EZG|YIEGSDHA?y;1uO(awQG3xFgD0GJd+)dBg}UA05v{^aX};D-%b6>@+<~JR1Xzo|alrRC@>f4pWGd`PK`7P_4zw$M^PY;#A4b+PZ3H7%RvstnnGQ zY?Qw9!-?N8LN%Yh+IIt*kBY(UHKU^9YQ_^OBcmtO@ThPg#iNUmiJ|Zhml^bhlLT0< z$pfp@9H4G8XGl~LDy=QESBM}ajU0Vo+#4JQT~&0^B@hH)q%gOMyhKA<&LKM z`L$Jqh2IRayv$@~eigY}2zW#gC3&$Th)E*skdV>PG^)}^%L<P#?WJTE!4Z>U}tB~3BK<~9VKf5B+Cof_x98y++gA?o~GQ;>WA_vI}3_T9VsH&a!^44j9CZG+hZ1dc9FpdBC!U}Y9i4>XLF z!BLS95dj%4O4veine+%5IixPo31tjF5}g;cLKk|V`&-?6tC0{zF#q6JPK=AGsa69Uas5f9U@4g@>*p{f@GCJDON;^5>nJF&*&$h^n) zukBjXFnrGbh0JeZCX!N8A$lXl1E%B~phNzO&;7)pqN#}q53IC+(jSq6ltMvviE zfL|~|9z~?0f^KF#UiwpdQ=8ZIz^!TOSH&+n9J}VxqJ;-QiZvYiZ^1vA8y!7tG+lmq z3Y^YCv}6ggcm37p_g+d%@{^i-pL3jVM_8p|V7}K6^$ZbPIaca7{3?miaC@B`= zG(g2@VP}paCuR6nAp-;sNUEeLlV;^E>>}PyK_#P#>{x1VX+Z*Xt1VB=T@agOr;d6fm97#T3f5cjEEHke zc*8Y3+g553C5wrP30ZaPJm^&-+W+me2pqqG3jELYBmqL@_%K4=$EUt%2V9iKIuXjJ|5=1ycg_PLN?~ z*im5JZ)y&SU7o|s;`6#SaL<^qYtDWJ9I^%A3!t~yJAOd}fWgfRQ!Hj;?*48{|(ABi=k6Gi9mnLC zm6aU=GS?ocohbUz7sBp5&B65sEImnr8p-n2Jupi_JB39_(L<;1oi*yrlU(|n7cR5X zU`IkH{9{z4FeXQ(0)-e(F7ACv*i|F*@)UM|+T&7vBDQ^W^MO9oMg0NCnpBX9h|*$w zJk;LaaGT5@40SBuZOY{c+s=PRwTv^igxwot@Jz-|_LY7Mr@un2}mzT<188 zfsAl~2F*cUuSw>wtf;7~3p6BPwrHMRxWq3GX0!Jf7pp9J-@4@=j4hmea&n?VL`X=R zk)Z%)G;zFvWO*qmaj{SV{Nd?Q{ads4=!)v{-p5nc6I=trSI(&k zBBZm|+g|(fdeOn(pk|bz1n5O`I2{h562Rctmg{!><`9&r6$uk$7s@ZhdGNWAqsw8R)a+#^U@&{GGQ4nc+X=-jB>$OuaT{wyA3qwH;Vj9YNT3WZX zwN}0J^NHTgHz}3F1OP*Up+m^j)ROp*6Q=znfTVeFA6v*Stxw@Spl+FUt9kCKkNtby ziadm4mvZ2E+HK}JrDX(w=WWuTKksu@8cpEYrGWJ5c{vbizCt-B-eN!~|8AXvQ{8JI zRlg5BF}i+?`}E3eb#v2NUtRqr_$R0x9$2`3TKfoO33lWDv|wgX15N$%Wpo}m#p_>N z;d2@Ms;aU*J0|&(xj9x^N>dB|6|@5*xS&e;P@A2d+T*u3_kNk6+xjrcJ0JzKIIQfj zWl8>CzhPiM08m096HM}{kPmw<<4E`rq;Wt?DIy^Ad2iF@xfg#$=?)cz)W__>No3s; z!2hO!x)p(g@)7LK?*V%`IyS0l?_6D#vC!J1_GbL^=w?tb73J$>rLR2G_ZwL{!&~s2 zIb~(ufA0Y`EwHH1xr$OUQ+EjP!@|OnKm&X^SQl8u3!Fx=z4iU~=*`YF4iBRPF9P=- z1H*$7z};7;r3ua#oU{N7_qDmXc_Z(;4T)N^I}E>bTSH_sAh>hcnmmmJ67iJY6((jx zDU=|`ipL(C-8?e}4XGD^mK#XcMcJCJS)zqDj`LZlg2I>2qJGo#T#IfXNA&h76O;89 z7DKz5jAcNy*8^PM{NWRf@Q3~Ps^0*mq&$55>QmX}#81`L>rwt5Z|dT$xfxk1G~}9N z>UTxoRnlm0H@qAU%uUVG94^qjrsZlvNlhL7@!i*(^gRbb!6@Rb)tY-UVlube&gc3( zba5l&C}}JA&&eA)6ScbqkH6Xz3^s39-Cp}UWizm`MKE=VhPAIa$362XT508%Q`I@M zKZ}jnm&1Xf5{!>F4Q&I*j<+NRDZbh?WJ|morCVK94SW_^4iFJ@@vB^JDkB;UE%43#E^*lWW&%;F&eveYMbnYPA`<&* zw20y_Fg}M`S{{$-E)tRUej?v@xj2!X-d&)vZwVs`aNDCyp9y;SZB0NBq(+lNB4RMJ z-$O(yHt+^C6| z|K5FE8Q&`0+p8@!X?uQY!sHQ5X$w_pj?|lOZ_mg@k{^VR#z+1kq%=&B?H>sb!<2Cd zO5>CHEVOdp?Os8isL>hA*IfiLgX`aT48I6M5EMLm6W{n+4Uk1s*c#Vhm`!ywO#5K0 z-LEXZo%!i~uCc|ERwS#WN?j`d&wI#5D3MKOq<0;IC=;1y028aq#xXdeS^nDPjq6#I z+>@gqo{9Vp*PQI^$6*BKs)z_#VIaZ^bq7wJpLUK{e)nXFSPnxd?e3K6+Px;aC5m43QQGr6?uE zC)7Y-rFet!afo;(LtAiE&Blg6ZFV-EsE!-O!D@Q6Y|)Z92DWeRdc-KXj49#P7uwH1 zdQc>rVw*yRBhM1vZi-rL(pXrld!HBBkv^$^$0J6)b{u}!;=Su*u^r~S>`atP-jshB zz89=v@X31D{m#N2z_U05Iu(vXjlueY|ZQ^43HGi+4@s z@k=P&L(Zdwh)^0#uMLUQ1c*xwHZO|5)}>|0jReW(iRNe@333$}oOldR>DLMF7bkiv zD?I795PD&o@w#CB7M^(7{k7}wj;?OzC{w96(Y<_HfftL;odfj1)~BkP@e zM~$Fb6LENW_^Q3V9p|=>$o%ff*ZKL>48;U4&cBO`4=~yz)6S41Q#>OidPJ}eTq<4l zO!SP6Qq>$BN>?90zEf<<;`zIa=3rwi6bCWd9TF=XjVtwHe zLcCM{AA1|Cyx*aDd2)8BpHW-efw#4lgeKTak~V}^9C@7dWE}%q=YjW8QPrSFqC$?b zLrMIp)#CMQ6Ywu(H8wJusBLitn=?^I#~OHMFtkN_diFA)WNX*no{?rk=fcLOpt61E;^ATZtGfC&B0?|i+!L?|^M0lg0}MgO z{7P1kH%s{ph86GdPE4>4g9?j?K?$5KuHmm)42Iw8T?jvJr(oQxdT)N2#VXp*lfiMR z*6)cb+shnzwq;~oEK*!q!+81E>oO8mS-Hxv<)ei&$+zZq2fjq|r-dSzfPYriKsYc1lucM_@4xKe z*mgTcI$&pCKh~Qpd8#MC`r6XcP$@|u{aK`qpzG%>+3$Tapc2P~rHk7U3}huX0^#Yc z1#XmTX*~XSIAB^hDZtHLF+5=J`aNyc#7v0m=BUWaw{EBGYK3^7lapgGnx27y0CLm; zXV46YdlL<+G`zM~7rgi&dxqlZSoYD|+ha&y9XaLC`_fYBaS8HU+-998DwNxb@r(Ww zm9~ELp;ADr+Gjn_WD7*zM<6cw!pVwe(g zo13Gm7FGuw1Q{Ru;R(9B2dA9|f2hg_r{ffm-b|#i5DHJt$UqnL{K_{wS~Tl!dw4#g z-}4dB1?KY-%a*dW(cy3P6=h|8*enMtjcj}VE_>mZT2CA)MMOBA6f>8kr{kGzPv3Fy z@E}UJS?~dKn+=$K<*lCvct8pbTMO5?HLL;T2E1Pz7>J|{tm5D+CZURA433XCn6W(B z`0>L&R4~Hnv%Vkf@m$CVBBHr4R}ny5JEgbRfXd!p^${vk2ovp}!kJPF>4oJU7eRcT zgQFxRpcjUHfDg(R+c8(|c3kAS&~nIhc!-)!gUrUJatM4~XNa9K`3=7E<7TkD+jw%> z81!i=ASkF2e`UEdPI6~|!U(GJ1M@39vU#_T<{Gs-z<(>|?0oxbE;jbM(Ea-X@WIdN zczF@aBX}Ki_&u+$YA(si3vf1Oyf7k)_;0>7Qm}c(LrDBBGE%+Ptn20QCq{djKeq8T zHTmEeAlX>$^1u=wf35EqMcQXFhFmgB@u08^)MXdpx-OHag)Y>PS#*JtRbj2u)4-X; zt@|i^SuA#o$Tb>;)1Td3y3BuD&w&4}1sd_|=%8|Rlz%R{o}H~J1~9?;rk1aBf4jEz z{re6FhTN1Yugk;Y*NuT)OjDPguOtK5arxTSqnU`-L~YQc z2ms-Utdz{m?;td%e!IfMv>7VL*+)m^RYXMYwRK)17EV{GJYEAmHWM_I+k8Bu3(vmt zjBk&X;F=1H2fo`JmyHv;^EUK?S(+T8fwCm67enV6au_1zD@=JE7QXoG44*R0*d1PCr@-{;<$ z**_hZNa9>~0x$IL?&M?&)3=X2G}1DJ1|K2cZ3xCrG}Pt0;>`NcY-9_k9%o$K)A8xL z>)&4IN8-!jWOs^y%k-T9AHOeHf)|8RrFQ$%YxCdsU#=G_GzJFpg@uH;b@k)`_Jr?q zOw8~#aE>J3e(WfWA_0!n^?MWYjnSg-YT$iIL0P|%#J$1%Y6U1fghK8DbrpYH^x4DM z*;J4kSed26N*e+}ei`@CBW{JnwcuA8LtlAIkfE7e!sD`Mas|Eh<}DPLGmgd|1qFdi ztGp$|)>MGf`S&%3^~h2Fg`%RLrL~~w2K^p5-L>Uw7Bw)E8rU$akX%jI&~j2xh(EHi z*{+5dYUqBeQX)(J)gAmBIfgF9eJDz4sE7=fc zsOwh<1pb^z0(jM@CHASqd=AIIr+=pkYB1+e5Vq~^DNwq3NZ^M{N?aeNPOn7WU++{h6!&|HI9_QMRGJIBJ6oNu zJhzNXA4VpT+ir|LUuz0}=lWK?1*G}L=erYE_P*IxiRm}j*AqJ( ztYEUsKF+zM9nL?GDs|o^kE*V&#;**StgU4?^lg-WzKbthr+BlAv~Y28k$C-GY!%+G z8C8qCFD`4OIs;w~IXz2u{Ig%p_5^31xqjufujSx4Fmbbqxy)9b+Jz>>K;zuo%Gz*! zoUuK}+x{Qao4x!N7w@?`RAE^xck4Utka}q4qSsQ13!TWlGC;Rt`EBq#yB3b$b)m`r0j#kDzFN$JbA3F(4puTV>bW zOo)@2mew+fyGMSbh75{nO^OM_aWs^akD!1XH-u|KM?vx86Vza&Kb12}l=(Ts*_@M; zmL><1!B}J4Z)R#ihdzTosMO07OcgcMO3TXH=KJH=OxbSs=Er_WXy@MLSpV#jC?8(C zTwfiE2-jKvoHs(o!^?JsDQ{h3-eVO$tdyIZYXcf*W{E2&QjvP9s)FV~JY0G9_6dXv zoPT$n-7PLlNhA$sMb{SFo=N%mNbix8lQ$*JzFm^@F9xePBd4pHPd(&6U*xJMJk|U$ zy8w1U{BEjRU|ee1u(an)Ogzw$5RdQXZX^{yswpLvLmVJR25(rfxH0xah&PzUwB6)l zYwAi0RSLVc-cSWEhse{TxVTtz}FctXM<>f&>Eyo?kaD z?1CZTGX`-s8A__=b)Y&ivQ|FRpA14b5@xp_i)Rvzxg`R61-;h4d?{s**LjsH?ec&1@IGe*HR6g7i-tCpUZi z`uh3=Xv&XUS+1P`+w6N*mN!)DDPLJwJb%T3AKJ4$Tjz0JW!4y&-xY~}-^b@(b`&)) zzN>3@=hcfdDJ9#*KVe8f90C-~PtDDZ0DvyiAyZ=! ziI;CiPj-)NJpGH_{}U+r?&*ul%Hp|R@R+{3zVg!#aRUJ603#Jujodh*EtEuAFHTq! z<`zmywFd1WMq~$Czr|*iBSG9N`QW3n@2PJNy>?~|i_)w?HWc!nO;x~`d_f}q)W{yE z05z3IU|tY6GCA2_Z&reck8kPh=*Yz_mX1xQac zYt>BG;omMtjX_^C3QU%#esSON^$l|mWRKfpS5{Z|H!@y8MZPQG2^x<9f}FDZ8(M*6 zA!D8>!ZLxKH;_hi+d?&+pJwt@CBA{8Cmwj&$ZI(>W?4XL-0mGXt23L z)c3qYS^lHerZ=q5eOK$L?tbq~~D=`~9q|@+4?%CSwv2X)`}FBNl!(1Z}=O z5GB!P%=mh3v@`2dIglxS_+En7$o<0a!&3&QHN(L!VfEXaQ@?`d=h?Kr0hJY+9%|2( zl^MOYoO&VY)H>dtxdtQQP#-8&UP3zk{26zZ(o5Zb-HAJ2JQP1CVatWnc&lYj{laYo z%tq=vc6H?II)yabmXCPZ<^~4-OmuW>I3q|?OO4ah>R^(w%sFpzwYT&j2g0OKT?Nng z_!E??`d)SX4q1=h9c|3WfGj=48dM;k)$$-fWVEmEmLZEW4FUo(tmjW7x8Q)g3rm>h z>C;$`qm8Ab$Vl>Aokx$z2e02QNl$(`cQ^1Fd9lJX0On~LT_{HTC5QlRFjqw%~s#Z%nN_w!C>(%Ai<{6@g8M3zfAkpt)|fn z5#Mrg%b3m-#c*uSZi5zel{VGyC~ukw3VU#xdf*& zk}tyG*jO-_m5D+04Rw6v+ZeF`!5bd7{qRAkLQ-PV@_J`Z_Z})e)@s~Xsj&W}@$ln? zU6N;S$YaZ6E#JEefoL&uxhuhHZT%P9GHACE$(+59h#)@N7_;XCvzpH*C;t7CAu(Kc z5S|$AO`K6p6-s{+hmD60>aSHgZ}^=+uq++I+()E+ji5yIwAM>lik*|Q?RR%~wwhX^ zkn_$D(Dl=Lh|qgstz~TdofE_!;tij9{ywB2^Pa@r=E`qrF`FBa^ar(Vbpno8$x^bi z7MH$=4=ii7)E>0PuJ0w>y5*L&wWW&6^?LMc?B|2hp0pJ-#sd3S&9MFyngcij3ZN96pCkt27}B2_BhM~YLj zp&0yecG^Vob~q}nbeA=%YwW+qK=4LV_M{sw)R&LvcM59*=}uumm%R&N+t&Jxv6A2f zu6*u?r~+S|F3%iC+0WYA9y&}+xQKzR8A{p=A@>``H*hYxf&|c3-}ldZT?rLOZP7G^ z`q!K+JUom00S{s)ZXu9@lgiqxK`y830Z#ASK3*riR8t3CHEd#rGhOP^bm? z&HrO|7RF0?5QgG#4J> zMoN~3jW_Gk{sNP|yzFctU;w9pO}!5Mvh%PdB%&-+5TY3rp?R%P$y&97kJPMb~#6U5m^TV@_M> zxVZ9-&yP0g5D3*u%lgS2r5A5}F^R^gL!|i~ElJJhL|nA6d-%a$^{MG;BGj*SEF1NK z`(`a8)4K0h7E4UdlOxnZ?)`o%bG%V~Em`?T5j z{tNK+5QyUZ2ocZE-5&Z&Xg0XN`cc`T%B_WV@4i4P%)N!B20gL7oIYB{#>M=ff6Yp+ zpAZlbeDLx*$|ijLILFrB-hN?eiEU%DDih5=l?=U(+vSK37gno_OG|&FAk$?W9_J*4E|P_Yvgb@B%5!?qh&1y?P@BML@F#-@$wx>p@dO`0fyt#d%lC4vH? zPMxm>JH<4r1Q}}ALqbs|^GVf7a7pThXzRGzy6C@t`{$tP`po0X+5WxxpS8z%Pl@7W zO7f>q*Qwmx+{P4#qSq$1uBWxyuU{LZgn7r}zl>KZFD+FBc!<7%`ttD07u7*v>iu0E z{5VYJble)4xnyLts+7`6De0Q}p>t;Se_VjV+2smvUb9%=Tj67!?@A2ZP~u0&Q^h5n z;c&Yzsr9=>#0b1mu$`F;I30HcH{fY}1ZnWNtG3+G24e4>^1@5ITv1k31>X>|{;0A2 z9Eq_)qQfa>)z#I<^z|3>A@w_-FIxqsUyQg|0?qp&MoL*!r)($Ox5z`3MQ40vqJ3eL zcBXGopQT=6pjARQh=sb73E39%;$$n2V0WctHd8M(mw@H$eD-~FqGAA=kesohp>7z# z9F;UD-C_#lxa?>Zjb10P0~{i4M(6OKUHc+`Kk+S-Iml9C~`kn#K>>1pgY?82^Po0}9nk9M-K zZ`hd=V>H;6)z!_37=eL-f6PsE(F}UyKNnE0`FP%@FM{c^%<+V=3d3A`wAv26wavh* zI5sv`Sc52T>k46+rYcjcx^k!hzj&WB;uQBioUy}d=K?o+1!d649vE9wA` zI;3yeVdwM$i#di;oJs)|@F{w5Weqw%B6;5&bmJzxLjSIo@)(+58O5{erN8+mv3kt7 zpNH_+@3sPr|hKQ(72#;8}r0!yE^8s5ru+hI_1us^56BDA*aBtbfv^cku zZ&N>At1QCl_Se_Ay?+|?B&olC9Wa!a$1!~C);YmIX~#(M2S(Ly@SdmDBgy>FjR!lT zQYzWR3;$n+qO!&-^U%$erQnb?AXp5fsbRuwH3dKEBxV-v_Jxxt7TeyG0Ah=kmDzm- z*AOKR4i@LMW>~D=b6DwjZ|;@(@g7o!T8ke?fPqsa?5|hZ*>TWkY3HYEuKT*Dr)kb7 zii6>+@gF}n-Gw6>jE+Va-IWMm%g8W4r=@*=2box}rA_SqV_wIVi7ox+xKh0i^5#FO z`8Kl^zX|mL$UOyoD!@ap>WZT%QXYI5u~a|*TN{2M33Dqm0gC}~HM&TiyqlJSl9KnA zmRn&cH*W)s5o!>{QSkTo?}`VjHFZt{sXVYn_v5qQNX81v5UjG_6x;R3`L)uE{a^Gb zBB>pk2?+qsnDv-7Mos>j7PR+X^;3K84uFi)+nW|RWU6jU-CR`y+{y7b&t`qSCkwfF1Y_q3EXzYAfULrM?qm>Bi}RN(9zjx-0HUPAs;Q^X?{huHSo|1zqEbMT1*~4 z-8NeM$9HCmI^I0kQrCQwnAC4isoxLz2$zcyS{TNeifzGZhfd^G(M~9E7*LqFcz6gk z>zwNh;jG%&PV}q}MMIR-UmeOAECmMd&ToQE$?U}`V;PVPvOq%cZ2M2@qk6w>{~q6v z5DQ&HL&k{sc*D8bS#_pP&oW z)R4w1TUEsbJL=omg6@P&pT_V!8jeq_#KKckKes`$>x5dKvJ3|^@-4&{FuG|0t8MKH=7LGwsQ_j**3_JYRM<%J&in6IEGnHP zBl4O^Mg;ATd}YMNqnQzi?@Z0%J8Q#TS88eu>rpQc%>#K`rR4BFPnq2 z_&)Xu8kvqJ0&xYg!wnRVZh0ChH4&QRPcH0m_DT3d*+WJse|5FXZg@;%(r#;7V<0Ydk>BTD$it5UolV= z(a*laepx_@_G~9)w$rDQ38(kj%D3-K7+&%fb8Bb?yyy>BK7Jw#u{_J;6d>sxMW%-T zd`wJ)EJ+gB$q>eLm+Vi&$KEeFK*|@UCwuSkFB;_owlwJ*zhqL1KOP9rUaxvOgfR*N zwYf=#=02%;dez6iD=&unkWo%pu3LnAAq71kBGP@Qs5tcVy{E%%j8jo&vCG`N2M?mz z&W|hPrU5csZf|ecN2>^FKCB8o>9e#Yc%ZK>LyxI5hf}k`BN{-p%y@|-LTP9tFW3k$PTW1%%sD)wb1c? zAH=qb`C2u*nOnAwJ7m*>WGmPZKok8sPTAEp-rdQGuqIIOUxS}tWtLE?{Ld#(SZHx@ z<}ugT);Qn2LpP?(m3=YUuGcsuB|QV z7dpHWxTvnB|6B|21Wzgm)l~YohqI+b2 zkB`^Dwnho&U6!23k7L1jYHQI_e|;$Xn>+NHS2WSVzz-Xlg`J`YfN>7L-oNgA6%N1A z@aAYyF77bn&d<`)Mjsy^0-Gw=tL_*UDRuSl%#p(nD17FHUwx*3!Ye`hYT)JcH2Pu` z{XUbVl#6DO)qKX1c6KieUVa)C=Im~lXKyfxFMa-p!I6Wy^-B&05xb)9O#SDi)RYvD z?8ru6EEL-D@!%0IH|{(#-V3A+o5SOc-RLCN4oRqDN?^38#;i4#pDg$pPFQ_G%DG(t z@zKFC?$3Myc4=VQp(+~$rKo0pSXo*5ur*b~*WYQpP?Hoolb6@+2`-Hn$SOX-ce6Dy z&Y6IAMtx?A1*lx(*k2%pl@%8>C;LUz`-RELhFQF{l$J)g{cCEC0`qOj zp(Jwhm&QQk3XMiF+}V_1IBf~e{dKE4WJ%dE};69F-Bf22D4Htxa# zFGWKmWDqEMN{OXstNlMd2f!>MS5j8iC(b541AN_F6kp|6Gtb!B)hh}L%9X}DLbPhi z2Q@XR)}e`CZ0EM5K?|phmP3+zQa|ii#2!ogx9m^%wR>RwZR+ zYoGh11z}-({R{iceLWIh0l-F(xH0FGd;2!+5q>l)G54dP9sMQZj=#UmLyY#0-aY5g z4+sn^C^x2Yu+KxnCLOEMzsgj`?=4XNETr zkT^4>`1WlIC#Q6$4-Xoc7W)VJp>6{WLjKR-o$WqyTH075T-?juu9xw*AoVrp=um6S z?={7LN2q`eR7_0yCrnMRZQ$rm@)#DS*2cTX26SAxUAQn*@7_%(S=+SE6hgyL@E10F zWAgG9L2m$%HIOl(B5W$TeY3DA44KjJ2_H|}(N(y;Z zZEecx)#VA5hld9h_Jcm5Ccg*DmC$;b5IlaI1<~*&5Hh2J^Vs?E-%y#GQqdcarX(rp zWJnJFdLXOQv5QJiN3lP#d|@WrHkapx(5d-&A?0(? ztO_*%*k$c;jqsoN2=Qe-73NyefdH-A+3Y_TFO!}@zMIBVe`}HY-~9ZWl)+V24vrAn zfzp4lFpdD&HI3Cc;&6oLzOy$kgnxVnh5ycJZvxS6H#e1qTIWNt6vBz(;@AJesrz2s zzI}hC3Iv0G&QT)d|8U_Cm~ZFaoW74#@LwpOguzIoud1OjQf<8$+u7egIFrdxQjKxH zp%L?bgB+A@pn1cS19676XaI^rBT=&f9EkGL84$P`jtmZdrlqAlN!jcDXZZz|<+m$b zVWuDyc~Q^uzZAn z2%nw`n0u=$D$+5~(z5eVE_`|Id`4lzQ30J64afhsMFC&hyIu$u6*;^SaBVk-!$SHf zgp>b|CL9M^X|k zLq;YX{hRAxj~TPosN^0@YcW^p1G4anWjt00=u%Ht;bAtPE(c3GN_48-47M^vf{U&W^snOu!s3|)G z<$|Jj>U;y$vL00~yi9Ab<+GC55aQZt$ZBc5xmp`0YNeL-Dff5wSbaOwma9Us z10IL!ln=8-HK&o_&I6uUTb!5oR%d3c)A;#I)`PUgzxh1Yr2NuLhf(zt15L=OVrm`$ zlQJp2efzZOkI@v9&CGSPY3eEBnc6KX~d;THsAc(5C@|UAYYxe z_d&C72QLt|`+$(oLc-B2HYb(sur)b-u=61-*b52Q*yw{D5rLw-d@Bbac)bbhN)(;g z!1v90>QCuARdX!33frw>53#A1wl-@>%|yQ*34YlEv(TBx#dn46`I0=D0ag~~#4?b5 ze+Ig+-=x|eppsF6U3zcyPV2P6-aefa4=?eYV%_M%(WD1%+pp=iDx*PeW8mLHHs6EI ztfQM~ZN+B(hJslk%zLHu@ zP*|74_sA(b{0`A?$4wOfobu zc&(tKqO!6w>!1kU74dvT(>tw<5roiInOoZ08oHe@ewc;b`M&w2p9q7|E201Y6Z#24 zIk90wZ35=?y_#whrq}z6B&bqRj=69$(9T*qYJ%gol>60314&654grCN`N9U~Q*Hbq zRW;0305t!>B##DE21++KK5o3gR>-t11D$Ld4dV`c7bg=lvj@P)igQ_0{Amm?2TNt3 z3H-kD9&3t>eo%58Z1%BNJ%Wfn27%nI287v734AU;TK@jMVxhGwo*zi}I|6TQTl4YK z;Cm|kuu{yA<#Wm4N6h-le1gQm)!%K?g@Sv*85vY;{QN=-=BaR_b^tWNVul+h8Q$>o z=b-WJJE}R56p}0$`#pjcGGkGB`7)zDhDnT!Ix?VEEN?gT(Qg%4+&m%S5fOq)^76P< z3SvT@_im)P-3dIhIjM!gqyh$ypSWMy$gW7K-Sm~;A|44e!UKuEn$m4S^YW#+wXN-2 zP^}hML+tXTghrOniWnuklB_51SI6ORD^s)OpeW)Zx2YwTdt^L+P-*%_Oc)1xmJbY?{ZEaY83FG$m?#a2jeifDOuCrF-_MC51 zo98gsEX*z_DA-x*nTVy=VCV3Q6%id!sW3kr?EmvezO%2dP^)OJk6UePTmq_Rc7DFT zvlD%mXgVe&LjLCu|APnk@bQO@iVxJldObOuIwTiF6xqPAWd+2oL2LjAt6mhYIhb+D z>96!ZeGJ=O`Wppm6czstAFLx%t7~M3?X0Z&yiIa5GBaZ#D@1vF%4JsjcMqUP*!J7g z`ccpec%EtSZChYMQwgtaI(7#Ski?WriegS)ZE@XvHX0fl^TXZU{8t0fvu)(FE$r14 z%zM@4uxQess>T#8Udb(ns3{y9*!Ikyot>4#+OaS~Oy=q~y?`5h5Y_|KzM_m`>MvLX4jX z8+B%fcUT6KK{vt0k5}hCzk^CP50~e`J4dDW_wR}RwzhY3gn)zHj>N>kcs`iXBa#;Z z4X{dSSweE1@o;P{G(vU<-e-GNudT@+ z96GSZ@{&E)>AkY5(@Ca&}f1plrg(u!B<| zv#dhH_j9ChhI03h-0CXLC9Jsv&xPIioWj`O&xO7S0|F6zCGHWd9@97D5a)GJgHKZj%B|?4#0_unaA=Hqvd9S zwIF??9gs{l86htPTcbZyQwnp=KxJ(*ovK!Inr*z*DMIequ2-xIG6G`wVP zFP|upIk?!achA4s$im}z%S=J8p9vTRku5xLfKVMo@D(pOdW3Yi*gWLsTUTnjFE@Dy zQmTIdVk52@E-qVfVWEY*ySu0KmJ}em6dU7ZQ}J9nDrQ8DxP)M4%z?@ zfVW^iU%IhL@`137hDOq0bv48UQjtsBg)7F###SUu9!Z{GCh%PD0}CX5nx7aS-z)+c z%j7{qf&U#B_q1ns{t4;>3WQ?hx?yn{HdW&g1FRjDg9Dw|f|Ke|dF7dzG812~pdLrN zN}=V52wwv$t6e3K=jpp)J}*=)S_`McZ>*}U#HOd~-gV@~3k#?C0CCI*!w$gaA)#hs z3iUm+d-R)_zv`tcSY*`I7i zcrl^9x%l=c^>^JWx*LSHjWhC`zbZ+Z!SZ3{KZ@hnj&=7j7Y~gGd8wE~bh1a?h1k$D z&KZGyJ4??rN79F(FHc_5%g=1CX(Y!Te9-|*p!4Lw2DfYePilq25A@fzCX(wCC>r1Y z{BFKCr1b6@<%w*|?rClB%li8*r68Y?o$I{c(%#bG{u?M@U|{oFLRNO!-{^k7(z~2o zlM`&@e>F4~D*8zN{%8j2>8)QGKBH33)m-OPK%3DHp5`sdb#)04Fx}CqlzU~0KnyiU z&;T9@FbOt;CTFfM=n>(CVyLmA2%`{IzE)Z;D0m_o{W4*s(rP|-I#11}^Zif^C)dfj z29$R?NR?$n2qyR)tt(S~?1@zYdhbN}DGexR*P^0T7$Kfy?Op9j;9VANfL3o3{eJaX z1V$AXGe6_vs%mO8&?!Jo=ueLayd!{ovxBj*{CrbHsw@)0nWSQZ?MM>B%hln< zy5-pjBvV_W<8>=Av#}|(!Sw-YpqP;n8Z{4(ug$ePF9-A9O9uE`!E^eA)sSqurzcX! z*jQLuL4jg$HQ*6dc@HQ4{X2J&xyzO;-K zdTM@ZszM`_Mn~S4v->>A2?+@|VHA0_ypePu9-xHv7=Od(nNii5#K^;H8qO1uF8m41 zf@@UqV}BElrx;u)jE4{2YU2cNqKzCsybz1L5?uS?y z0mm3^10+&X%!%x5ZSU2W(0G1l5{Yj>JYBJX6uM;+*c2LUkIl<^TyU0M2jJ%J%`{w( z-g>3tkev(Go~2@oLYhax>?7+Wf$R>p4c`LF?kNPXX;!j# zMWc8R-@HaA=hsO_P_{MX`a=WYt#oMY=0QdvQpJK=3bks)loS+R(L8%r)(zVh#J|zQ zkfZ*;f75`EJAlwN#SJj>_26}xZ)4*F4)5~XSqMtg&$iB+kLcvWFa%7)CLC&+C`bXy zMnm-by>~^xfzo2LEMo#@I}gAPK@M^@4(*wC|9A|=)YN>GG+aR&hOiNqkINmWj2q9N z0^e+Yw{mYU0E?h_GJTqWsp;MgEA{=tgMueta6aB){9W(SftS>`-ZJmc`CvYKv?x}P zOc;(RPXeA>!Ph7wNuIjRWQ1|8ZQ}1QNc>J3(%Ahe?e9*0uiaT^i0H3Mu5X1&D@!4x z(wLh^HtMAKC)}70mX9(cR@SlcGZS4Vuu&U@fCtFtx)e8B>mD9fLN|AUD2S9U1DliS zX(?lU^6o@HEm6A7D9iX|2^h3 z7{8yWC78;_SFW zaT8!%*In|GtJz-^Jq^V##e_}^!J{_0CvJoWY$ViieVad&l-R7n0ohO4Q+e6PH0jA{ zv$Sms6FtyZv;TTmW&PuNAiXQS93?#LVRs_G+dG&5Yew=g zpl&0eW5MqF^y$(`8)^1o$b`In=xyMKQexR%&$0cku#$f0Gcw@DywrG-R#%`xj3}P0h)~(o!Oo z&MoiYAmUaWyIF_J?i@qR=HL7G?++&bG5i9$ehThHGsun}S{?LYsfF~M4gh5J?1=}U zU@Zt-?J)ZX2fq}HHFrEw!@TGHC5g@C9hYVT__?V(d!sESD@*v(Ce!08y0x<|HZ2Xg z1OR%lLhX=%nf4}pT}%mbX)ecvJ@hrh^tIuL>h`XTVx%uGLWFp0+sG4k^pGy>h; zMxV>^0Qv6yEfsbameAva_@}!}iZBq-0s%;m^YeHjU(JfLa&sgs>+XdPeU$Fj3OqRY zJ2s39qltCyCWiboFk^{6dw@GJ!5dd61mIAQuezT_D7<(xBPJwt zS_Pol+k9;SsYCIQw_P4-3F$w6_@mt$FT9~<9b7mW3@`P#uRQqnT!+hrT{=OcMR&PR z`}uGvcXoCN9WV`*_gGBLIo;-$dUB)w{aZ!{9Ih!e!va)o7a;!;d7^E*{?`tcD_YM; zlk`bjQ5xWm2qmy@a(v#~d))?!$2sn8!hVH;uTEXveJhR!!lqa7+dF%U%SZ~#^g0G= z>$(4h!~T7*(KA`th-$xH9|pVX$YHr>`1lSYMM*IG#5}^oV~6c|-gd`PaS>tR>eiLU z%i>Ylyxm+CHMln?fkBs`8`mn#%d5rQN@*?d3kYEC?qe|A+|=F5lBd{(0lw7I%If-g zP@?1;H$A7h7XPNKEEmmB10UOAXTG+DN*D1?T5*VP8U_p}Py@W>wIq{EvDsFmqjEfW zUN+EYQBvUhyY!vQeZT7JJ8k36c`(W}nHuRSiHeFA)Yk{2Q)BY*xYQX9x?iIny8!Mv z>gTtAd3jO34Ca$xM#9}XM;!E+J?jZufY$Xi- zxIZ;t%J$VhTpzpD??LnKty?ugFwU!IN?TpKqi^5$Zq@N} z+Fw$+g~+*su@WLB{dHSKU449GzNEHmiUj7ojhiGT4n{`ufUd&C#QFiCHSDL+L`RSC zHUqy5cVtKr-6fS6G-SOXE0pf4viYDMh<`5O8hvB<7z+w9BaAC2J(7E!0&U}PFcJZ0 z>>ku2d3BBTkpmW6--hcgJmBikE7IcLL+4310@Fm`}PkeZbl zeGau;_5R|4qD(w0O@x?oUjq6d9pGGC4lm;eiOf1lJg!;udAI+{Crq>+Jym zDXg4~j7&^Afah1Tv)Dyt`gh)t%gS5yPxmn^|fEzj_$$%ZT1KK zXVjq5?5}jcG$5QjfV0r{`iigX+qZ8`?d>(2d^CkO|Gq7R^taOv8I**Pl#MwZ$8cr1 z_B8Nf!;y5++U5?azm>2dIx>fg5w>FWACg>sWE!lI(yS(x!Di@x^mY}6_Go}4VWIIZ3bUBcQ&Jw3%HrK712 zrlx7OyE$}9G>_N2f0YgyUV2D1s})`CP}YTfy`J?%ywR3>n( zDXCjDs%aD-243^ILn9+45FR`9H*Ui2PfDv2Agixo^NcJx=;!Z0zjt~OjDmhemYPc4 zS>YPu zq>hu_dDM_6&kncYfAfCuni9YHdQ1G314;;qL;~(!tGW3TZ#Y8+rKP`C5P+%!%Zw?) zLha}5edeUTZTJ-7j?W59N^bue8WPE_7@O8Q{R}Gd4fya<#IGDrnFITDimK*ZJHd&D zO}ozd^I%y+oe~otU;1?d&!0EFy)UZ(%XK)&a8@rhw2CY#k=gQ*N;nX#Y;0{*C&ClO^(3=o<=9c{xRD|@f1$?9z`Zvj=APo&U0g3YJJ>0ax>sFnu z@@v1no00<(v-}iLAH4tV4)KD>n3$N|H#fd@-5b@Xs3=r16A8{-I|Fz;65)7gsOWqn zCzs3&$T`GZMXiZEGFdO81tR4kB3;%Cj#_!(d5pg%?|1;KGSM(964=EF!)|#zTjA+i zUH(@zv?2reoJP~tcD{-ls}Nz91KtzuUO03l{I1{U01$Y;9R|y;a3mnv`ug}>_3vK? zlivT}PEz`>et)53|3*fKtL8e>-Yy3yw&$O?b6~~aVu#nY4fLV6Rq|AGIL*el(_g+U zNb+dK{d6-JK-$zFovlffDxeRBb^HZeV9f5xsuBq(Gvrk@H8?PGp()a;ttnx_M8OM2 zsvAf4!DL*gp6QfEV4V}bwzifQTM5lrn8)?itEBHOxdjCVU|c83=A;I+6jMlL6c?9` zD2(T{Qe;dV0at}&}lb12Ct#xT#LL?>7rb{4t!r&)P))Q)~2T7e3ev zE~t~yKo-3D-~cC1{23hGw}R-`4gwzsFMgx|2?jK28ZlEvuH zY^$5=00(dBCme|_lcB$VQ8hI+1!UunTvh{crEp0FWQYjx>|Zyxw<9KMekUONgogf* z4&JRODN%6RTj1It0X&{TTbD@y^8V!T;3ip&6{8)sfI4zJ7HFtc%I4bj-E$o5?8Vg@ z@qR7uZX$SXgoX3eEW%?HGKGf#Gc>$;VFuDz9Jc5HXc7nIqTvf}=c70M6hF@xqhD&# zXq6iNkhis+q-NLHi&Rcb9F%(X>J=-{?Yj;7j%dG8(W}kQ&I;Z@kYlTZAH1QmggFxx zK_{@--Hrdoav(IEA{=lF74+jcP{Jv;cbpFGv7E_USo z_Cg_{yNbXs9R)dKo$}~+ixuVNdtCA5SkR}+%YFMDE}@4MBt~%$83|%4Bu&)Eb;U$lBH2HA z5!l%&b+-oM_pq=ejld-<7kpR;Vi_RURz8!8>IZsg1Z3oSc9@!dEK=PxWzWR<>`6u* ziYotHFXe_&kRQ}sn3H3QiOHt`8$%O+dvkjA(#r8cn;gy8oz1skE7%Ex_NJf)4$9*4 zdm|%HbTl;f`&d{sUjwSCcOQ^Jm%dY9FEtD}!eWQs!+LP<4eBwUx31Fs0Y0}7fkhYj zIx_Xo!s5-cn1P|;hLMUPc_t9piUgGcrN-V&<+VhmMHN_&*N%@n+un^qc692Ym>3Vv z1mlr*T}A?o@Qwv*PP5vmC}sYnKKySIdhu|F6G3uo#7bLKmoT9wFaI|zbhq?$Ys#>< z?})9zyUPq;7+Wl7-WHfTH0kO38};uM4D@)79IUO$q{2tQ^a2YWAi*%7&!0&?fWTo1 zRA^oCj9vZ?v^D&(02CP;G5JNlHJhFWl~Y%*J+D-QK>w zZiDlwG z36fnzBq+kb^67Q@ERbrnv<5wYy-)AVP1hHggk0z{JUZ3ym#O;A9Y*9Kv)@; zlf$hh zmldm^g*O~nwY3Ir?b^-pa%fuz{TSo(=g&<;7Y2%@qI=f?V^l~@P3^oPzoWFoF9QFz zwKYBA>C?>b2*lFJGOS~YU_&~rASagw1ZP|iv@eZw@EKfHR4PJ3LqqY}+S(Q^soxs1 z-YbAWU)ooiWZ0-Hw%+_7Y9T6^IIbsZjX)3z!awUOfy?6NbSbwibMu#wp0hJ6q+=)1 zPO}v4kJ0j5%yg_+^3SgiDF!AcFF05aq+9#gi_ej6irxNl^Etpj9Hbp-^D3}($ef*H zmISsy%Hiy<#x;g=VZN|!U!OZB2kRrU&*J7+vN$oYWDQ3z^)ZdndeM$t@>0SCrTDr^$%SGmQx}bz*P@{7Muo~^ zx3IYA-_a40bDtR1^orS@Vw$hgdeM43O|m!kKLllMyCvyS*(t7H%ljxIol3{HXWa2(@Zkrs3vh1#l_aq!?(`Nla8&bai#b&`^&Z zb9dKx(HGC9LRZhH+5|VhQXA>|&CGIYK|vI_)dqHkc5Eh<0Zfq)8p?qIh^W%Q;AW}C z%#-vR2#1;AYdMrlB~l*y6x>D(R}WHja0C6h_U-BCVUT)jAR!$oEibq}{CL1y__ZavdI)nF0MjKANFqJS^;qmB&I$M$$}qXCOYq zK}G4t2weeh%FXI!ZSC>sHjcjtU0~}K&2ba>Yh(BhQVH(xQa-x(zD&~6(y$AZN_U_i z39}ahO=ATo9NA}%|C+cGB40#9r>G@&z(Q3AB_Pk(+&rW9{jWJ!Nz=&fD)-CIYu#<` z+bNaRN8LwbTJK-fImqc+$P4TIdKsW2C?~`n;O7^BLM{Yk6Zr?&4O)?LNky3KPCx=}KkWWdO^I7b= z%>Cr5l2sZzEWM_zP<5|`TIwE`|G|CH`m&dkIhp=k}i!hiDQI~GQGDJ z+Y1#=!NrNmPvl`oqu_lFRn^JA9ZtnE?$O@97P&KZE_a_kTg*xfADnymz1()#08Ed5 zLM8~i+gTnRJcgQLZAL6VioS39g7zgjS;;3oJ)Vj> z^O?6Re*{r#PZ;yDxm`saz4l1VXfasQ6DLzvL9roRstq$V8w340bu zBXGqjCaIyJ5hMHq8(yUoFnw$ShKCibElySkm&vg*YY%V#@cOi5@Klg0yzxFIa)jLl zJ$7lk;7`nN9gLskMkno$OvSp!N(f0r@HT{J1Sy?Y=I8Ty;r*;L8DZvvk(PFo%#qRU z`N)$5zPP8{F6^l{n_;C$Z%HYsKfvvz+MXuSvYc$VlKs zMJ>{YwiW>i8UB>i6yax%PN$EQm4@4~M^WVxH|go<%xx?!X`%PPz?_meK0IU(_Veq$ zgv9z*t(7tAK4Wt{gr}!x6%&&Sec`(vR~1do0ouYTxGlWz5+ZsG=HyReJ*F}t@|n?m z(y>##BxRxQ<41O-J0E4SM;{>kL%<@y8}Ng%PmS)j`W*V4#8?X2+6$dOGGBdZly<5%d>)j*aorXjMX=mryP!V#o!<`-4)9z!3F-Y>t zVTX|{@0IVvJG@}F3QK9Vd{nL%#0(J~t5T)BcxVpD*n1zHj*;a{#Y6W)$I%gO?p~;E z2*iBzw^3Qq6aI$+7$0r^wY|{%`n1nIx#&=0d}`H2F8k5Xsu+gP^XEXR;{;D$3iu%v z083exZ;`6KeXdCM^k4E5C@Ziy#VyAd5PIZx+Q%|o*A-Sy&F~AjjQ_xZM-Sw|s>|y& zwQqy#JqGYO%qPPjN$TR2?_7^TUwPMB(^cb`UTHNZHFbeWdx&KS*p1M{camYQ9aOQuB#+u$k8(KFIqT=Z7Uj zS28_4pBVh|LhsVBD4g)8eI?O|hTB9Zil-QqZWin7N{&oX@XPBLlNm zm)koZ>;yA)y@Wjlm6X`9ktaTtvtwWIwt)dOHmbTFB+Wm%Cu#=IJU6%cC@|t5l$DnH zfpaJ_cfuW}7&>D}hR({$s$7M&eNab-cpT6AaZ}UWUr2QS2pHLK9r#$so0`~0(&$$n z6R}??#4ysQE3HzoBu)2M{xti*?%Ws&As57GE*Ksij?aR)bLXt{cy`55`cyw;250?v*e13Vv~tb~?iZF`*3@6;ja}M@Iz*mk$(Zx$I5YkW09dJe)o& zJbtUB{{dJjg|~%7nqt|0p#TSMxwB)+%aY3%D=j^J1>j%SFHm;H+sE|4-|fyFX98T@ z$E}m`U(7}b2_K%{4G-}t@#Oo3`>kc}CpW4Bi(qs3x0Sn-byuh2*Zf)91nBtOVF?NN zYdfc|9iW^tp`dX1G40FBfAt9uIg}|7uPWkbp~l<$vW=dNCJv)J9e9(@e z;ozXMmZ!$TCWL)EBRzrcaz13}-9#rP#eCkXH#&aTeUjIvKGE|+`940*R&xE^EiCGV z@X)(&jP8a_n>H__-n*9;M8e|(=Cw(_2eGB40tfs1`vBMrHi(xbCcb26V)~`C{?`n$ z*iWxZe8xF}g#22~8-o16Pg)NphjoE^q32Am9BGxsL)>F*uS z9GmpFr#BmbR)TH0Pr%~1^Bxhq2CmJ8W7ybmZpY2(V<4H10{{a?w|7=D1HCt6QIn68ELdyjH!TE>%-jTZwvc58}YlYWaTI5=?nDJCWKcaa$~33)#xiYro2ifon( zCUaF-M30X4li>w6)-58Cw!klRe&}&wrCC^2r55l7`G6J5mE*;U{CsWg#o5u=>Qqw< z%W50A=@$kB1&JTrVg~})q~~p>C{It5>0_n$QSfM0Wca*Lud>FSTTHw;6)v|u9E^2z zjyRfv6daDz&lEDc9cQ#AGyqzxHJ`e(HIh?7EqnE0XJf4E4Bq1rJ8H)hLF4m+(GtB5 zoq&>kVK)JR>y7%?iLPJ!`-2Xcblb9ek}Q&XmeKVa9fF@p;VEovn3nagAYxPW`bNL% zO##4Bl$7N0Y`{cE_t*qdO4(UQ4pK=kH!N*C@YNh`lc_o^XyL(rJ$JJN> zpGD&BIW!IM$W+!XQERD>s?LS zcjur%lm`!}Chy+X8LyxY2# z>^HX-JlWTqAb$gj;vRYji;0u2C~xiRK-3`_kUafFSWM=p${o>NdGM1Ig@h~ zyI*qqczY8jh^2-*@xHT>kuh(E!3Y^}p8P`Xh6q>UhMV^K4(4OOk&zMVtDR=DXK-NX zLo8SiY#b#dCG$74CC5o$fxk%HcgOyV7Jr4-02wlA=zsxccDoI0KfpaAYfN0u|M1y9 z5>z}F-CdkrU(e?Sr@1naWG{fEG+w~tFF4AUEJ{j><383iWycARzxY74I9+%C_^gIqL&o(lLm5kK4`nu~n+=pHhVTdn3n^)-@Gg+<@g zv=JUAHS%sf!%SkNbrnk_W1J)xJ zYx5=4vKfzI>oAhKNyHq31R;{Voufqpv^c1ad8%~AX2!A!*X+P_%V}<8Cc1&;1AHe=A_4 zfRAw;fsfCfA%GT}?(p3_XT1qEa-k8nX;nPz>nFREf$(*K-|BTq?>>v=B*rVT&Ayw- zb1W&zm2nLR&dpnN+##I~G|vHWrEV=R6HVfTQ9+rVk&#RY`%CIu8pulg1P=rU3193$ z`(nzuYJS2LG1TlS%Red4woQy3XAXVM72XD~HMn2m6=7YRts@l&c9CB??GsO(GFwQNqSreTbff z)0I<5gVxM!9jkAf9tef<@d+e{2?<&=sf!Av&BMdq++acV>f4&EC%PdTz#?fKJpJB*MdbtlInK9SpQU;)OLy2NurUPo*=+?IJ+ zoqT`(ocVs|&YdB!Mtam7vf4TXZHqDV797j#YuXC&u#{hdb@jm3D4pm}omT5eC=0C7 zbXGmetUec-1>n=ldJ3~*?xS7*%N0Uir@getgA6_lfj1wbrDfy#HzPzZ7I%XRN$St} z@X*dU(B3YmhlV0xwW=dQrEs=E(V%JmW&$(7m9Rw`Mxz*Jo9duN%Y<7>X#WubWHnlo!zy} ?vP|S99`x3R* zh_N!C&-mAj$w!kw5aEDIpLQNM_Ikf`Cj)aJLa zT9J$Y+aCIA7pg-XA75RUmgeMZK0ddu+qXv)y?w=p-o!9_gLS8l<60~fJBEv%6+*rENjt-8rLWwi)H)U(&&qMn#d(Yvc^gitfaV7%6T_5kel z`~`(NScn~jmCq9yrRmXL0Lex$wVrgm{M>k!5@nDJ&< z(D}+&gbo#w_Y#nAj=L2$R{~wKPo*bN>lw|)6@wNQ^klT_GX)!?r|K_Ns`5AK*wRK! zC(7#*JM`Z6?_6DzgFUSD%@6#_`p(kM?gz+PoZjo{eSyTk-{5JJS>J2{NJ|Rub3?O3 zc<+ha-0C8EEFV!XHO^7P{idLkks9qrP~&sdDl|Nfmvo2u#?NPj{MX~Fgj z5-GhSLlrldY-4ki74Gh7d5wRIWH?oEBA<)@^9*3uCxeiLjjZ7qxeeT-&s~-5U0ro> z0BaZ>>k+#6a15Z{8Q97`C+;(wtn`#g%@&jhBxNz^rqrsk{>4mB-wIJ^G-*3Ke$|bQ zY)ZiM*ksCaaC$rNXDO7zckVt(z~GIEgg5NA$=$HfPJ>k7i8?7;r6(>fu}R3(YU)zhu3*{iSwu^eM;;z}c@M5b#^Id)-BA?86u1zo%j@#LGV;H#7h!vP zs~T-Lgu=~#@g77*DVcxaFgZ^G{-Fhc zcCoSasu7Q9K?6J*cy#n?353UAKuuZ)E;o}~aQmE@JAaVMSbz*%Wt)rT&ANp1!<8N> zt1S#RM8gE`YodoN$Mxmq4}+TDh(a`A@Qe$%@EXB|%lig!^ns&|^11qYkGL5a0x(B0 z^YQZH$tQ7d%>-hI*&HV^k|*6Q~_=@{K}saLvtSJm+C zGm4QRdo{HxN5jPh;nZ{|7->Gn3htn~KM9-CO)%vR*a9tkt4~CEACZIJTMGP0L#hQU z;ZuUt&)U^gnklTcwIu>ZhbEk3oIHQq@bR--_bPpWg5168Xmu*1J~BBjPxaqM1@@3r z_oodzn5X5hD0mCl&%Xid2W1lAfkVAd&V9Jrldi+hh>9hJc3awg> zl0&dIZh(-h`=U!d?`|7&+!1u%%nSuewN|uRZR%1>aFJHGfUDH#V|Q-UfaXu1>~ZX5 zC31#kfE9O5rNac{@Gx*m2xaJtXJAxu2ons4S6xupv1L8^Nc+R`^oI|_bb$M0a@b53 zxI%B_s9}zH@7ue(Y5){(pFm=iKVoGd$^NdjojE5)4M66DE4xvW-c+^5!(L~^`nR#p{^1RMR1e}c4-KnE;E|mm&Yu4YHdsx-B#DEW z;+2A@r})D<56uVMc3A9x_xA(!nuXl2c%)=4e1OCE4h1GZOhSak&Nr#nWLPkJI z&!*exDOs(45cK~2Q{Y5OQmpL)U6`e>yL&Z#q}2O}*&eBmt>q*mxWuGq&l(TU1k^dK zL8&KxP{}L;k?Ko*ZLQ41hfxfIR!RK?w-gn_!+|24kU(fhgIg&BGVM?3DE@nnB1ceV zj+*pbmVL{}_&rv1zYif1jDO#l88{623zygX3lhU{>Z)(gQG{CxltKOgWG8rP^*;RzAaw|*SiL<3&XAL z9TBatFv|k?wp`3CE1Zba{nk#UtnAHp{e{9*Fydr}?z%I`3N5zl7Y#kV_V!FY+s)xh zK8yJj8DUNK5wM7? zgM-CeQPDS&`rX~Ft%L|CeBe`dujZ*IgfEh7LoK8`k zRw^>H%1Xhs!a}^iwCyGe_mxonDP`zlpWYG+zo&I^`jY?a!AyG_umuVN(3ZmHCn3+& zDJC^Fsy2OugdJ(NSBs!C?uteK127HJqRxzbi^Ia(`!MEgDhOek3UW_Xt)U zH9NPkN-}(BezQnD7uQ{9AUQ9DKBS+6f=r`j&WFeu9JPaLYu&x-{DlE!e4mnnH8MOb zklIsdvxPB}!eb{~nVzoFxpvpUt3vcAnkdfgZ|+6#K2&o5uyJ64<6qGg2`PH&eM8|^ z{@VBFs2YmIaKiZ?hZ`w`(dprKvhhJz9bK^)DYj*cXbkQMHv9l_KT;n zof^kMqL5bhzy4Ws?Ld5d&`s(7H`}<&c z{z*a}wxiJH{{i#*=GP75T>8(VRL_{uUGhy+wLG5_&af#eOhz z2Y*0=f1W#&lr9DaDmESm&mS8b>*7EW zDj-ZrlAkV^wdz=5qOg>KF9#hD4?$MrAMhSQV#>$PXC0)e7sWw>_?*TI?3t4ciXWli zQ%{6WrG)PE!GMX0N!;#ypeP1AE>2AWib42S_fWrHo*oPz!bSNQ{TJA`qgSPplI@Hj zK7<9EH$&k5K1*e8ZpV7Qdf}@x29*g$punMsTp3Fuj@;DNXQ83eUn(k{Yk)$IfNfwR#lC1 z+cukzr|;9WRzDBvaNt^P-5_0#^*t1)PXxP3JTKv-@N$k z@;Q;~xsDG0dhBT-^u*pCpQwitnixzF z?utC|cA8Z5OS=Oo=a&homGAgZgKmx`>|nk_zp~jjcoorG+=1E;n9Zdq07$aR3vB%0Oz; zVgGe7f@kdLq==fqcG%7oqAX>;EotT$D~2QSyT3oab5H?Rq_U)BqUNhtt?@iA(d)&a z>~1w=L>jhB3&XsxudV$=)F9ycYz{yzOK?|4HMg=-uZYsotoPW_ri168hYI@FPHA@h z!S(K@`Q64>ME;cGZl|C53H46V$jNt)Kz1dCvevV`vlh!vi1WLXcWy|MWpX&nCv7#T-liIJX=-;t!EsoRgu^YCcUk+szF?)IG zA)xJiYAP3d7@vFH&dEUE_7cFL^8*JYE^uBa;-NCsVM*3k9^iI5$0Eg&mZyo?w};nN z7+0xJ*FW0a{SWvyR808}G<;RksECxC(eA)s_!GX!x6vskBoj%0h%Mf%9MIIbbiHwl z7j(akel#EJia2I?85nS$Sq!nYf(1*c0isGq0)<2RVA1I#xiddegRoX3g zD=lw_b0lwYp9u;&oU=;gFy6b}UBN zh_SrhE^q+KuVLWTeWcE%Ce|qqqxO4+z_4}r7?~s+>;1T@5;-9XlZ!I!Ak^5CdZ9yR zo9rb~^Tr9ikpU3F+|o-V+u(Q^8Ptm{*Y${pXdVY3ueRpEO<$k7Ue^|nY8bOf@K^yOW{R*9O-cb*br=oVp( ze*PR67Yf{PMtg4XxKWm;#F1g(i;x$a3#8$e=vFdju%=EXi`$u_nA#uHcSS+8S75HN zT0vmBaA;5Y>qPWd@bbo92Rj8F`@u)C7cXAuTuA7NrZgFHXeB_7!mxnrbx}omQtH&T zh;n4nEqOXJ0jp8wFvtc?lz;!!O%N-f<6#NFrO&CNpF)LESym>V5F0xMDh;W(Higr6 zravc0GWm3P6J4H|k&&@%+cgEPmrUek1_rj`dR+LZPo=HIeieSk&oB2}ODmKYLabfw z1xKMkc+(My{%?6%qJ{RwH0FbSmCVcgpOex<#s=)MYXs3_c-6B-Z+dVhi6=Vl;NVD& zQ_4&GI+8y80*5GxL^={>n5$Z*p3Ec~QxY6}F)*dMXJmwpuUlg;8>0LaySOpsrmWc z+~oQgmQ(jdr^QwbX3QW=6O$inZ5|67a8Xe&Aq79rTFS9np&C!n4-lyr2n|m=9%mOZ5)H*!;;slbO-DM^nF5N8u`XUEx zf=}Yn%ydJTiXerJ{`Ff=#QGmqx6q+))U=(0RUupNBi%#fXS*)yI(3iXv{9z-j>`Dy zZUsq1p*Y9vK=-3?`64+sMsT86p%2d4m7wJLt$ z47D~l7yV_(KA+>6h+_DZ^3-qcpjAt2;umx+Ri3MN-~GyV=3@mxFg0GNb}Pj{oA|Lt zw}ZUVzP?B}#s0l~WONvN19gNU_+GCZEahY!PNIq#-%FJD<9KEl_GrFf=1>c9K7NRZ z_yT_N%nxy~@LhZlXzr%dR2)3^Acu0d!WMj1i|Y(_7}&Ux_r71C9I5;?fZSM`izIzp^6%@ zvt0#1;~%qiRPAyVJEs#h+-vF91O!prE)!lUFQ{0xE0op1P)iap6Ik&G{eVRs$WCrL zqccJd?O{$+Di^}LT{3fMu}o?mtwvJ)Rjcp@P&hz9TB!-ur| zUljqlS}-$xo&Wx^046e=vw&D^fcu@%qCM|6jALt}qXpc_dWe0_RtOA5eVbs&GA0K# zn`Ff$7oBM_gn)9hz+fbkXO_sKJ|-5M1lHF6)z$5Hmq~Y)+9POr`B;o0`)8O2Hxw># zMP+U6Up^PdKhho^B8Ma2MxBSE;=XgissRVlr_cD&>s_%OfEyi;ogBTi0W4NmUcTZC z#6WXDPu9p4Zuy1$J3M4mTh>C1nSQ{1rRL=HVLEH4x!H;kcymv7M!bU@Hvh;D!v|Nd zh{csi0Idn|M}kzGj%F`Y$ot8_5$X>?cw3?Q3L*Y6iO%!qw-15Z=O^GgT9EiLe+ySn zK;XhU4O%?U1ZRkazyM}hoBkn~Uxz4bsH?YwmBA9_prn#gF*Bd+4J#O)zFWl>xfIne z`S}=oclyttrS}LP3RUHfIpV_Xnmnh^2B#^&$uOXeL@_a0`32`XhREGdZ^VH43AjoO z!e|Pv_{aHqWsKma($n2d(*L#RyOit)0kR}MzKMtj4+L=RgsPx5K3wjKtpLtr_ol_g zr8@;4Ufg~_z?epQ?Jn54BiK8uo{SXJQQn?P_HaT2+@*vd=xCW2g@=siWfvE}*w74` zC83O!ou}~0Owe!g&bSv*h>i8S1(c(zF3!$On|*&_Rbuoe8s+C@W#uwI!lWG;;kpF! zNi)n!?f~i7TFgqMBZ5Slklm0F2xAzz`Boo6x(m%$8<=skkrU4bw~qoW5gC*jrI;fB z3@}qQJ-1W!KU4MQ=cpUL|KkF{xd)oY-_iRJ!Ej;)#hjeTlN7H9G_b6>czD7+sQb>< z9aiP*v|he+#K3)x@XFUwQF$zpgcceeKJpj`eS9~vHzhI@QC9RO^QjtLU*6%HarcIt z9xHjl^LVHaM%qoofG(W$QbVJozqi+>4vai+PZDBu zxm|DMq<(@5;5!7PzSQov;068-S4=4xaa|~v)4FmMAV&DwL^QNyLv~iNU3DZr!N9bG z42MjQcjwFLy~Y1-^Fc}R65|$9+8|q4O2_^}%RcO#2(WY}Q7_b-kh9Cx&*$e-4kjj9u-(lrx5hl^k;5NF zM&A7nif3)AXqhsf8?ioUliMOAu^|0W`p5HNEP@n)c)#`AZ?v_E$3K3I&}RPpWaUrp za2A9Sc*TTF{P4&DM*&om367>)obM==szF+`4#^!xJ;od`+v=}%aKLaDaic-{^u^HvEmd$Q^m~#nWEROXF)||A-`vdpg5gstO@g31 zM_0d{mPfr+lZXFPqjt_tu!?(1OIygx^>0h&R!&w{f^MBt?csRoqgq*F1qBvs<7M@$ zQFSenmp9c7q?t z(EWb~1_q#d3hUQ7n!K@awK-fnp6KihDYZ~FpM?T|*1VV&7emwM=BHyCf?=3S$^R}s zTZYC~ubhrhtrRMnTQ?VbNfE%%v>JSU*DMu$s>C_B zCcxRy*4c@(wzAU9$y5CX_-Y}54{F3Fdlux<+fb95ec|qXpH*0xp{uSw=mfbbkR#6M z?Yftgocvv1S-BHtkfhuyHgkcrLCYfs4yb|6gRG-b2pX4T~QcMbjhM+xHMdv4x$ zev?#`gDeLPS9|;JE8?SBFpAz>UQQz*@hCx(^|;x3^OP`wS{f^mk^V9w-ULq+ri$f0WCMKedoE_+M}3Hyr^ zW0?+8krct7{dOxJysSJf+nT?COD6>&U4+#rN<4Kb*Y$Oe1-Rz?(XF=iV#W2wBXAY1 zPEQy6qjv$Zx9h8`d4i_D&FLbf0zj;21?chLdBf$DKMHJY*yn($X;Gs4Llu+1k?RRF zwVyE6G162~Y2NF)O!1sr68$RTlY$km(~EugF5C0X{MFy3wDt9DT)?YhQH1zma@Z&a z6C8FnRM8(R;j__F*iLwKLhtcsn88HGIKL0Upz=4xH)&7&G)D#`aEuPxk7nw zb40!m%uGH01=uVs7+3YQC)Zo_~jK_XKk}=%D%203q=5u@cI(_0_I6faE z;s)Q@ZlJlV7zxWc0P;TXL490arz3hkI;eu){rfjFjI%^r#*S5 z?Dw@-2hyJ>7;_K-Za4{c#WUjRqJ)@1{y8rhdFf&$ArlFYhx-_bfbr}``SKMV_rgRVIC=IhRGw01UoSk$R=dN>mo<8-2nh^^txTU?FoVnKPA`(4xwm^5otiiCY zo0+pM7ONgq@JS;8P7@-iDsI08`1zHAnVheuuRjOxJt8($KjdBZ!tP8oF;qv86&imF zP7{%LD8Qe6Jl%AI^jV|5eRmil!iUuI{gvr`KYX}n-`u=aVZlkf0UQ8QN&5TFmDAH{woaAr$#6u4hcg9+TT!Cl zilR{B7I9?_xXr^Sb)5k5_F7uaz>cF^{H8B0?g`SzJkQ27lfSDaFDou{=nadC7Ky>< zxrNJWbcIrOUK|I-c9!&;rLl4APpD8}mg8k(^HoAp5(7;P2MmQmMX91OuqlMUhlTPf z2mfLH#^~)rW))llc8Nvj^UW=J`}>8{#j+aUH;YPswYALEPTH z#KCm+-|Nt3(95BMw@9A8h6eqIknujTjAD2fv?yrB?0vr*RHW!)OMn-z0ga-~^bdi& zvihBCyZz+BK-g{fzQ3ZSN}XdqK04|WBc4)#tFprL%rOAizGL4Q6Bt&lKIh7RwaoY$ zb13a#xfyz`wks5PeM<(Lijy-?2*zqIO25%XQ{^>9fx|U)u~ppk*8yY>6y&FY8k8-Qg7!&~R=3SA9%|v4yz?~@n zn4B+0cj%$)9tdTQ&OH6b=R`yoh>9uH3#^9>OEo_kb-WC_uta^U^q~~HbyG~u%?-uU zu+p^GvK$9;UlTn5*5<4=iXXodH@PSil*&YYB7kRUs-WY};@4&T@ zjEG8OeGhEHLGZ)Zq+!bOAP&ZA+xmNUSv=e5lb|Oe`xctrGZ{LHOO3%&TpFP(rwwrV zf74+Mu^cG?nH@>o@bj~#MUwKp4DB+;$$e#l?jKTvUEVe|*=new1F@&zBmEJa7Yeg? z@tObI!K9?lx_UEZ9$y~9Mk5#Y>|_Agjh$w>db4p`1f9wcw0-T6BD)6R8Rhsp|44XH z%YmFVyb~Jc70UP4x(iO_4ToA?Z_V*NlNrV`?~u2hD6X!>wjF$k16o)2^ExJqr;6q{ zKGr1F45BXI8Y_NA7t81d3dLU7R-;p~rA>IEI2hAaEaK1g^+DFVW4zJe{2hDo*RL<*8s1{&T z4NlGaRe6^GxdBWVx2`ze0h4f2P*d_Wr{(5G&NPX%b3XfP>TbQ={2qD$1QoYrXjmyO zJ2R8}-^o6j+q*iZ{seYCX*#P|NeSzIkJEkjO{C5~TUL{<7|C;=E9V@;u_A^)C;^IQ zZxF-%C~^fx;kT;=;yu&!@(D89rN27%f$NbB3n^mGF*PtaI2ViXP4m6GQ!yuSgtlhF zfS8QrVfondUelfi(-5{fI{@xwNlD??fJ5{c8etzl!Qk`0{C)sg=bMOeQq%GE*2foc zcEmiSpAT(aXu&uKW9e@&E%J`PVDm|Er^vIlww6~?64Chr*%!UzYoQN)9>Y2_%ly8h zDp4&c_?g&tqKsv2;rVht3DG@bgp{gLnZZ)8$=l1q#^#Dg$2bW#a!l%+<8yZxG=Ivc ze0+o3qlHaR-c51;dn5&4QM1XrunQRR?ykF@O&B@eM@v?IFw1rLw~4d_HWh2%N~`s8 zg@tFIG+iFXw#U%gPUtDfK!C0~Q`-(J0Wg9I1AsTRxOqe{`#Uv!N+Msf`Y%^OohB%#N^y&Y)zw`R4u_@SADS z>X3jZM->VxYTU0C_lv>*dfZukBo!R1F;sSNBK#d#oTKkw_Ur}x!- zByXhT8S}4}mRI0#pf)}8<1kP>{rA8CQZEtrbGtoOPoK5S$lKceHuJc88;8EPaw z9{jRMVmNL9hz9^{_4tc;BA6SxbVTl;LLkvM;CNoSs;P66c?R~|d3yE7_D$`EokLlya!_^{l}%XFmTFR2n18ned$HJs12-@@YXhz$ zGkMf)0bVBy3yWd+#7V5L8#;rBlYmfzJ6ep*JyH8sWA>}S$s2k`u%3CsqWPvc-+ZyU zxJLTjd7|)Fw?EA@kSL&B>E%IFoU>skG9gXU0<)+7kbG`Mo9RR5V*RVF!ftuw7dZG4}18MD!Xg#H&HML zng?JiJ)rr`&w+v7wmWx%UP6lv70HLYcf*N4KH5PvL$W!;p)jbC)Yq|=$a(e@b2I1I;HqCeb~EnU%E>S!!04evhqKY2h5_V+NCNvXO6c zlL#8a+Jt@GZOVavK0;tZ6K!e6qroHSY1JovC%f;Q9I%d&?W2w1j45+6`d!G2-Fl z{{cea>zUW~$Pdn?iEinAcBKGOJlWFDP8;#lH%R&E>3%Q-mE5g;OVo?*`Asm1?)kn5 zj-QQ`BWdVYBv~5t=^FL~6AO#n^W7PNUASntc8u^NY`qSfvR>$YFE{NS!a_&?4H>I3 zom*Q`Y>E&DVQp!N>y>GwH)-(b5Do7mQS!}goMV+7ZiuMnm;k}R4cxX_a7b8OU(Ree zp_=Z^&a{L0<^JQxN%;>VT}313g8t^(mjTlP$=aIkd1K@3IZO?oV3CFtO1s(Nv@21^ zu@me2O5ETPsmerUM2mzRYSUb*p^n9ypFX%1`Qgv;uYdH(H$h92hrD#tZpg~h6uzMk zMG4)hqVM}IPO|>{-EUXh-5T0tPR?sz!tm^G9Zvde`bwtE_Bwq(IySb^*2c!r<>jqI zk;Rbt4q@Z=4;ys==>;Vwj@?0DK}$17i#bJ8Y`32#jkW{4FFqT5)CYTe%W=}Jk-faU zE+MQyo>jNzr>vszD0)V!V+TrvR7b&UvY&vC8vk(rTL7{kDwv{qkXqZf0s~ad*GSO#vQWCH>9rOp_$T;d9>~KgdSlH&`{_>aceA zw%DI<4(v^O{y}8Y;STF-6r@k=S+{giB{l*cb@l&hLpDG3PrckhxKvmSq1b@+6}T-F zU9R-Rld(5InyF$}bF&!FQ+owP6_uRW*Eh9M5xvHpQ&TH3zyvY z^TW%(o`7L}fuH!-uWsM$@Tg)M<-VC@M!Ad|*O1_yJl#oP4|Vf1`5tB51=(&SNT3vf zY~6JcQox7;uX`HI>EfX5d;CO=2xyxBk3%tobRS{pS@gQs+U@Mnq*_B?LLxBV%G_KT z@{tLC{&0oZDKT$vvA?5*Q`eOpq@gG<9`6CbFVeWWB1Bui!L3=qi6IwUNIfX1vj^7` z^nJb-XBHPDa;&K!b~#!`;v3B6(SyV-tnw=g3-5n)zWmgc$#KgMp@?$>WE)8g=}{=n zB6uva2dhqcp6t#kxb9w#9I`Oqhg{}n1oa>{KPoZ^>fi^VDApiyf8_xLN!wuvLWAMc z$<_4_eN3l1OgdK9(Pf{Tdc6_ZX6fA;5G$x_*Zui{)ccn*1l@MLM9dj{t+oN>P=mzj zi~PJ_!{$!%^1sP578e)WXRnnt%m}$Gd7H<^G|*5==dZ8WY2n%q`idtG2|j7GEVFG8fTnzIf=kzyKm{ntth{f8 zUjX-rB$P_nS1Q8@B=s+dh2C+hL2zfHl&Zg51HZR}gX}OIZ2yD|_L{hO`LFYg&3L5q zAwaAIvdhcD!sK3g9N5m0r;AZV+XIRkqG5M=7|vw@@9VvRfsSJneIkfMBS8uY_MVHM z=i+n`LVd`|Rd?FeZ6`>Kkfjov&r`cDfO$n8c)wM00!7v5W)X^Tl7RU5;BGMEb_PbM zZl#ASXLUV$?6-tx9iPkG4ydjY5)v*!YwOCNf6^H(kpYlVd*5Qp%@df=eE^Zen=M>EYMC{0COg=zvgwPvOQ)eYJvg)b-%N z3?Ug7sK8!<00%#ynGzi3(=6v2$0xCNulZ7?ae0_^R&$tQE4#5sd6mOxY}YLiJ=6x| zmRy__{@$~hNC#K*`~;Z94!d0(+w^{B(a9TJjzj)H8IZ9U_B9seNzGY{W;2 zG+O{b<1|r#dljEQ|FNDi5&b>D4+gN`@1oq=sI*EP0rH*I`?tC@xG0Lrr*}C$j^(*y zyQtt@RX^e8PFIW;HG~uJbk6%OyAH&^k6xT;4W&@k;N!3I(&q%pgNy?e{nnf3&yDUz zby(%*<>3O3U)|t#AdZ4W3B3JKn8!c9N5l~bgVikf%m*VQaSEVru@waG9t@kIyBHJD zK!Mf9bTUAA5_XoBj{xxcm;{pC1uLcxf$!g!z~ymck}Pm;y*ur0_i=XX`GfhiF8Jhl zp`o%ujc7D*Tq!DI$%$O<2SD1>=a)b(v4Y+95HdtTK>Y$nidicwaS&;O3>MP zP@fIPJ`-~yX`)I>1OTCCH5-;P0P@FnGZ~Y{Nlf<4@(=nq7zn@uiSzAPf-@Dr6-Zi0 zok*lu!H8P^;LKAN0=H`#8gyT3YSMs3c(iw}#6UHYv@}}Q+20)}aN5{>E-ubAZ|w}m z9#2rjcsY^fjF(*$Xlb)vGhsmqyRh0GO zly5gOI{FK0!UYiArhotquGhHSSG0!C&I+pF?haZMM=v{+xeTfM^w7idM1+ig8CG+A zO!eu`IHqMfVLO$c40bfYdMoJ;%y%R4g1rQyszntC*u;ZKnne zgC?{T#;Mjx--?Ta!#_-$UY^Wh=VyF7{`180Zhg-~u&o(@e4V&gY7=r0E%|M6F{b_e z{2in;e9eS2vwPu_Ea5$3bqx)Ie$#RcPU8DHxw*1Hrg+2}KXtj>05~50;P2 zA(w1`|LC{<^eN6D@$^Tm+1|Ho10INiG@hutoT-4U7e!I{8>s0t3#~je_ViFX1^XiCjuCrzl5x} z&wa-`0)OFm9*y|)f6pL1gf>Ht#)XTWeRjS#$@RY8L`$C&2diz93Sd>wHDWpI!{NAE z0@zya*|T!x^ubT*-QAn*U%qVOgIr|6z8mf)T0^9dR}>y|WMj+!u6&-!{DS|+1BLML z!ZVyJN9(kkoL_}AQ1RlZd`3s7qQW}HdGPVRKfcw>B!4~yp5!A;DxKqd)VDi*Kh9Ce z`TP+-q*3y(TDf|+l10=1qyNWR%G+HcS0n`mXCf{x=L)dnyaybs_05<2U~MrnJ^hQB zkuiO3IoV9E#dNx=*RRBS;^lq%96c&pA7J|P{@Y)mj-zPjd#T#L4n&9(FG~Wgo^Hbj zSXert5UT!o;Q+-Np1K|QpU;8W%z4&>RGsowkIM>+&nTb_xcvF^=NlNsmqYDPoSPdu zH9g&Z+ZP*9dOt1>j#e1!7yu>59vI;rYq!1Omw@QdmgkWdlCxhjaP`h1?b6gJg6Nf& zgUf6>r`@b)uatQBhH|j`vbeIBIKo_M!di9J5J5w;wV11c~Q}ay3}`qTOMOkU_t2T zFtvn)L=!lTJ+klzfKR%uqvK0ZV4%ibCXb`_2hLQ{4CSuHQ%!OoKQo_cyNu-Ry#j62 zBVfjS?}!R^fe!yV=ckdxw{Jk9m;SrH_mq&dd+Y>>Cct55as-ov=UV3A@GuwbXFnyR z*MLO5_CCp|)uKJ&AJDB&4GljtpjUTtW;BNY3^i)%+gUK-caoI+nkhFFqF?V)`0M?B z5p%nlO-&4EPt}((_fmwI))i%Cv!ZA{aunM(PmYfrZ{5PG_Qn*XenLvRjlrbBIyPHB z_M_~_kLQM{5k*C;lXEw|SmedNvI+`z4WPM}Su?#jJNpQu0JX!vsVYsUi+9!dzqTtX zDq7*GH7P94-2p~sT)#+aVV%#7-{$-GO=vy^g=U7Ho(&P(+f|>R$8`h-s@5qe^j^XD zm*GTT+pLpzZ}vai{QC7zV`k-MjN!e5ZA<> zS5%aa@lDd&x&r8P1s{O#`-9UdB{;agyTLs*KmK!LHgG3YZ$jTWK6`cP2}82U!@fQb;~O=uD1 z=5i`3T_Yd>+v*7;qru6xLq17Q z@X5^&;N9WI`8$gM&tOs=edJ?;O_EJ#vze_}*3fR)p*Nu*XEE0v&@dy=$e+9a62G zKUC#xI8Dy4?+MfOpPrq42Z3l1P>#i+@q1TIvzn)bfnX*%@q0mG@qFi()2HG+ZzBSN z>aa+x!5AUnnG!-56adG4`$9{zjlCD4q$KTf=)-1yOiZ`L0JPhil5r9H`#6Os;Sc$L z(zHt&7#RFDzJ((G#;E(zUH{nO-FGV8u(wnI5^6Ikex;sB&WHOwJL7q?fI$79Fe-b* zU!b61qXy2KBe%}}<|Ja7f!~?ejp=O=|J$@eX0&-_wJQfT)wf9+i&vpx*a3i8edP)w zRzBXh*I?)2p@#kji2+h|Z^y`icY==5@y^>ZJ9BeGa$(XxbPBU%>|qYP$-lt@dXqM8 zUf7XFSpjyB>74N1>cIuy!=|m{Q*{IBJKLvAr$-cVHldSY`Dk)N(R1AqYImSdM9e(v}qBsViPk~SIBlqfVY0kENrJ#TSp@k_sjZH|PEZ;CHyw%m)%MFe)@0j8y z+rZ?H$z(~YUe3Toy+D(7ZN5a(wFPy`QMR+SE0+D8Je`rUva-CkTYTD-85kM=%ii85 z9iLi(WNj7A%1s@G?;OdWoV52q=KKS)!JXh+b#}`=3rJ!nR8qnTb)!K-_ib4~B9D^3 zh4gc4EGr;}V-)4_Tf?q9G!v*x}#u<_e~JE<++c;9G}^F<=iEkWtx=?GQo8vx>#9FF#$8FrC&jB z@zc|zxv1ZkAx=4!D-{M|3@rL^O56h(QbqhXrGzM`0g_J>e=l@*cc;s4oaMCZm!OM? z=&M1Zs%3vFK?Rx6JO3w&WQY$4g}$b~zEAW{*w3FxYM=+zGBb;RAG*HxC-*Y~05|3c zp0MUd^2J_vS}n%Ou}Lb5=-4Uqo^L3gd3ukMw@D93y-hd=e@ zlsASTa~OGX(a;HO@HHPi82m`k9&ws+aqO-k=P`H`L#yAz&$lx$SK3l5{zxb~Dai&r z5{H>Xl!DrR-t@_*lIN{zU6V@Km81{eHxE?=we3 z)?F%Gyl4vxv)|aHyqb&!A{q3H)6?auE<2N|vlEP`49VaTwul%NG&wA-9^PQuL3{|o z)^6ii3Ecclyr*t!5`Rr(I@!xX7G05_muGmg^Vjmhwr}n?#Z+OF)rAGMiE(s0wS5R~ ziW9l<#F~J!LIFgR()X2XYj@NVg{Hn#cvS0feN_xFA%)yrbJbiuQik~FcTiEkgErXE z@Fn=c7EI)-9v}?KO~cO>fjQ)2U!uVdE_1&Y?ALd9ZPlfvJHS>`;byN%gp|;(AVfkk zv$7Iz6h?0VeTR+=D95X+sm0lW3nTucM@OqGE9|s!PkFug6^qNt!iY#n#_mg2x3x-a z{yRB&3!mQ>IrdcP%|w}rV^6$KhJ3nm2pojbRJ&O#pQKOa=Gz>MwtgTz0>!yUhqPVRI;PV&0T z^+>)3Q^D&Wa$dk5DT(3-EOjhr&|DWxR-&HVratU6EJYO(Y!S8_Z;S=48ZYn^GL!A`6uBzl-!(OI&@; zj5CQrO;C7sXtE%{1VLx_fFd@jrmx>IQ{K^LzxTQt)4?+s;`off@fJbJgYWa| zQCMa^78_fB(5m16uy*@nQOm(2; zEk|(ab1&v@$T2?5e9y~E$9<@jI5la@8nBrJAYmF97+G$v*OZgmT4O#DzSw^DAu1~V z;4=%BUD_luaF$ykoQ+|3Vri7JK;&U>eCjQT2~WB%$G|ZleDDEy3(p&U&({a3iNUI; zMVXFB_Sb}a&JYa1@Fdy2LG<99mv42h^i>XrpU4>AD&R#t;SbTT=>x>m(^`HhCQLVa z<$$TX(XT4Z_kpCt5b~$;gqe98E{s=i288M9hmWRf8xTI@GT>YS})q@>=;!O@o`;+v_lQcBwA$t>IOEMMJr>vl9nt2MSQlJy#B3 zp)N~KNwJj5ayf=%io-OTrM}euQV0Ml49a*8r-bp#A&c_m4SX$*$($cnQeMIfdGI^7?9(1_T>V7z5kJ(%>!&qHvQpthj;l z#NhJM9a&9t|M#E+lf%NVJH`h5AK@7r8B+C5&j>NiPqKsGs8mo;@jJz@VK>H+38&{< zZDj&3)?==YlX}SXPa%QDx}d&3DLtZ>F1?PzDfgHK{U;8fVgCMy+U z_f2)Q72`0__jxwJbO300888$*#(d{ZQ&Vp-{F%o-rVfhu_T9NXljVid;zQL#BH*j$ z0k;dsp5VaiWTyHM>brs2imuo57-Zhw!p49jRszsJ8>-8>vR)Hc7L;OGQ1 zo=Pz=(qJRV7S~$8)|Y_3U@2C3zH?eVh97(f&Qq z3J)}yu@2pij|Sd<`t<3ka*BZ)*C55zaP+Ru83A z#dQ>Xw z=kAOL30SiA1o-<409x-plm?VxHngittSX!Fk^=>EbIp@%g(?VEUDJfQ)5g3#Ve~)u zSFhw-R(rv)(Cs-K#C@YKZ{Z0(v~#pQJ@EpkX6e2j0Unc^Yp>Gb`hUHS5ZNw6*N>0 zt>k&R*&SVn|D)-v0;=kwtwBLhQR(iI{t)SuPHB)vN?Pd-DJelIrBkG(L!^{0>F(}M z$ve;e|NFqp7w4S4_u6aCIp&C|g6~pN;4&UBEiK(x57BLxYQ(?Pauz+opJy~RCdLx^ z)fhg0L+0-EMlSvK1QeJ&5G?P{G3yo5Z1g!H!ScHeckny--ie8cXM&98F=?HB%V?W9 z<>e;ha9Tz8uI@j7KBUlIZW|&&ZMD*c7mN4^^a7A2FzQ_IUJj$B+EI@2Biz08k}jSWG(i8THx3tYp<;GpL5!9kI`>$kr1 zJ{`Emp&_-Gim4w5JTExY>ft8n=<5FJ0`!rbIO6x$doSS_=9-7WEDY#%Q)3(>`6fpb zV#|HA`es|oD`)ibva{(B3t`r+&vw?PfCLY3h|=nsm-HSH7S?yi8?VS##1jK%_6&Hp zcrC5Dmh8YpGhi@G90e8Cb#i?C3rxML{hAlv!x$MX%#2SMamk28&E(|`pO~4Na)Ip- zL$pkn*v<-2+pS@iP^=%%^6Llrs`{t)0nF%;!-3pbMK`SV_NNl8=_lkz-09s3Zae{h1z#t{#^3_%5$8=QKe-vqgqdCjAL^=#rx!*yAh9|BI;Z^ z_>du@B#}A5pziG4E8SUjdU9e9ri_t(7gxafyA^tZ4poL(+7C9#1(V2NAcnlTx%$rz zpm0KX)j5MQ1KJkYLqgqL-P}ySR#z+8Lj8BJJEPb&=woPNa@0Rrxh2oRQHJtEGm)!X z=V$snY9Y&UmF?p&23%qya`K52#xAOqzi>oEx^FF4s69~>;^SMh1on}ek)U|iKrl!> zhMbO8&za|dA48S))%CA2?B+E>p3|FTWUj-wczE8i0uHKbLzdj!NnO|1Pbx`;Jk*)# z=q8k3MttWh<-6DL^tZ z1h4_hjNP5PB^zC-MMg$*hLClYOK{W>?qppCR{JglGi?B#9YUY%0WSTM*2c#93|>A~ z#2y!%jjZhKFRTmQ!H=(-nx6iLFr%gME18$Z*fHm>RE!%6?-UgDyj@(r1VIq%+*J~^ zJ4Nu8Po)=ffSb8Sox=(fOA0W}uzK_J6K7$&Ir9xW_5dy1+SwdMB^nB8pmSOC^=0D_ z3;e=BA;?N;1#O2XbI46<>Mj!>U&1O(4;JQ2iY7s2zhF`*vtl<6Prc*EBNFb0e;YZ1 zFqbS-k&uW7rx|etxyi+wz z;*gw|)TIWGg(3?9UF%7=lW}>T0yjC~ImuVVQ-odNa7hS3vb_;--Q^sxaPs5F4sND| zqH`aXfYC{Jr)7?TlT(i_m|MvjFi^l^fyqVGR23h?pS+y(dC9#(?a@0+qOc_&Lsj*a zlbc&!h^@x6I>rIkU@5G{9f?*)J6;TbC=Osp&X8_j7hXNz+*HK{cO0r&{Qx(Lhe01U zhH^|UE-r+_D75tTp9e~1DT7I;!*pu<(j%PEuo(Lrd-gK9z*~Yy!rQ$kzBoPFw-nLn z`7gYA#IW}~FOKhD9?%K3V|kRka4!$DuM=A?c0&VTd8nyaZ6B9`=}m* z%l!AN0JKI|(TtRQCfPTyU%yr!k#Z|ez*7tDS zWFYnhWhQV$Ld#3oV<0tN8Ms2N&Mq#G!Dg`j2!Clm2_bQuD=9Q?>GtY>Oq_JFmadpP z4@k;Wp>?(6u`T;AP2~2Wp1~|%_(KApw{><4#&cSVGla5Tjl-5^Tx0?8AOV^t!VLK9 z`&SmAFXsyzn*GpeHQa}@o%`3fI9D`p}{fP*Vlf&zc8O)R#ql@f4}sba}dKRK50r5!GgE{ z`d!*-#hS+Ej5N;e`=UG1UsADyeWK@`Yp${4qy}SkqbxvR*dpY`TeG>pfD{9v#+pt} z%I@H9NC%*_iD3&Ojr1I zmsh3}Dbl?DJ~Ut5@F7J49yTvuM#O&wY zY}d;vR{}P@?O*V8{(2$vo>`(PfYG_8q?Hz)r2Bi0KfTKd{f%3k%Gn~8ps;rP)R zoAdtuYoruu-daF@T(;wFHr{k7wUK}q10%eZJacG6dGQGDt)Z-}ESt#feO;7#YDN+R z<;K>O=XATi>Fvtve{Q6jC?mg-(&aT4m&bH1*^SqMeei35Dt;=@!jO5e(thca6>OZn z)D@4Y#FE-c(Vl#&&j;wUKJ!>tQc_zO(k1Ty8NUkwmf6sEyUM+Pa&w1_%(fyYC-@8O zE~j4&*?0_V_8sSf9*Ufald0Vc5cc|axZ>CS^*7kL^!?%}(PA-%(5jZ!@J7|Wo$OMj zWOU2j?Qe$?%U_>e5)cr~m0OQJwp&%m8~`e>mC>M>4Kd);Ql(W@k&kmyVK&f#7=}sN zs-=XShPU3j?oQ`GIcSB9)Y1^!kda~E1QDa;NKKfPHtOmqL5ew#U?a(Y-|?Kf^8tRi zs2#7Ku!09Q{FL(pOyDN`e9Fc)xeN|fw%Xd}sE3_EHbw&i$kXSbX0-vT-&kMYtBBrJ zjNo8tm+*|Q>BsKWucl?ixv{7l?joBD(s4cc8~^Ms0QR<|L_``#i;`4mnS#`Tl@G&P z;Y$FG-KUc+-?|MU@`d|--(zw3-+qYO@kRfD)JfQkqjpjGc!ro-@mr#kA#fsoVQNpkdVe}1~g0a@_z1lzj!f!3BMvsOI7uO z{3i%FQ_J}A!;kGd1|_|WCgff1Uz}K9z?mqQb;TH%yCeq79f3{+WoC+aNG9-y|s(1vxy%T`dOw&ktnJEzGVAPVjvc?2FT0L@_> zk`BKR1PLSFNOJNY%b!2*D-vF@ltt7aUR)SK&M2F_1mEZ;2VNTkX*6fT@4nQsx)T7|^WQT2)mg%n)XN=^{<{I9MS0tE(Sl9{0Ps-P{VdgIAlNLp>oUza*x8i35_$ zzAk=wiu+fSlW%Fg&SvC_fKN6S74LTMG&?9Xv{Oj8s>GdR6G1gXAySGm}7C|{b&c^o3&Tcb(XhRTK2<|FfA9)>l-rYgRX!8~Q(?jSZsuOnPa4 zfjmJ^&-Mp^^H&B2xsV5?u7zTc9)T5c>V-_71mChG$-qcFUbcBLUx@yPo`*5HU6Rwj4it`}wR&XM? z#ggWO&wrw&-K&g}<>DZV10yw$hKo&kRS%DQto;0{V0QLx3uqG8F@xLyFo_M;c$`=@ z`uQ2W0?-W-?HfJ-EtxT*G+f`Re{}Q<#1enM#<9?V?@r|(QN6E728^44y*+pTk3`Q| zo;5U}eQZ^r1sWzh2ZzMF87pZ}?`r~_V+;vy&u`DOOw+%83lz_J{z2L%;=hJ-Qgb6C zHs~v;l>q%#XL6<#xz(=bZ8!@j2qFd0plp1cp*}TLBN>dPJ53C4>Gn@gZG|1_2kg4> z1z<_xBVsCZg}#2qES?)4=6wBbPmAiWK&ckSpWj9W(Um6(W_*0^30+-GI{NxEFWlWx zf5Ep4Eb8XN0?^caUaFR(!>|sVLk5Np6S)17y?=$Lm`w*(#S? ze}D_>=jup0QM1{a&n0hSA}(T z4|{;XA5-q30m-)qQwvrWPNJF##abB{K!jaE$|p~|Mp;#y3m{YmYmcpQ;3yy;!l5n zdUe(54rXlGRMk$dtQ@~Bcmy-xP^9(K7}Z{zP3?hW>B?A%F_^27>E7^<&@kmT88Eg!m*yN7Gx-)$?)^on1~( zJNCdIp5vNNWH(GT8|@a>z}@J_@o#rupRUE>VBK7JGh6@mWJzdlc2=0ztV{h5&~jq~ z0zQpAh{^lZLIO`;YpNM_r2XsXS!C)C(%64!GJd;FPy%RZ;s?7p9u*SA-2*m0^$)F5 zg@TG>XCUC)n7`fSTje#wB7KbJ?c?GLKKaQz0f_r7<>EJPjF; zMiPG`Ot&vtk}X;EL?*!n+nAc#JAd7pEPv(J%Gq3U z(65>*nVO=^&iaH$1D)&-^o%^BdEj~eBukkgmXQBS3B*Hp`1nZW9tcv(YQtNF@>Kxk z{K|+nxpaHSY#%yK)AWm37*amHZGK{1xwBLK<&)0BV_9D!V&Zfmp&4h$nS$|2;CH}c ztC5i=+pQ^rn~}jl$T3y8cMS>20_pu1tXsg|bY}(~^1F(38!MBAlEevu&}OCuNuUz1 z@ba!75f}Tz|81E-R>$1?qdWE{>0Mz|?ND&NJ3Kq%+FV~JW?=U0#iYFil8XmK)@Oh> z=vjzWBM^=YUM9WCb2{4%h-_(jUOyi&vX`|91tDqw@Nf?tJ>;-=ZXyvn*ZzhDw6eX! zvxO+hDMZLeFK!r2WEzx#fztrMN<(jl%ySVp_H<(ZB5-p?f~8yg%ku+Dztnmi@|bjR zXE61|ltl#wWYT^@YZGaZwh%%`!5*2L`;YNb0e6ZJ?8b?~BroePw8ccq#=icu^>2F5 z9)RLKrWZ#>3hhu<*A!lPlPq?N^Cm=p2* z(pObkS)i<{8YK%m3OQe`Z+o4@*3_u;JbiOhAAacRi; zdCUa_&rSOIN$YIykTLJgHHshwe}Oq|eG<>qSBUi6QIzE~!Nzrx5ywqzgQWz@of0vz zNXt)WUSQ!Mt@KF@(D!ZT|B4A?he^}3vLX&4kf^&uhO4);vkW9e83+zfh1H0hyY*Ir z)}4i!AOmm=S_ctr$J^PuP(t`*8fNAhK>%4f0hF5oZ|-rGh>&Ni*rK-5GBSH1)Q;%S zHUnl12nfs(HjI2QMSP=T@fze`Zl^Zi-ED0jnFFB-7-N6<+v3eBv%W2JxsI`Y)gd4l zs~su0Rbqrsb{ejEu=6~)d4)pIEw^oSR4Pq@J|n%q3}}+rO~`jvrTx4u-|elZ0l$JY zkOTexQF6y=*oP1JKY%xa8XOEJmJV)iA^!zRV?o?&wyL|=4ZH6|*}Dpk=jD^MwBk5M zj&j|Rai&RFn3gE*^!^2onCuoD1MQ1)nY*F<{sdHXvjLu@N#C6CSS~r9KQFLF{J*eo z2**9JjXMS|8AZTv>V@;qFqdO_^oTVXw@o>^>^+>VP(^hC6YRK|NFEF(cehLq(|a7j z#M{i;ItyCqjKn7{%nyeR5jV7_hjR#Vxt*=8m2cttA^CVr&;A6Uy@lYwKxdoDij|je zuhzCF6dXN01teA6`lqI-~e%fgf6cEWXl-b zJk{(c#|$knPXFt6f*6|u`eX!E`dOH9BPuExsOI@hqQR>bF6dR%7w+9IN12^Q-`g8d zL7AAno{#$S9?5qHu}CRem{BgoDl6XwJ2>`n-9tGidXbHl)JsHk#R`v9~h8=QZ{jD0|Szj-$p4W9vnN3 zfgg)v0b#qU(y$RcZ|T?9cP;1v z1m*;62CPVF)EKZ=|6Y@>ZP$sP?M(640&G;2+e3!yq;(fG$!%H_hdeBLyoQ?-2atqAti2!|>vDrW!u`EvvFlOxcDzj}y%{-E_>$*4$H_5k0M zBhQuk@|Bueul7#|zCxM|z#k?MBSm8bKlb56LwjK}zGMN{AHdG%Dl}OE54IBcT$21k z0NDnp3b}7_K&kY_(Wzog$gZjJ!P`MQ7J!$Js@~0MS6Yp@9wG+dh_qkjIUH>4Q7m$D zsfo&NSxc4#HfGOeWTf}!=P2X4w;)moHmtw!Oaa1V!}fOa>Dh%;`ro`FZ-HZLP%)?WS2lYSY&a(PqeC9}S_x8~yNT25P+YXofG7TPumSVh&P zrBOeCV)3w2!Q1<;Cy>Udlh2@1uLPx2Grbl|)in+}3wlc|BfcE4Rs7Amqhz{j5Ho*< zK49WY+ya)w6=Hl=Tf@r?ClphtaaxG~)z#WI{H*|8912|&npdw}JA{uAWgTKZ2&{!d zP{NkeXDjl~7Ev2!K@z}3T73LCF)r@(yGU-X!E2t4F?W&H(I~dR0P7HY35d<| zU{JnrxWfDr3jIK53|9zL(N$20Jq#&6qH@`BP!-EC{j9u5LxWh-L4l+^LcYSqRP6g9 zEuUU4+3{Whla9pMsX`?$&%9@Fkb@+hEf+zzy@g9VPET(p_VWu4s)~@?F$US+>xGKy z+Sr_aD_Lv@!UheXOE%al9NtqDf@YQj?a2iZ z0>t!UI`uR*cK9#BD>Mo+z{rV-4FI|8!fX8TZ8kRc`Et<1weAN)3sh7_WbKit)}nE7 z11k_Tms4C^o#^K${EUj~C-Pft%aQ!JLy?_q8vqr_>a`3E<_kghHsJr{_kR zbnM?VKP04erD##!Zi;oX(_gDnV#8#6J9iL(>a)6|-;PsU4M+j1uf;gWh4l5HLp6|okcpSQfV zxBOmI6vS`87{B3n_a<(!N;i?6y(4qIH{w^@vG589|SB~^6~G!x4GmO5MTriG}HO{IhUeb-#I$^{wq**(MU+A z6#~a2PL5JTSNGw{n(K>qcAvYCpufjFQIxQ#+9QgosOb3)e$FN7RkG?77;MqeiX?z| zYOHG{#rPN1eg-CN~HK7RbcRmxB>mpiuNN}j*bGftIl+#s?pcTLb=bONP zd;a6$5PN7F0wfZR)b;VsP@HxraK*j1xTF+LmPCWO-vK^g2^9QJHHSM>wHZpbUbJ`u zPWBVo(B#uSbWR0k%B%JTI}7_YkPfmA!zehvt*xyK0Ka4K!Wh__{yEn7n!WAgf6<+^ z!;q!359k6mC)WsGSorO_oTB0m@t!+_m%f34B0=lgZE;RN;2Iexyw3%j`ymP56EmYJOZa*^Lo#t~0$7fY`JKrC8T3u#n#)|T(!at@Qe4og#i=SA{K+r4q{sEuzb9Q!iD(1UH81#+RUq|;A7YjYFFCNLn z=$n`f^_Q7-;|^FP{O;>u(W;;L~M!UBXA*BNtR+Pw@ZcSVq@7K1}X zWE3Vw#kaD87gNyJKHmvT(TYNt6hk|hLIA%|UqwZ;!jXm zBp|pw=+r+I@Vyb7*lWedBt6xQM@R7Cns-MzO&7}1zoh0{LuI79An7Rb~7}j zXa=nfYhK>QFl0sK(IFFJ(BHO2B-KA57fc848IfXwG1bv>r&{O)^~A(f zpAK^@EM!PQu3LniW?ne(f6|6#ru7~He+zk{udE_D49Jk| z0Xw{HT6uZ7jBT^;niZ4}PNW>-1vZwZCMsK-mq7(QImJO6BczjcgDHg|NqQqcAJ$ z%Wt3t+6DfAW#-|30l$|;yv}p?;Luk?BwsUt7Z^6W+j38WW)1A?oqcH{NV&5qN0uZt4M~BSh zM=TqTW2lwl(dIuQ-ER&dE$;%_zHYeh1qdBSgkvzu^7C^-jJAE);I#nZGluMB1$h~n z&CXsSCEu&_`|=(3a-aYH1-gpn+3Bp(M5VPWVk*A8qg?(*dr6Ch8yXID&)b@{$3JvV zSbZ!k2t$58K%z?jq}*p2*b)HGgA?~bs9u##C~1p5>Cq)HlTYCi9kA!6JFXm8y5fWZ zU;!?Ldzo<;;bMv?=5UvBX)tg<^Y4Ch{9D9pu1Et}*I_~~EaN?6W5xLu6*kHWWGFyC zZ(Ef<+!`~RQFaRc`IGP9bmtc*mG{4+IUp%80g8O~k*Zu(Xzu2Bz#N)e9Z;?dG#4^9 z13?|0I#FJPN4M{T;`idk8`EzIabLci2ng)ukySFu<4$004c3K)b%}a<20H*M4sNUL zVJK^CNaBW}90Y%aKIy+U)GRhA($mnGxtxv1o`l&wYiw%j4`Usjd&%YD?L)nH+Rs7h zGK?7b`SA-A{CD$59ZdW%(NQu^yMY%b1aQBmpSbSh;BH@@y?2Aq`BQ}n%!TLPQVslR zHLDJb8^OpdFPD#qzY0SFoR1AG#N(Eim)V}V8BXuDB#hC~b)z$$sNr5Ctr!r=rn-m6 zBYC5Beo3XQ$H?(f*`<__abux%9t+W0^OrZW!NguxDqY#{Nmzc1_#lAS7 zfs|k2w1Kne&n~I(dl6?1LI<(~%cH#}Sp3_w1R>9=F2wKsGpR(0`59pGz;FUzqZhVk zi>-!vf?nq#OjN=FJyVvJMD-pXwPBN!It&c8p>PlYxa0|1mjc>1f_I-GUnr>mQqa>s z|9Th|WrPd2R2y#Xp^88trg2A|%+9=BjhFeF5SN+Ry9=ac)w&gq zsuMAm;PacyJv_uiM0?^xfwaHti(~2YP4$rcM{)p2s5S6IRhTrcE|H&X7bC*477*d3U-;hPq59{B!DU1c5P?xjNJPY7IUGB0U^ZaC(p4!OUlmNd#%ZaIDVfI+5AP9aomh z)7?EEII)b|(;Irie^;ve~ho+}FQ34H15Q7TX-MoB!d_EEW z<+JgY$yViqWu%3K^eyz0T=pUGso3r2inFsr`N4e-NY%p@23Y*Uw9yYdwlqDX0T0B6 z88=mw4DHwM6#$9*2M60&n3#;gv^f;nIo#9Kl+zicD00u9Mcv!oz1)1gj$^4<^T$nb zQ5KUr>OC0OiYq^|22%mj2q_X-kLHv#2`2C|W-oz*G*NjD0QYk}HdifiakAdm>?pg$ zKiv)pR;%ZJ^ixHtL!UlVf*q@<_{-WqAfO^ElREYZ>Ha&+1y#4ur=t6AcQ`AEC7#=y}b4{=%cv?-L%w7j^fVukPVnZeC%snD!^XO|d1)>Vy(d z{InuFO))?yo5jb(^rr(bo_ogo)(SO0-MQg8CB-Hun{ICWY+SA1dDJ8=ggO1%+?FfemW`BCL94Z($bv0Il*j zkD$m2OV7^sTRU(=3izG=0UC4Q!SD4Z@xbUWLEmKD!lY^ej_$iqbiP|!H0}YCt|k=0 zhp$_*--C1bci?m*k9- &S>}Q;$TyxQpz_f|a$1R|qCKdPGS5kIV#tiv7Wkm*t+E z0QiwiY%MJ0KS5d#Y)*#X+6>B44WRgvaB>cxNlHjKBW=)%25#uV*`ScZkGHh-YmVXR znpZP;0bZcSV#)amroM;#wH(nGO$$u-#{;Q5a}YDRyu5@*ErzBjZ~9V;5XQ})-wS{K zmP&q9jTqz#K?xHFXuwIhfa~e$DTFCA)*#;EjE1iuJc9(93#e(A28YyGff!nwm1QCz z;y=Ux=C(u&V{u;8mz9f)Ya%_J=H1+uh}JWneF_DC1p|LJdZ5R+0~;^@-u&%T(!)ca zw_e41Pf2xj5*YxusRhA89aIW>FNKtO;x3ou;Bo)LGuj)%Ryy{XmffC5YNjvFI29~7*5Dy%C z02q8@eSQ7A&S<&^%5JiRckbLt(omPl1)DG8Mh}hQl+TnmWZH{JKtHLguO9}Q!1CGl zgf1)4_{7DKm!Ci(tKXuo2UGt64Cb`JsJQb$RKCac}PY1RidTfs;(Yr zT_SiF0;7clr0yx|sHxfz@=9v!&B zFGfWoyyDekcTbF~*$1$2c6yp)U-%ytE;qLb_Nzjz?%*unvK{9$oZqz|Ey(Tf-~XU;KlncE|IEw4Ec1hC^+7UB%yA5QkZ(ktS_U2(`mPsBGQa=3nuDQ8aLoF>5rJ0#!JkOse zL3*{Ua*MX}eQp~qB?Pa<3eq2AVjLT0Mn74k{M(q&^XZWU_mNYBS?uxG2j z8v9I^^U@1>?)IMn5fP`A-RFnSby8#ZgYdm5f7?)#E4=_O%hZtT>xY==v<`NknL~2? zQ2w3%2N`v2^3u}b#CUi{^BWr)XkQJGk^NW^uDyG24}l#Zqpi(%0!^u@Z2FE#)m;GW zudcl-VSz1UV@DGsifEB}6Rl%Yj!Oie9LkNOJar|#{o~4nT+2l_eVj& zTC>Ijlfk3ON|NibA2STMpvy1Y*vMOjo<&1}-cbwl5h%v_!9Ae|flM*8-2~jFeGf~4^QsNL;ll`{+`#>OA>@`=yb9y9Dg7+Uc{IHK=8Cw$TO7?E(RzxaJOv8Lyq$zj4y+Et!I|^D?F*^N8+vZZoePGma z7{4Rv%+w$NQnI1$ZZ%eF>U^BXB96Rz^NWi*;lE#F0p(>9_{L=_D$h>ttSXNmW`Row zV5{FSKzj&wHHp~R*q*c-B(NNW@AyfG5~%^xwBMpaM*2iUQ**HK$|1^F^mq7U#$Ga$ zQP9h=1T-(O1KEz`eLe~7DyER6wt;!AX4&Hxz3j_-f!!1TjI5xzIH$tF%;Qe_~P0un^^qw@Bwi^#*N|pg< zY>=6aZI{@24AX`W7#RJ&hs*a*fOyD)wWe&}c-uWKz}v9`1P0pVpHZ#G2OtN-{oIg( zCXIH0j1=-)l6#x(T(j#oxOQJ@FNdEZ5jN;n_#@mwP6crWKnY4>dLhc!`cFekPKL!NU=QlKv zWBI+HBqm8B3<~;h1Hyqe*6i+42_&n1k2k?*y@-BoWhDn8AT5x{&SBWVlDW2`pDvCk zjE9HK#LqvC3;!<)od^;V%rhPBpywvUvfTf=SCDTN54@X$#v6|u!}<2s-SN^#_7}&DG*6y<(os3L7Hnxvxp`hn0CXxd$T0Id zSVZMwWURCGVp}rW)^mZVV2Cu_a9+&Mjp{N4~U=~s!`n& zBqWHX>jBOUCJ44`(~s8xPW%X+CH1@Ul2nF2rsx`H5#ddsR{*+~a!er<)G*+P141?N zd`Aq7BlKRrWL10N33JR6)6Q28a5=HAI}UmHad5RjUm^mw!w3{h*0t}_UXA3Ubj6!N zpSS)HzlR2w;8ry5kLl&Js@kyYT^OcwfP_B-l3+r8`Y6POOLI9XZK77VS@_> zUn70EL?8gs?CtFpL`r3;KqX<>2z}Ar-Ser*o7@_=gR#x}dZEIPAGfQXETeOa+(Sj( z#CUS_PgGP|r>TYFDIKf!3z?cHnUkeB&apVdtlQCosS1-8La4@R4s#C1eP{U(>jQ>jP#RvgZ6Zh{k~uNq)Js}E=5#O2vu z<=X0vL;$lOEKMplfXy$!d;|JA>zySQr|1xy+1eA`xhEop*%nq-2>BbztmMSZ4A=C? zNV7Ij4&6f<$YtdChnx{vS)d8>1aF<6FD|4_?jj-CIZny{^f>W&u08`&;83uIYM~JF z$kdjoKVTeB!4_$A`t9!?2-i~`;7wSk$n^{>I0k&t9m#Jf|gO8xP)8pbQV?laPZ|03EjYb8~PL~yZLw^2; z`_1HNpc0!J7?@zreFV9O+vTMb@4+UB^K5_IkkNw2OhpB&IyX1hs6xT#GyzWqxQ}x~ z;wHe(8l(`uN;&X(8!-HiMe|;%X(!L&=x7=i=*I4(^{s(IX9z|SlirIG76M4=`u-P^ z*bQCn3SLbc?S`o-f_LP@7?_!tK&x<_fJuZ51`|3uf1C0_vpq5_!{H_<`r$=W)_?^O zZA|C#;Kp&rU&YPW=H_e4;^H*bg@wtwnwqnyNbA@+WPtU>7&hLZ$;rxE5`dX4x@QCM z6{bdAXz&&1fI208bnL`~D{3e5VBbw}u%|}>JUZ)3=;dM1`VZce%Uti50L4Fh_UsM) z)3j$wGBWwyeZFnc67`6E@Jz}8v=YDw%xL_#YV8j;Q&AusfCPAC`to;nfv%n&9v?y^ z?#LOCf1=04?FTy>&d_hv!4M!55z+e*_^@rjI649UyZs%Bfz{C>k{!s_Qw@$raz9>| z-2+$23dty*C!en0;b1TJ5MoSXs!L-&hNE3$W!Y3ElW-0y`20tYPB3b`GBPv$J;A5C z9|_)$El%H?e{1->drYuwhGu4(A+5e)8oHCw@d81X0&+1U(;uEoi|-N-D= zzmeqOaR)cP>9i#v#g0s5p| zu=sEiQy346F!Ze-y4@;vwUSOQh4&#kiOZT>R7vU6`(`5*AX!`kFIF5wY7P@>;cr8h zg3$V_YHCIS`;pMy-JKHv?43OdLa=TyMW9-#NtZY;v4590cK>%D58vg_@}Ho(w$OeJ z#F&@ufARjZ((0HU4 z|LEVVq*;wia5*Wu<3e$p^MVp{puV0nLm=sf!t)hbzxvtDp1xk&18(Ci0f}d&rAL)G zt&cI(C6Mo8GGg5om1y0K9BXS5!+MA+`Ay!T1zb;G|GN}FXb11`S=7a|nKg>n+o_ky zj;Tk*gG_z-ZI!dqj zd|a(%MX`Jjd~j;#z1bA7wNdyYLmLfg;Xe9guUZy{Lm~V-x9STGWLXlzj1rvT{AFmV zt2)o1XVE61xD6bNEy=Udfh|2}W4GatF>puum~ywp10m>g*3dU1gLx3#pQH=GPILp_ z4?;5iDs70+rKUMsWgNU0BsOq<^-n&aa1TPdh8=$D{dS#NpR5Kehd+~jI`R@c5Eqn` zkRS&7HbU?Vw!zs8lMuTf+>B@clawkzh1HauNm5%o!Qb<2ant8KM-G{567|r)|HlX8 zzl@d+hnG^ouw_Db=u>fXi)Rd0V+Qz2`}@~1es8v~%y&#*mB}zM5uQNDJ5X!C^j%NR z70_08A)%CiG|l8a)gL|L5SRLoNpf2sL{CG!&yq!ge{)@-f1cCrL-?v{BKLjNvza!N zt$DP)&-Y6cv!tK!5fT%tcjewe1`5gFu+Ry4GM=}jjBIR=HM7l(j55Z1Z6#O1--UH( zaBv*bf7Cklb-1}l#{nJFP7(J0z7D2FCwA?2o5PHz=>F_a6_ek9A?_X}cBrzbXhYAl zZv)4iHF`gk2kf(yozejmP1uP~OtcssR%h0et#Dl14HFMG-s$b>(E{~SiN8Y<_dh(C z3dIxS;Mnf0tr@(2<|PVV2o&*6;|L;sTUevsHk z0NTOT>FC#YGqw7zTcbPtNJw3{7IGV$?fd55&>-y4E^Y-RCH;fP^D$0`?vPiU9bSmCEYz`A?N|VsQyO0R&IJ~z^ zvGof(^^rFRCUPrJg0XF0V4`&W3jM9z69(fXF=2p{y@AMR+!q!Ey5mHD zMLx!>w;Ynf0qM`d>FnoEvF`*0HIoE=NDb*R(eYNR2L}f|NJw-+AZ1Hj1YFBX@edfI zzdTM7r@u0vZH>K(QOvf-YMfVFAbQ>e3HD+u-onSTj`5qz{6` zkdcsNeA72vfi8G)aZd#*g~pn5-D{9*o>Pc?=ghUb=2>V7jmd_&=$C^7rOo-S9GL5k zLQTy9<2JlnVPOM)*nb~3_*^q7-xGq-#{fCM6NC3$!(CLF6msAeS`d8Q`0nRNHBlDf zjLifv-BlEby>*h=7`qP?qx%#6-xJa)^Q$4{R0)xDjm zwS*+XmKzv-;+gjuD9g2G1q9q(-uT%@O}C=fJDA;#Y1V@iN;?cd_eZdX)-cF;EQ&c^ zZvI3MQi%5H>Axq!aq9N+CFwm_@hGAt8|FiMkd+B;NF-o)Lku{_*3eMnCO1++jjE^UeRJcFWynGGH6IF+b*nPH|=;`|Lq%Xf~Yu%|GX3xT~ZbW z|BDrdr@FdOI@!{0PP0w38c8A28Aus|M@nkp58VrFuS`GkjF=>S&M)3_fU1PrW{%td z$yJ}r2$m6qbqH*63K&$q6tF&AmX%6Powb?)McLDwR9;tC*CUwh#?63@npoTxMX0yx ztM)jrt9aE7SjOb!4f1d2#7viGyMQ5?MRE4}8UN(@f3Wh!C^0D|?{dQ0$!hRT>+$EQ z5_}ev83bAK=uhS}W{Z-t+76baci?5x&CW-vCvGI5L_!*EYW$D*-PYwG_sxeRjOe~e zE1b^<-n2W6j)K{Z3lnMM6_x=RFjTc~kJSIyX!`6uG=y1@UpIgE&K>#r9%+RhgKoG~ z4M7jwzPpnRA?lNw6j#?gBtDI_B{P}59PJ#OoE=)!QF3Pev@uGTCtC$SflG?xdN#u6 zQ25B~q`at`COaIzHwS}sUEvcrEhcOlZmz49ZcV-!U;cn}Xf4 zijk)9zC^7@Z{IFi5Pr!uD%dTyuVgtn*Mm73P za1y~RHoX1y?Gdp~OgANpk>C1yJvRc>o33;JRTc5<9ui8K*WN68IF#vHW5u^K-+%Kv zt~wPhGzSj}3XL^8OWb<3=c+UV5zJ8mtTSTLqM`=gRKjty6k^i$arEq1@9Pss-}k5_ zB-Y!oFd0$=1eCQ|T$Vrzr43T={JxG3Y&fFs>k*A(J2~a9rwVym@$)(jR+O;QM9b(9 zgN1kxg%|bP?A}o}y)RWGXohpWqp+(u7->3PWz{3z3Ksp^adk=yT&ScBA&bRCSkHh8 zTXtQ${EfvULiQITJUltv^z>C_KO&hwl+NCc1iwt;p0t@EW*GV{mc99!n%ZTuV$e{d z!wmDcUL^sUND3eDB=CVyaAIU6&}CZpi;nM3)AZPjZyuro+c9OQRN9=>1MgM_BH|`) ztCr7;k8%}+G_<)zJ$v0ft8+RG0t17Q=%%#oM(cS`Z_4)mBrK(Q#svop z^iEDnfow4E@NmU?TeGdPwUkiEgVqR44la0;>7mp$p@ZA`R-)DgYg4Xdt)-_22rbM?T?~t$u=+x83kXb zuPI4M%*xav?*|4vSs`Uiov~oB{r7L=!-IpeTBnUc82ymb@V~)<)F}vXS%nF0oZWUf zZ2FsS?zSxN`NlZhjk;oGbzli(xO@EQw*10=PdAu|=Pe5WK$dNgKkW?s&b*s_s-L25 zKG%-=oCmVtMC3GE=dR`rCeWL2@CHjx3hbBKupy_~6#RkMekII|EE1Cnx_w^#6LbW| zNMoi{B?F(kOlv%_qpvj+JQI!u<|f4+8w`P*u{nZkj4V&j6v9MyPlEFv0lZ1tzL7 zy9MW`b^^c)55aq2>*nV2o^;f<^WD4r{BVf5^rhz3fz?a)y#@@7_4S>p>WRy9o1WOX z9TZVaLd<#d!tCs#QgbEKjKY&!ea(;GpVHH7rt&#PqPo6BL$T>)`>$A;;m8V%g>lW- zkS`E1mJ7}8i3P82-&B|5prorh_k+?mo0sooFt50n0IUn@HdlM69+35l(nc$*sQj}1 zPp{^92i*6)BqxalTrf)Ew$nmYBAB4i7TSs(s?HRL*mB5=L-9f-7AJKS#Q`PRLpWGS zu3T?VJg>a>h*)6?GVOj8dKZKexNMKdT^fF|pJRUQ-!oz3Li0zSe?(dQ5!cNT1ZlAk z0vj709i7SM9a%aJa%ZX>HI_2O@0I|(hq^SFT~HZTH`ddG``mI+A`D7@QTgzX&9B)l zgc}XeMKK@1Es2oI;3ZWQhjGg7P)^@8G)+wEsO&c5%2&yJ9*yCV!tPc%=kk$jacs9|y@?8tb$l=#%dJ@Tmkpk1(Kb zA=p? z(H`Y~HV5az{paSjgvHwB+?S1djKH9Yn5h|uU^o_dNM`hK$dzuKWNyn+Vc z#fC^=clFwqzC~;x;K<1fTb_AE&VNG_6WWdgnW(D}O!z|>#?&#Lrq?+I>Ucr?NSR3B zLDvt3^uWi6h)`l;-ecF`3*9(@--s6tUakSq_KvWzv8^VH_?BXa_CJ8<%*4uS%j>d@ zQW(v~Q{BpssHgn=e$#cO&vjdqL7Ne~zDF_sV?qOL>j^~~d%tLFPgFt$9;bRpK;F;` zsba=HHrosNBB8DXEb-Dr{7xaFs)N?|^n}k1TfV;}!RRo>9-Z?o=y4>MjvyAbgNW$R z&`?H1TWun}r(0|wWC!>U`>PMno_5Q;z*g8E?tDxPW3VrP{em6F!Z+1C+#sR)~7{*4bu!Ua}e#&JE66ijX04R&(3>?EhyiOZxaA^U$xp z@2MZ3@y<@IuV>}s{>r1pXJ0PI3!p%Wf)oz(_@pFVaKzHj__*{Y z?tglE??9^eKYrYv8A&dp5M}SZcScIKWRL8Tz4uB&LiScR3E9~qdz0+F_vZIJpWpZU z?XP>?n{&?lyvFnSd@PYr7{QHf4&_Gl!TH9tgcm{xCGWom&#jZ~>4c~@5=$H$z~3XE zq&`BEh;E(d1v2M52q)7^j)_5MdR6$_qVWAv$;$PI_fs~WYXkEw1dmh%ukH@%*0~Js z?d_HQe7CIN;B|E`G2GkGkUEb7U-Rd_ITuvSR7mpD5^B&^zMB)n;j5+-M8!DzD&m`_ zeDicd`u1}<(-FdX(jG#~p*#Rx{OR%*?pa?l^ab^p=PIaO(Vh-MLbFH4A|YBS-~R{Afo+Ue@3(87^w!ZXuLJkv6tLcggi2jjF9k1$>06_S>54EZ{{6J!M3^c!=M8|i`l0$w5JsG z4Gs4ff{m8cSK)-!fU`**YRF!RgTL#;Pitvu>*>WD7Stj?oT4gd zaSc_uBjc95UM`sichHSgA=e&ga9h`rHqZ1khAq~>%TgJ}zj9Mk#7YpXhm6F46hMzS zJ0VPxo(RUaF6Y3jxAk#*4Dh;EiBeK$M?b8vJ1pLoWf3P za)t^Dg$m`8!i8ODQV>}@`_M>FukRa#F&Ch)>N9eV!?$l{&HJp((^XpF`PBT-@X9F( z>l^Xy;jh(wc}k7$&dz0h;y06Ng`3RVh-w%fqZVX5mPi^DFzr5vB7hCU+?2@YQMxzu3(6l><*fjo9aPCD?au`#*m{rg4--#z=}T^b_! zIS`p!gLkUR;PZ#o7a#KTvCY6Ai1xt)MMT6C1i*7+1S03Eh%*vl=PDhb1HDLq!d412 zHZU~z{PX9JwSR!sGrD(~FVp`efk6m+NlA$%Kn)C+F=RQPD`$|MgtVUtx41t4=(;k7wN}+22 z1>n-%$Fc)}R(!^NwhFn5FM-}bXEWQ#)s!V^_C$mz5ueep0SPD&TE4#en^0;dTpRT? zBSxTMa2fI3oD_e#M@gxQtV(dL%Xzr!N`-|BHVu-cpad8JR>#ew+=fNL+EVzIcz|@@BeJ<>65^_Y{taVxAZ1n zE_n$zxwn7~!pA}FV`nCVE>(m=_H}P6o!f%O{p!pi1kulESU0)M>clf^=Wsy_9T<$8 z;3Z+%BOpXDpwsm4DFO9Nv5za9g;PM1#3? zPI&z5OS@h$14#tVoL(j)J)+9wddmw5Kd-)4#Sh!>FXX;A+f*zly1Bj;bQ#fV@W?%n zd{C_j_e+VU{w$TKJyjKq*k9AY_ECuDqnvzUz0S`fy_lSmk}{)*9G#wQ2KO-!T-)6F zYK&+|D&n*ktdC`AGIPqyU;SA7$Zx|fVb?V#~`XQf)dott%%p>@)_@6;3?yulN+L8139a7jqqV`*h3)OwQtLFWALfl8 zvyC-VH#Q0`e*VOagU9w;T^?0}kl%WOFrcD>D^521t`C}sR(EcK-&DoZ7NA&H$Q%r~ zpY2I_f=#n1oI{QE*J|jnmSBY|^+56P5}E-ZZRTA-ahY<`mlHyTmBR0UVgZq6wbC>X z6%-WdH%$VzWT2c$~@sP#U>3+&u z!^(4fZ=q)uv4aq8ocG1iSi3>l9KxanE~Y-)U1zuv*^Sz;TE4w{?8HE9)4Q}pFp4 zZKfrA-RcEjxt*1$(AK_EmDB?FyBAFOcDcs`cH4)ZWgMLacTZ0p^My8fK^S3AJ%17lZb9m& zH{S0kQ`&yTJDrnp<*9%PwDZQsSpcXMH()mO&NoyH(IhXyRk_eH$x$N!({g4^BR7`ePJ%gT6icHvzJ+;|jkLcdL#Qrq8y`|Jv zh{ZPl_<&DCABc}!EZdH~`KoWNK2x&)gZ0iyM;GV3Ls4%D>0TaIkoSWS3y3|N3Szs?ih6OVeaZGsnxxWbMvC@U4pQ!>A!pvI9$x z7`6mPAgmv>FVFL+goM7{K!{Z!gQk%lkw=mk4Iv+B4&& zWPic+d!KlQ8Fs73+%IG_%+MFKj~_qIf=p$YM2&%(e7xY(Y4V*8y#|l9j6qT=R@RaQ zU<cuy(q&xe+okA!S;?i}Jc9>~1R-q_1*Dh6_aB)J3n7>kGJS*b#g z6+Sm4x_g#>1yTDvz`nS1jOBzu=%^@FUw|ZCmd$?|2T5ABiy9?w3~xY1)aFkJe;*%b z$}%zjB-r_AZGYn=ufhEZ%_qOHPoSeqN%7d+nkeULk|#M`U(69O?zoc_A5X%{vR(1l zU-hTG(^e4&#E#l1DmrrFe+@TeXLQrnu6grw^2hfM(}}Xopb}k5d9d!325KzgKf-RG zY-){GgZ_F%Ior9;bfFD9XJ@9)5~3pmz%B$4TkCz3(&2rwCGhf9sE+Dr7POGzvf1~* zAztSEJUHd)%ZC-q4$3rx!%ae*bsHmNW4r(yNABWOQIOEChxwS9|qnD7NK9}46vg;o;j{)Tzt6FaHd7T?SEo~PpY6a++?>`;bW{vGIwC0(XN^nxU4gE!F4x3Aflj@#t_q zoTL+FhGJLPA<~4>{-9s`3*%D`q1q@@#G#-hnt7k;FW0g~=g0_Jg=s`nZ@FmY0K6y*@(mAwmwg5{SoL6Ja-eQnJ+SWN z1W;8kNXPIl)q>y+Zt!=P_24SbK579a$@w7S_LdOCb)X`dP~6 zgaKt#F=3s1=f?{`yZ8sn^v(AXIxeq^w94OTf^xC2pn_=KiF|5yw*LUyP#)N2R^zx| z;0`6rQl@8TX09h@jm1E>;VI5H#5vgtzj~QMDNjX+xMSjLYHBKB;838Flj?m*vklXQ zoBIJ}25KV@lflX)0gQBi?z|)?zzPtD%}NeA(V%SBEh=HXPZL`SN5tI-N#qP^6uEYz z7$^e7L5m1S#^>IW`!F@*1uFRr5^V4|9)V%F353bit4N{Z!n>-3 zB%=APSzkhzs(whH+p93EAq83Q9wKw2#L{#IBs+D6fz|4e4b={Li4&BOFGJvH`6B52 zo*J-YsClb|nV1xJ6nH_`^jzF8eH%hXaP{lug1o~|L9^p*ZC&&m7>_Jh!%U(knc!ys z^FC92BGi0e0l>oy>toyNkS|^I=NhtLKlUae6qgH*rHu<(7U_A!DXm@{l6Pi$_ z0eovq5MfS+h%|&FU6b7^9@q4j-_1o$je8|bdWyE_;|SFl(Ge4%${#=4ppg*w@bKVg zCc%a80RSE(XylNP&@+^gv@|>Kz2kpF4Jbbd{s=WRIMLvjNII*B0*;p1ksi70>3?5C zKOKXNbfDbiI|*c1mO-c-Qw)*{QZ&+Rl&E&(Wh0NPv+w}d-A{MX*={bZm@S5K!e!wkXL+u4J&WUYr6blF07LsPt4mAoU=WLc z`LU}xFm)ex3l9O_OxjEm8#?~h)>a0H@gGFX(XN5)!}Mi(m2ZXwiCMqP;6qLmEN_su zyDNPZS1+l7oDVYCiI7{YsQ>~^?CBeTGvXQ{%U6J&J}0C66+MJ(6=Av6KdCMG$VP+}q!KR84C6$xPJ*b;>~Lw6yzid|As2acV|KYh zr?OiYc7-yRz&YxJa35-1L=K7qwjXrz5BRLco@WD$pb3Uf4(`JLZrfS{sj!aVrgJ}B zq1=SBim~Pj!0F5&pp26h>+i;*y6#U+PD(&cI1ViR0T`LN!N}C8oYbH~`}mHmvy_4Y z4rcfeyK4zk?%V!{YIeJk?)K^HFl-75?PTmhG#?P8cjK!;eRQJtHUp5-a%ZdPmS-zK z14&``xzh4Dbil{j|Jxpjv z!02flCX*$JQT;2{KNTpUo(>MRtA=u$Oe!%sujm?()=U=WKh)%rAu!?|N=mZ48~BP2 z!sqT+CP;2gbRp!R*8R|o?9&nl zk6P&5TyY*8=|tqU4LR!-V5+YT*Gt9%EHoVSE9fCZg3uB{V#`yN@aKZk{5!U>5&jAw zJm^(ohW%-}8o)zfhockAlZ{l=i!>8P946#S|9vf18kEi+^n-$zJ@L7Zg@yYyG)z|W zPu!p$m6eg1c++&_3Lc_(w-=jiDosA#^oEA>?YB%{(Lp*p0+6fR^~Ld61MrUXvwT+L zQK*y>!jU*dflQ0wJX68YQWgdnf8drJ@4oQCy}dnlMKV9n8XXfweeI?(CX{2pHZuM- zGcW+92>b!l9}{BHv0tE2<&-l>O-)RDN*(sNzRnp$+&VB`%!ktSArPWynV9NE+hsG& zjWvqjeFf4t5vzXV8ye$bRAi)RR-G!f&Vd1}*^uEo*7^E~qZBk3Ge^rkZ3jS<>WK~h zH&tJKVw(}S+m)nG>xKO%byLB?<)PekgV6WfI|SM`m0=ST*C(@FVWQW@^F!trUw-{U zDty~d#0Z|x8cf;OV;6M)DX~u_tU9`{C43c=n~nS?<|K&M0BE{5^oER(h5Y7k;KHNB zKy&7&&q-fC6!S?jG&6g`Bq$i-?-%boe|i0%e^q&TD6Y@)V}U8P&#uv3^Xa|-cu3gV zDn`PceKb*ikIsfvhzfcW&{Iwo>u$!iFOG)KckN-{>xk|AK&CWZKPgs<_q6e^H{!zN z^SR>pHa0e2WV~86O%3= zXx%!1>nRxFwba%2apK|Q+xYNu6}iw8GkRQ}5GKR*U@9_j5Nuo)xds~D2hbL1 z!oWNWqxp>=kY18Mzrn+!$ouxK?Braa6^KgtiABJYGO$xz{DU zNH@{NX`a@)?uH}_yA$=o02Q1ORMTT)d))VFVx|KgZ$GtxmIcxd%Hed4-P+y;Hd`eR z6tWutL={TE9z}U83UUg|%M<0zv$M|o_OVLvuO73FazbKFER%O+bH6$Jl>7bt8&7Un zPUyBZvH$7Ob-bpl#KI{u()n?v@8D2_Ctph4B@QSD=C&TyR@GmGLK0V?nVsFs8dtWG zqTu~_`O80vTt9#WY(*1?GE`K=ys|$0mQkncuf~X3!m~8_<&ip_Lv)3^U0k$|tfjgW zNqC1*r+p~`QdSdX)JM_LHZ@Isil;j>_DmYgT&}!*F=$3UsK z#X!P%ELzytYRnUJEb;;3J>+yB!-DJO{L+s1TF;}Vkd(m}q9#6rUdE&q{$b^&lwx&h zLoi|p!JPrOT9B?^mog^8@aPXn`6gk~g~znV4gdGSFaPUfaIr4po{VglL@42pYMnO~ zt`F!^op=78Z^WC&C6t2w*4OD`9nFoeFD?Ec+{GBIW_(Knuq%Ad*c-1PuqTX(6cx2P zDLx@#KZ-&iHqKzU=+Ve#;W0NDS9(~(b`t0J@hPM(#4L0G8q z<;{D<3D)s}%ye#ZGrh3L^KRp2jN);vvty3W#ZjXB#Zir=>EsvU_q-ne>T7CsYn}4E z5I;X!3uiQ)iUKxP88~D*k4E`@eh%llQsJ|xohd{^VHrM_ks;m#n_Ue+pv2>*U%Rl% zU=VNW4LKW}IrT4~$!ctTpw#$Crg1S@SeV1^AH_zQp%mWX;o&4SB5aqX6uw7Kks^YB zfi1-V1W#9%>egvoZE2&FI@kRUWQ~!_;o!g|?LN{yJ1gRQLWDiBwstK8t#Ou^!yP`` zBTfV?9~KtI4AkQGgQB}kOja~+^yy=@hw1x;f$ZA~&KO5ifVYozeIn!F7<9?ZoOVoBvqS$(lVCh(5dVdPuP1w2yb%cJ#sSvSA$BWeG%_s36s-a_x_??QXD zGxLDY<4A4>N`TK*8iD}ne>2w}48i+{fuQqh_vOYhC2YdX_9#sx=AAw(FD#pP>7p;x z#G3phwIx^Pn!mh&+3;C`+$<<`*8um(fubxPVRO`q*#&c$lGU}fZ;lWuy#TyF`UYB? zi=+J4sF?U8#|H=g+n=4CQ)K{7#$utPt6YHz)aZtRTqiQDZiWH_@C8iFP$nfTaTu#} zW&4{YgWEe^eE9o9e-WLT1SK%AI;k8gO~f1L)8~Vh)_gF`vez6+B{Z8E!O}OT1Ev-h z{>MjetiaW?BjWv(PRT~bJrZ1h5VB=K+E*-e@hYFwZqykPl5J-jdxc?ceAyjW7{+u| zWrNGn^XJb}3*H$EtT+Uy_dZ=;JdMUGNODk?iK#0GL5%$0s9216rpH%}S_|@`D(0RT z|4HTxwSAim*+MNYO=RNK=;(Dc~_$i@Z8(k#z4lG)`3*aKOtBG z738IoPDhQB?nKJ3TmCh~i~*h5@Rw5Fd0PGF7HGC*Z5*30fv66g4TcN-AI5Ozl?gd- zI8ncOYiuy5p&Bkti-$L(SJYJ(XBbfwxYn%GMND(oZh83qXDxS;mD z_7zD8-h<~~IE?e;L8;!GDfO&C@Phv%g+Ktm!vb2M-R%3C_h;e&v_dDiRc0CYEQGnH z!rSxPd7bO;=RceO#m{YT%dGBiw0-YzJAcQg3ygeg$EHv(&L-z{ZZwHGSUU*6=@OsY z8{flP6oRNxZv0RtLGOz@TiKP#C{(FQ-eW406H(}q=pY9(b2zo7cnq^|!>1hZmzRFW z{s6aveLx;yxK2Zel>^-wBO#VF6;>9AgbUVNz||fLFMz%bB8hGn+IzqmlgL5QiSa$$ zErU3?5of16)O}xMq{1*;|C|4fAjK~h;F+G0jq!uNGFS8D;F}_fr7$HAf7JG_=klJy-r%VEo~*&dK$$R0&i+fN`k0Sc4 zb!gTd-Gm$4rlVJ>Um_t>KU}S~xBuez~DCyU5`bbY~a|G87 zGnjWNJI=Sr*nomh;SBS z1^{<D?L6(%ey|^LtN7?MycmyORjS+Xd~Ot*oEC=Ij3Z-`&dj zt-p`N?EVQ?OiZ+%14qV|N5G^jnmP#k-c6Rx#NJ^W8pB_a;otdBZTA;s%r?h8-!gsK zqsdkN!2wG`3#hbzbDmYzQCyZhI~l^po{T5p!WzxPe+2A$N4O&v9^Lr!&H|@ek`mZf z+mrXyUr^1x0#LL}!1Ls)8g7QMo^rmMO;5l}l%WdR2PL0!>`UO=`vWP}9Jt#sa4>}F zxD-eQs2)EqoDW^R_q&d8dH^^`_sMEHZ~mL@Yhnjd6#`7VBPm(6d~+c3lb6^!Eq<9G zMk?Lf&U-Iv0MCNk`zQb%*J5QQFK4y?9w`hWjeDl!o0`(GlY5CM_z86~g9L2%Z-MMj zO8^yshQ2=A`-r-Jx#wQ(3B#^gcf5fpj09SPK`6kpz(165w!u@=d4GW}o|A|mHN|7z ztT)MG!uqB8UHBvewa#fIg_@ow44nT!7BrB=v$K+xrZ@TB?FlXIgl#*{X=%Y5Mc~yv z)qefjyrXTaR1JL>G{V_1Xv{GMR$+ny-B5?D|Ic+JXK-t|3&05&smf+5Q=v&vfs7E@ zj~IMqmS$_6>#E}B@MzL58+W6!&*5w&#L-z!Ot*oK;H`nr`O}F{>_8T$$Oq?GL5Pg& z)-;KxprGJ}iua3s4Mp={c4vEtb9^!4e)P`z=vRw8$NocbPsTiC^D;^L%D zw?X1mp8;ixhw?$&EY=<@Q*$%@ks~2Zw(b0kBlvJjTQU`gQ^IFRD$_h06OUYaZL~17 z3it^t(3utjmfZo%T|FbqH9+j5V1Bu>@8Akdt9Q#mpN0t??@epUq)$;K5hO;x-oA_JM@+SBU`23<9Les4v=A0hBD~5TAKv< zSh>=J0iy6*0<%VK`ZcMo3`F;364NC%iEUK(kvh6dqwn z=eE3m&fI&Oqm!)_zx@zkYLDlzmhP;|&&#M=W~va-H4X0YBa?Z``3PHrykK ze$|vMW*~H=JGzT5G47+5UOx9qEw|Ara|h;s4NPq>G>z`ST@P+t+>@0|Gz1LZXeh{)Fb+N}E3*%d z`r_=WF9BgiEp~s`k_%fDFcYsWhaOkk5tMiR{=E!y>>`C2XD6Vw4%Im7Dt(F-Tk7(- zh3ksk2FA|ZNuq-E=7mZoCQd#T(l4|;AN%_~Q%V!ou5-0}N(oE=7FO2$9-!NT#aaxs zeoWDE1CuFiwJy$W5Qvj7Qd5B{127!C{DgzUsWt$@G+$h@{_L;ppM3%qnS!v0$n)zf zl-EZbXP1|WAiqF|r`)R|{*ghkF`!_sZni$E>H!?T9`40_pdA@U#_?`aXPRNlAwDCI4pKSUg6 zgA02rKsJzmd57L@)`g@4X>~c9^)Uu z(P0?RqGKsX6O#$1pTxe`7l%u@(!vSR(Z9f>u4}f6W#kH;7tiTVyMt-(bm@I67N>Vq z|0X9BiSAW2QRFS6ng5nBvaomo&WP{Y0f>z3HnE1NY`vOy!N}?T|G{*j=zV{}to+*2 zQqTi|cRxQelFXIzd!1!KTBwgUsFO6{z6Mx+odEO88=#~UTY!wiBbo2=_ZsbNHUk4KXh zPHpZ;*;W;LV(z$tK;Tuh!2Qk-C`K00PDw~e9DvWMc6wk+Q`)erI8pDO9RsQyMt=Su zTI#!gRLpDJ+osaFDj8v6U0E&#MX#h}5btcgw5elYy!7<9#mzZDq+!{zkt4G(xzQhV zH7F6qTKP!wSuxwqTD#z+neu!BY$NJDyEUp2**5J)kW#3H`F|b1`@zsTx(gaHj=*L@-cvD{&4AcGEOXEtx?{nd;^N4`u{?u(H5)v@ttDZ)db>G(rw>M? zmeW0U%S$7;d|+|?_)&VK`}gr3mma`K)fv9a&dg}8L0pCM*h6u+Z(O$~Y^#mh3rY(f z27=O%94tV8fZ>R??JO&Z*jaQ|@QKupYCvz<4ZQ^2n(SPCasO5~I;)Nk?`0ai~7uY$_wkhwYW ziobt_cYv0@#K`CDoTxCeW+h_EGM!l|~9s+O#$sm1n@~1EnJ4#}B|KuY!o7 zPibS({@w-JoiARdGTQUMdU}RouxunL)%qTp=SJ)2&p#OxlaqIo`xjSwA4DD=;<|yW zO5Ejlam{h<5oA=1HH4hT2ly9#yV^~p_P;;1dqDr6i3t5>7QJyu?rsO_k9@`3x-Ys- zKH2oFJ3h&?k&!dIkdE|8U7Mkav(h0u3JMq^3K5TbDZv9!B7K7_bj>v*%P(-R7<@zsN6zsLEs$Q`1rKtc}doYw%?S#+MR;V+5C* zyJy2Nj6z>m_q86hg{ub3*;JpD?+P{gvU0vl=mpl+`{AKR?yilVDw}2!;66+obp3B7 z0E>p3hDISzx88hEk`gr2DKrP9_*iHt-80_k*FcFk12eQYS6skrFQ}}%&%n<9^P9*S z12^}?6)bCLq3y=IEA&9gS>$?iB_nHL(c^y#7MZ0`Ss%T&Y6GfMb28uV1Or3YXKdyZ zPi-xA^~$-qW~~tEAyHQ@1h2Vg-dP%bI`{G0JQ3FKG0POQPt$!64u4S2moXYRt z3miH=SUiD7wID|3t;)~?TPdl)fquJ+xYSfUUY2cK{dhkIheUa(0D}kAnZ<(5NAd~9iZbRM(u@kj*1R`QVzH<1P8Vtt z{Dofo$HmFE6gj5}A&~YAry$={i?>dr&8))E`RI7F+8HiT7$CM^Y>t0;{j)!Rusk~L zrZN*?yfe7O2w|(bgHf`RbE=Kk+^=R8cVZma$Uoo!C)cZW3U&Z*h5~?RJ7#NqV0hY9 z2iZ+Zy1J?SAk#}y$VDmsopg2O1)hM&kXHRQrgKqonlr`8*|{7V-`MGIq{0)41KH19 zw<(2O5}efj$thi{i5a%&*Aj(mApk2^`_Zm0q|y9Xk$uEll}m$o5JK4h3SVn$L-h6Z zSd)NQSOY_q*VNS0BNCebZ^h3QJvTFANjC(bYWy zj(CTn(lvASwvgAEvJo_lU3c%sQ1VhQEp`&$d}fG6)Cp)ZGP6sy6sety@|W-&e;KeZ zTwPshI1fUfwV%MYUJ1m$`D)Rfif>@##)+7hECc1YP!t}jzuB%&t>!jIpu#VD=QOaWrWkf z5dS<=>l_-nR0GU@)sCoJ#jmcrdcgmwTY&Dt!JJ#+HK^2j`nyax+o7f_goB$D-guU% z?~6@k(b|tY>40QqsO0+ros*7wUZ%LHQP}4yXnAe`yZYTS4i{Xx@-J_v@(5DEdjuS4 z<&z*1Fl73vxZ#1dtPnRON;W`o zt;rp6^FzVT5oFrRq5Z3h1}1L;Sq6gFE*CqlWnjHW|I1VI3HwM3T3nQxxBa`WuR%V< zovb_kEkC>y(gOxz$_QBplPM7O%iF>|LQg4l{hmA z>IZV3_n>?+&;Id)ji<>ZuX?KK+czxuLi>CJ6Ol*9zJS!VsfuA&P=a$-<ckKl&rK zis;3;EAWW4LGm8jUz*?q4nga-gcF-!vlT4p;!-sQWQqF+ZeHamjyO6#R4H7*0?E(L zer&tkZMp)YCwfHtsLOP9wt0AacHSWQBz;^~Bkp+(5m`;o3Wy--Kpjx1sd9VYJ#X~9 zth~G#SPCs(*B`FHuD9;`nAYbF){`nC5EuiREILo{`7+bf6P;A( zK8oRaf%K;)ny%kZ;|Rlj88^(2)qN?BITdr~HJZTzwNaW{fbeI{(CD{p(V=>#Vx=Fh zH69A8b3AP7L#1#>`H@-2H!>u5T>!0nRL&$DQI6eQ)f|B* zt6KNOIPt%P*V#a}{rwuEug|HU}|prj$VbEnU+e9m+SIHd`mP*$-9oK^~$O;@2O zuP)yoNfmZ4AUE`#^U@qmkm>d|B>Qk4dwvdm!f&94F98TCNp^(|UsxcgfwYdD_sU*>ZkSxKfdZ+wDy1l0^i^(Go>pZR`yvq2+{iHQj3rRo^dg_d^V6%viM8^`G+d zEAMuaTNW1kUIW!8De7VSco$PB*lyy44hMmy=QxsakvLr`wRHXG*x1Lwe4vLq=eenA zoYun{=m}{l@ShF9IH31*cXs?SS#?Uv-w*)7Hfn$VBrJtkPDWxJFh}d2c(z2Tshs8@ zC64(``o^#LkZLO%@$uZT80p0%=pq9PE(!~-HOPcBwr>0w*TlYMafn~kaUNm1JJV!P zy2-{D=f1}^pT3mzp!E!-@vQyM`dqWUeY1N(SEl1p(7srrF#|D0aEQo8baittoRuL)o(G>aQ?{ zGRdFlP^)@zR(B@Vym7(Mf7@U+(eGJx@s zX_D(B_%-ifR9uT#({__YT3D-OFvApa-r!EbZ8Y3x3eJke!N>n`ez}{R+n@e)gnGhp zDd{Dg%7{D*h(bsSm&PzG*RpR5yE_FR*z3z>lETp`RI(0UUiEUuogb;i-1Z1#W-s>_ zzpBG&w=VW6>{bRh@BTCL_p-yC@aM7UKj0r>cUX7s%yprfv!GOZ(8qDzv% zh#|14TX$0Z=hG@AKd1s48P=rt4iA%=L}vkj(?_JF2E4926noH%6yq!a)G7g7gh=ow zYVGQ3*r+(a6$jF1I2Tt13=ab7ocrI>dfS3F{L%l>88^g0o&IM^ zl?w-cJnq2e=*yoi;EOP4X(fQ?i({vzu0DRcKAdcSYMb)cwFYFE@7ueW_`nJ@2!f-*Be3K%U7+9Hw_EDEYXqR05$LxT9M9X0GKtY7f>WA-<@*HjJ8v0` zHFSC`*2ao)cc7^Ca!&(c4-Lf&)X1g8C!MqH5t{Fz0cIKZ?EFY6MGlCfE)b@``lLi& zPHql9+Z22@%LqYXk_cp|$Z|#jpL`z=iD%cBO9hYOD8lwYG&c#8$km|G(B{1Kb|Y-C z$pAi_VyP{ip?stmlAhk?9mqMdG&%1=+#BFrNyDQkDs6ID3RJ(v-CZkAaH^Qw7~QnF zK;HcqX$*#>y~?sk(vc+g2TS>ufUfreM^F&a>1FWThA_?{@cwGMM-9En)l0wbh%(*5 z3P3_Zj$&Y7ka1d~4wjTiOiU!Ad7SNYIXDLecJAeAr;`VW^0Fo*;S!u_3tx=HLK7~? z{l!y|8~US?;afo_*YCrF*KdEi?mpCk$B2bZ2^IE=-E@@*A2aiap1wXo)m1wbsU(FOwlY}-1+qav zH}}QS2lj;pWRWw_mO`d)*Zc_e!;1R)-Bl5QRMIo`GXH-#7)ZXmvav6QasE6BIDz$ zgmPZ^fazhG(wBikNYAEnKHHlw1;@(jo^HmSBE5zck<9R5z~-)Ie>x0zCM8{9*3_Ky zk+8hJ;uREBFb6#|c~uqf-<C|d>$7Y z>#D1u@W}@8Vt_?bKyA&*`Nn=I$LAPW2|g_J^o_xG2Z3>MaWTqQu{iuN5SE|B`UQUg z4ePxC6QNt_lpyK<_5gNF2gri_@% literal 0 HcmV?d00001 diff --git a/theme/clean/images/sn-tiny.png b/theme/clean/images/sn-tiny.png new file mode 100644 index 0000000000000000000000000000000000000000..e1db3a1605bb0115a4e0f24cbc720ed0b767e5df GIT binary patch literal 4175 zcmV-V5U}rwP)Px#24YJ`L;#ckumCT!O8Mph000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf0 z1uqGBtr8ai01wYeL_t(o!_8TDbX8Tp{`NlQw%qhWLJA=yND(O^pum8F;~PZ~gt5&q zD0UbNgG&jA^PK~Yqi*cg;1sDMZnG(no7g_cGN3F*o0_td@LAKdsZ5wN`Hd+)c_ zS?8>E_SySazu&j_0e&nZ01yE9{Mc~r@u--;YwGP>vMxIH;>51)FZ%-^L;n!{`kui9 zIDiNMz*}Ej%a?5F#{u+=5=F=BNuBv6lUp1j{YO^%rvT(jUZh_Cd!hYVcxHZg%hPju z8ri)aNk=NPhWpMHsQ{|5`nw?<0ABeZhXY9cdRQ(80CDHqz%5I@?8gnAVO#fJ=U+Qo zCIE=-Xq@HN*yuHvF&ebp=#k6!3>ZFVrT4yV6&yh4A4a^ltq)m$_;>u~amg15!J~v? z?K_+La{yTbm+j*q^nrHw0RY{wxSrJ2xDgdk-{u@kIm6wiVFEz^ISU_wz*z=>XFp2M z3`Fh|b0gcG z&{0UpLjZuu+sb%c@4Qn3m*s2iABX_3>(o77k5U(*X$CZfVA`FB?Z+w_&~oz7pfnTi z&|r?mn+86$@yG}c-~&Q2b=lSdeD2C?c+QNa_vF2>MFq;=oN@|Yd9Qa+mUTu2Byt9wfQ`%dxZl(nUw6vy znb*x~8%M(Oq#uA302SH29lc6V`u8nN?tI=BWrga~Fuk^>_Z5RdDQp1juXpOq32;5a z6Q+YO#t;MmYO&1YzyVw-IzJ_&R~?#@oDloG&I#Il0Tj%c+CvTa%6!E~jH`V|*5!|x zx#h^jwynp;^Ua0h*~hy_7d|jOr*B3#y959?EZ+Ot-CtF3!D^oYpl|FAx2^BHq<{k$ z8lExXnv>0i3Kd)_!O%g4`M@J_riU~#0uzzR$f2@4t!op$8^K1Q# zIynd&BEjj!&&_K)v2Q6i^eOora|z| z2a^|Riuo872t*6%TD;<=&%f$>?K~l;H;+bm_Mt{EB#IW#iyXve7$#gTs{6$$XGg6{&w4dA!ZGrXrDx_h z>iQA@bpV7sd&GkKV`3ir*5_Tl+UZZ7E)*^&--8Ct4e| z2GQn=*WnS~m|1qm#9*}6OR#QrMp)T%l@)zT14_y4^wg{f9cP>gc072Z!c z03Z-vJi=A{NiVZ78NZ>(XOD`JK6_%~86hgp8lT;}zthYV z2Eb|nt>Gzlv7K8xJ(GQHTqBp8h6VHn;@6s?n9Vk4V&KVlzZ%*GAQ=E{b9-6h9gp<@ zP@evmmttTtcuws<+tE7m(Z;?+w?^C)n?!dJN+HV@Y+u{hR8!?shWtJ{At_z51_L_0 zo*24%XQN@w{yyfX8{}_9@r)S!`NU{LN zU;v=+rl*gKX=L;G`2Z?Z#qA2Js=wHcN!GX{LDTFHKp+651*>~&wg?FVrTU|{6=sc@ zoKd^!!z%XfmwBYA$(I)yBOlOp69qe(wr*Hn|JThqJ<8)O77Qyoww@BQ9e|c0%ai7J z&KOl5@V7owUwe(%eLy6uE?4Jf^`g%a5z;%G`&J;3Hh=W(15XFE@`-T?)-i^`Ay9&E zx3qqpW3l=K5EObnUK4oVF|d$l5>hOZuUXYp(?F_hwE{Q~zz2W_IcsXxG*}~K0I;_gh%)K+k8{uL zv&_v(%HvLJJgkxvb~zqamJ#H^1P^BdCOnipty~g(XlJ7q_@0u>jp&_4P#n z_5x`9q4Itq$n%cGv4)w`4+i}4;gkN4hyX-Vpi{@jK=2#On3c!Lrb*ZFp)W46#CGpD z!6Hjz87Dc6F|H{}wX3yhN738Quk}=%@kR|EVYm}@|a_g!?3*w`rri-Eo zD$6hp9h?DF5}^cwXbS|zk(&VuhdRY1oN=$=5x`K)E z;9OFIT8qo2)a>8gP_=bkweOlf(JZG|G~2Ygl81SUj9B)~6LAUgZ$vpGP<`TXpkVG_ zzcqaBLP7-}D9!5q=*wfH`j1R-x!iCa+4FJbikIdCDDOxreng-zr|7EPH;#;rPJT_c z(LO<=8M>jsG)*v52jd(L2E=u?Am`d_JT$#OT3fy6zWb*7-$UKi2S5iv-ClpJpGdF= z4HR!(dt7O*`w&1;sQy`f*;xfS*G~(r8wnsDz=crfF|X?BT#14z>A0`H5MR<})?;J%CaG{wt-(51Xt7 ztNSITq$KRJMCiT1O@L5{0$>^v)-A7U*!F2vox4p9a1I{;gHqV+PSNqZTjSFvOi4`^ zB@wD(!q82qih<_FK;^R8Rg;_Q^iu$M-`Q*aDJ7=euNn*zB}j0{AmFU#=y&;N-+yJ3 z?ry0df>_2)qbd}stLO9sGcv7%N5*Z5im{F)go08)k}1AeRpI{dwW_ZHa)2>j6v8xL z7?4VmL^BM74H+}3)8w&}Qo96v1_FK!s$!t7DsXV|-)o)(P?|CMrIgr#Hy6U+T3i19 zthJuAg{1)MLut|&>RU=U4Z4zu07!OkM^8znLl^@HWsoER-)yUES-Z66BgU{B;AcY< zcbt^yIy(p8yJP#^`PcM~SRb1t#j3%J`|-q7OYWeXqHa0(wcBNJTB!eI!F?r5o~s4m zd%9niaBEKD2#3>lw=4^3phQvvy4MrXN~)SXJ64@Me_&sO%X@ufq`BYYxx^3=06cEZ z5|e15qG*Cr0-X>@0&#PAlFT^=XB?eU?J=pD7HR*kmV5wi0LJCQw)FFUWXqa*a{u&< zsj&&xyF^)lC{j>?z}>1hY+uv-nX0gJQxlSenW<^tMKkek=Fy300DA)N);H>EPcN>& zaO7W&4JS6cS}Uq`RqJha#Mn#-Okr{9f^=6b6(aWdyk{ecsHk9u005;$em%XL?X1PY zCoslkMKPc%I^q&7IX8|;9G{eK4V*jeuhdj#gi#v;fDRvRY~vwfXb=yo&Fvrilbyo!3n`b<;AkQ-b zwJl9W8sk|5>=B7x(?ArZc@{#{6Kb#wK%gC`*#`^G7swWxJ@?&_>!T9MP;amf41mKa zCJq@Dw{Xa)xP^pLNP-0%9Hyy(a}LgN@eU3U4iJD4KvQ|3zFMsWP=A9X!X%vaWFbpW z_&kj+)7-3cey}6F1x%9wsPvnLtvVQZ%is*00g-~(4L~A*=J4Gs&+Zwce6sA+`kHcO zb6)?xS=}~H)6`*_Iv8VMoBokE13wJZ) z>h$sEbFLPpO}0_qCEJnIy{~;hdN<3!s8~6v8q5)!P zUm%Aa0=1)u5keL{)OM-OPUT>L*#X4e^LX+-oiZ&0zu)TqNB*9+)1y-2x{b?De%-0@ zL9ORKFf}vOE&fXt*)GDKjUt3?+9*smMx zO!T`=t)W6~_9`Zcmc&la_RM%C(G(`QTl|DGK$HbgyX0Tj)Vw;s)m=b=GIsGGu{9iW ze`{(=I;=rDY_6>1Vqyl|;*8p2m@KkJ*9%{5tXl!#RLHZfp$KyPKND$IO6tA;%E~z% zD~Nvz{iTY$(t+C5&c6OPg@eHVt;hX+rKTPi2x(v!xwLt;zcK&U(w;)?C%i0-M_)EA Z{u4_iVvLTgki`H1002ovPDHLkV1hr<*0lft literal 0 HcmV?d00001 diff --git a/theme/clean/logo.png b/theme/clean/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..b078601019959e5efa1803f29246447d1f1d89a5 GIT binary patch literal 13034 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf2 z2Obdw5s?-E03ZNKL_t(|+Uk-H^XwpFbzUEO-h?*9Hb=UP|S zasivzd0{@EE1j}u%k1pT?Ck6;aDs5@tJ}%Z-qEAIczxxp!yheNUMd|aOpJeaJ?kp% z5xKwo#YENbcj=mDA{x;UXx7;ajgRrIw@m>dq|4eU$q(EvMZav+=Kz4lwsJhb^kS}1 zGK3Ja_h_{~A`@Nbhp)3z`@t|cu6gHwO8={1sFV_5LsZuVOSWmp#7RS4JDy%X7D8}5 z^+ms~O;02f<4}dTY{!PepxkcE(^kcY@lQMz~!r&#jN$xY*Us#oXbAxOm4da!i~!QpCuHmc0m@Cy) zwXa5BbMqK^qTeeglIYd1rZOoaL;G}_Qmm+gwzReipCjhzJ;E*W$t&`#XV?GP(B+*E zo!bW>z=$W-#8gJF2k_E~R^*r%k@7aOVrP>G8w~&eznFp11&i?RnuTzBqKHLJv^0fF zws{^bY>(ucHSHGP^f*`rB1Ye}KRsKXl8QXJtmyOfOwT#N_84xQ`E{q{QVKls?nngN zHRRCLJ0^6BqXGeFu4FX1yakU;(JOn(;QCB*jWt1>szIviMS(EPtqq{fa(3;BIklxD&Eo30l8bkKbOgSUN z&w9M`mHf69S!Rp7@-E()$Lr1)M+{UWK|}W`3}=A+;6DJ222cgSV}IX2QT+bR=7#Z% z-cR6;(ypXTx=&=SQ2?(dWNJe|YFyHS&aH&EL14r;12=anJ1BA&|f`9|a%wdeiQnKlM{%|87u87=AxF59w|d z?V5?R7uPHP+#Hfjz~31oZ*CY*KG<;O6@;2PaW@XFZrMUA8owcKk8-E3hjjq(Xw|YU z5X5cEcES)6SG~Cv0D;a=yb{Nyk(a*i=JK+kQ38O$i=w>y(bBdbJL>)fUFV2~HG~Y} zc&q(+RcMhg0Js$fr#pqMUNB0W5*pFu9OA~{s1yQC4KZ9&v;@7n7hz<<9L%5kB}{IB za|t6Dez{vV(qP01^w5>UUS65vM z!;C=)6GE8SUGY97X@{aR5K2Z2s&NXb3uIou5Kg}zL{V_ogAYJ&ZG!>KdB1l*dQyC3 z{M3P0v{iY`#`ZESUNISjSh@%#Af*HWfe^CF6_JEXfq@Ga0Ji0T5Q1o0D$Ga(0WQc% z@sXMRm-BRgigRrLiy#DGnjG8|kdngh%7ui4!@(+QdK#=v*YL&kvmp!vkQQwPA`$eT zl!t}q3=*eA))XJQi7?g8zFf6OL}DQn73H(trPTtwT?w>DT6-7{kLwk3PD6R?XD*)u zE}sMKbs=y8ESyusx;?&3;2#0^Jv*SMEV+`re(tDq|I#B@{y8UCK9=7{0>GXNr+#O_ zdbFW-8Gt_>>%&!Jhm*xa2mJWYIl0pO(Zmy}fB^vB{v&1pz)iMr`Vhbs_I1lqtS2%- zWlXH}?e@F(mJTdnZ}uyYJBJL53%!~I>c+8cTdQ0+V@0Q)zI;8W2TL|j@0;OU*{Vypgo$S_8UjN| zC=^(@WDg9JBNWgMQik*?U-Q6My`Rn|!AO9ZQN92EhE`NG z1@Oo727*fog%St}JU+7kbuA%)NC+WE8(~h)$RV?~?tHetG(03TJ$;AHBbLyR5|9!? zNJuFmxPX*^5Y{tpS~`tsn23Z81B|$v#3+2N{0gzAwyJjB?BQe-Tu2ml_u{L{R`{I? z2q9pEtOLb4n{J-0pK%B&j$Xiat{309e6b=B0zv=+iAZxgt~vK@P?97<2}NzgHZ0qG zJsheFx?w`sIAT!)n$9!Tys?3$l|QArVXQE@oGt+LO-liYKvh6LzdJEjeRRuoenv9Y zmE~u%J=7JANI4A)nfXPih0k}S&`}z1Ga3Dr%lQzj6;i= zWtztODNI692sGn>jSP7lJWEtJ6vONF!ZZXp7Z5_i?RG?O%h@k`K7M;cRVenGp56Sv z;}H|Jd!tZY6l#hJE`dmG5Sj*f?-$1DaVyJU+<>g-aa$(g$aat&3UE^djsoPrl z``3m@heL%!rBEFVQcB!>;bsWQZ5~1nBS8X?!bENJb}ZR&12_jbx0r4;s;}`X?A$4j zt8#ly@TnZP`v#RT5MkonlHHJ|dDxmR0Z79@@t^*JisxTI*w7K?9Jkg~5@XC*qHf+K zPYY9h`LiM#Y~u=Os%FY|Pzo?c?diFJ?6i>>-T&X9C?3?cZNr8=e}O~sLP!B=OB^92 z1eXX$G;dC=61(U%kK7muaFsE*2*sq0YvJ^GI+hj^h8={!TO*3l76>51If#@C{S2?& zP+NOajQ2b1Aq&slDm>0y!{bVGWTXtZbnn}3OAU*C>RB~L@4 zDd3z#*h56x_6$J6!RSOIo6@#S13}F|%rv1vV(Z<%f)oOf@<=|!7%Hl&5aApyuLF9N zZ^`j`%ZK&(9ku5&PzA|=)N>+DqbLzk}IVVtpZnNPPaAXWA4a0wvFO=RbKaPjE3I`!b6 zUm8v{X0S*=!r_+l06E@Ogek-$n!jL@SioUXP7+G-MPFWtBM*93l!6#dq6`A8rYdg@|&`=cs05FBZ>vy%? zu)8dM#aW}-%ne)kDZqjB_8&1rKn6|(A(gQFVq5^U6D;Ic0RA6d8jxfz`~(Bu95oRZxqi-;@$jQ~mk3_=%{90}k80FMHA*M8m$K*)Y~1Au|{ z^TGDBY5;F1+r9vNWZypx;7a?M*M4@;zMpE}-)7&Z+SDWf%(jg~G(9>E$&l z;kwLDI3~U#gbvT1I8@lrhQt?hk`VGgT{PBhKZ}$4kL~+A68KGFqTos@_fh*^Jwb%1 zU366MgzGp$O1nZxKLGz1z-s`m?&AGi0FMATJJGHK;4^zz5W4}1Fb2S50IpA+rFL%69BxJaPP8*_%!=I2f(a^ArXf`HZmXWf>-1K_=C;! zQqD-5DgZnnCE4`;ZX$__?&l7a&-#e`N0qIdX~%uG= zZsSYO&;8yJL(ddM{8dWw@B1VvE!+P>`=$d%QO}IV;XTrt>kb_F=Xs z?eNT}kd9l?V=0b2z4lP>Kz&Qg_%Ca&VEg2J`s{{r1OP7Euak!Iy+RT=4KCpVhme562oy?@ z>Qd3v8ic_G0OI^Uk#S0fOqrZbO;GIHnELb=r8h5Xi|j|p+=E~%Af#mg;#^S0gfl<$#5EW)h;a?YrYVxf_LC>)b7~K!!ccR^0*V-w2bx0N3 z4(($qqt)T4j@@+ugftEzCAgHR3C0l8ObZo+d@%m)a`lXqGEy!eD@wKy51(}K25s4UcJZULQmpA-UG(>wiyowTOjOa*nscp%WoaAd^gpwfA)foHh&Z`RNp}rh7NL7)GU~9rm?R)12Z`lj zK=xeZ_nd@Cv>97VU&o=)$8b1Rn5FZu@xAX!yd_fq72}9$EX(pl(eJ24M+cayH@#mauG3B}SGNhXzgkW@!RP1k!d?1BB zmpJ@#)q;`c8OcMUVbJ0wj?JdfEc>r*1Rk6B2jpcJSqLHu2w@f{S6lzHYbXDR~$G5YkOJ7)6>(`RMt}hZBEppQ~mqnquZ^2fz1a%9H79I-OZIKsi!7&#XgG#(`Ps6qyb0-VtUNQ^AUymTsiGo0P?8Fu!IDG%jrX?Jqj(xVVc5b&}30&xiyrx_=sm!jC38t(kKsLXaqs0QZVRdFE*Qr?n^HthJ3^unPE3<~q%A>&1WeA6 z;p=M!3_QhxA;}&@@gIx!}4}ij;4ynE5jVB#3Tu4o0X=6}DkYp1>fK zfWc#(lMygT3qg1P{lQkIwYoN3IaO~jYs10vgNN}fq>Sq)8J-@V?R!I!r)t04`0qHn z6X*9&A;AEZ9-mX!G!v%I!8r#&(Ac)eUWq%F?gB8Tq9L#iPL~2jVe!V6bx&tfUUx2e zxpXIYP!eq2*#ejns!HKacfivv1)ek~RE2<1g7(@Vl(2bgjUKsYb^ik8v?1i8g0(We z8|9&(rfIsx2RN7bc*{?$bzLcrfe?XUqz+!M530(bIw(|!0!GOTEhProu%%wPD#ibn z(HH|`6bhs8Uv?QLuiK2ttJY!a+KrgDZY|7U5R?!=04|08ZhCpC`DU*^^t2!Z01lRf z5e{kV!oe6q0S%#c4H6us)t^8J(?*KyG){!%pp@ao6*IvY1yiW?pAp=1ed)7wk0vMX z*lGBf<0{Gs7$N9><06c`?_O(EF$TgEIDI}`R$T#UZ}}Ed;*p%(#Vy=CeF$L;;@(AN zGlY=fLclOgM56{)7T=BS2i^c76hiRBKQ67E1J8am1*)oo0HB0`G6ErF=#Q@#I_Aj? zxi~lfEW{o9Lm?FY>}LRD7B{wkgi;70(EE;mhai?F%Yke1m_wd6gh+=|{_(Am4nwE! zsLTNZ%g2mS1z(pwiYJy0$L6x9P}8&l2kJk^yI(EDvmcLxkoIZ?iStqdDdaW^;Lu); zm_$wyHf6g6kGSi^dQY8~~Jn6y&r>834HBqAgO$pBR)pKKGT6=0@AJ zeJ&}bt*{C(>cE!$FM!yq1`-mKs5qP^p)V;TEn$T<8z-Xn~SO3iZe zU@r+n@YMzvFob}Ub2}e#gs767W7U8D8k|~QOKClQu^Mt}4A3XVh~`Xshv)YiATOKx zEJ<_bEuB<&8N9A^a4x`w?Hm)o76L9uDpEbY;c<0C++08yVWBq7w=*wHZmy|X6(Jl! zT}Om5d^vwU2&Ism15!W=0b!cZgF%#k@(BP5hf_s!Mc^UkW@m;8aa8srVpZ`Xnm-`( zs?h`fi$p^5gF!hn+K2VJ00VkVMc?d6$j_Q0eagV*Kx^ayr`ws<+;V7gTWjnULnB-Y z2~8IVV!ajm?)1S9%}HJiDjbI*VN`G1iZ>^XMYOdAoO5tp!>%`8!!siaK^TJ+5``D^ z#V?x={Vvt7oD${il&QU|*WO0Xo^&a`-1`pm`V>-K)4*GsqcBW@UVYr8p+=(~AC(QQ zQ8{&1y4+PdO$DK7Yck8$hzdo}N(n(K|zayV6D~6j%M0Ep<8W=N4!N{x+J2Ae^ zO%uuXZDH0>XF}Hu?YE1{*s7n8Wnv$v^Eet96hXJMJRfAPSle!Hmb*4Hi=uFU^~9~XVP;b2r*%K5v6^LLSg`%CyVfR#tdOs zZQjFQ9WqeXw??2k7~G2TU~Y=@|3(zWoKw8xWRUSSfUyAlcKeVrV8rMXsc?K-V&=C| zW=|Cbt{gg4IS`8W)l9S0r>MBDazBw{#}TsWo0FxC769qVb&UI8??Z>TjRDKuDY0Q0 z_I2C?XDlqwo%lD2UN|L5i203uy)9|Rx2ublr^?K;>a#bY`d{rTVf z6{t2c_MpRKDE`fllJa{X;aw9fCmXE&Xx`;-1=Z z;ZT>D-+cRix81J9_d^oOpAXBM=`iT_i(hs@Rz7ri`5lcJkGIqODTy*<7bJQtgv9;S z{v){(pBE0JujCI%u3sSOdn4&SlyqNnlnyvTQ~jxZ{fDD8zAKoT(4dV84Llim$o~H) zJKrkU{%6eLkX{FQ^aS}<99&7A)6>51dm@!dwReh-gF;#v3&kpASCWyn&{0q<#gf7#FO zPhf%~Ax)l*h_31pmv(czDC2ktNvwy7&Rg37U~|H|rcM??TU`Ck7E@VCnWn??OuiQ# zPP8eo!u74PDP$O|n2?F^E1NGRI?GN5@T5(ZfEDN}(O7jYte8{3OAw23c-HZ5ja0@#7!~&M{@FM`mopGxBnF#aV+D;4yLuRkRq~B=1RRPHMItlFyA{ zeB$%#rYMR!FU_Tn@HtrzAqg`$iA8j?s$tjejg+!CZzN>T{GF1vl~<5oNGTctyhO-9 zHKF{#L6YG1gOX@Lu)=N-Z+!esVK=Ax?!YYXK*AK%M|5kKjJ;Jx3P8a2e;`00sv#IL zwx~qTU3LBV{THu^C@rPC`MMj%${z^ie*s+fX$^Hq$=;rsXUuwI>nHhXo|!>YLSYPy z*h`Iv-4JYzMgpd^7PxgTpcx!d%|IX=UE@miov(+Yf;qi>-GV~#1A%-G@VE7oiQC~O z(?{nb1KqHx=>XZkH$CQX zAQT8kbp)asA~798U`g@qQ!bnG{vn0t5VZ=zg(c|#nv}W%eiXW_Nl)ACqA}95ugW*9 ziOIU5_n_RogoLUaNOMK`3`Veo3*j<_Jgj#-f9Y@(=J+6m1hXkbO3S*U5Q0zlH{tfB zJK=NMV~!9&$`C+$FsD1#W6o&4EbX69#GJO>nCsfkrprsFtE$6;x)S#VJ@`3IKCinx zz;}+VYS{#CYBmKE%lnF0SnB|Y(>}* zpoBo<0&5Po;JlYM;uoLnfzPQx+VyiQG%7)_VpPNww_mnx=09+d6M>kVOUkqWt*eS) zPg!mM!k!m?EF4XJ1JPPAunv+<@Q1dzhG~UG;|ipyf*=LLge7XE2}1-3Q`2|=01{qF zL_t&lqC-&>fY^JLBmgcUgaDV;o&#aWe=@m*t{DxU6f))3i+7ei@##5ArSEF7Vdnt0 z`o{B&vz}RZb-G)9JrFfW*yJFv2++x_D1PAyUFKLbGGsjJs zQnh#UI{Ni()BZWB;~z~RZ?2g@BvaU^@tJ({n%GRgFMUZ=R5}=STCCx4r3elO_>u(B zGSJ;K1qFE*pzdE$=2ln4Oi9B=XXg_k0hJN>9So^%6_il@ zKx_Den4mwKwQy41o^{PEwO6L7`)sZJ@{TD#*g;MN{=R)0yJEzb{MqHBZc6cGJmYW~ z330|dlZVMUqOB>oXu{*@mNo!F820`(dRWGH#EL^gJg>O#xPsR9YW!`*JUBfuI8-Nu zus8>|H~X2UfMGl7ODV6s=lb#Q-~U<(!;A;S>Td?p&oAv~j(+m1Ih5cXE-Zp|DHMY; zJuoFA6>ZT^O~LQqaPySSm#=JLhG|f)ND*jlkn87;5cppJ{}2M%-gpslWPyZ22HEsk z^I+zt>r>O+J}EkOUBz__N*G#N8&HsS6Q+&&nYFVM1f)~=z~jz|toW_cI;&t)$*Wkq z`$2e8QefKKVhuyU)HyWWjGtX#5JGa(^Zd;Rn|hGluAd<68BId_OPvDPsSuK{Dg-f8 zJ_XfzS2qVS-B~%ps42z3K_i9Sy#kNia*bI0>$^y=h9;yrs{kV%OCMtEkZWlYs`_K(HO*4z0T(cj* zuC2FCy=3NV+mw{%8eH5jPfR`V1u8bIAl*oe^maRBh7N((4ua^rBmlgf(}!gC_7iuW zpHfEU_(6GcUu7+7g1Vgk_x17z0NCSK)H_(Xq+(yH-=$vk(CRiO1hN2NA6S!ld?w*dsnDCltdS9>0Mx3&q|2e3w6%-RHaOceIZ5XQiB@sLFXnk`WFU%b=7{ zA_2qTh88oMz{sXp*jS;(_*a9j?y;-v=R3G(WE!26nI+!dRW0Z3+#&y^31mgtR2mKg z2lu!1P?@sPpO%tK?6r;f)RYj*exdTdxO~!cpoD>(1o!A55F8dYFMo6`$|}EvLv?qJ z41!jti}r(Lp|oCo#m&=}AJ!v2S#UjbG*z>TK!|5~&HKEn`kU>y_i@Jk^~ z=5nhoQlQGvIfNOXNeFu%jU{ekW+P&HyTwvuSDskkhCHmlgbE=Ty6)LeQ@BB zA_+~Z16qn7a$?`86!*;{Z;l$lJ{eV{%zEWTUR847wE=0=bhq-~M9TxH__zXr@&Ke} z*+o=^!QoWkPI1ERcEIUWpehtZ0%piSYk3Qim48nVk&)h}PF5uzfq~ zKlv19Wi^=33xf*?DPRf-Q&`tg!9yAsQ}a~E4h4XsK+G&Jm;W*Z0su?4O`w_~Xyv|8 zj;_n?ZjU3KG6IJ}K@|qd2oy#^8G~Vl&@25SoIC1%KngqZh^?fYK$Wc{yyCMM6&v?F zgAIEh0V9sXW_T&$r&CzlBn_QI5)AsybtR>b{r3=M@MlDx|M_nIa-V)9Qxv5*MNus4 zEaJo=VVWj-|MD&jzUc-?)3icmQ`(6oNg?bl*9<$KeIDfx{vMPum{P*z9EKFog@DEd zAo=8557n%DBQKv`Q+-hUOA!bFJpIWicFU|{{@}}lrwb`pIqf4r2mubCpFpi^5CLvV z%su;W$Vnd#E({P@VXhKwAj$fMwZh6liGoAT#dv?+%^=i(l*}fY_@3F0<4jCbz%clo z_gq)<@Z&EIQ?F|B^K~yYQzNV^x}@dlPG?VQM~PvCf>8pQk&X%Pz6Gb>531M%OmJj; z5PO;=g|&q=8VKOC3uc42v_gY~!8vpxpmPpQ$_9^={e7w<=9i|JT~jUor3mDSWy8qO zF&=WTgwvXeU=gKcwacZZfLJF40M|slzd*;3njEpOz$YI=G62Ky~9r zY~1?<8Uw|)l1mddOIt)?b(pjR;Yh?{#!kcF(_KzAnAt#i(PspsL?7`)@s4@9F4r3h zrC^lW1VUhHF^qcWEo6@xX>kZjj~h59k(<PNkrlRt+6UaYwx&QWycS-%9iq~x^fBBy0FcV^#DM4;Y@+#cyIcg*{uA2)Gh-|R`| zfF2W|GS%upfljAe$-|3x3Mf=tu{6NB6{Uy~Cnyw)uHwgThz@svj

-Fvnq^4hhOw zUoMcr1&ETRKywrH8{A(;1g|h8hbaV1!7as-04x+j)#sl93QL$R;RHB{1Z51h>o=gL zvtgi38fI2>O?LfA1jL?=HGI|hfXcy_#(R-7N%!AUw@+gyqoc&pto!kRD<yW#WX=uQc!aDuhF=DJA`RMa&GAu@ya9; zg)Le*=a5pMX2VAO{n`a!X&w8Wg^=huGz*N<8Z{dGFw^gpmk;druQiJ~7JRbqdNOn3 zAgtV8&V~%jmMcFgR#IH9^G$=_mzmaMOm;>dbgrQ(Sc$gwI>gK{3{!^?9j<+pQmBdx zDs#i@&VovO2uC9bhFTEQ!w|xN1i+XBib4RY!7#%xg=xiL6aulR`MZ0rFS+mG$A&ok zUvRnTol@hOg8svZ5IYn?A)+P}LZMI!r<1|S0Ht4lOn&+q_;T~WH4R9b#Xw3hrxU@d zYApG;>ruCDJE+pJb5C%A+~M7!hxK5rCE9mHLHE|0#t^Rhdbjw2K)QhUHY^}lOn4bz z?758^rcTZuvDgHF=a*m5EzsULz@d7Es!Z*zswq7brets-r4+(6M65j;4V6il`#IP4 zj6bVr|Fr%uY5?%k$LBIl=j7%~S07%pzyF0ny`_-n6M`ElBWF1r43rY7>-_iKbJTmn zC0y;fo$!`TQRX6!o-v)TQr$|QaAOok;zI#X1rE&@UXTv^?bn%^Jpj7)$~L>n8? zT3(7!T|EG19rmd6PP+A&Ylfogn?su#cQwq)9hMzDKRb=5zq{s)SqVO)z1kOldNuJ& z0X5Bwv&LkQ^70lmx9Fr-KOgoKH&Vmq3PK1lMlrB3U2xNsllx4NCE;Dp6om;mvfTVpH99 zcT`loyz0C$%JkvAIQh%_XOy}9Uw&WApI;b2uDm`M8@7e07Bt9pQ@5M{^GZRkuFKVw z;^(xUe&}tZba<@`dX1#BJ}WlfpFQr{NJx9hk)pDugKdbk#ZE|5We$d{eyMmSlamV+>xYrR3SVfn67aV@zBAMfWAyoS$=y{7~wXpO9ZPf1)ek)xFMp70~ZWQ z_pYrD8r1Jnc&!Y{>%Q9ezkW5hFMzWEi~#TitY{YB2c+2LOaM>|;H7^Qq8@%`1o`>R z+Yfi-`g11G=4goRKhVT|J<~?2CO$Nz%n7tcA-J$-t^_F_2V5#`=Y(9bXm{D?FAXbD z6;+CBx0ao5Kh;4t9!J0my$}EZ|G-hR+slfVd-{*~10`rZ6$Ek+)|p|j3mJ?P3%l}d z;VyK9RROH%MgM&|F)Zg@OJ3f-iMolT^Y)Y)i}U-wM+m*5Ev7+A37`$=4zPlx^#(B1{{0>uhjLQ8{5}9C!HTT1_9)yn6V}m*V__Y9R}Wwl>}XTutyhiL z3x|n9N##ccLmbu7;5?t|ehI2$z6k**Wos55ET8sH-vUP_++yOkZ6cxkVXz{&JZ85y z-5$~L0k#^QBVZj(0%XHFPj3XQKqs4EMWG7f$b(3`!HOx8*zYk|M_9&V5S5@KV$NZ> z5*;yrj`ce$;hVX~N&9Y68NWtHWT<2PYV1ZQ!hz#_lb?{*YZFZT-NB^1rlBL^Rq|5-SH4Dgdy2@UWMc4K92a0NyVc%;c1_Ns_)6K-e5zbZwF-_1mJeIsqT+yC6JJX+=yw&>no!>s0&z5azld zUwx4%GLvyr0pPa@_gieDiMQ92l>Sn54r5gZE7a7*2?V6ueFIphAm3+;aU_V6Z@t{| z6Pr*B8zEh>pohEQKF#QS?D5eG9MMI7noaGor02iw;``qxrJ4UdagaE~!}{q-BRcVS z#4*k9j6QC>)jmlhxIF3oyd-XVXVUvyl0=fQ(;w@Xct~;or1Fc8RoTSOd>lY`n{t^= ziKA?J9fzCIahUJ7nL1|!_@E0`?z9!-nMviepUmW<3oe(~P7_B)-0RYYW^*`){k_{( zcpDPZJd&iOSvzb6j2$sSN~Xte8itlzHhS{Suie9RU#@7oGmk~w>vSh zGT$WJN74CI`!rY)0=wICG0rC2x|q$}WOu+w0RJb6_1(}#U6VtVFM<^!aafXm6t)%J zICO_~`1^%6t6hrDM~jb1%6EdzLE8YlZsTLPEqdqL)5JKeKu6HfIMGX6M<}(g=bmB$ z*=%!>#P(If3J^Tm7D2zYIaACgRwVUV;vgPki>RJ)r8^lew`Uyn$Ixzf9iyS$?P*mq z8*Z}|rbJkE6m}i6weso&?fvpD%KCpv3S|8ERuY#Wu!1E=yGUCMEA(W%oDXcJGd=~s z0>H;Mr|1e70#*dqd0o^mFX_7&jyw`Q-=1Z~V{;~pz-#R9;+*cTqgn244%T>-dbR?1 sGr>lc2!oF@GiPx^Ye_^wRA}DqS$nWuWp)3p^?iHq^SI}n`^>$0kw6|G2}v+0kl<9UR>9XeW8xzy zNFA`!#@ec#KBlG0)M-0|kI~v&iz2={QCb}^YNeu(p+F2lBoN3Y50abYCiijP=j^?| zZ>|1u4!Hyqh|W~fnXWT?=FIHJx7PaB`mNtuAMk%%=%rY6!({-h{#kd=O?iJYLng-dA#IV#8hx1Qjp5{?=`LRvNHr>mFt+cDxY} zOx2SwvdF$gBl$xHJr%F+V5OaWp^~-+^7(?f;v0|hSrtORcl%Mw_Z+tqGmVu?hKfJv z%|*ktMBt%-D!eG17nGZEb*9;RcQJ^5TsNtI@aoItB{yKhmM!GX#awCD`-&Me)|=0i zlo*BqW`e3Bb&Aw`v=WDzM!QmPq?fVfvFX;7AKQG@X>-D!i2|deYbjh_KpsEk;Mrasul3;$$0#F=|Qy61GL|~$l zQ+G?q;oD15AOLwEHQ-)zmO~lNGh!m10+85>3b1YOT$>@(?r*RtS z=Bs{i@`A2KWLy{p(RHZ;Sq7Tz7=N{HAWKgVOwO4W6^)jj9PHQb(FL(MYBs3gmk7`QE-|iy-!m z&gmD9mnZIE@tX^Qnfdb8SGhWl=zaCS!=b4*JUCNp#UKKl^9W1{L;!(60EmE0K=3k~ zvxc;W7pVv*88CY1S~7t%HiWgl^o}`;Mn+?u%vIyD&WBZ@A`k^s6fHl4Mmz%%fe1`7 z*Sj(Gxi`&B9sL6vm@S6;TwnHXnYJ5|w1a)^Sbe<}8vvMU^g&d?-2fL=9B(EkBMi#{ zc)^YvE;+3k=Gi~DY`L7W!`2job~uz4N_@AW%hjqfuJ47Xa~j=fGQBX z22$4ygCO(PYP}W{`3G%$Tqj%SYC9ZC0tD5rue#_W~~hp9<2{qft$6w3+B%56oQPALaLPEy=Cw&1N2&Y$hC8Mn13@%mwhO zI8u+%PCZ0{LS$PlC$AJoyQg!p-~ayCyf6wih5`ySG7$~mqPBKfJE?SRQ*;zp1tS9a z9;g-(_$&-%P)qhhs0`&8Ab^NK+Q~N}LJ;z&T(kPa!OWh6gR);dt=g4{{4f`otD31t z>=IPs^n_EGfZ?79Gp+QmL&8(dBrE%GT=#-mU_ZBYDX9;5vWEHREzs+mX}ObBP-w>n zkn2H?F2O5ab{z`2IUwpNsj3)1wi6GJeGN154p_q-gF7DpGZ#JV7cDp5wlMvfOk9kH!b6=u{IOf@7O3gcQ(p9 zO0;SQmoL8=tCws*CMtr-g2;f#fXSekpNHiOUyoX~g`<^Uz#4{hX@PeF=X6P$_(wRX zJymX;E3qA(YB^m?M9UPwyg~-&^k!y`*5kiH%YPsWX;*BGTaeG`-Pf#nQ3E(IEm9UH zn_RB&9i-9Dd+nyf%NKtX^9ELf$%4s%h)=%QfH}Ywt8c`LdDlX`Kow9yH!nP(@>c7b zJdim6=VR|xx2Y|odAb{lEgpzz&Q*oiDYKCrM5y#1BsI_ zXEpiC!ty@9{>g1Pw|0PY>Nv_+vX-f-3BtB$+>FKee!1(4i-Zd;eZC>AUO1ZzUZW~q zSnMQclCUlse#IFm-!-9IRp$<_Mv|mxHQmV%c)c*=tCTl0sss(G`R8lK?w7Ydd>79f z+Zolyj=nb)za{DmpDxVLRkL$)lbogP&3gKoiM{1D24Uc9CG(?ItLS+l1VCk}cm;E3 z1DF9rArbSh$GC}*iHc~{l3%$cN{CQL4~=VIZPD$&`^dkymrw37t*7^1F!$vPepFhT z8E%)`nAtIj!<9DJkj?gIR}PdiD+fn04D zdXb9&1{0u45KVr4;;)LpWWh|G*njR;8}eRKU2*6^4E^+>*4);Fb?xTImR>mTrsPn| zjL*z~yETM~pia>^+CcS)KnT>+pSgyLg*Qx=D_3UK?z(+=Sl>4>p;ppF+p)XfJ9!&S zM|oI)j3P-J$b>-`R9|=}6rG~C@5ucKBMXskWp>>=D&DAI?yhGrIK@0ut-fmh-2P8g z$EsvhVTfTvMvx7l++hGdP0?;TIOotj-hxvZv5EOMlJ>=MVC5!2xJ@J~vZK{Z;Zonp z15pH)vHhvfL)D*v)fe-=s$kEdtq4K`8yEzEK^QXF5S0Bd?6iY9*x+ipobAnJzve43 zu_~B5&+Eus3}5>JtiJu3QhNB=voh7Thc;!ch!5E@=uH^EJY$jt5QBb(N}MnU$` zRwEUFI1q(+0~08onf{3;ZZkze0kg#SSADOl5cL?Jd>B*p$6=UeA(k0l^{K!IM{{L| ze3>{l{K?Ss2ou8?0uy0)(m3O2eNw>FT&8pYq0E^_u~E!ehBWd$3fH~dWPvE z&4g}~T>e3LR4QS?d)@`C0r~j9ai?KZ(PL2nn2s~$!t&fF;D_#1~EX~Q6#h( z^cR+6!QgrnGIP+1D`+ND*njLNsI|ud0i@d)oS@lWkvfm0*5v{u*9?W3 z?I9Zk#=vJYc-^*p!BN;z{uH?--s8xF58~cU*P!ZBG`)vHcLKD|0ziJMrOlC&?;-wF zDZl7FmH5DXsOv%t0R*J3jfwIvajg8ySwQMU(}{)#UFuEf6vR%50G@&r0LTeQu|!27 z+-169ct)irEcT-19h%;En|Yc`Y&w*7^X4%vpx}FYhw4+6iR+gPuTOh&16>CQRG#g? zWVV6ndRZae&P==d6P{ZFm>HJR#U@gc65wP1WU2xu9$p1nsX^idT?%k&coxO6hkuTW zo2~AdVl-|-o}EhExbdeNu=T_J!*}o6bMF=B46K=4I{%fO&Oo)pE}yrCD9~w@XDLY6 z)DtZyKwuMYOl@Eq{UIXi+1K)367fi!2dl@Ex7`NyUATVk0^J^5y~AU7e0P>UL4#S&?c{-V7rX^47p;diVW)GFjxj2;YY_;!Xb}DR zb5Y7IMlKu#lRaSyTYh&Eq`k>cn?Wa z{PG*$#NqARPw3gdu!!bl<5p`)P8ogQ+jborZ8ON)C-&~Vw6`>T&BBoj-ewH-dlje( zymt^4Byob&xpJ*m-cfEG{(0i#@xVkE20`>%GHyALKom$5x!G3e=G^z%s=L#5*-~^* zJl#e>2Dw~-Y$=EH-v2=?f6u#NqX>YaIXQ&~{_!91)SY)CZKr?&VNZa07Y>b8Ch8YO z&L^i$pRe3=EtR~GGc6XdF#zv5_}EJFet{5rL?}nBNl4K{gM;(;s(N)Ukybl~s3W1+ zG#kw~8>YXop6ew=AHA#S&G?k%g|; z!~GAO|7b039P}pFc3}%<3z*(CeYkeg*sXUcuRfMPM#Q7Yrmj@a$;Mr~^tXP*^yxo2 zq`Q4aE0u=i3eEexucaHmy-Sm{>SHlUrk%c%Vt;S85S@6ZSj@mzlD`D>UnGrPYs#FY z{7ZI9`Fy#3)i9-T&bBLX4~$8k@m_A)zh6%~+zysczj&XieuK(NzGcd4nFkBrw20`Er!A2d^UQ> z7%%Uen9#H4ocMIId2CGkqDZ2ie5F4OCk^qoC}1C0t7p|g_X~*-fmJ02b~nY}kphxB zr)PXZ^HNLTz1Eri@mBL&2+a3`B$fA{B5}{!9k^<2Oxu-;B$jW>0j*?UK=J=_mdpPD X({850X + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + + +@media screen, projection, tv { + +* { margin: 0; padding: 0px; vertical-align: baseline; } +abbr { border-bottom:0; } +input.submit { cursor: pointer; } + +body { + background-color: #ffffff; + color: #000; + font-family: sans-serif; + font-size: 100%; + line-height: 1.2; + min-width: 700px; +} + +a { + color: #00008c; + text-decoration: none; + outline: none; +} + +a:hover { + text-decoration: underline; +} + +a img { + border: 0; + text-decoration: none; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: normal; + font-weight: 1.6em; + margin-bottom: 15px; +} + +h1 { + font-size: 2.2em; +} + +h2 { + font-size: 1.8em; +} + +input, textarea, select, option { + font-family: "DejaVu Sans", "Bitstream Vera Sans", Geneva, Verdana, sans-serif; + font-size: 1em; +} + +input { + font-family: "DejaVu Sans", "Bitstream Vera Sans", Geneva, Verdana, sans-serif; + font-size: 1em; +} + +#wrap { + width: 92%; + margin-left: 4%; + margin-right: 4%; + position: relative; +} + +#header { + padding: 1%; + position: relative; +} + +#core { + display:inline; + float: left; + position: relative; + margin-left: 1%; + margin-right: 1%; + width: 98%; +} + +#content { + margin-bottom: 20px; + background-color: #fff; + display:inline; + float: left; + position: relative; + min-height: 300px; + width: 64.667%; + margin-right: 2%; +} + +#aside_primary { + display: inline; + float: right; + position: relative; + width: 33.333%; + padding-top: 15px; + background: #f2f2f2; + margin-bottom: 20px; +} + +#aside_primary .section { + margin: 0px 10px 20px 10px; + clear: both; +} + +body[id$=adminpanel] #aside_primary { + display:none; +} + +address { + margin-bottom: 10px; +} + +address img + .fn { + display: none; +} + +address .poweredby { + display: block; + width: auto; +} + +#site_nav_global_primary { + margin: 20px 0px 20px 0px; +} + +#site_nav_global_primary dt { + display: none; +} + +#site_nav_global_primary li { + display: inline; + margin-right: 20px; +} + +#site_notice { + padding: 1%; + background-color: #f2f2f2; + margin-bottom: 10px; +} + +#site_notice ul { + margin-left: 15px; +} + +.system_notice dt { + display:none; +} + +#page_notice { + padding: 4px; + margin-bottom: 20px; +} + +#anon_notice { + padding: 1%; + background-color: #ccc; + margin-bottom: 10px; +} + +.form_notice { + background: #ccc; + margin-bottom: 10px; + padding: 1%; +} + +.form_notice fieldset { + border: 0; + position: relative; + width: 620px; +} + +.form_notice legend { + display: none; +} + +.form_notice label[for=notice_data-text] { + float: left; + font-size: 1.2em; + margin-bottom: 0.2em; + opacity: 1; +} + +.form_notice textarea { + clear: left; + float: left; + padding: 10px; + border: none; + position: relative; + width: 485px; + height: 63px; + padding-bottom: 15px; +} + +.form_notice label[for=notice_data-attach], +.form_notice #notice_data-attach { + position:absolute; + top: 24px; + right: 87px; + cursor:pointer; +} + +.form_notice label[for=notice_data-attach] { +text-indent:-9999px; +width:16px; +height:16px; +} +.form_notice #notice_data-attach { +padding:0; +height:16px; +} +.form_notice .form_note { +position:absolute; +bottom:2px; +right:21.715%; +z-index:9; +} +.form_notice .form_note dt { +font-weight:bold; +display:none; +} + +.form_notice #notice_text-count { + margin-right: 10px; + color: #777; +} + +.form_notice.warning #notice_text-count { + color: #ff0000; +} + +.form_notice #notice_action-submit { +padding:0; +position:absolute; +right:0; + top: 79px; + height: 2.4em; + width: 106px; +} + +.form_notice label[for=to] { + margin-top: 0px; + float: left; + font-size: 1.2em; +} + +.form_notice select[id=to] { + margin-bottom: 4px; + margin-top: -4px; +margin-left:18px; +float:left; +max-width:322px; +} + +.form_notice .error, +.form_notice .success { +float:left; +clear:both; +width:81.5%; +margin-bottom:0; +line-height:1.618; +} + +.form_notice #notice_data-attach_selected { + padding: 2px 2px 2px 5px; + width: 498px; + border: 2px solid #ccc; + margin-left: -2px; +} + +.form_notice #notice_data-attach_selected code { + float: left; + width: 470px; + display: block; + overflow: auto; + font-size: 1.2em; + line-height: 1.8em; +} + +.form_notice #notice_data-attach_selected button.close { + float:right; + font-size:0.8em; +} + +.processing { +background-image:url(../../base/images/icons/icon_processing.gif); +background-repeat:no-repeat; +background-position:47% 47%; +} + +.error { + background-color: #F7E8E8; +} +.success { + background-color: #f2f2f2; +} + +.form_notice #notice_data-geo_wrap label, +.form_notice #notice_data-geo_wrap input { +position:absolute; + top: 50px; + right: 87px; +left:auto; +cursor:pointer; +width:16px; +height:16px; +display:block; +} +.form_notice #notice_data-geo_wrap input { +visibility:hidden; +} +.form_notice #notice_data-geo_wrap label { +font-weight:normal; +font-size:1em; +margin-bottom:0; +text-indent:-9999px; +} + +.form_notice #notice_data-attach { +opacity:0; +} + +.form_notice label[for=notice_data-attach], +.form_notice label[for=notice_data-geo] { + background-image: url(../images/icons/icons-01.gif); + background-repeat: no-repeat; + background-color: transparent; +} + +.form_notice label[for=notice_data-attach] { + background-position: 0 -328px; +} + +.form_notice label[for=notice_data-geo] { + background-position: 0 -1780px; +} +.form_notice label[for=notice_data-geo].checked { + background-position: 0 -1846px; +} + +.form_notice label { + opacity: 0.6; +} + +.form_notice label:hover { + opacity: 1; +} + + +#site_nav_local_views { + margin-bottom: 20px; +} + +#site_nav_local_views dt { + display: none; +} + +#site_nav_local_views li { + display: inline; + margin-right: 20px; +} + +#site_nav_local_views .current a { + text-decoration: underline; +} + + +#aside_primary li { + list-style-type: none; +} + +#aside_primary ol.notices { + float: left; + position: relative; + margin-bottom: 10px; +} + +#aside_primary .notices li { + margin-bottom: 8px; +} + +#aside_primary .notice { + min-height: 24px; +} + +#export_data li { + list-style-type:none; + display: inline; + line-height: 2; +} + +#export_data li a { + padding-left: 20px; + margin-right: 10px; +} +#export_data li a.foaf { + padding-left: 30px; +} + +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf { + background-image: url(../images/icons/icons-01.gif); + background-repeat: no-repeat; + background-color: transparent; +} + +#export_data li a.rss { + background-position: 0 -130px; +} +#export_data li a.atom { + background-position: 0 -64px; +} +#export_data li a.foaf { + background-position: 0 1px; +} + +#aside_primary td { + padding-right: 10px; + padding-bottom: 10px; +} + + +#entity_statistics dt, +#entity_statistics dd { +display:inline; +margin-right:11px; +} +#entity_statistics dt:after { +content: ":"; +} + +.section ul.entities { +float:left; +width:100%; + +} +.section .entities li { +list-style-type:none; +float:left; +margin-right:7px; +margin-bottom:7px; +display:inline; +} +.section .entities li .photo { +margin-right:0; +margin-bottom:0; +} +.section .entities li .fn { +display:none; +} + +.aside .section p, +.aside .section .more { +clear:both; +} + +.section tbody td { +padding-right:18px; +padding-bottom:11px; +} +.section .vcard .photo { +margin-right:7px; +margin-bottom:0; +} + +.section .notice { +padding-top:7px; +padding-bottom:7px; +border-top:0; +} + +.section .notice:first-child { +padding-top:0; +} + +.section .notice .author { +margin-right:0; +} +.section .notice .author .fn { +display:none; +} + +.tag-cloud { +list-style-type:none; +text-align:center; +} +.aside .tag-cloud { +font-size:0.8em; +word-wrap:break-word; +} +.tag-cloud li { +display:inline; +margin-right:7px; +line-height:1.25; +} + +.tag-cloud li:before { +content:'\0009'; +} + +.aside .tag-cloud li { +line-height:1.5; +} +.tag-cloud li a { +text-decoration:none; +} +#tagcloud.section dt { +text-transform:uppercase; +font-weight:bold; +} +.tag-cloud-1 { +font-size:1em; +} +.tag-cloud-2 { +font-size:1.25em; +} +.tag-cloud-3 { +font-size:1.75em; +} +.tag-cloud-4 { +font-size:2em; +} +.tag-cloud-5 { +font-size:2.25em; +} +.tag-cloud-6 { +font-size:2.75em; +} +.tag-cloud-7 { +font-size:3.25em; +} + +#publictagcloud #tagcloud.section dt { +display:none; +} + +#content .notices { + padding-top: 8px; +} + +#notices_primary { + clear: both; +} + +#notices_primary h2 { + display: none; +} + +.notices li { + list-style-type: none; + margin-bottom: 25px; + clear: left; +} + +.notice, .profile, .application { + position:relative; + clear:both; + float:left; + width:100%; +} + +.notice { + min-height: 56px; +} + +.notice .author { + margin-right: 8px; +} + +#showstream #content .notice .author { +display:none; +} + +.fn { +overflow:hidden; +} + +.notice .author .fn { +font-weight:bold; +} + +#core .vcard .photo { +display:inline; +margin-right:11px; +float:left; +} + +#shownotice .vcard .photo { +margin-bottom:4px; +} + +#content .notice .author .photo { +position:absolute; + top: 4px; + left: 4px; +float:none; +} + +#content .notice .entry-title { + margin: 2px 7px 0px 59px; +} + +#showstream .notice .entry-title { + min-height: 1em; +} + +.vcard .url { +text-decoration:none; +} +.vcard .url:hover { +text-decoration:underline; +} + +.notice .entry-title { +overflow:hidden; +word-wrap:break-word; +} +.notice .entry-title.ov { +overflow:visible; +} +#showstream .notice .entry-title, +#showstream .notice div.entry-content { +margin-left:0; +} +#shownotice .notice .entry-title { +margin-left:110px; +font-size:2.2em; +min-height:123px; + font-size: 1.6em; + line-height: 1.2em; +} + +#shownotice .notice div.entry-content { +margin-left:0; +} + +.notice p.entry-content { +display:inline; +} + +#content .notice p.entry-content a:visited { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +} +.notice p.entry-content .vcard a { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +} + +.notice div.entry-content { + clear:left; + float:left; + margin-left:59px; + margin-top: 10px; +} + +.entry-content .repeat { + display: block; +} + +button.close, +button.minimize { +width:16px; +height:16px; +text-indent:-9999px; +padding:0; +border:0; +text-align:center; +font-weight:bold; +cursor:pointer; +} + +.dialogbox { +position:absolute; +top:-1px; +right:-1px; +z-index:9; +float:none; +padding:11px; +border-style:solid; +border-width:1px; + background: #fff; +} + +.dialogbox legend { +display:block !important; +margin-right:18px; +margin-bottom:18px; +} + +.dialogbox button.close { +position:absolute; +right:3px; +top:3px; +} + +.dialogbox .form_guide { +font-weight:normal; +padding:0; +} + +.dialogbox .submit_dialogbox { +font-weight:bold; +text-indent:0; +min-width:46px; +} +.dialogbox input { +padding-left:4px; +} +.dialogbox fieldset { +margin-bottom:0; +} + +#wrap form.processing input.submit, +.entity_actions a.processing, +.dialogbox.processing .submit_dialogbox { +cursor:wait; +outline:none; +text-indent:-9999px; +} + +.form_repeat.dialogbox { +top:-4px; +right:29px; +min-width:199px; +} + + +.notice-options { + float: right; + margin-top: 10px; + margin-right: -6px; +} + +.notice-options fieldset { + border: none; +} + +.notice-options legend { + display: none; +} + +.notice-options form, .notice-options a, .notice-options .repeated { + float: left; + margin-right: 10px; +} + +.notice-options input, .notice-options a, .notice-options .repeated { + text-indent: -9999px; + outline:none; +} + +.notice-options input.submit, .notice-options a, .notice-options .repeated { + display: block; + border: 0; + height: 16px; + width: 16px; + background-image: url(../images/icons/icons-01.gif); + background-repeat: no-repeat; + background-color: transparent; +} + +.notice-options input.submit, .notice-options a { + opacity: 0.6; +} + +.notice-options input.submit:hover, .notice-options a:hover { + opacity: 1; +} + +.notice-options form.form_favor input.submit { + background-position: 0 -460px; +} +.notice-options form.form_disfavor input.submit { + background-position: 0 -526px; +} + +.notice-options .notice_reply { + background-position: 0 -592px; +} + +.notice-options .notice_delete { + background-position: 0 -658px; +} +.notice-options form.form_repeat input.submit { + background-position: 0 -1582px; +} +.notice-options .repeated { + background-position: 0 -1648px; +} + +.notice .attachment { + position:relative; + padding-left:16px; +} + +.notice .attachment.more { +text-indent:-9999px; +width:16px; +height:16px; +display:inline-block; +overflow:hidden; +vertical-align:middle; +margin-left:4px; +} + +#attachments .attachment, +.notice .attachment.more { +padding-left:0; +} +.notice .attachment img { +position:absolute; +top:18px; +left:0; +z-index:99; +} +#shownotice .notice .attachment img { +position:static; +} + +#attachments { +clear:both; +float:left; +width:100%; +margin-top:18px; +} +#attachments dt { +font-weight:bold; +font-size:1.3em; +margin-bottom:4px; +} + +#attachments ol li { +margin-bottom:18px; +list-style-type:decimal; +float:left; +clear:both; +} + +#jOverlayContent, +#jOverlayContent #content, +#jOverlayContent #content_inner { +width: auto !important; +margin-bottom:0; +} +#jOverlayContent #content { +padding:11px; +min-height:auto; +} +#jOverlayContent .entry-title { +display:block; +margin-bottom:11px; +} +#jOverlayContent button { +position:absolute; +top:0; +right:0; +} +#jOverlayContent h1 { +max-width:425px; +} +#jOverlayContent #content { +border-radius:7px; +-moz-border-radius:7px; +-webkit-border-radius:7px; +} +#jOverlayLoading { +top:5%; +left:40%; +} +#attachment_view img { +max-width:480px; +max-height:480px; +} +#attachment_view #oembed_info { +margin-top:11px; +} +#attachment_view #oembed_info dt, +#attachment_view #oembed_info dd { +float:left; +} +#attachment_view #oembed_info dt { +clear:left; +margin-right:11px; +font-weight:bold; +} +#attachment_view #oembed_info dt:after { +content: ":"; +} + +.notices li li { + margin-left:18px; + width: auto; + margin-top: 25px; +} + +.notice .notice { +background-color:rgba(200, 200, 200, 0.050); +} +.notice .notice .notice { +background-color:rgba(200, 200, 200, 0.100); +} +.notice .notice .notice .notice { +background-color:rgba(200, 200, 200, 0.150); +} +.notice .notice .notice .notice .notice { +background-color:rgba(200, 200, 200, 0.300); +} + +.pagination { + background-color: #f2f2f2; + clear: left; + margin-top: 20px; + padding: 1%; + height: 1em; +} + +.pagination dt { + display: none; +} + +.pagination li { + display: inline; +} + +.pagination .nav_prev { + float: left; +} + +.pagination .nav_next { + float: right; +} + +#footer { + clear: both; + background-color: #ccc; + margin-left: 1%; + margin-right: 1%; + padding: 1%; +} + + +#site_nav_global_secondary dt { + display: none; +} + +#site_nav_global_secondary li { + display: inline; + margin-right: 20px; +} + +#licenses dt { + display: none; +} + +#licenses dd { + margin-top: 10px; +} + + +form ul li { + list-style-type:none; + margin:0 0 18px 0; +} + +.form_settings { + clear:both; +} + +.form_settings fieldset { + margin-top: 10px; + margin-bottom: 30px; + border: none; +} + +.form_settings fieldset fieldset { + margin-bottom: 40px; + padding: 10px; + padding-top: 30px; + border-width:1px; + border-style:solid; + background:rgba(240, 240, 240, 0.2); +} + +.form_settings fieldset fieldset legend { + line-height:0; + font-size: 1.4em; +} + +.form_settings input.remove { +margin-left:11px; +} +.form_settings .form_data li { +width:100%; +float:left; +} +.form_settings .form_data label { +float:left; +} +.form_settings .form_data textarea, +.form_settings .form_data select, +.form_settings .form_data input { +margin-left:1.795%; +float:left; +} +.form_settings .form_data input { +width:39%; +} +.form_settings .form_data input.submit, +.form_settings .form_data input.checkbox, +.form_settings .form_data input.radio { +width:auto; +} +.form_settings .form_data textarea { +width:63%; +} + +.form_settings .form_data input.submit { +margin-left:0; +} + +.form_settings label { +margin-top:2px; +width:24%; + text-align: right; +} + +.form_settings label.checkbox { + text-align: left; +} + +.form_actions label { +display:none; +} +.form_guide { +font-style:italic; +} + +.form_settings #settings_autosubscribe label { +display:inline; +font-weight:bold; +} + +#form_settings_profile legend, +#form_login legend, +#form_register legend, +#form_password legend, +#form_settings_avatar legend, +#newgroup legend, +#editgroup legend, +#form_tag_user legend, +#form_remote_subscribe legend, +#form_openid_login legend, +#form_search legend, +#form_invite legend, +#form_notice_delete legend, +#form_password_recover legend, +#form_password_change legend, +.form_entity_block legend, +#form_filter_bytag legend, +#apioauthauthorize_allowdeny { +display:none; +} + +.form_settings .form_data p.form_guide { +clear:both; +margin-left:26%; +margin-bottom:0; +} + +.form_settings p { +margin-bottom:11px; +} + +.form_settings input.checkbox, +.form_settings input.radio { +margin-top:3px; +margin-left:0; +} +.form_settings label.checkbox { +font-weight:normal; +margin-top:0; +margin-right:0; +margin-left:11px; +float:left; +width:90%; +} +.form_settings label.radio { +margin-top:0; +margin-right:47px; +margin-left:11px; +width:auto; +} + +#form_login p.form_guide, +#form_register #settings_rememberme p.form_guide, +#form_openid_login #settings_rememberme p.form_guide, +#settings_twitter_remove p.form_guide, +#form_search ul.form_data #q, +#design_background-image_onoff p.form_guide { +margin-left:0; +} + +.form_settings .form_note { +border-radius:4px; +-moz-border-radius:4px; +-webkit-border-radius:4px; +padding:0 7px; +} + +.form_settings input { + margin-right: 20px; +} + +.hentry .entry-content .form_settings ul { +margin-left:0; +} + + +#form_ostatus_connect.form_settings.dialogbox { + width: 80%; +} + +#form_ostatus_connect.form_settings.dialogbox legend { + font-size: 1.4em; + font-weight: bold; +} + +#form_ostatus_connect.form_settings.dialogbox #ostatus_profile label { + font-weight: bold; + font-size: 1.2em; +} + +#form_ostatus_connect.form_settings.dialogbox #ostatus_profile input { + float: right; + width: 50%; +} + +#form_ostatus_connect.form_settings.dialogbox .form_guide { + background: none !important; +} + +#form_search .form_data input { +width:auto; +} + +#filter_tags ul li, +.entity_send-a-message .form_notice, +.pagination .nav_prev a, +.pagination .nav_next a, +.form_settings fieldset fieldset, +.entity_moderation:hover ul, +.entity_role:hover ul, +.dialogbox { +border-color:#DDDDDD; +} + +.form_settings input.form_action-primary { +background:none; +} + +.form_notice.warning #notice_text-count, +.form_settings .form_note { +background-color:#9BB43E; +} + +#form_settings_photo .form_data { +clear:both; +} + +#form_settings_avatar li { +width:auto; +} +#form_settings_avatar input { +margin-left:0; +} +#avatar_original, +#avatar_preview { +float:left; +} +#avatar_preview { +margin-left:29px; +} +#avatar_preview_view { +height:96px; +width:96px; +margin-bottom:18px; +overflow:hidden; +} + +#settings_attach, +#form_settings_avatar .form_actions { +clear:both; +} + +#form_settings_avatar .form_actions { +margin-bottom:0; +} + + +#settings_design_background-image img { + max-width:480px; + max-height:480px; + clear: left; + display: block; + margin-bottom: 10px; +} + +#settings_design_background-image .form_guide { + float: left; + margin-top: 10px; +} + +#settings_design_color .form_data, +#color-picker { +float:left; +} +#settings_design_color .form_data { +width:400px; +margin-right:1%; +} + +#settings_design_color .form_data li { +width:33%; +} +#settings_design_color .form_data label { +float:none; +display:block; +} +#settings_design_color .form_data .swatch { +padding:11px; +margin-left:0; +width:auto; +} + + +#showstream h1 { + display:none; +} + +.entity_profile { +position:relative; +width:73%; +min-height:123px; +float:left; +margin-bottom:18px; +margin-left:0; +overflow:hidden; +} + +.entity_profile dt, +#entity_statistics dt { +font-weight:bold; +} +.entity_profile dd { +display:inline; +} + +.entity_profile .entity_depiction { + float:left; + width:96px; + margin-right:18px; + margin-bottom:18px; + text-align: center; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags, +.entity_profile .entity_aliases, +.entity_profile .entity_statistics { +margin-left:113px; +margin-bottom:4px; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname { +margin-left:11px; +display:inline; +} +.entity_profile .entity_nickname { +margin-left:0; +} +.entity_profile .fn, +.entity_profile .nickname { + font-size:1.4em; +font-weight:bold; +} +.entity_profile .fn:before { +content: "("; +font-weight:normal; +} +.entity_profile .fn:after { +content: ")"; +font-weight:normal; +} +.entity_profile .nickname:after, +.entity_profile .nickname:before { +content:""; +} +.entity_profile dt, +.entity_profile h2 { +display:none; +} +.entity_profile .role { +margin-left:11px; +font-style:italic; +} + +.entity_actions { +float:right; +margin-left:2%; +margin-bottom:18px; +min-width:21%; +} + +.entity_actions h2 { +display:none; +} +.entity_actions ul { +list-style-type:none; +} +.entity_actions li { +margin-bottom:7px; +} +.entity_actions li:first-child { +border-top:0; +} +.entity_actions fieldset { +border:0; +padding:0; +} +.entity_actions legend { +display:none; +} + +.entity_actions input.submit { +display:block; +text-align:left; +width:100%; + border: none; +} +.entity_actions a { +text-decoration:none; +font-weight:bold; +display:block; +} + +.entity_actions a, .entity_actions input, .entity_actions p { + background-color: #ccc !important; + font-weight: normal; + padding-top: 4px; + padding-bottom: 4px; + line-height: 1.6em; + padding-left:23px; +} + +.entity_actions a:hover, .entity_actions input:hover { + background-color: #f2f2f2 !important; +} + +.entity_actions #entity_remote_subscribe a { + padding-right: 6px; +} + +.entity_actions a, +.entity_actions p { +padding:2px 4px 1px 26px; +} + +.entity_actions .accept { +margin-bottom:18px; +} + +.entity_send-a-message button { +position:absolute; +top:3px; +right:3px; +} + +.entity_send-a-message .form_notice { +position:absolute; +top:34px; +right:-1px; +padding:1.795%; +width:65%; +z-index:2; +} +.entity_send-a-message .form_notice legend { +display:block; +margin-bottom:11px; +} + +.entity_send-a-message .form_notice label, +.entity_send-a-message .form_notice select { +display:none; +} +.entity_send-a-message .form_notice input.submit { +text-align:center; +} + +.entity_moderation, +.entity_role { +position:relative; +} +.entity_moderation p, +.entity_role p { + +padding-bottom:2px; +margin-bottom:7px; +} +.entity_moderation ul, +.entity_role ul { +display:none; +} +.entity_moderation:hover ul, +.entity_role:hover ul { +display:block; +width:110%; +padding:11px; +position:absolute; +z-index:1; +border-width:1px; +border-style:solid; + top: 20px; + right: 0px; + background-color: #fff; +} + +.entity_tags ul { +list-style-type:none; +display:inline; +} +.entity_tags li { +display:inline; +margin-right:7px; +} +.entity_tags li:before { +content:'\0009'; +} + + +#entity_statistics dt, +#entity_statistics dd { +display:inline; +margin-right:11px; +} +#entity_statistics dt:after { +content: ":"; +} + +.section ul.entities { +float:left; +width:100%; +} +.section .entities li { +list-style-type:none; +float:left; +margin-right:7px; +margin-bottom:7px; +display:inline; +} +.section .entities li .photo { +margin-right:0; +margin-bottom:0; +} +.section .entities li .fn { +display:none; +} + +.aside .section p, +.aside .section .more { +clear:both; +} + +.profile .entity_profile { +margin-bottom:0; +min-height:60px; +} + +.profile .form_group_join legend, +.profile .form_group_leave legend, +.profile .form_user_subscribe legend, +.profile .form_user_unsubscribe legend { +display:none; +} + +.profiles { +list-style-type:none; +} +.profile .entity_profile .fn.nickname, +.profile .entity_profile .url[rel~=contact] { +margin-left:0; +display:inline; +} + +.profile .entity_profile .fn, +.profile .entity_profile .label { +margin-left:11px; +margin-bottom:4px; +width:auto; +clear:none; +} + +.profile .entity_profile .note, +.profile .entity_profile .url, +.profile .entity_profile .entity_tags, +.profile .entity_profile .form_subscription_edit { +margin-left:59px; +clear:none; +display:block; +width:auto; +} +.profile .entity_profile .entity_tags dt { +display:inline; +margin-right:11px; +} + +.profile .entity_profile .form_subscription_edit label { +font-weight:normal; +margin-right:11px; +} + + +.applications { +margin-bottom:18px; +float:left; +width:100%; +} +.applications li { +list-style-type:none; +} +.application img, +#showapplication .entity_profile img, +.form_data #application_icon img, +#apioauthauthorize .form_data img { +max-width:96px; +max-height:96px; +} +#apioauthauthorize .form_data img { +margin-right:18px; +float:left; +} +#showapplication .entity_profile { +width:68%; +} +#showapplication .entity_profile .entity_fn { +margin-left:0; +} +#showapplication .entity_profile .entity_fn .fn:before, +#showapplication .entity_profile .entity_fn .fn:after { +content:''; +} +#showapplication .entity_data { +clear:both; +margin-bottom:18px; +} +#showapplication .entity_data h2 { +display:none; +} +#showapplication .entity_data dl { +margin-bottom:18px; +} +#showapplication .entity_data dt { +font-weight:bold; +} +#showapplication .entity_data dd { +margin-left:1.795%; +font-family:monospace; +font-size:1.3em; +} +.form_data #application_types label.radio, +.form_data #default_access_types label.radio { +width:14.5%; +} + + +.profiles { +list-style-type:none; +} + +.profiles li { + margin-bottom: 20px; +} + + +.mark-top { + border-top: 1px solid #ccc; +} + +#realtime_play, #realtime_pause, #realtime_popup { + background-image: url(../images/icons/icons-01.gif); + background-repeat: no-repeat; + background-color: transparent; +} + +#realtime_play { + background-position: 0 -2308px; +} +#realtime_pause { + background-position: 0 -2374px; +} +#realtime_popup { + background-position: 0 -1714px; +} + +#realtime_play, #realtime_pause, #realtime_popup { + opacity: 0.6; +} + +#realtime_play:hover, #realtime_pause:hover, #realtime_popup:hover { + opacity: 1; +} + +body.realtime-popup { + min-width: 100%; +} + +.realtime-popup #wrap { + padding: 0px !important; + margin: 0px !important; +} + +.realtime-popup #content { + padding: 0px !important; + margin: 0px !important; + width: 98% !important; +} + +.realtime-popup .form_notice { + float: left !important; + position: static !important; +} + +.realtime-popup .form_notice fieldset { + width: 450px !important; +} + +.realtime-popup .form_notice textarea { + width: 340px !important; +} + +.realtime-popup .form_notice #notice_action-submit { + top: 58px !important; + height: 2em; + font-size: 0.8em; + width: 86px; +} + +.realtime-popup .form_notice label[for=notice_data-attach], .form_notice #notice_data-attach { + right: 70px; +} + +.realtime-popup .form_notice #notice_data-geo_wrap label, .form_notice #notice_data-geo_wrap input { + right: 2px; +} + + +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +.notice-options form.form_repeat input.submit, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a, +button.close, +.form_group_leave input.submit, +.form_user_unsubscribe input.submit, +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a, +.entity_moderation p, +.entity_sandbox input.submit, +.entity_silence input.submit, +.entity_delete input.submit, +.entity_role p, +.entity_role_administrator input.submit, +.entity_role_moderator input.submit, +.notice-options .repeated, +.form_notice label[for=notice_data-geo], +button.minimize, +.form_reset_key input.submit, +.entity_clear input.submit, +.entity_flag input.submit, +.entity_flag p, +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { +background-image:url(../images/icons/icons-01.gif); +background-repeat:no-repeat; +background-color:transparent; +} + +button.close { +background-position:0 -1120px; +} +button.minimize { +background-position:0 -1912px; +} + + +#export_data li a.rss { +background-position:0 -130px; +} +#export_data li a.atom { +background-position:0 -64px; +} +#export_data li a.foaf { +background-position:0 1px; +} + + +.form_group_leave input.submit, +.form_user_unsubscribe input.submit { +background-position:5px -1246px; +} +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { +background-position:5px -1181px; +} + +.entity_edit a { +background-position: 5px -719px; +} +.entity_send-a-message a { +background-position: 5px -852px; +} + +.entity_nudge p, +.form_user_nudge input.submit { +background-position: 5px -785px; +} +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit { +background-position: 5px -918px; +} +.form_make_admin input.submit { +background-position: 5px -983px; +} +.entity_moderation p { +background-position: 5px -1313px; +} +.entity_sandbox input.submit { +background-position: 5px -1380px; +} +.entity_silence input.submit { +background-position: 5px -1445px; +} +.entity_delete input.submit { +background-position: 5px -1511px; +} +.entity_sandbox .form_user_unsandbox input.submit { +background-position: 5px -2568px; +} +.entity_silence .form_user_unsilence input.submit { +background-position: 5px -2633px; +} +.entity_role p { +background-position: 5px -2436px; +} +.entity_role_administrator .form_user_grantrole input.submit { +background-position: 5px -983px; +} +.entity_role_moderator .form_user_grantrole input.submit { +background-position: 5px -1313px; +} +.entity_role_administrator .form_user_revokerole input.submit { +background-position: 5px -2699px; +} +.entity_role_moderator .form_user_revokerole input.submit { +background-position: 5px -2501px; +} +.form_reset_key input.submit { +background-position: 5px -1973px; +} +.entity_clear input.submit { +background-position: 5px -2039px; +} +.entity_flag input.submit, +.entity_flag p { +background-position: 5px -2105px; +} +.entity_subscribe input.accept { +background-position: 5px -2171px; +} +.entity_subscribe input.reject { +background-position: 5px -2237px; +} +#realtime_play { +background-position: 0 -2308px; +} +#realtime_pause { +background-position: 0 -2374px; +} +#realtime_popup { +background-position: 0 -1714px; +} + +.notice .attachment { +background-position:0 -394px; +} +.notice .attachment.more { +background-position:0 -2770px; +} +#attachments .attachment { +background:none; +} +.notice-options .notice_reply { +background-position:0 -592px; +} +.notice-options form.form_favor input.submit { +background-position:0 -460px; +} +.notice-options form.form_disfavor input.submit { +background-position:0 -526px; +} +.notice-options .notice_delete { +background-position:0 -658px; +} + +.notice-options .form_repeat.processing { +background-image:none; +} + +.notice-options form.form_repeat input.submit { +background-position:0 -1582px; +} +.notice-options .repeated { +background-position:0 -1648px; +} + +#new_group a { +background-position:0 -1054px; +} + + +.pagination .nav_prev a { + padding-top: 8px; + padding-left: 25px; +background-position:0 -187px; +} +.pagination .nav_next a { + padding-top: 9px; + padding-right: 25px; +background-position: 115% -252px; +} + +#usergroups #new_group { +float: left; +margin-right: 2em; +} +#new_group, #group_search { +margin-bottom:18px; +} +#new_group a { +padding-left:20px; +} + + +}/*end of @media screen, projection, tv*/ + + +@media print { +a:after { background-color:#FFFFFF; } +a:not([href^="#"]):after { content:" <"attr(href)"> "; } +img { border:none; } +p { orphans: 2; widows: 1; } + +#site_nav_global_primary, +#site_nav_local_views, +#form_notice, +.pagination, +#site_nav_global_secondary, +.entity_actions, +.notice-options, +#aside_primary, +.form_subscription_edit .submit { +display:none; +} +.timestamp dt, .timestamp dd, +.device dt, .device dd { +display:inline; +} +.profiles li, +.notices li { +margin-bottom:18px; +} + +}/*end of @media print*/ diff --git a/theme/rebase/css/ie.css b/theme/rebase/css/ie.css new file mode 100644 index 0000000000..48b5cd6af7 --- /dev/null +++ b/theme/rebase/css/ie.css @@ -0,0 +1,60 @@ +/** + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2009-2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ +/* IE specific styles */ +input.checkbox, +input.radio { +top:0; +} +.form_notice textarea { +width:78%; +} +.form_notice .form_note + label { +position:absolute; +top:25px; +left:83%; +text-indent:-9999px; +height:16px; +width:16px; +display:block; +} +.form_notice #notice_action-submit { +width:17%; +max-width:17%; +} +.form_notice #notice_data-attach_selected, +.form_notice #notice_data-geo_selected { +width:78.75%; +} +.form_notice #notice_data-attach_selected button, +.form_notice #notice_data-geo_selected button { +padding:0 4px; +} +.notice-options input.submit { +font-size:0; +text-align:right; +text-indent:0; +} +.notice div.entry-content .timestamp a { +margin-right:4px; +} +.entity_profile { +width:64%; +} +.notice { +z-index:1; +} +.notice:hover { +z-index:9999; +} +.notice .thumbnail img { +z-index:9999; +} + +.form_settings fieldset fieldset legend { +line-height:auto; +} diff --git a/theme/rebase/css/ie6.css b/theme/rebase/css/ie6.css new file mode 100644 index 0000000000..1784677d08 --- /dev/null +++ b/theme/rebase/css/ie6.css @@ -0,0 +1,47 @@ +/** + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2009-2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ +/* IE6 specific styles */ +address { +margin-left:7px; +} +address .fn { +display:none; +} + +#wrap { +width:1003px; +margin:0 auto; +} + +#content { +width:66%; +} +#aside_primary { +padding:1.8%; +width:24%; +} +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags { +margin-left:0; +} +.entity_profile .entity_depiction { +margin-bottom:123px; +} +.entity_actions { +width:20%; +} +.notice div.entry-content { +width:65%; +margin-left:30px; +} +.notice-options a { +width:16px; +} diff --git a/theme/rebase/css/jquery.Jcrop.css b/theme/rebase/css/jquery.Jcrop.css new file mode 100644 index 0000000000..a3f0d22776 --- /dev/null +++ b/theme/rebase/css/jquery.Jcrop.css @@ -0,0 +1,42 @@ +/** + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2009-2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ +/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ +.jcrop-holder { text-align: left; } + +.jcrop-vline, .jcrop-hline +{ + font-size: 0; + position: absolute; + background: white url(../images/illustrations/illu_jcrop.gif) top left repeat; +} +.jcrop-vline { height: 100%; width: 1px !important; } +.jcrop-hline { width: 100%; height: 1px !important; } +.jcrop-handle { + font-size: 1px; + width: 7px !important; + height: 7px !important; + border: 1px #eee solid; + background-color: #333; + *width: 9px; + *height: 9px; +} + +.jcrop-tracker { width: 100%; height: 100%; } + +.custom .jcrop-vline, +.custom .jcrop-hline +{ + background: yellow; +} +.custom .jcrop-handle +{ + border-color: black; + background-color: #C7BB00; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; +} diff --git a/theme/rebase/css/mp-screen.css b/theme/rebase/css/mp-screen.css new file mode 100644 index 0000000000..c9fb6dcc4f --- /dev/null +++ b/theme/rebase/css/mp-screen.css @@ -0,0 +1,7 @@ +/* just a placeholder for now */ + +address img + .fn { +display:block; +margin-top:1em; +float:left; +} diff --git a/theme/rebase/css/uap.css b/theme/rebase/css/uap.css new file mode 100644 index 0000000000..80c73e2ea5 --- /dev/null +++ b/theme/rebase/css/uap.css @@ -0,0 +1,54 @@ +/** Universal Ad Package styles: + * Medium Rectangle 300x250 + * Rectangle 180x150 + * Leaderboard 728x90 + * Wide Skyscraper 160x600 + * + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + + +.ad { +border:1px solid #CCC; +float:left; +} + +#ad_medium-rectangle { +width:300px; +height:250px; + +margin-left:1.35%; +margin-bottom:18px; +} + +#ad_rectangle { +width:180px; +height:150px; + +float:none; +clear:both; +margin:0 auto; +margin-bottom:29px; +} + +#ad_leaderboard { +width:728px; +height:90px; + +margin:0 auto 18px; +float:none; +clear:both; +} + +#ad_wide-skyscraper { +width:160px; +height:600px; + +float:right; +margin-top:18px; +margin-right:8.25%; +} diff --git a/theme/rebase/default-avatar-mini.png b/theme/rebase/default-avatar-mini.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9fc0348b7c9e8080a9b3a6e1a30542bfb378ef GIT binary patch literal 1262 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`I@FIUCIA2gfJsC_R5;6x zR7*%3T^RkoduQ^jNesTQr5cJzbyHEK)fSN!d@bq&Dn&#o3houD;zC4eNh7vZp&$q% z6|A(IE)-n2vUcM_G%kECBtGhB5+hC~lgZpJZW{ku7ysGJEY3aO^Lzk*fB^9R{d-N* z2qI==WEczvN+|^ZyWI`|fQTa_Bk=k2XZSDPy?aLpDJm)g00ID&m6dnz-qm&e)vH%= zU5>J{vggmApPrrqA`(IXfYNvf00582)7sj)w6uhX06+mCJw3goq~yhm7o(%2nVFdY z0JF2RPo6v(A0OwBNOg5JV@y#LRaLJl0RXev91e&3`ueuEwh#bBQGE9782~WG78Vu& z;N{DgCX>l#vrSJ=`~Ci_OuM?e($mu!W3OMouCK5E_U)S}ilwEcKA%rWkaBZ#lai7o zNn(td&E~POFxElgR`C z0s!RYAD^Yg;rKpii(O{E|=5klq6|xZthCIy}f;Sc-ZZBbAhj4zw!w2#QA4p zVuCS72yr+ZjIoA>1|Ffjyxd~3T=fYNO(v7oY7GX14u|8zhY#oH=Yc>V7K_D6PN(zs z?c0Qqv$Hb*c>DIPqA1_Le_vi+&d$z`lRkd@h=_dDPoF+zjE#9rzprUpR#sMmL@gG}y?ghjrltacKu%81 z>gwu`A3q*He*Ey^!{g)Qlamvd%Z0oy#u$Ip(b4hg)2I9Q?>9C!YMK@bg?|40dBf~7 zGBS>jkF8c~ZEfxO`T6$tHUa=4#A2}+jYdjoLX|P*_xoe97+;g*+=JcS z-H6C@xwyC(8XAhlVuX;HnVErs0k7A~cOxOeAzTys_3PK#+FE{oKHp5c-JY77dUSLo ziehtfb2J(iMX|oVzOu5?VzJ1w91I5c_xHVCukddp)6&vXQc@_Tf*@#`rfC`?DvDw> z8sEHmW4GINU5`W}(P&grl#7cCS(YP_$aSH%wl;pZ_z>3C)+9+nM5oi)-`~$Y6bJ;| zZg(&kyrHzDq@?|%s;ZcSndMNup)EYx*fRaIG*Pft&O Y173~_lhC4!RsaA107*qoM6N<$f><0!*8l(j literal 0 HcmV?d00001 diff --git a/theme/rebase/default-avatar-profile.png b/theme/rebase/default-avatar-profile.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f87006a0d082626a3dadc70ef990fc66c20551 GIT binary patch literal 9002 zcmW-n2Q*vnAI4*=TGbeht*EAos#SZh+MC*Hs}Wm`;%BBtDQXKJ_LdXyBsfLp;fw{(LX48@ckzLCu__MYsjH)-U_YK zt<^$pnM;GB;Z+~;ycKY;hFy4>cX{Qg(ueH#-g|kxIlShRroKGUapkM8KMHPSY;5f4 z;J|0$GbnZP_cAm=`7S9w)(hNO1Es^j%*+gfwfGD(`_H0y)CDtti*28-mXiM%9 zO4EoXx;i@t9^s7l{$^N(n(9I;jh?~NR?oo=+%b&Co=h139m~8GWKW@TQS&CpH?Ke6 zGv!e=;LXIP=$M$%wL|UD{ZwQN*Cjmu^T8*r5{ZD_1=j1oSbECTNUU2a$@pppxDBG`E1 z5o${*oTioIKYsj3y{G+kX>Y>v;b>MLe{I@m_iD=9FXpQBd3b=?{OX(tRiy0Re&VpQ`$L@8IBBYXQmqZ+BBT6A}_EKH`IkjOTDw zV8Ytho4zB)dIh!RU8FDYC;}w@cJ?(66zK=3M8xWI_Xy=MY<>$ZL ze$r;?QET#AdFl7>-{(6WVT;{2f|%d54G$No$Xx7xS;>3(!%4{Yj*pKIITh8@6hgeq z&})=JjHg$zUe{fAM8XLbA%2p~l~`MUtsVAf(8fcaKqn_v>i-bU7r5%sqpR~Bj0x|Q zo1cx%ug$4?+oJ?Rxtb}rpf*dWQl(Kj&SmeU-f{3OxZUb%KO;_29@>LwW=g`=Pr1R< z;A!f%M;4*Gk*rN~?iXh8v_z&S_)3!CsYK_4>p9iTD*fEu6URR*dE12rf{H)cn!%oZ zr;@o4$kp;@S~&{x-}#vkb$UL3eU+*$t*gdn>(biNa&~_HGAPJ^Ra-+tHm9*sL`fHn zE*%o*-|W=r$we&(RTAV;(q#!b97Z&MKe*`Zl;z7vwQn}(yI!R4C~dzr=#|40?~Zv! z{hyN%7-27!a@^TMB-Qo|rrMlOX0Q8p1lz7;*x%h>8r+f9oorvRSY(f_NOt8`i>iuA z*vWj@^}@o!>@3sZL1@P{x+G7XJGIC57ShSrR~SlG>3%9PU)i_5KwG@Md#Lq-@Ekvk^b{%j87q=KuySByYMu2YF*`dOJd5ODf8D2-C+4f45C$f5_GuQy3_tNi^Fi-(eBtNMn60}1QW3knJnm_H4^>W;gO%c8wCNyQ}QdA@~V zOi(_qmq*F^y*gPAWbtZn*t}I?RNiG>x<|d2@(Gqee5^E#jvlN!mj2CG0~1Sp%1M)^ zUTn@cYB1(^)s*|Ur!zxISJHC{Y~^rVExqW@Nlhtf4U;a zBT31e-sguwQsXb!s5{THGBc+-!a8{SnXtaTzP)vlQc?qbKbDmFGF*Lq4O2KjeK0ED z+TND-S=F(#TiOXdY1NiKRn&c34K!EuXTaTA?)P~)IfRhB++3V>*65m0A%5GR{r&y< zt7D9l(Akgz)g{o*mB6cu(}T9QHp-YH9Uki!cIhK)J{)f*#hC7pM=QioULIpQqU@zl zf2T_4^S@Eum9&DVfh)wAsva=O?SWyGd3ns+JZI7BS3J6gXy#SZ6M`iuau`!jn9Re- zi81bTS%WJ#qvYXfW)>EP*aqY-(&_;38)SThV54W@s8_323(x3Hi~&4N4{g9pcW^4H zIavIT)R8JC>NV-0PNr1oz%pVl!2C$CkVl+}GFQvEO>e>L(WYN3b_u8m+Q7xnk8XFP zt|4jX%hg^~Bnz0rcUneAJYG^=84ClS=!o?EnO?Uw(2z@47i%ZB;P*A9D zJBHod0_2etdRPS380bYBnwrc{5Wm|_e)c=mLuDtcCj?H9h*IoN!E)Q#*dTbtJ^LW| z5iec;#YM0rOH9h{S3nn!7|1=^PyYasFF#lrByg_iFj`F$Vyqeomd@{e-qO+{a36gzz4amH3@_ILIT;k3F?kJhb5iS4GM z%1X_0934=%TAuzo-u}~I>5Tra=BlbHu+m!yKQpnvh*Y_ybW7iemu~9sjf51bhK2@a zai7wnq9Oyhypx z5Z|n_F{qM`Eb7-Un`Dvavf;7|+4C14a4tmmqSqdzsUwld|4--bNnKvL44`D`>EloU zEc%){rcSR^Q4&m$eSGM-NT-l%B9_%Wvmrn*>c< zMMZ^M!OJ@Km@mIh&OxEgxr-VNZEm_rvSiqsQWH`WRaRC)a)~3m+(b4&eWjBS6I%k> zlSe`Bz2{Na)*cjX-=k==-pRN+KMrKD6nZT>o}_P@b&ZStJC;S{$C^#o5PU< zD)0Hf;#=Gkt45sqnh6EEB-N4rE)Z>APJd?3Hv#yoaG2-8$NuH@ogF}Wgh@n$QTw#mxWA0A*`yggxK*R#)j{1SjfTE)de?`smbpBOYGsPIIHRZB zxL`XO#WovL- zk7u27T^vnLGC1oN4OTHtxkOROYNv2Uefibf+dEpKO^@txNu@5=eD338 zkiMMl-qP!iv3ppGcy2u+J4RGg^g(cPU9bUz#~V+4-oJGqsOlyk8s`FpS$2VktrNb70MSmn)FRB&-6y zoY8Jn0THGlz$V0W`WgI1m>u=+o|XQl=p6 zG%g3ju2N$s)(zJY&9PsK4t>15_Ev|BZr{GGNJisnXB9V#_h9iWTBsnk@1rwt!2c2H zMFN-Tzdeg(4b#}W`ImYkKr$~qovvfvqruEq+@jfBt5~nr#4Ru|(B7UaS8Jjt6wC@3 z^)U??1u;Px4Pmgo=@mfp{ZmOI#rKf8xjDcgcG}uhPWVc?>cuoo3UGR(2(As z=no$KjHh32>lnvOPx$Mp)!9f_B#G#Y>Hh=7Ti$*i7(}Ot61Z9}H6T!+J@JKi=Dw-4 z9#CNWZ)1I5r`cQtmT-A_NhP`a%CcI!Sg$F?m(_FJ2ZQu^CWQ}NNBvaA#7106gvmQ- zqm$}*<-~?Z$K~<)cB?iuA#@V0sh;LmdwOs1fbk}0d?64wSb`fJk}<8{zQzkTKMiIl z*Z=2@d_`Kpef;>s0tGyiq>EW%RAi7_j#f$UbB=j!LBN2ZwdJI7m+PU0L`CO)CoG5~ z@kR-oR4mCPrxzBiIo`;+xC$`Hdg7L2syeRDfaV#NKrBBRz=4WbYu?&@%s`HrMIZ-P z2xd{VkdH!-9(i5--2*Kv&GLmv_RJQLX+}~gDPiM_nds2gtOaqJIGra@?&Xtn|E+1F zn_NpgbjW6NcWdi~Z*T58m6RXz0*)dG2fXpK?IkcM2HpJZ0OB6W$Y?*rGf|ZA+Z4#u z=pJ6!0eC!y*7pEVakj&+Hj;&ZBcdkk`ijxLNlvLfC8#sG<}kjH$FH@mwKdy~RnWeE zs=2w@e?A0bsb1|cT;0(DF20n`uXgB`P5s{8O^E!FtRgBTRP*Wa_^`~?9+hE>HxYj3 zz@MwDtGQPHFX^ryqMTOVWo1R6hJ-^q^0NfL?G_F5z=*3&*dn`zrly)-o^0pkv0!G} zD0fWJ20)JE<2QvVC@6S|kV*0=9e7$gj{qVYHVB+4i&I^>KA2Iv*%KLs9`(T2Nz)jyEj@ev19Vvx#!>=8)g z4JNj}93=ZM%b$%}r?T5qOhd}3Kv+rFr`f#A+EYQKB3jl>FQSf}g0_akVRFqU<%V4p zaR0gmoV;0ASE1=|&`;U25V}yX&_>Aj5zmh}@4U7<_%pC6sa&LM(B0`E&kN$2y#SWb zzrR}4Z#Fe(mDHP6f{_4;1^BxfnFGw|yLY5f^21Khhu*S!(2^l`2|+=8)&DqPh|mQJ z1Vt$=Nn}@CT%0dl!5wp6C~Hc+%l9A>;wOqxF7Y-~K&1pTzyJMrG-;J6 zq&Wo#GaVs<{q60eR!*%2ViOo^9_|zUrnf$?<8`bzecLDm_rqj$K6~Kf$&{hNEpvTw zAdeavAOGVcuA;0A1kco;2a4~J#B!(3>vOAEpX-Mn^{v4i11HZJTn- z%gjWr@ujJ!rltaUN2ArMClv0yZA@3^QnzFu?RY>f5m#%n`8n$5OydiEC>JcjR+x<| zD=Q0FNg$L7*F1eGo;8emgB@JS>V_csad2=L{h$fZx|cn0x45{tr$;HZ7f=t|?Qg`Z z(Jj)uC$4PNGj3314=>$Q-z~gzex3WWjtmm|HBPF54~ZhIWJwtM-Q=Ty7&1{tvK2h( z3wcyf&0~mkt`b|W5TSpKYoV$ZU^6~ z?_YpUlPb`%AQFTje_4k z;$#+nIQGjkK$3-x=`itLYA@(@s+={&iRBGgmA3BH#|4_uV|!E3EC8wk4mmOPJ?<*A zR;b5^lgE773&`OsIJtMgo6$ezMu!?)+Iux;jxDm;An`wK*WrC2OGcGB)U5?JBNkvca0{v$r2G?mKQeP|gGD491XeeM<%1beEDgGX6CE!G1=fL($md;mUp3w@VA&VWGx zPnu}F_R}Yj1m1n4`hP?+m_;E>b8i`aDhwbTLM(R2fyE92MMuC*kW!xhvDa_Q9F)^J zuy9LD%jmuO=gdD*=6oRNs`+NP-<^M6d#oApSDp^#mKX7))?6r>Tsd*9)wJl>ryLA=d&_14>;6=-12dg z`1)Cub0@BSXyd4_j+_LwK55VYW96WR)HGcfrU{}uPMSBWoKP|#lN6Mc${e@eilfKA zFIH3R{XR2m4I)DMJQ5er>V3Z5e!gujKpGSoRkpFRI9aoF6ePu>%}Yn%sNpN+XTw2b z6OOg51q~16YLt|ee0+R*@V=nh@*fl?<{zZZ7R#_;5`lg;m^}=ND!r^=>6?2l7+xM3 zX1}bD=LJ>gR6Dyk7))Z85RsI8O$fDAI})QUMLQgAXuqxskEom41aQGb88hb|vte&@ zLQKpXuT?U-=JR84(71!3nTE3q2#Digo|N|=a(I-RE7GO6rU1{CwJC#=Mpj(D;4Oj@ z;@TPVx5Bl6?e+5VvI%eW8U8fIdK^@85MX*vxK6^_6kW#D)D(zA0FD=te>M7Ka#Mcp zS@i@+2wLa1!M=byrhgeBo=b-$8VE61jBy#F=2fFn)i|74h-nd-AA1546A+VmV z5R~6fQ?I!XkWUB(rf|;Pzu6o>AY?J?KB*Q|lUew#RQ7V+vzu&I10xdc$os|F)V3dp zCWnToNeLsmtQ{TisZ(vT@TjH4+V#kOi(D${rky(xDqUL2x*t22A%EkIOTV=*BTKAt zU-(3?u1Q|TIu~%-VD&u1xD&l5bWutPci(e?D!+;){zwc_f=50r!-S#vWVzzSD2d;* zU)jIxift{(M>A;zuxV~$f}WJH)5F?1b$fE6+@ab;!WP-( zmhNqTX~AgBCJaON)CC?mltv3~X8p%0QJzd5bD*PH`)AEA`KPtO$A*TZqa)P8tuj2q z5=@!1#BN`c1~6z$a(}34DHz{dYg@!l$jX5(ioy7={Kzd8*R|rCxs3{Xf#3oP4@)Ri zsSpp)FQ(AEZDC;ncxr2PwKLkO#(mSxJHtazIaxk2MU~UY$OtUZFTVr?8T;f*o16t0 zX5BG8wjh!!Fn7seK+tmKA0HnlCQ=G*b;XKwAANiZEGM8>`R9K9cZDS2Ii}hB|O46?%z`rbz z=vXh}?j#O7&3+2>_VB2l*dQ7yCV0Dk3!iBfh|bv9*y19`NBy>I>d=y+B0HdLKv3Km zv&js@aS!N_Vv}1%Nz!Cd@)O+RR%n;Qptix4)~mA(QIDUqv$Lu{HPhA96)0=w6*UxR|dAtxu2Y0g6Kdov|NvF5_+tqngTfgk$`|~=x>=S zw&d(dV>)tT37||_Ss;+cE}=7}aE~FuwzZR+o0}seG_6f8+ucrXZbHBe&_Kc7O=##9 z*z=qi@^djZ;%7NU4YQpboCbrh{I~0uXMv8ARJ?JYHH`xim#S1Vw8p@x)1{&CmO>PR zL5TS72>_O|FDzA=5tAX>t3e7#dKW6Kl2ku#YUwI(%}RSkr}rig5V~~nA0~W7mh=S; z2mkyH>yL2KD!BXpy40|sqHNK;itpI#I|}vjiEqg3#FF|oL*XA~C0G7OP7ch30WVn9 z{KCh&e|gq8HsFHkI^V-j9Y};V79mO3Qbd<4#LRdg8!LTV)%TF}#a$2lZpfl`}0FwXqT+4)Q{0$QfERi@X1~avC7n{^^tX+&5VUF#9y>fuv7nf=Q(^>`K3tugtlKJOT3nk^Gl@85l#JwS)#dZP-t zbLmJ+m`FE`*B>dT0vVEn@DSd{yAzvC_#E^Y(O)Kzmep?UPTc0lhhfA z;?|^Ck|s8krkka2_#csRY`xRq{vHQBsad5%edfNez>QVGx12Xr5ITdU@$41b9iKZd zL3@^DF&=ob231ilILM}qusx4k;~xv%@oSZkkN^y?n>U|aWj=2aFPs69dd+~S@vAi< zSHb&gTMKrsv`V_3{IVQN(OSmK9#EdSVQu@|X#v${xuYpM*L`q-)-RDqQ9sKoAv5Nr zc>;p_?Hy0C(s8YOPg0N7tbwD);i4YPsQmu`KFjI!D1)V&V5mz($C3!zdk!8SnzGBi z$`7_=fU@Um>D!H)C58Kn7?r&#zSA6>4_Nczkx~v$Jw67wyOfCe1U-R#` z0PAC*`+?9D@LFH1oU2GS1ta=0R7ONT8C@34YWZKRq8Of93QZiLUs%i+8;-zU;#&D! zt$XGqwyVWVNucZ%TRzoh~^r8a!Z*sbSqW=f8a)x zoZ2Lf*_|G{kQw&$mPf!^Zf9g<+~ej3dy4n&-BUmft*^t~Sh(jVCs#eihAN_#iwZ;I zdlvip`T(18r^=BfOgT{L7^2hkBvazGOd=e*G)AR^rVC&B^V1=-vLHdZqnzu#A_hGO zoMwCv$5nO=uv;MfT3d6@x#du60wMzJl3Xoy0s^Om)!?qLsd?of-e#Hfg>H)InFVE0 zAN>~2cH@qLIeS&QGTLC|g8z$CBMB@-=Z)%f7Z;b{;9wgYxfITfexhhbiKK5OWqk=C z4R?13s8l@a{PwrO3c=9Nduig6bcSc)V{+G5*SbSycUWDho<4mFav^3r9gdo7ZcU8Zkx2woKvee=F1Qkbjf{D&eN zMyj$MNp`m0VzBX{Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`65%?6+yDR#8A(JzR9M5U zSZPdLRU1C%%)NJ3n3Yms7&d`wIz_A{R-ma>XiHtv)Fwu4T3o8B#Kc5njcJSvNmCTp zA8oAmNBvW+DQZ(ljF>2vP(V>BrBpV@nL%cl?as`d0QqyH|gR=fP^*s)_6<2T=Y6Cp(4Cqjs#DBpeeU3YgkLI`mjcjn9)jPdc~ z$Cr0~^2sN#HDsW1p)ztF@_uI6C;GWy1K&Qa9v&9-o1MfLMnui z&*$5+WlMW|`-u}L91aIY2%R}|W@2K(YPCN9{PPGQa@SpVA%v!;rqby&y$UOe!m_L= zibswdnV+A>0CnTWjqu;#;2_5M-h1zrW!Y#nE-o%!ym*mn06qQm(_LL%Z@>LEygnfW zA!INZv|24gHl$4YJ^mpHV_x<#x5q%ks0&KD(?+gpkQ(^7(uhE?nSwzN@PXV|?w}H9-*Gc;k)bcR{(9Mx#k4lLrqT zjK|}D|NS>wd2gJ3K&4V~9Jef~wzk%0vnh%qisJC_a8*@RSy@?LUY@~V`0TUKR<3*M zsi$gdYei9f<&{?uLIVQ>J9qAk#bUB7ueid=lP598EX&?<%Pk0@=H}*TG>S1co6Q*G z6+NZXX{}aUT3Y(YAAcx{^2HZlcsw4S=LZG`2;JmxIM%LRJ2NwbF+O?nq~Gt4$KxkX zoJb@R%aXdgyBUT-2+hyWYqi=`Dm6Jd`N0PtAcR~l7sImb%P+rNQc{8tl4Y3?(%RaJ z5P}`c8fO@WY6xR2%d*?;7DdtNbgpc|7^~Il-rnBH$w`FJt+(DfGBOg4M%&xl)oL}U zblGbaMS(+y4<9~y^r*w(c;bmCWLb{KS}k3SxbMz3DIx-5xd z7?x#KDpjV`Xf&!Q3Lw_$bo4XWG(SIIuh%auEckrBY)@%wYP#c&J5(x_q9}@@$g=#y z4?q0&+i!6G!w)}XS=MAS#bU8bmo9zv)mI*mhn~#=``EE#5KZ7>ufF~_1`?S>#bc<^9DLjyu6 z5{bB6uJQ44X0;%L!C*8RL1iqc zC<>*(`uh5Uf&z@OD2i{r_140|LKXrB2)C}TuBD~L;c!qXu>5{Mz^SaP1h1APX|iqh8BHa0fq^?Jbx zIyyRn!C*R_Rum%a}p^b zM6FhXauGrd?BF;K_?<3ElH&0=C20siki~JFPNyp(-ctNCIuP-kz*Jw1< zf(W5&*RCxsEg^&wiNv;T+b9jNENd_r6h-Oj=>bAsamb~mrD!zz%rnn`IY3ZdT^(d+ zgwUEbYqoCP%5j`tub-Kj`S#my`}_MLdYAJ>=DUoIjkUG4na$?>{CtQwx7+Ra`w1a} zAUyZnbFwUVcXyvUb!u*IE|ayh9-Mja}2Op%O6-5b$!!DN#Jf*m}7#K1f4hMt59NYl4No#9sb8~a1gJFzA zp-^UV1-Ad?mtS&{48a)dbUKD%G7}y>4A3Zk$Pu{(Wp2$}ilSI77Fr+2VlhdQWLd7P zto)yXs4QT9TIy&tnmg~j6F$$*&WfTailRoNfgGD%Eng(%)HaU*N7zYA@a5(Ju`)6imRNybrOJuH4DAeEI z@9}u{@893s+lw(CA0Mx;uQ!=YsZ>gmBvBLzA)+XT!{JaUq`H1Ca=YE%fB$`Zd;93< zC?VvhpMEMYFE^XbJkN`wm`Eg|(P$_X3WY-dHXW^7w+_MuA=J>&uxZn#NF*XjQY;qp z`Fx9ui#L(iGP$*)qN1v*Dw#|ID6iMM;>R~kZPZaDNy>Q*gcq<1+zMp7ocI_9Jd6;c z*XtpKp-#xO5R=({XfztNS`E39BFl1nxF8mbLB^vm18rPEK|yAXM~~#?<-w1NqBtB5 zj^kpn*uuiX^z?KpmCC#&hbAl*OHECU-EIfc1|QA5128QuEnU2LF_B0RLS$K1sZ^3A zSuB>FJ9pY_HaMkHso)KvA0mW6={hknaplUDWHL!#=6XdoRak3l>!wYcAWc%u!+EIT zW@l&5o;@oF0?37`u&Jr((4j*{qY-ik&+}fdcXV|0*I$2~pPye`T!fvJlyVfJIhQ0! zy}i8?6BGOP?bB+t&`i>{0`{z5zuxEb_4V}uAp+v5sVPwuEf$N%;~5zl`TXgqao?p!z=zD|hTgofyv zot+&S8M*uJyVL1(Rt7`}S*_N>!a^wC0h3m%y>#i)xpU`uo(EemH%=Jq_4=ZsqRPt3 z($Z4MK!|FY}~j}r_+g|m`ovMd5E zC$KkwRI0YNw(Z-u6GEU{g@a(Mt5>h~_4RqZ-mLtoQmLRBxgH>c!Epcm z_ct{)S*_MgyU@FX!Qk-la3~alE5Qm|w{G3Kbt}X+oo5JwFfcIC)6o#oI;B-16D`lnL%-NF9=NlRtf}#}6j}WS-Bp7C7NYG(2ttU z=F-yA>gsB{-A;LVHSuId6K&`zVyo2({0Rqv*=J^E{yj00>om^SsXz!JCX=bOv~)GI z(~zP0VZ(+EI-TyO0p+|nE2qL|u!YfR+_Ghh*=){COjoX4357zUC<3(rxf_kfhaY}8 ztNp)TE`uSTR;x7{jW(OjX0utX*8Kc@P`e~afCHFtrTHbqYPD)Kn%{r_o!SUAR8dg@ zaZYDGMMXuMH*fZMJgZ47$B>8mP*G7)ad9!nap7=yZf;eR?!=4>Lf7N#Pqs;U|r8*jVqHk-{hIXU_9#~%j*0ZK>~i{;TrAFZmY zqQfkzW>{cQ7!gII(MTi`4u=DQz)cheS>Wg$B_$<0cI>d*?Pt%Ph2aK;URhbWd-raK z!yyPlJRZ-SS-})7olXma5RFE8p1--a pXK86^K|ukS44$xJu~;w|{11R=ke$IC&j$bi002ovPDHLkV1gp%iu?co literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/README b/theme/rebase/images/icons/README new file mode 100644 index 0000000000..f701959ca0 --- /dev/null +++ b/theme/rebase/images/icons/README @@ -0,0 +1,59 @@ +/** + * @author Paul Jarvis http://code.google.com/p/twotiny/ + * @license http://dev.perl.org/licenses/ Artistic License/GPL + * @note + White left arrow with green background + White right arrow with green background + White clip with green background + White heart with green background + White reply with green background + White garbage with green background + White pencil with green background + White envelope with green background + White speech bubble with green background + White shield with green background + White asterisk with green background + White x with green background + White plus with green background + White minus with green background + White skull with green background + White recycle with green background + White external with green background + White key with green background + White flag with green background + White checkmark with green background + White reject with green background + White play with green background + White pause with green background + */ + + +/** + * @author Sarven Capadisli + * @copyright 2008-2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * @note + Green clip with transparent background + Green heart with white background + White person with tie with green background + White sherif badge with green background + White boxes with green background + White speech bubble broken with green background + Green recycle with transparent background + Green pin with white background + White pin with green background + White underscore with green background + White C with green background + White magic wand with green background + Green badge with white background + Green sandbox with white background + Green speech bubble broken with white background + Green person with tie with white background + */ + +Created by various authors +* FOAF icon from http://iandavis.com/2006/foaf-icons/ with Public Domain license +* Atom feed icon from http://intertwingly.net/wiki/pie/Icon with Public Domain license +* RSS feed icon from http://www.feedicons.com/ (Mozilla, Microsoft, Matt Brett) with MPL/GPL/LGPL tri-license +* Processing icon from/by Unknown with Unknown license //FIXME diff --git a/theme/rebase/images/icons/icon_atom.png b/theme/rebase/images/icons/icon_atom.png new file mode 100644 index 0000000000000000000000000000000000000000..de63f1577fe4abfa91c16be78b58b2a789c46bd3 GIT binary patch literal 807 zcmV+?1K9kDP)nb?-FWACoB@$Ssruc0tXahf9?9X;o$YoFd!{iT)9owILQt=2^ZEuclA zMIl;Ylpy-dvmz+f9yUIHclXb|k4=AR<+GwFKB==JCWTdkRSFT|rKguLTJihQ46B8X z(>NCmKGga`G(}{T8*&1pMWIA+Mi|cncMeZ!Qs&LeYpnJi09Fe> zKbYZD=GoYbxY%LZL?%_l zhm4OIFd(oeA?M@^BXLF%$lmm3(Zf%71-YH8;w_Jr4Vj`Da#fOO5F} z%^weDG$9jGCWIEBGFDoGZ*FR?yz%2gud@+iI`2d5&+9-{2WlVLJE_<@IwizJ&Y7Gt lZJW^KgA|%?#>b-@{{f|Dde0*?x19h0002ovPDHLkV1lHLbnpNG literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/icon_foaf.gif b/theme/rebase/images/icons/icon_foaf.gif new file mode 100644 index 0000000000000000000000000000000000000000..f8f78442355bf0d0b509536bca7c57b4eedab04a GIT binary patch literal 1144 zcmd^;?N1ta0Dyn!iB*(>T3&i*JrF8R7w1whHElM8C<3ml?j+W9-3dwyO`2L|HqDkn z5%F#4%5=zqhahRU8WmVVw{A%ro6Wr`PE6ceVj2??L*}%}w$5a?_V3v9;raf2cvR|! zleHa30UP`^2O^P(TCHAKSg=~He14Hqsif%uZ8F&hVl+)kq!MMLzPTBX#bWfui_Upx zD&?A({APN6nl_tVpScF^4um#Ch!`OgWH@Z1X>XUc>*oB;p^^I*kHugxqzIz#MkuV+ z27e0fbavY2Z0Yob-EJpWNrkE-kx0z`GV7<3B)Q`M(a*|fwO?ze5|oczl~rJTgzvcP zz!1czQbk)^OUg=ic0LdYc>Kb`Zg=9odT3ob5qn5U- zZT@vXO;3k^3m?hNp^{WgtIf?~Vi*>WTf)DFYicA*OYfDHpIEwZfu=*Xwa2whum5W{ zlO!obgc%u(w8@kv2n>cj-+78r7)Id$weIzL7Z!R>!0^-*v5e!F&8~w3Z(YM%0)Y@I zE{Nm!F$q#$j-}IMH89-M7w}AdKk~&$^8EQ0k%;<%3Q);-{B4CovDekr^qO&h-@R)# zADB!U?U`h6#s5A^?%aeE|u=?euQDt>S{El*K_kZ{mxHA zKZiIhc5pN3^BG3p|I*eU;lW3AS9DcXD27Q~_gwCYuVpe!2=hknj|h-5S$U0@T;=iD z)k0w^HAb$Gi#YE0tpNaNntta0C!(hi1AsYD`8@ym6W|aH&PB`*h_CXP`B1cFukIl$ zs|1(%WPd!$fVg5p|HQsAS^bi1b0#pP6%J=GW{H{G^{kf%TYUG<8ipXeV7Bse-~cv| zbFQln4K0m}iaXIuv5tC2w(J<*7GbcULq^Pkw5D#|;fUDp4ksPTyrZ@I+X3#gFQA-x zk0&Fbfm(V`Kb^8?Lhb_Ijq8^l&o~_g;dlNH1SJ|q-7P$;xu;vu8g;$-KF`Z%EK&)8HeT>g)Y#vUAp}MLgmL1PV~(!a7HD+ zI?Nr*lXC$Eu30nL$d)62zg!{*uVkS>^T@WwmwfEeqXVc$01lsS6Nu{>3~=f{5zlh9 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/icon_processing.gif b/theme/rebase/images/icons/icon_processing.gif new file mode 100644 index 0000000000000000000000000000000000000000..d0bce1542342e912da81a2c260562df172f30d73 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nnmm28Kh24mmkF0U1e2Nli^nlO|14{Lk&@8WQa67~pE8 zXTZz|lvDgC+Z`3#dv5h=E26FfcG1 zbL_hF&)}42ws10s6^G;;cE1^EoUR)U5A70}d2pLv!jVIT7j&Z~EblI3x0K*v_sV|m z0kj3v921Z^em#l`(k(o@H$3ZdDRc@9NidXDNbqrumReCGv$gd8+e8WW28HVqkJ_9i zH>s*<31KtHjANIPvi2#*6BEu%3Dak5O_t&NBI)H?V$TxT}#l{vOTn5naXTfF^&~Hhq+NX@#Ccc>y7T?;vjI&jdhsDsPJyAw*m0Qz>i}K7# zL9w50Ng{fT}A5JUe8lRK1h7_Y2;BWJDd=c6f&i?Wv5(5q?6|P zQw{>maxZP<537OA37Uk}7@%_$4o$EWe_Zl>&#id|lE-BpDC#+Fn|msJ%_2h{Hg1vP z#N8WAzfWasG}yq|xqE)DrWaOofX=z|?*pgc%{ig5vl!pqDlC|q&~Z0$&Rvsft&VO- z4MZj+%-+Vx%W}v;V76hyp=;+R;x+~t^Q%*xuFTQAF2})fSfTHDAs>sO!OBw`)&)o$ c0!CNZt))x~rAZP^^P&YOFfdqy5)K#u0POD40{{R3 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/icon_rss.png b/theme/rebase/images/icons/icon_rss.png new file mode 100644 index 0000000000000000000000000000000000000000..e75778a9e1434e1c3bbce79c6d1efbf77e2cf016 GIT binary patch literal 763 zcmVqt5uvzH7yf`- ziK_@IC=rTO(WMJPNMmaM7OhxIXd9-yao z`;z2CBc|UNM2sLt5CJj3YAqjmT1 zhgiYbu6PzIT${Z*CUYluH)yBHhS~rdpBzP(8ie_a#QF0WtN#m&fsiT9hBlll`F>3^ zY+pik?*Z-{ZMVqJO;P;z1rnFn!6A*5Dn2oQ7;li}Mbh)%QOwOkERbp+r6&$kIXH#e z_UJmeNFy2$nSXCYZQfbq)o$E`-?-2_F)D_Y4rpE>J#~~~W)jkWklq3OOP>;}b(T-Rh2Cx= z)h(3vj1hAs>8)|t4TWZ6#)LB=Lqc%>F?73lO=K(nxmY7XVysh>$D! ztvLYf<{Gh3P*J)5&f|^#yKN!{qQ48R+(Y`uEFld9E#rqqhy^T7|A4FAhfTJVFU-@q ze3sI-o`zf)9~>JP-ZAO4z2=kLSyjlDkgcq(=!Qn9*0<1V-Z&%xXAf^bSgR)=IcIA` tB!=!IjcYTi-RrgS_rl`whbOLn{x25pW|AURvxEQu002ovPDHLkV1i6$ag_i7 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/icon_vcard.gif b/theme/rebase/images/icons/icon_vcard.gif new file mode 100644 index 0000000000000000000000000000000000000000..6d52947f3e96c0f74f00a80b430f99695e110e5e GIT binary patch literal 331 zcmV-R0kr-{Nk%w1VHW@n0K^{vi^LV;@6MUi1^D~(*6OmW*GsnCZu9x+db$Rr+7rg( zj*Y_!l*MRc(@bU8V@GBo706UV+d;tIe literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/icons-01.gif b/theme/rebase/images/icons/icons-01.gif new file mode 100644 index 0000000000000000000000000000000000000000..fa09bd5268d7e2ac0562e1d0173b1994e2493253 GIT binary patch literal 4107 zcmc(ec_R}J1Aymj&WM;fnhr*i+lIV8 zN6v-h7&%k+zVD}apHJ}o@jQsz#xS@$7_h{B_yyqWM_@9Ur_4VmzmMa4=I6HdpS+%A z`gpI!YwQs79ap=4tW7>aU-8ZTEUw`p{C*M6q@0=r?!ysqLiUB$R#&A7>JMBDVbo`K%2{NerlTdPs>MWtWq zdnZ3PvQNmW>Y7(}HyMAwkH)^8{e@S|XeC5;&~_LZ#KGmQR1Fz= zVNyk<-`K`s3cl@6C(6v!LPA!G>EZQpeDq<{ETMPVFuObD-{cq5+us~zSJ5|qS6SL! zy6oZU{<|l=$HfV9K`iS1l9(u1PT|77n;Rp;;_qyCaPV#BY{y~t4MJ+iUMm4CDR?s5 zuah;xI5-mF;w~jkh=>avzjQiiNMuemZkL3DCB)vnLz$F+Wc1XUT6j&lxVl!1^xImm z|2iRmD2-~F-RZ8}z?#s}cIujHe|u9JCO7scdwAH{b{~43j5qEyueMS2Lz$u6m=;HG6dBxb(*9DFq}UDpX zB7Mxx0swpgDE!aje@_5_Ou#?3s>>W)=dOFP+ZkL=#!JX&3CNM5W2~vdvKADSd)c&< z-@POy@I}lQDLkua*I3yl1I|2&#(>)z`h7TV=Z3Y&9kg+eALgDXC@0V|Ntjq_Gsb4j z0lIO%^vJEpkgqt+L?t@Nu4<$a9_OqOKhbY_%^+q$feXWGq$+h&1Om@28{tAKj8WuX zQ}nYgUploz_Eec<+DT2*fPV69Y9ikJ5;#h*q4}`YeRgiThhwIwywm8bAk?QikK8UB z%Wkl@h=or0(GH`nuunKnr7uVio5rIdjWC6)cf7#%YTS$5$zACpU2~cn!PA$@_{?;4 zK-dnqa=uSz_$8TH{#PQ5F8EO$H(`M+o`YE*>(^ceu<#YDtywo^Xnqh;Q>e#<!!* z^h+KKQWwy?8fyy)0>;qAL}5FhMGVM`x|k#py0(agBte&Om-BpoO+ER+r zd+2hinyF7eyJYYJitVx+gojhLwv>gFcMjIgt_js+RmLX@pjr6X^$bBg7E0V%`~z-X zXD$c;uCTBpJ-X165O~tHt01d)9O5WB{qyVsuS(fWVGKPM(dhbaP7dHbU6w~UP13Gn&ULpZM{W&lfAaS${>+gVqa zjkA`iw4Tl9obdxZ9AMccRG*~u4y~#?HBeFT#8j70J+YoOliN?=yHG@Q+0_dY^fE6t z>x}wRPPfxz420m%V7VTariW&m!Rw)(v-<~hb9m~&lXy*o>#yanpR?*a6V0xS;SFAD zbpsiqxE@`^XYACmX+qk73GO~_D9)=RC>G9Dt&HV&>Y*Du{Sd6e?!aZD|L!2Px^{O+ zp=D!tSm`>=PzVU=>iPgd1@sC6VMjPFWx6g4hXAk)#mc3_0Pyo_xU(vLLZOYu5wd@E z&vNb6LRgidm%1j;^~NWBL0$#)pn>#KE+yS2K(mOwY$<@9S7D%Q%xGCDnVq$Xsf(Kx zu(WJJhdl`FlZivH7|uJg7bkpWR{_L}yYd8Z$d4!}varE>0mmo^a4}f~#rUQ#31d7q zxu{MG5y&uEK?=A8%Z-ESjJs22c!;9Rx zNPT{AVB-1Ia^Y%|K6%F-JaVL5q-DT}{iYz^DEgw15zH8Jz({eEumpyg^s2thARu@v z_!skyb36mm3?!D%Mo^8qK^H0hWpcSxQ$TG{#*66hvhHg`j=SS&H)|^uv?CCX zb3r*5XRj#E`}CNPDrLTHqNorDN4&It6^x};sZ}3$!R&yk)xnnF#=&ksKo&`UuL{=9 z)f4D4K_=P&;lpyHJS`+-Omx0)+GFHp1 zO6v|Bf#Ej9soPxE;{lt>B%LGs^g_Xza#n6z*+k|@wF$!XQ&!;~1!`V1aMQ2<0`Eel z65+?4IMg_c%~lmmQrA3i$eLwMI8kH2#?1Bi>yqbVRoCCR-DArhSe=6#ZbTW^5xKRTTDCb0$S9gMMvBo=7lw^ ze%TCV4$m*@PquH`R(d=Q?~ybXPLn*SPl7x59=+FWyL2j@d@Ev+4i4?v#V}IbXBWUT zNAF>yuhJeIxa~=WzS_L96=ap#e?F{Xz*tHq>w($)QqoZmP*UaU-;~AUJiE6X{5}B= zq=#&0+IqD48}s|kR#Zq1`Zw|d{H~jR6J(2Ec53P<nXN>T;L7u4gZKJ*D7!Ns!y~J<&M678TR3)%U#tEg8T=SJpZma_|fvJ?4DF5 z%q~HP;h#(S>8~)i{qL!2O_7>|nqO}|bd5ThS>SJJl>=_LKLU@;#;W=5J3qp=YfpU% zdDSoz;}?E*sxONE;@>HA_mGmAd9ra>JMqRATKvxf@NRhj5aFBC1E+=9rsnc1H~kcy z!rNcIRE)kR#qh8vFQg^4zUUa)K@pu7q0GB&L-wP)K;`I}n@P$qA8auS(*G=hKep!7 zJ$~k{snd1w@VMC^b~jJ_@0!Wo-z~0E!Is53OLwpDVW*Dh^LFExg{Hs03_VKWL z)oJ^YVf0*7C%u>?zG)PvG%I`ec*yByebBbXhxDu7@3osppZw8TOD8{lNrZio<$o1~ zxUfK$4c)FKcTE304R5czzf1i1W-IJtl%H4e!7bMoTFB|f#42$=LW8=y@8Y>qA$9Ed zv~!uX={N5<|M_BP=W+sbyJ@-eaN+D*=23rL-#qCJ@%LQI&j|Rw!?V+GGuVhSX}@2i z+nI?!!Zc40E%qngwliPldC<;;o|TPiob;g+QQWO4-tfDZgddoxNsF_`7kRo|J$GLi z<|?%hnazy{B|V~q_$Y=M0+C38uPA6fTD}!M;u-ro$rC_BM6KRAve#F!Ngx;{=+Rwk z?Bd!C!%w{9_QRfPwk8?W63G*wAonI52|X6*kJDKU#^51v(0z z$Mx+SB>Kc%6UISvaPm2EvCJ@>z-xmHns?%nZz|0oU@tn0hC^}U$OG5}8qOj-SuGD+ z6^^G4pdFytRRorV2zoIP6KV3a!6&K-8uw52Q%{GHy16}p zKRLBLguo}3(n=$A0W-jDnG#cOtb@eogkk`*2}< zo^>))BO)8dF=nuj@=UG9ov~0e|0t7#cy8 z+0WIL&3cI=V3Q)7fcftBnU9V0J$>_Slk?rgh$(O)KbDvwR*=PY_xnm3tQE5=GY(09Hj!3vGL@d>qM00=WM#0DoDYpG%P+F~RSdo>OL%*2m zCGHYMUtIYbd1i{di7irkUVN>+RCF5a058*Ouh4N+Id57q>sz6|PLh)MR>7A%IVv|< zFPAed5z(ULAS)!NDQx((iK+58lsF`qtN^C)X;DCh6*si1JRPg9l@sg3Q@)31{y8d~ c8o>L>XQAOa2)V-GNK~L{CTNPl!UE9#4+h<>1^@s6 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/admin.gif b/theme/rebase/images/icons/twotone/green/admin.gif new file mode 100644 index 0000000000000000000000000000000000000000..10fa431cee5d1a5e3f07dd5846eacbbdf922a5f5 GIT binary patch literal 100 zcmZ?wbhEHb6krfwSjfZ>KSkjG|NjhNp!iSFxhOTUBsE2$JhLQ2!QIn0fI;ym3nK#q y6N3&&2}lzIlY&U!%w=!+133cyqV&)0uCgw4|B-PZbkU0Bb@yKz%nM*(um%8PTpm*Z literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/against.gif b/theme/rebase/images/icons/twotone/green/against.gif new file mode 100644 index 0000000000000000000000000000000000000000..ca796c8a36ff26f41dcb0bacfd1e4e076c9c095f GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%g;PR l}xg@fwfa|*1p&L$&4AubJ C#UrZ# literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/checkmark.gif b/theme/rebase/images/icons/twotone/green/checkmark.gif new file mode 100644 index 0000000000000000000000000000000000000000..892429d48352cb3abd1fa68f0bc14b643f50c832 GIT binary patch literal 76 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F6`erVB%fEOI c?*)cWXRej5sgx2gOstH1^~+##00V6^LiEq~(- ik#i-{$NXGWS>%QK+S9!>uCHC?n)`B%!Q%i125SJl_8EHs literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/clip-01.gif b/theme/rebase/images/icons/twotone/green/clip-01.gif new file mode 100644 index 0000000000000000000000000000000000000000..f2dee7e5e9f0f5f9f99d771128fe88d5b9ae178a GIT binary patch literal 78 zcmZ?wbhEHb6krfwSjfom|NsB^DFP6r_>+Z^fq{uZhXDvc@(fJ!A$>EKz2#SC31Mp} aI1*E48~aGD>3n+Tvh>*O-3Oc)8LRkLs(l!eFlSK!1A{dHn&}~% literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/edit.gif b/theme/rebase/images/icons/twotone/green/edit.gif new file mode 100644 index 0000000000000000000000000000000000000000..c746aca601dfce71bec63cc34bd2cea576a608c6 GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fFb# bLC#BkUBTx**BG_BS(!^$or-W`WUvMRPNf%3 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/favourite.gif b/theme/rebase/images/icons/twotone/green/favourite.gif new file mode 100644 index 0000000000000000000000000000000000000000..d93515e3790aa4672656512f416edf2c5c30f2f5 GIT binary patch literal 73 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J5b*`erVB%fEOI Z!yK;F*Ye-L@sv;Xeb%|`jEV?@H2^xX7##or literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/flag.gif b/theme/rebase/images/icons/twotone/green/flag.gif new file mode 100644 index 0000000000000000000000000000000000000000..68c8aee2598d4c470b1c60c36232fea6b52dbef6 GIT binary patch literal 80 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TB`erVB%g@;0 g#a2CkYK(uMX`+Uoh*MBz%DnK`$BZ6xu`*Z#0Jqf`MF0Q* literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/key.gif b/theme/rebase/images/icons/twotone/green/key.gif new file mode 100644 index 0000000000000000000000000000000000000000..ccf357ab28dc96a63117b33dbf511215bd51ae8e GIT binary patch literal 76 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F6`erVB%fEQa c0zUz*zFn`M$=+C2bGdWbD=CA?0SpY*0FeS2iH4Co$il+Z^fq{uZhXDvc@(fHGA$>EKz2#t<@&1gr k?6jS+w?iK-pOA3ERiJ7ef0ygV@3|(aU3`n#ofsLc0gB=r!2kdN literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/reply.gif b/theme/rebase/images/icons/twotone/green/reply.gif new file mode 100644 index 0000000000000000000000000000000000000000..6ff01bb355956903f06ddee4c88ec13185d7cf36 GIT binary patch literal 79 zcmZ?wbhEHb6krfwSjfQe|NsB^DFQ$e2o!&^FfuSOG3YP=0Z5*KNggUu7%(Jw8k8odc0%GWzKCY-GYoZOy#&cDmB_R$kzum%90svYG3 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/silence.gif b/theme/rebase/images/icons/twotone/green/silence.gif new file mode 100644 index 0000000000000000000000000000000000000000..8c624acddc8691828d461c564ae7776bfe7e383d GIT binary patch literal 103 zcmZ?wbhEHb6krfwSjfQe|NsB^DFQ$e2o(PbIv1rTmZYXAlxLP?D7bt21~4f8WMO1r zU}Df=00NLE1}5c@zM0G3@;A;YJXJiE)k6JtC5LE^@3umJuBlnw2S52(_vnZ)SOWmA Cgd|-6 literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/skull.gif b/theme/rebase/images/icons/twotone/green/skull.gif new file mode 100644 index 0000000000000000000000000000000000000000..033506732767418de878eb41beffb4164c41a1ba GIT binary patch literal 85 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J7CW`erVB%g;PR mWHYXF^I8F2sr literal 0 HcmV?d00001 diff --git a/theme/rebase/images/icons/twotone/green/x.gif b/theme/rebase/images/icons/twotone/green/x.gif new file mode 100644 index 0000000000000000000000000000000000000000..ffb2efea00c78ee8fd74913cce781c2d08c9ed80 GIT binary patch literal 79 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TA`erVB%fFbp f)2@MkTk-Q3o{k(9b#5NV>2k zBC~b@b~P=nNfWAe-b%_i6tS^-1y(h@EsB~1TqDA_h@fkxG$bHgvj}VxE1JLgr!*!^ ILUxTc0Q$^Q5C8xG literal 0 HcmV?d00001 diff --git a/theme/rebase/images/illustrations/illu_pattern-01.png b/theme/rebase/images/illustrations/illu_pattern-01.png new file mode 100644 index 0000000000000000000000000000000000000000..833309e587081595bc549479a656b7dc29f0ddd4 GIT binary patch literal 538 zcmV+#0_FXQP)Px$)Ja4^RA}DqSV3;XFbt!B{r^RK*t#CL!~Sis`%|0qz#hGX6Ue4a4DBqB^? zx4KvaY=pr)+lZGN75dNE;{uxxj6@SDlPZ#m%;9p7Mn-0meMZyjA}x^k*?Y!k2S%!8 zv#S3nm}dcEwvlLYii~ERYuWb4jb#2!p-5IUsN@t!*LwD1D9A<1g@}=xSkzXH;F4ri z2i+K1?U_~`NntFiZHIt*ElNd{5VSN9I)y32P^7hzjMXg)m5tmlE}+W2EMO*TUJs1? zYm7OPMMJg9X9dNaTDEt;GmOkGG;1!iyrbHUSNB>7tdqgmnQq~9%$V%n1e|a!6v<6x z4AqRN8)j16GN*DSw&jR2`Ro{T`l&028*ae7I>JQDRfeFnCmsu_wEpaD>S`Ui6;SIr z)+-M6%#&922b6k>B6qr89k~@O4x(*G24E9GJlyx}S2=5%sTa@u*xEm=?&2Z96^TWs zCCZU(+5uEZ3k%6zac=f7)&PK{0f3p2q?y?svGMnI?cE#S5nUH|3`C>RXfzs)Mx)Va cG#Wd;04~J|s*~4%!~g&Q07*qoM6N<$g12b(N&o-= literal 0 HcmV?d00001 diff --git a/theme/rebase/images/illustrations/illu_progress_loading-01.gif b/theme/rebase/images/illustrations/illu_progress_loading-01.gif new file mode 100644 index 0000000000000000000000000000000000000000..82290f48334c81272ff5991962951758137a08ba GIT binary patch literal 5886 zcmajjXHXMNw+HYfB!MJ=D4~f36H2I3m2PMP3Q|QxK|qw=qzI7`I)vU!XwnHCsVYcE z=`Hl$dsProxjgTe`_9~X=I-a+ncbP+{LeY7ta@Ku!ejtI184&P&d$zGPEL-Fj`sHU zHa9m{S63Go7iVW@CnqOIM@NT-hWh&Yy1KgB+uNI)n;RM$>g(&PtE($2Dhdk=&(F^R z|KGZGj(DV`tD_*NsU$2QNCCXqf9n(sfdh~LzJJdCa}5CGoUI+JZJBOCDz({abl~fE zw*5kfzVoR6cNi2r#C!ZEH0O;NW@rIh| zlqsqSSs9s#;sV;-@|>77A1W_O_DV`91Pq4Kz`Z(PaO&pn=GOMkuU$ROkc5GuVd!Y* zcn`UMYkYq7V07o@rsi~>-ziMLT zG+?a49zQWzia{TFcs{FKj#dh}e#z5@`O3omC>ELXboP2cR7WT?J@&ao#fn-I;sJ*F zD;=5p9?%y~V{F{q4^{|Zlt~d?*Ve!iWj&E%8@h^*gN$V29v5mAsN{O(ULD=kFMd^> zzLGLp)CZ#Qm6Q%3+`@kXtfre9GnE->Ai(oKKDoxtH@hRaB&C1e=IHR>I8;havNP_A z5Rq#nPVBdI5VpJ;S&et6>VVp>c?LwQ)tZWlq#H^i>)VP@16GREXU98`irCrvkEecY zkv~S7^T>M0*)Mb{LvE6`M77!t_ZXXI^`uU6W|L`YE-^~uca*s^)=F=9o*rxs>$qx+ zN_$rAd`ahYK2^cpF)HkQ1(Vq|Urh;b~<55D)DL$EUNo=p_A6VQ1A+M~) zfa$>U0O5Rbu4r3$+|O$+gUQaOR@{dPsf3U1Dln%z0(Y0xq^w4=AKW8UMLXPC9RL7* zZ3?i~&mg|kvE%&Q2{D=<{q^E0^^uNwISF-V^g!SN_6Pp zHm8=*qyzo0O&|aW=mQ}BV^c}pv_6$imk>cA#v4GgKI?F@S#sYw42|o9Jp1uLDt+Ls z2-H#~>q=LQWTF;nU7xJYKH2KCI4{O5B$T{{EgN}dE+rE|#F+n@O!gj|u;Xxe?Su03 z2tWqC_4M@)#<@OoQ{pg&@m`>d=YYXNQlKHoj2tjT2nB<`FCZcENCi2SLd5c#Iz{+w= zQMis*31e?RPgP7h#4AOzY&hE#R4n&Ii?x5Yq0)?J7KNcBj@XdX zlWZ;>n^k?`V`54w4oMu!H=JW%u_9}!!vS4^ZMC2#K+@g2!t)G5*y)(xiYlL_px35D zIhY0lK348EIpV!%r-=F;O(7xbv>oQP6>|(>Opp4COU-9M>Q6ub0PdDCFo(En#x&eN zGni{g@pt^Yi&Zk-WUSBg%!GQT&imw!)F&}=v0^+ zPAeQFDhtKVnUuxMHpDJZ^)IYcqn3l$E3tGu>6%O0JW{Qd&uUAT_CJz)Db-2{$Z4Cq zibD~-93PZJRMP~xt4_LEY#WADM=C$k2DOim8}|&T7PflIw)ySUdh%=c{&;)e+r`Hd z>F)2L5sYyl@Pwfv-Z+Q9(~d^Q%E@BrXlV!+zKk$1SUf5lN)jz7MS>v}FnGm>Qbf5( zWmQ8>Y4OMAhWe&Lk?b!b?Oi z7q@cwX@48D4*Plhd-GIrduvP}Ef)tlzfP@U!q&vPH#vyU*UZF+Z1UXs%zV%z6LOs+ zcaVxUJ2&!|`1z(BM}Lk=9HZd_-+C?1s|j(*3pM}K)5P_O^ZvgjpgCOOIH^P=rz zrnafS&0I?@i8t47Fuv>lf^b*BgG?Gr8}Rx=$^MeEIq58C~R;2W5b2+Z6DSOmY&y?jM>PP zmCH(!b;p5a z08~hSk!QD03@!sbLen@urU{Gbn>9K(ikm zl#3h~9C5N=ig9Rs_qtTd=#qk`!ZGs7NvnMZ+uzd@j(?Rvpko)yuH)l~lSKOGS)aBD z7_OmZBdg=SE=0lny&|8m4WGI#J|9BJ}fBGEjmh_+3QFV-yUQn(l{$5#`e$ znfciyaIqFV2bzbhDu?7{<$RLQFC=|ws^?CtX)4I8sO>-(eMb1ar-sUdK)fzgqvMk> zZ^Rh)#8kxW$|S;j1HHPvzPz`!bA(!5h*+9K{Bl4}FHo45&3%yp?rDAP3~x@+ME*8G z&}mIK2Y`4+qxB<9rNt@5hlZ)HG`HKZFPtZ(CdCW@wfOGs!rXe8 z-mBDPnj{HhE4Ayk=DMsy6c5sbcY=`3>S0gZ@AO)^Sd)t$p13pA3PJ#dmLDTD1s}Wz z02ItQF~53Ov+wZ2P`n_U4VAJGo_<)CMpqJ3n-|`KmS8^ z<6NCKAuP(yrPRXiqft#MxAk}%PIb2CItemH*OUB$_E1dAyieI6EigfeNusQvXT~9L zwllbU*O+j+W5Qti)3H?p?*D`9lDN^-b^Q#pv$U8g4>1bxARs=rK5^IfwL5Y4H4Pl{I}`^(PH1gYU{*wqe@3$h1OCneK4J4!&MRe zOI%s;fxPp5H9Bx6x{QqEsK*Hpw`q|yBo$$v_ZDvLxN=kn=g9|eG|t{-cBCa zWSp2ev%7lwBK@tsaE^R7fx&OwUGQ#^arcni@_`qa0+Ih<3e19Mf+3k%g+)@Z0>QL0 z!HU9+@@y$mUhU^$zNMt8xbj1@av;@3!U%#u{N{thykrE-duU`-05?CiI5){L zy%f8$xwgE)K0S*=93sE3FU*{+{yF$b=Jm0O!B_#^eoI(9dVeEu^GYSFGhk6VM2eP; zSzH6(dYAFYJ=IMG-RZ%6^E|!yINDStfqn3^nx(_a*MMt-QOJ6FngYP6Flzi8{}M1u z?#m8_6qlhH0|2mB*E(B$x{iH!qh!(v^CX*om>t8m-!J2T%OyrE@fg!+W!rCupnGfE zR%c(5_C1*?Q|=SfK?@c3?d{0gfIk6Qne%2NAR%5!D1e2lrEA=#=314|^y}mlbdU!h zPIxs%P{lm;bYgjBs1qyXxkN6UD66G>mRl#Xr4z~PvG$je@$TcPPQN{YiFfsV4Ahz{ z;nj44T{SOdcs1301%HU_N_w4#jyn9@;-ar3_x<_h`fhkmBj(Iby8UQuwZ@CP3EK}j zbXm^OyhBqkWQ~AeVy^iVB)4Wh)+=b5--vjbtrvx4823+e>fN%unKd+&T&~@;LSp8#I-|*I=U2LzE0($<|LW%XsA_XQ z3>6@ct56W8`Y2>d{!pjH=F?<22mf_ejVWx&mfsLml615hA!(-FDBnc-jDQv_NKXNy z(=8#eu15MT`JMYUW~~vr%z{`z9S|~|_VAY6Ov4M7#Wa(*O#3EWzRYv@&_zy|0i*@_46?BhYPPEpVGD|(a((4@b>fF)l-3jQvCcv z{o)yqMWo1gDTG1vWp=_AJoP5UPxA^qrdn6*;Qh%^sB8>DcX5d2bXh zu<5X$-n2+RVUy$k%$jmfMxgu4ZWTs$Oy{Q?tryu(5>W>)zs2)w zHL}wWPpTzwL2MM8=lkwHp3#jyMe3%J0Av0)*ixKl2lMvu@{j$n91n^pNe|jd``l0N z0RU<BSv#yWY}G&Kb9IUxK2(l z!4Sz=T3g)J1mqFu!`seMX@O}Bp}gyZ@I7GK*7vWYuax&DJ=8$){{tXS> z7+}lu)M-J126vy;?q&^}iM1!NCf1I@E@@H~O-PIlsM7kknVdsATr@pmBo(C~$G6gS z02;)2O@0&~`#fHDeC1eCZZs;s2N)@A;Z!v}6IRW@+w4GRSlrsuorBjfJ?y*o(0gj> zt+;DN~K1pX*UvM(B(Di$9F6+&eT z#bhNzlMA>q^N?j+@1IqnYvK};_)_77Ts{!elaGqJg{uwb(1mX6u=pkfLJYkfX+`v! zOm>eolNV>Nz$A&W8YqkN#cU|#i6j>Ox+Eu4*8Myq{Eq?u*kn+nT zQ@k8?r`Isov^UI2=T{#K~skC)fRP-aj zcrJyQmQ!u>p5&{_zp7xOM(Q%smb6M%g6o4s^>A8#L41?8Ox^e7CM$W~*3!e8F7P`S zK9!26tqJVBt`?fLxM^Gf`xAacdcbz&)u<6pKM?qA_ms76BOQWg0Le^W#?SMIT$jE7 zyw1!lG*$#k#iqZyl9~L_CjIwBb}$%9+e2Vw!1@$nfpvj1y2o4hJabo7^;(V}>++Tz z{|NtdydBeFpKnv*Vg9BTu3P)+)3J?9`*6t|c{b*k>-L!PvY`#5^i1^XCnxh zky})0T&rp6 zJFwUVv-;Dzt2_z1)}rtpHBQH#<-`N0%%UP1TF^VNx2@~Zh_4nbMMxj7zeHTrB&q)a Dl)1NK literal 0 HcmV?d00001 diff --git a/theme/rebase/logo.png b/theme/rebase/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..b078601019959e5efa1803f29246447d1f1d89a5 GIT binary patch literal 13034 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf2 z2Obdw5s?-E03ZNKL_t(|+Uk-H^XwpFbzUEO-h?*9Hb=UP|S zasivzd0{@EE1j}u%k1pT?Ck6;aDs5@tJ}%Z-qEAIczxxp!yheNUMd|aOpJeaJ?kp% z5xKwo#YENbcj=mDA{x;UXx7;ajgRrIw@m>dq|4eU$q(EvMZav+=Kz4lwsJhb^kS}1 zGK3Ja_h_{~A`@Nbhp)3z`@t|cu6gHwO8={1sFV_5LsZuVOSWmp#7RS4JDy%X7D8}5 z^+ms~O;02f<4}dTY{!PepxkcE(^kcY@lQMz~!r&#jN$xY*Us#oXbAxOm4da!i~!QpCuHmc0m@Cy) zwXa5BbMqK^qTeeglIYd1rZOoaL;G}_Qmm+gwzReipCjhzJ;E*W$t&`#XV?GP(B+*E zo!bW>z=$W-#8gJF2k_E~R^*r%k@7aOVrP>G8w~&eznFp11&i?RnuTzBqKHLJv^0fF zws{^bY>(ucHSHGP^f*`rB1Ye}KRsKXl8QXJtmyOfOwT#N_84xQ`E{q{QVKls?nngN zHRRCLJ0^6BqXGeFu4FX1yakU;(JOn(;QCB*jWt1>szIviMS(EPtqq{fa(3;BIklxD&Eo30l8bkKbOgSUN z&w9M`mHf69S!Rp7@-E()$Lr1)M+{UWK|}W`3}=A+;6DJ222cgSV}IX2QT+bR=7#Z% z-cR6;(ypXTx=&=SQ2?(dWNJe|YFyHS&aH&EL14r;12=anJ1BA&|f`9|a%wdeiQnKlM{%|87u87=AxF59w|d z?V5?R7uPHP+#Hfjz~31oZ*CY*KG<;O6@;2PaW@XFZrMUA8owcKk8-E3hjjq(Xw|YU z5X5cEcES)6SG~Cv0D;a=yb{Nyk(a*i=JK+kQ38O$i=w>y(bBdbJL>)fUFV2~HG~Y} zc&q(+RcMhg0Js$fr#pqMUNB0W5*pFu9OA~{s1yQC4KZ9&v;@7n7hz<<9L%5kB}{IB za|t6Dez{vV(qP01^w5>UUS65vM z!;C=)6GE8SUGY97X@{aR5K2Z2s&NXb3uIou5Kg}zL{V_ogAYJ&ZG!>KdB1l*dQyC3 z{M3P0v{iY`#`ZESUNISjSh@%#Af*HWfe^CF6_JEXfq@Ga0Ji0T5Q1o0D$Ga(0WQc% z@sXMRm-BRgigRrLiy#DGnjG8|kdngh%7ui4!@(+QdK#=v*YL&kvmp!vkQQwPA`$eT zl!t}q3=*eA))XJQi7?g8zFf6OL}DQn73H(trPTtwT?w>DT6-7{kLwk3PD6R?XD*)u zE}sMKbs=y8ESyusx;?&3;2#0^Jv*SMEV+`re(tDq|I#B@{y8UCK9=7{0>GXNr+#O_ zdbFW-8Gt_>>%&!Jhm*xa2mJWYIl0pO(Zmy}fB^vB{v&1pz)iMr`Vhbs_I1lqtS2%- zWlXH}?e@F(mJTdnZ}uyYJBJL53%!~I>c+8cTdQ0+V@0Q)zI;8W2TL|j@0;OU*{Vypgo$S_8UjN| zC=^(@WDg9JBNWgMQik*?U-Q6My`Rn|!AO9ZQN92EhE`NG z1@Oo727*fog%St}JU+7kbuA%)NC+WE8(~h)$RV?~?tHetG(03TJ$;AHBbLyR5|9!? zNJuFmxPX*^5Y{tpS~`tsn23Z81B|$v#3+2N{0gzAwyJjB?BQe-Tu2ml_u{L{R`{I? z2q9pEtOLb4n{J-0pK%B&j$Xiat{309e6b=B0zv=+iAZxgt~vK@P?97<2}NzgHZ0qG zJsheFx?w`sIAT!)n$9!Tys?3$l|QArVXQE@oGt+LO-liYKvh6LzdJEjeRRuoenv9Y zmE~u%J=7JANI4A)nfXPih0k}S&`}z1Ga3Dr%lQzj6;i= zWtztODNI692sGn>jSP7lJWEtJ6vONF!ZZXp7Z5_i?RG?O%h@k`K7M;cRVenGp56Sv z;}H|Jd!tZY6l#hJE`dmG5Sj*f?-$1DaVyJU+<>g-aa$(g$aat&3UE^djsoPrl z``3m@heL%!rBEFVQcB!>;bsWQZ5~1nBS8X?!bENJb}ZR&12_jbx0r4;s;}`X?A$4j zt8#ly@TnZP`v#RT5MkonlHHJ|dDxmR0Z79@@t^*JisxTI*w7K?9Jkg~5@XC*qHf+K zPYY9h`LiM#Y~u=Os%FY|Pzo?c?diFJ?6i>>-T&X9C?3?cZNr8=e}O~sLP!B=OB^92 z1eXX$G;dC=61(U%kK7muaFsE*2*sq0YvJ^GI+hj^h8={!TO*3l76>51If#@C{S2?& zP+NOajQ2b1Aq&slDm>0y!{bVGWTXtZbnn}3OAU*C>RB~L@4 zDd3z#*h56x_6$J6!RSOIo6@#S13}F|%rv1vV(Z<%f)oOf@<=|!7%Hl&5aApyuLF9N zZ^`j`%ZK&(9ku5&PzA|=)N>+DqbLzk}IVVtpZnNPPaAXWA4a0wvFO=RbKaPjE3I`!b6 zUm8v{X0S*=!r_+l06E@Ogek-$n!jL@SioUXP7+G-MPFWtBM*93l!6#dq6`A8rYdg@|&`=cs05FBZ>vy%? zu)8dM#aW}-%ne)kDZqjB_8&1rKn6|(A(gQFVq5^U6D;Ic0RA6d8jxfz`~(Bu95oRZxqi-;@$jQ~mk3_=%{90}k80FMHA*M8m$K*)Y~1Au|{ z^TGDBY5;F1+r9vNWZypx;7a?M*M4@;zMpE}-)7&Z+SDWf%(jg~G(9>E$&l z;kwLDI3~U#gbvT1I8@lrhQt?hk`VGgT{PBhKZ}$4kL~+A68KGFqTos@_fh*^Jwb%1 zU366MgzGp$O1nZxKLGz1z-s`m?&AGi0FMATJJGHK;4^zz5W4}1Fb2S50IpA+rFL%69BxJaPP8*_%!=I2f(a^ArXf`HZmXWf>-1K_=C;! zQqD-5DgZnnCE4`;ZX$__?&l7a&-#e`N0qIdX~%uG= zZsSYO&;8yJL(ddM{8dWw@B1VvE!+P>`=$d%QO}IV;XTrt>kb_F=Xs z?eNT}kd9l?V=0b2z4lP>Kz&Qg_%Ca&VEg2J`s{{r1OP7Euak!Iy+RT=4KCpVhme562oy?@ z>Qd3v8ic_G0OI^Uk#S0fOqrZbO;GIHnELb=r8h5Xi|j|p+=E~%Af#mg;#^S0gfl<$#5EW)h;a?YrYVxf_LC>)b7~K!!ccR^0*V-w2bx0N3 z4(($qqt)T4j@@+ugftEzCAgHR3C0l8ObZo+d@%m)a`lXqGEy!eD@wKy51(}K25s4UcJZULQmpA-UG(>wiyowTOjOa*nscp%WoaAd^gpwfA)foHh&Z`RNp}rh7NL7)GU~9rm?R)12Z`lj zK=xeZ_nd@Cv>97VU&o=)$8b1Rn5FZu@xAX!yd_fq72}9$EX(pl(eJ24M+cayH@#mauG3B}SGNhXzgkW@!RP1k!d?1BB zmpJ@#)q;`c8OcMUVbJ0wj?JdfEc>r*1Rk6B2jpcJSqLHu2w@f{S6lzHYbXDR~$G5YkOJ7)6>(`RMt}hZBEppQ~mqnquZ^2fz1a%9H79I-OZIKsi!7&#XgG#(`Ps6qyb0-VtUNQ^AUymTsiGo0P?8Fu!IDG%jrX?Jqj(xVVc5b&}30&xiyrx_=sm!jC38t(kKsLXaqs0QZVRdFE*Qr?n^HthJ3^unPE3<~q%A>&1WeA6 z;p=M!3_QhxA;}&@@gIx!}4}ij;4ynE5jVB#3Tu4o0X=6}DkYp1>fK zfWc#(lMygT3qg1P{lQkIwYoN3IaO~jYs10vgNN}fq>Sq)8J-@V?R!I!r)t04`0qHn z6X*9&A;AEZ9-mX!G!v%I!8r#&(Ac)eUWq%F?gB8Tq9L#iPL~2jVe!V6bx&tfUUx2e zxpXIYP!eq2*#ejns!HKacfivv1)ek~RE2<1g7(@Vl(2bgjUKsYb^ik8v?1i8g0(We z8|9&(rfIsx2RN7bc*{?$bzLcrfe?XUqz+!M530(bIw(|!0!GOTEhProu%%wPD#ibn z(HH|`6bhs8Uv?QLuiK2ttJY!a+KrgDZY|7U5R?!=04|08ZhCpC`DU*^^t2!Z01lRf z5e{kV!oe6q0S%#c4H6us)t^8J(?*KyG){!%pp@ao6*IvY1yiW?pAp=1ed)7wk0vMX z*lGBf<0{Gs7$N9><06c`?_O(EF$TgEIDI}`R$T#UZ}}Ed;*p%(#Vy=CeF$L;;@(AN zGlY=fLclOgM56{)7T=BS2i^c76hiRBKQ67E1J8am1*)oo0HB0`G6ErF=#Q@#I_Aj? zxi~lfEW{o9Lm?FY>}LRD7B{wkgi;70(EE;mhai?F%Yke1m_wd6gh+=|{_(Am4nwE! zsLTNZ%g2mS1z(pwiYJy0$L6x9P}8&l2kJk^yI(EDvmcLxkoIZ?iStqdDdaW^;Lu); zm_$wyHf6g6kGSi^dQY8~~Jn6y&r>834HBqAgO$pBR)pKKGT6=0@AJ zeJ&}bt*{C(>cE!$FM!yq1`-mKs5qP^p)V;TEn$T<8z-Xn~SO3iZe zU@r+n@YMzvFob}Ub2}e#gs767W7U8D8k|~QOKClQu^Mt}4A3XVh~`Xshv)YiATOKx zEJ<_bEuB<&8N9A^a4x`w?Hm)o76L9uDpEbY;c<0C++08yVWBq7w=*wHZmy|X6(Jl! zT}Om5d^vwU2&Ism15!W=0b!cZgF%#k@(BP5hf_s!Mc^UkW@m;8aa8srVpZ`Xnm-`( zs?h`fi$p^5gF!hn+K2VJ00VkVMc?d6$j_Q0eagV*Kx^ayr`ws<+;V7gTWjnULnB-Y z2~8IVV!ajm?)1S9%}HJiDjbI*VN`G1iZ>^XMYOdAoO5tp!>%`8!!siaK^TJ+5``D^ z#V?x={Vvt7oD${il&QU|*WO0Xo^&a`-1`pm`V>-K)4*GsqcBW@UVYr8p+=(~AC(QQ zQ8{&1y4+PdO$DK7Yck8$hzdo}N(n(K|zayV6D~6j%M0Ep<8W=N4!N{x+J2Ae^ zO%uuXZDH0>XF}Hu?YE1{*s7n8Wnv$v^Eet96hXJMJRfAPSle!Hmb*4Hi=uFU^~9~XVP;b2r*%K5v6^LLSg`%CyVfR#tdOs zZQjFQ9WqeXw??2k7~G2TU~Y=@|3(zWoKw8xWRUSSfUyAlcKeVrV8rMXsc?K-V&=C| zW=|Cbt{gg4IS`8W)l9S0r>MBDazBw{#}TsWo0FxC769qVb&UI8??Z>TjRDKuDY0Q0 z_I2C?XDlqwo%lD2UN|L5i203uy)9|Rx2ublr^?K;>a#bY`d{rTVf z6{t2c_MpRKDE`fllJa{X;aw9fCmXE&Xx`;-1=Z z;ZT>D-+cRix81J9_d^oOpAXBM=`iT_i(hs@Rz7ri`5lcJkGIqODTy*<7bJQtgv9;S z{v){(pBE0JujCI%u3sSOdn4&SlyqNnlnyvTQ~jxZ{fDD8zAKoT(4dV84Llim$o~H) zJKrkU{%6eLkX{FQ^aS}<99&7A)6>51dm@!dwReh-gF;#v3&kpASCWyn&{0q<#gf7#FO zPhf%~Ax)l*h_31pmv(czDC2ktNvwy7&Rg37U~|H|rcM??TU`Ck7E@VCnWn??OuiQ# zPP8eo!u74PDP$O|n2?F^E1NGRI?GN5@T5(ZfEDN}(O7jYte8{3OAw23c-HZ5ja0@#7!~&M{@FM`mopGxBnF#aV+D;4yLuRkRq~B=1RRPHMItlFyA{ zeB$%#rYMR!FU_Tn@HtrzAqg`$iA8j?s$tjejg+!CZzN>T{GF1vl~<5oNGTctyhO-9 zHKF{#L6YG1gOX@Lu)=N-Z+!esVK=Ax?!YYXK*AK%M|5kKjJ;Jx3P8a2e;`00sv#IL zwx~qTU3LBV{THu^C@rPC`MMj%${z^ie*s+fX$^Hq$=;rsXUuwI>nHhXo|!>YLSYPy z*h`Iv-4JYzMgpd^7PxgTpcx!d%|IX=UE@miov(+Yf;qi>-GV~#1A%-G@VE7oiQC~O z(?{nb1KqHx=>XZkH$CQX zAQT8kbp)asA~798U`g@qQ!bnG{vn0t5VZ=zg(c|#nv}W%eiXW_Nl)ACqA}95ugW*9 ziOIU5_n_RogoLUaNOMK`3`Veo3*j<_Jgj#-f9Y@(=J+6m1hXkbO3S*U5Q0zlH{tfB zJK=NMV~!9&$`C+$FsD1#W6o&4EbX69#GJO>nCsfkrprsFtE$6;x)S#VJ@`3IKCinx zz;}+VYS{#CYBmKE%lnF0SnB|Y(>}* zpoBo<0&5Po;JlYM;uoLnfzPQx+VyiQG%7)_VpPNww_mnx=09+d6M>kVOUkqWt*eS) zPg!mM!k!m?EF4XJ1JPPAunv+<@Q1dzhG~UG;|ipyf*=LLge7XE2}1-3Q`2|=01{qF zL_t&lqC-&>fY^JLBmgcUgaDV;o&#aWe=@m*t{DxU6f))3i+7ei@##5ArSEF7Vdnt0 z`o{B&vz}RZb-G)9JrFfW*yJFv2++x_D1PAyUFKLbGGsjJs zQnh#UI{Ni()BZWB;~z~RZ?2g@BvaU^@tJ({n%GRgFMUZ=R5}=STCCx4r3elO_>u(B zGSJ;K1qFE*pzdE$=2ln4Oi9B=XXg_k0hJN>9So^%6_il@ zKx_Den4mwKwQy41o^{PEwO6L7`)sZJ@{TD#*g;MN{=R)0yJEzb{MqHBZc6cGJmYW~ z330|dlZVMUqOB>oXu{*@mNo!F820`(dRWGH#EL^gJg>O#xPsR9YW!`*JUBfuI8-Nu zus8>|H~X2UfMGl7ODV6s=lb#Q-~U<(!;A;S>Td?p&oAv~j(+m1Ih5cXE-Zp|DHMY; zJuoFA6>ZT^O~LQqaPySSm#=JLhG|f)ND*jlkn87;5cppJ{}2M%-gpslWPyZ22HEsk z^I+zt>r>O+J}EkOUBz__N*G#N8&HsS6Q+&&nYFVM1f)~=z~jz|toW_cI;&t)$*Wkq z`$2e8QefKKVhuyU)HyWWjGtX#5JGa(^Zd;Rn|hGluAd<68BId_OPvDPsSuK{Dg-f8 zJ_XfzS2qVS-B~%ps42z3K_i9Sy#kNia*bI0>$^y=h9;yrs{kV%OCMtEkZWlYs`_K(HO*4z0T(cj* zuC2FCy=3NV+mw{%8eH5jPfR`V1u8bIAl*oe^maRBh7N((4ua^rBmlgf(}!gC_7iuW zpHfEU_(6GcUu7+7g1Vgk_x17z0NCSK)H_(Xq+(yH-=$vk(CRiO1hN2NA6S!ld?w*dsnDCltdS9>0Mx3&q|2e3w6%-RHaOceIZ5XQiB@sLFXnk`WFU%b=7{ zA_2qTh88oMz{sXp*jS;(_*a9j?y;-v=R3G(WE!26nI+!dRW0Z3+#&y^31mgtR2mKg z2lu!1P?@sPpO%tK?6r;f)RYj*exdTdxO~!cpoD>(1o!A55F8dYFMo6`$|}EvLv?qJ z41!jti}r(Lp|oCo#m&=}AJ!v2S#UjbG*z>TK!|5~&HKEn`kU>y_i@Jk^~ z=5nhoQlQGvIfNOXNeFu%jU{ekW+P&HyTwvuSDskkhCHmlgbE=Ty6)LeQ@BB zA_+~Z16qn7a$?`86!*;{Z;l$lJ{eV{%zEWTUR847wE=0=bhq-~M9TxH__zXr@&Ke} z*+o=^!QoWkPI1ERcEIUWpehtZ0%piSYk3Qim48nVk&)h}PF5uzfq~ zKlv19Wi^=33xf*?DPRf-Q&`tg!9yAsQ}a~E4h4XsK+G&Jm;W*Z0su?4O`w_~Xyv|8 zj;_n?ZjU3KG6IJ}K@|qd2oy#^8G~Vl&@25SoIC1%KngqZh^?fYK$Wc{yyCMM6&v?F zgAIEh0V9sXW_T&$r&CzlBn_QI5)AsybtR>b{r3=M@MlDx|M_nIa-V)9Qxv5*MNus4 zEaJo=VVWj-|MD&jzUc-?)3icmQ`(6oNg?bl*9<$KeIDfx{vMPum{P*z9EKFog@DEd zAo=8557n%DBQKv`Q+-hUOA!bFJpIWicFU|{{@}}lrwb`pIqf4r2mubCpFpi^5CLvV z%su;W$Vnd#E({P@VXhKwAj$fMwZh6liGoAT#dv?+%^=i(l*}fY_@3F0<4jCbz%clo z_gq)<@Z&EIQ?F|B^K~yYQzNV^x}@dlPG?VQM~PvCf>8pQk&X%Pz6Gb>531M%OmJj; z5PO;=g|&q=8VKOC3uc42v_gY~!8vpxpmPpQ$_9^={e7w<=9i|JT~jUor3mDSWy8qO zF&=WTgwvXeU=gKcwacZZfLJF40M|slzd*;3njEpOz$YI=G62Ky~9r zY~1?<8Uw|)l1mddOIt)?b(pjR;Yh?{#!kcF(_KzAnAt#i(PspsL?7`)@s4@9F4r3h zrC^lW1VUhHF^qcWEo6@xX>kZjj~h59k(<PNkrlRt+6UaYwx&QWycS-%9iq~x^fBBy0FcV^#DM4;Y@+#cyIcg*{uA2)Gh-|R`| zfF2W|GS%upfljAe$-|3x3Mf=tu{6NB6{Uy~Cnyw)uHwgThz@svj

-Fvnq^4hhOw zUoMcr1&ETRKywrH8{A(;1g|h8hbaV1!7as-04x+j)#sl93QL$R;RHB{1Z51h>o=gL zvtgi38fI2>O?LfA1jL?=HGI|hfXcy_#(R-7N%!AUw@+gyqoc&pto!kRD<yW#WX=uQc!aDuhF=DJA`RMa&GAu@ya9; zg)Le*=a5pMX2VAO{n`a!X&w8Wg^=huGz*N<8Z{dGFw^gpmk;druQiJ~7JRbqdNOn3 zAgtV8&V~%jmMcFgR#IH9^G$=_mzmaMOm;>dbgrQ(Sc$gwI>gK{3{!^?9j<+pQmBdx zDs#i@&VovO2uC9bhFTEQ!w|xN1i+XBib4RY!7#%xg=xiL6aulR`MZ0rFS+mG$A&ok zUvRnTol@hOg8svZ5IYn?A)+P}LZMI!r<1|S0Ht4lOn&+q_;T~WH4R9b#Xw3hrxU@d zYApG;>ruCDJE+pJb5C%A+~M7!hxK5rCE9mHLHE|0#t^Rhdbjw2K)QhUHY^}lOn4bz z?758^rcTZuvDgHF=a*m5EzsULz@d7Es!Z*zswq7brets-r4+(6M65j;4V6il`#IP4 zj6bVr|Fr%uY5?%k$LBIl=j7%~S07%pzyF0ny`_-n6M`ElBWF1r43rY7>-_iKbJTmn zC0y;fo$!`TQRX6!o-v)TQr$|QaAOok;zI#X1rE&@UXTv^?bn%^Jpj7)$~L>n8? zT3(7!T|EG19rmd6PP+A&Ylfogn?su#cQwq)9hMzDKRb=5zq{s)SqVO)z1kOldNuJ& z0X5Bwv&LkQ^70lmx9Fr-KOgoKH&Vmq3PK1lMlrB3U2xNsllx4NCE;Dp6om;mvfTVpH99 zcT`loyz0C$%JkvAIQh%_XOy}9Uw&WApI;b2uDm`M8@7e07Bt9pQ@5M{^GZRkuFKVw z;^(xUe&}tZba<@`dX1#BJ}WlfpFQr{NJx9hk)pDugKdbk#ZE|5We$d{eyMmSlamV+>xYrR3SVfn67aV@zBAMfWAyoS$=y{7~wXpO9ZPf1)ek)xFMp70~ZWQ z_pYrD8r1Jnc&!Y{>%Q9ezkW5hFMzWEi~#TitY{YB2c+2LOaM>|;H7^Qq8@%`1o`>R z+Yfi-`g11G=4goRKhVT|J<~?2CO$Nz%n7tcA-J$-t^_F_2V5#`=Y(9bXm{D?FAXbD z6;+CBx0ao5Kh;4t9!J0my$}EZ|G-hR+slfVd-{*~10`rZ6$Ek+)|p|j3mJ?P3%l}d z;VyK9RROH%MgM&|F)Zg@OJ3f-iMolT^Y)Y)i}U-wM+m*5Ev7+A37`$=4zPlx^#(B1{{0>uhjLQ8{5}9C!HTT1_9)yn6V}m*V__Y9R}Wwl>}XTutyhiL z3x|n9N##ccLmbu7;5?t|ehI2$z6k**Wos55ET8sH-vUP_++yOkZ6cxkVXz{&JZ85y z-5$~L0k#^QBVZj(0%XHFPj3XQKqs4EMWG7f$b(3`!HOx8*zYk|M_9&V5S5@KV$NZ> z5*;yrj`ce$;hVX~N&9Y68NWtHWT<2PYV1ZQ!hz#_lb?{*YZFZT-NB^1rlBL^Rq|5-SH4Dgdy2@UWMc4K92a0NyVc%;c1_Ns_)6K-e5zbZwF-_1mJeIsqT+yC6JJX+=yw&>no!>s0&z5azld zUwx4%GLvyr0pPa@_gieDiMQ92l>Sn54r5gZE7a7*2?V6ueFIphAm3+;aU_V6Z@t{| z6Pr*B8zEh>pohEQKF#QS?D5eG9MMI7noaGor02iw;``qxrJ4UdagaE~!}{q-BRcVS z#4*k9j6QC>)jmlhxIF3oyd-XVXVUvyl0=fQ(;w@Xct~;or1Fc8RoTSOd>lY`n{t^= ziKA?J9fzCIahUJ7nL1|!_@E0`?z9!-nMviepUmW<3oe(~P7_B)-0RYYW^*`){k_{( zcpDPZJd&iOSvzb6j2$sSN~Xte8itlzHhS{Suie9RU#@7oGmk~w>vSh zGT$WJN74CI`!rY)0=wICG0rC2x|q$}WOu+w0RJb6_1(}#U6VtVFM<^!aafXm6t)%J zICO_~`1^%6t6hrDM~jb1%6EdzLE8YlZsTLPEqdqL)5JKeKu6HfIMGX6M<}(g=bmB$ z*=%!>#P(If3J^Tm7D2zYIaACgRwVUV;vgPki>RJ)r8^lew`Uyn$Ixzf9iyS$?P*mq z8*Z}|rbJkE6m}i6weso&?fvpD%KCpv3S|8ERuY#Wu!1E=yGUCMEA(W%oDXcJGd=~s z0>H;Mr|1e70#*dqd0o^mFX_7&jyw`Q-=1Z~V{;~pz-#R9;+*cTqgn244%T>-dbR?1 sGr>lc2!oF@GiPx^Ye_^wRA}DqS$nWuWp)3p^?iHq^SI}n`^>$0kw6|G2}v+0kl<9UR>9XeW8xzy zNFA`!#@ec#KBlG0)M-0|kI~v&iz2={QCb}^YNeu(p+F2lBoN3Y50abYCiijP=j^?| zZ>|1u4!Hyqh|W~fnXWT?=FIHJx7PaB`mNtuAMk%%=%rY6!({-h{#kd=O?iJYLng-dA#IV#8hx1Qjp5{?=`LRvNHr>mFt+cDxY} zOx2SwvdF$gBl$xHJr%F+V5OaWp^~-+^7(?f;v0|hSrtORcl%Mw_Z+tqGmVu?hKfJv z%|*ktMBt%-D!eG17nGZEb*9;RcQJ^5TsNtI@aoItB{yKhmM!GX#awCD`-&Me)|=0i zlo*BqW`e3Bb&Aw`v=WDzM!QmPq?fVfvFX;7AKQG@X>-D!i2|deYbjh_KpsEk;Mrasul3;$$0#F=|Qy61GL|~$l zQ+G?q;oD15AOLwEHQ-)zmO~lNGh!m10+85>3b1YOT$>@(?r*RtS z=Bs{i@`A2KWLy{p(RHZ;Sq7Tz7=N{HAWKgVOwO4W6^)jj9PHQb(FL(MYBs3gmk7`QE-|iy-!m z&gmD9mnZIE@tX^Qnfdb8SGhWl=zaCS!=b4*JUCNp#UKKl^9W1{L;!(60EmE0K=3k~ zvxc;W7pVv*88CY1S~7t%HiWgl^o}`;Mn+?u%vIyD&WBZ@A`k^s6fHl4Mmz%%fe1`7 z*Sj(Gxi`&B9sL6vm@S6;TwnHXnYJ5|w1a)^Sbe<}8vvMU^g&d?-2fL=9B(EkBMi#{ zc)^YvE;+3k=Gi~DY`L7W!`2job~uz4N_@AW%hjqfuJ47Xa~j=fGQBX z22$4ygCO(PYP}W{`3G%$Tqj%SYC9ZC0tD5rue#_W~~hp9<2{qft$6w3+B%56oQPALaLPEy=Cw&1N2&Y$hC8Mn13@%mwhO zI8u+%PCZ0{LS$PlC$AJoyQg!p-~ayCyf6wih5`ySG7$~mqPBKfJE?SRQ*;zp1tS9a z9;g-(_$&-%P)qhhs0`&8Ab^NK+Q~N}LJ;z&T(kPa!OWh6gR);dt=g4{{4f`otD31t z>=IPs^n_EGfZ?79Gp+QmL&8(dBrE%GT=#-mU_ZBYDX9;5vWEHREzs+mX}ObBP-w>n zkn2H?F2O5ab{z`2IUwpNsj3)1wi6GJeGN154p_q-gF7DpGZ#JV7cDp5wlMvfOk9kH!b6=u{IOf@7O3gcQ(p9 zO0;SQmoL8=tCws*CMtr-g2;f#fXSekpNHiOUyoX~g`<^Uz#4{hX@PeF=X6P$_(wRX zJymX;E3qA(YB^m?M9UPwyg~-&^k!y`*5kiH%YPsWX;*BGTaeG`-Pf#nQ3E(IEm9UH zn_RB&9i-9Dd+nyf%NKtX^9ELf$%4s%h)=%QfH}Ywt8c`LdDlX`Kow9yH!nP(@>c7b zJdim6=VR|xx2Y|odAb{lEgpzz&Q*oiDYKCrM5y#1BsI_ zXEpiC!ty@9{>g1Pw|0PY>Nv_+vX-f-3BtB$+>FKee!1(4i-Zd;eZC>AUO1ZzUZW~q zSnMQclCUlse#IFm-!-9IRp$<_Mv|mxHQmV%c)c*=tCTl0sss(G`R8lK?w7Ydd>79f z+Zolyj=nb)za{DmpDxVLRkL$)lbogP&3gKoiM{1D24Uc9CG(?ItLS+l1VCk}cm;E3 z1DF9rArbSh$GC}*iHc~{l3%$cN{CQL4~=VIZPD$&`^dkymrw37t*7^1F!$vPepFhT z8E%)`nAtIj!<9DJkj?gIR}PdiD+fn04D zdXb9&1{0u45KVr4;;)LpWWh|G*njR;8}eRKU2*6^4E^+>*4);Fb?xTImR>mTrsPn| zjL*z~yETM~pia>^+CcS)KnT>+pSgyLg*Qx=D_3UK?z(+=Sl>4>p;ppF+p)XfJ9!&S zM|oI)j3P-J$b>-`R9|=}6rG~C@5ucKBMXskWp>>=D&DAI?yhGrIK@0ut-fmh-2P8g z$EsvhVTfTvMvx7l++hGdP0?;TIOotj-hxvZv5EOMlJ>=MVC5!2xJ@J~vZK{Z;Zonp z15pH)vHhvfL)D*v)fe-=s$kEdtq4K`8yEzEK^QXF5S0Bd?6iY9*x+ipobAnJzve43 zu_~B5&+Eus3}5>JtiJu3QhNB=voh7Thc;!ch!5E@=uH^EJY$jt5QBb(N}MnU$` zRwEUFI1q(+0~08onf{3;ZZkze0kg#SSADOl5cL?Jd>B*p$6=UeA(k0l^{K!IM{{L| ze3>{l{K?Ss2ou8?0uy0)(m3O2eNw>FT&8pYq0E^_u~E!ehBWd$3fH~dWPvE z&4g}~T>e3LR4QS?d)@`C0r~j9ai?KZ(PL2nn2s~$!t&fF;D_#1~EX~Q6#h( z^cR+6!QgrnGIP+1D`+ND*njLNsI|ud0i@d)oS@lWkvfm0*5v{u*9?W3 z?I9Zk#=vJYc-^*p!BN;z{uH?--s8xF58~cU*P!ZBG`)vHcLKD|0ziJMrOlC&?;-wF zDZl7FmH5DXsOv%t0R*J3jfwIvajg8ySwQMU(}{)#UFuEf6vR%50G@&r0LTeQu|!27 z+-169ct)irEcT-19h%;En|Yc`Y&w*7^X4%vpx}FYhw4+6iR+gPuTOh&16>CQRG#g? zWVV6ndRZae&P==d6P{ZFm>HJR#U@gc65wP1WU2xu9$p1nsX^idT?%k&coxO6hkuTW zo2~AdVl-|-o}EhExbdeNu=T_J!*}o6bMF=B46K=4I{%fO&Oo)pE}yrCD9~w@XDLY6 z)DtZyKwuMYOl@Eq{UIXi+1K)367fi!2dl@Ex7`NyUATVk0^J^5y~AU7e0P>UL4#S&?c{-V7rX^47p;diVW)GFjxj2;YY_;!Xb}DR zb5Y7IMlKu#lRaSyTYh&Eq`k>cn?Wa z{PG*$#NqARPw3gdu!!bl<5p`)P8ogQ+jborZ8ON)C-&~Vw6`>T&BBoj-ewH-dlje( zymt^4Byob&xpJ*m-cfEG{(0i#@xVkE20`>%GHyALKom$5x!G3e=G^z%s=L#5*-~^* zJl#e>2Dw~-Y$=EH-v2=?f6u#NqX>YaIXQ&~{_!91)SY)CZKr?&VNZa07Y>b8Ch8YO z&L^i$pRe3=EtR~GGc6XdF#zv5_}EJFet{5rL?}nBNl4K{gM;(;s(N)Ukybl~s3W1+ zG#kw~8>YXop6ew=AHA#S&G?k%g|; z!~GAO|7b039P}pFc3}%<3z*(CeYkeg*sXUcuRfMPM#Q7Yrmj@a$;Mr~^tXP*^yxo2 zq`Q4aE0u=i3eEexucaHmy-Sm{>SHlUrk%c%Vt;S85S@6ZSj@mzlD`D>UnGrPYs#FY z{7ZI9`Fy#3)i9-T&bBLX4~$8k@m_A)zh6%~+zysczj&XieuK(NzGcd4nFkBrw20`Er!A2d^UQ> z7%%Uen9#H4ocMIId2CGkqDZ2ie5F4OCk^qoC}1C0t7p|g_X~*-fmJ02b~nY}kphxB zr)PXZ^HNLTz1Eri@mBL&2+a3`B$fA{B5}{!9k^<2Oxu-;B$jW>0j*?UK=J=_mdpPD X({850X + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + + +@media screen, projection, tv { + +body { + background: url(../images/page_bg1.png) no-repeat fixed 50% 100%; + background-color: #222; + font-family: "DejaVu Sans", "Bitstream Vera Sans", Geneva, Verdana, sans-serif; + font-size: 86%; +} + +#wrap { + width: 860px; + margin: 0px auto; + padding: 10px; + padding-top: 0px; + box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); + -moz-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); + -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7); + background-color: rgba(165,168,167,0.6); +} + +a { + color: #333; +} + +address { + float: left; + margin-right: 20px; + margin-top: 0px; +} + +#content h1 { + text-transform: uppercase; + letter-spacing: 0.2em; + font-size: 1.4em; + margin-left: 2px; + margin-bottom: 16px; + font-weight: bold; + text-shadow:0 1px 0 rgba(255,255,255,0.4); +} + +#header { + margin: 0px; + padding-top: 60px; +} + +.poweredby { + background: url(../images/sn-tiny.png) no-repeat top left; + height: 40px; + font-size: 0.8em; + color: #fff; + line-height: 32px; + padding-left: 50px; + position: absolute; + top: 2px; + left: 0; + z-index: 99; + font-style: normal; +} + +.poweredby a { + color: #fff !important; + font-weight: bold; +} + +#site_nav_global_primary { + padding-top: 8px; + padding-bottom: 2px; + height: 30px; + box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); + -moz-box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); + -webkit-box-shadow:0px 2px 2px rgba(194, 194, 194, 0.3); + z-index: 98; + border-bottom-right-radius: 8px; + -moz-border-radius-bottomright: 8px; + -webkit-border-bottom-right-radius: 8px; + border-bottom-left-radius: 8px; + -moz-border-radius-bottomleft: 8px; + -webkit-border-bottom-left-radius: 8px; + letter-spacing: 0.1em; + font-size: 0.8em; + background: url(../images/global_bg.png) repeat-x top left; + position: absolute; + top: -20px; + width: 890px; + left: 50%; + margin-left: -445px; +} + +#site_nav_global_primary ul.nav { + float: right; + padding-right: 20px; + text-transform: uppercase; + padding-right: 16px; +} + +#site_nav_global_primary ul.nav li { + margin-right: 0px; + margin-left: 0px; +} + +#site_nav_global_primary ul.nav a { + padding: 4px 8px; + line-height: 1.8em; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + color: #fff !important; + text-shadow: 0px 1px 0px rgba(0,0,0,0.8); + border-bottom: 1px solid transparent; + border-left: 1px solid transparent; +} + +#site_nav_global_primary ul.nav a:hover { + color: #fff; + background: #000; + border-bottom: 1px solid #666; + border-left: 1px solid #666; + text-decoration: none; +} + +#site_nav_global_primary li { + margin-left: 8px; +} + +#anon_notice { + clear: both; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-color: #333; + border-top-color: #ddd; + border-left-color: #ddd; + border-width: 1px; + border-style: solid; + color: #ccc; + padding-left: 10px; + padding-right: 10px; + font-size: 1.1em; + margin-top: 16px; + margin-bottom: 12px; + background-color: #4b4b4b; + text-shadow: 0px 1px 0px rgba(0,0,0,0.8); +} + +#anon_notice a { + color: #fff; +} + +#anon_notice a:hover { + text-decoration: underline; +} + +#site_notice { + float: right; + width: 266px; + margin-left: 40px; + background: none; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-color: #ccc; + border-bottom-color: #999; + border-right-color: #999; + border-width: 1px; + border-style: solid; +} + +.form_notice { + float: right; + width: 500px; + margin-top: 0px; + background: #ccc; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + padding: 10px; +} + +.form_notice fieldset { + width: 510px; +} + +.form_notice textarea { + width: 374px; + height: 54px; + border-radius:7px; + -moz-border-radius:7px; + -webkit-border-radius:7px; + position:relative; +} + +.form_notice #notice_data-geo_wrap label, +.form_notice #notice_data-geo_wrap input { + top: 48px; +} + +.form_notice #notice_action-submit { + font-size: 0.9em; + top: 74px; + right:0; + height: 2.4em; + width: 106px; +} + +#content { + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius-topright: 0px; + -moz-border-radius-topright: 0px; + -webkit-border-top-right-radius: 0px; + padding-left: 10px; + padding-right: 10px; + padding-top: 14px; + width: 541px; + margin-right: 0; + background-color: #e2e2e2; +} + +#aside_primary { + padding: 0px; + margin-top: -20px; + padding-top: 15px; + background-color: #222; + border-radius-bottomright: 6px; + -moz-border-radius-bottomright: 6px; + -webkit-border-bottom-right-radius: 6px; +} + +#aside_primary .section { + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + padding: 6px; + border: 1px solid #f9f9f9; + box-shadow: 1px 1px 2px #444; + -moz-box-shadow: 1px 1px 2px #444; + -webkit-box-shadow: 1px 1px 2px #444; + background-color: rgba(255,255,255, 0.4); + float: left; + width: 248px; +} + +#aside_primary .section H2 { + font-size: 1.1em; + font-weight: normal; + letter-spacing: 0.2em; + margin-bottom: 10px; + margin-left: -4px; + padding: 6px; + margin-top: 2px; + text-shadow:0 1px 0 rgba(255,255,255,0.4); + line-height: 1.1em; +} + +#site_nav_local_views { + position: relative; + z-index: 9; + float: right; + margin: 0px 10px 20px 0px; + width: 271px; +} + +#site_nav_local_views li { + width:100%; + margin-right:0; + margin-bottom: 0px; + text-align: right; +} + +#site_nav_local_views a { + display:block; + width: 242px; + padding-right: 10px; + padding-left:10%; + border: 1px solid #fff; + border-color: transparent; + padding-top: 4px; + padding-bottom: 4px; + font-size: 1.1em; + font-weight: normal; + letter-spacing: 0.2em; + text-transform: uppercase; + color: #f2f2f2 !important; + background-color: #4b4b4b; + border-bottom: 1px solid #999; + border-left: none; + text-shadow: 0px 1px 0px rgba(0,0,0,0.8); + border-radius:0; + -moz-border-radius:0; + -webkit-border-radius:0; + text-decoration: none; +} + + +#site_nav_local_views li:first-child a { + border-radius-topright:4px; + -moz-border-radius-topright:4px; + -webkit-border-top-right-radius:4px; +} + +#site_nav_local_views a:hover { + color: #4d424c !important; + background-color: #c6c6c6; + text-shadow: 0 1px 0 rgba(255,255,255,0.75); +} + +#site_nav_local_views .current a { + display: block; + color: #4d424c !important; + margin-left: -1px; + width: 243px; + box-shadow: 1px 0px 1px #444; + -moz-box-shadow: 1px 0px 1px #444; + -webkit-box-shadow: 1px 0px 1px #444; + border-bottom: 1px solid #fff; + text-shadow: 1px 1px 0px rgba(0,0,0,0.2); + background-color: #e2e2e2; + text-decoration: none; +} + +#aside_primary .notice { + background: none; + border: none; +} + +#content .notices li { + border-top: 1px dotted #bbb; + padding-top: 16px; + margin-bottom: 16px; +} + +.notice { + line-height: 1.35em; +} + +#content .notice .author .photo { + top: 18px; + left: 0px; +} + +#content .notice .entry-title { + min-height: 27px; +} + +#showstream .notice .entry-title { + min-height: 0px; +} + +#shownotice .notice .entry-title { + min-height:123px; +} + +.notice div.entry-content { + font-size: 0.9em; + line-height: 1em; + margin-top: 10px; +} + +.notice-options { + margin-top: 6px; +} + +.user_in .notice div.entry-content { + max-width: 360px; + opacity: 0.6; +} + +.user_in .notice div.entry-content:hover { + opacity: 1; +} + +div.entry-content a.response:before { + content: "("; +} + +div.entry-content a.response:after { + content: ")"; +} + +#footer { + background: none; +} + +}/*end of @media screen, projection, tv*/ diff --git a/theme/shiny/css/ie.css b/theme/shiny/css/ie.css new file mode 100644 index 0000000000..ca6c09d44e --- /dev/null +++ b/theme/shiny/css/ie.css @@ -0,0 +1,9 @@ +/* IE specific styles */ + +#wrap { + background-color: #c9c9c9; +} + +#aside_primary .section { + background-color: #c9c9c9; +} diff --git a/theme/shiny/css/mp-screen.css b/theme/shiny/css/mp-screen.css new file mode 100644 index 0000000000..c9fb6dcc4f --- /dev/null +++ b/theme/shiny/css/mp-screen.css @@ -0,0 +1,7 @@ +/* just a placeholder for now */ + +address img + .fn { +display:block; +margin-top:1em; +float:left; +} diff --git a/theme/shiny/default-avatar-mini.png b/theme/shiny/default-avatar-mini.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9fc0348b7c9e8080a9b3a6e1a30542bfb378ef GIT binary patch literal 1262 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`I@FIUCIA2gfJsC_R5;6x zR7*%3T^RkoduQ^jNesTQr5cJzbyHEK)fSN!d@bq&Dn&#o3houD;zC4eNh7vZp&$q% z6|A(IE)-n2vUcM_G%kECBtGhB5+hC~lgZpJZW{ku7ysGJEY3aO^Lzk*fB^9R{d-N* z2qI==WEczvN+|^ZyWI`|fQTa_Bk=k2XZSDPy?aLpDJm)g00ID&m6dnz-qm&e)vH%= zU5>J{vggmApPrrqA`(IXfYNvf00582)7sj)w6uhX06+mCJw3goq~yhm7o(%2nVFdY z0JF2RPo6v(A0OwBNOg5JV@y#LRaLJl0RXev91e&3`ueuEwh#bBQGE9782~WG78Vu& z;N{DgCX>l#vrSJ=`~Ci_OuM?e($mu!W3OMouCK5E_U)S}ilwEcKA%rWkaBZ#lai7o zNn(td&E~POFxElgR`C z0s!RYAD^Yg;rKpii(O{E|=5klq6|xZthCIy}f;Sc-ZZBbAhj4zw!w2#QA4p zVuCS72yr+ZjIoA>1|Ffjyxd~3T=fYNO(v7oY7GX14u|8zhY#oH=Yc>V7K_D6PN(zs z?c0Qqv$Hb*c>DIPqA1_Le_vi+&d$z`lRkd@h=_dDPoF+zjE#9rzprUpR#sMmL@gG}y?ghjrltacKu%81 z>gwu`A3q*He*Ey^!{g)Qlamvd%Z0oy#u$Ip(b4hg)2I9Q?>9C!YMK@bg?|40dBf~7 zGBS>jkF8c~ZEfxO`T6$tHUa=4#A2}+jYdjoLX|P*_xoe97+;g*+=JcS z-H6C@xwyC(8XAhlVuX;HnVErs0k7A~cOxOeAzTys_3PK#+FE{oKHp5c-JY77dUSLo ziehtfb2J(iMX|oVzOu5?VzJ1w91I5c_xHVCukddp)6&vXQc@_Tf*@#`rfC`?DvDw> z8sEHmW4GINU5`W}(P&grl#7cCS(YP_$aSH%wl;pZ_z>3C)+9+nM5oi)-`~$Y6bJ;| zZg(&kyrHzDq@?|%s;ZcSndMNup)EYx*fRaIG*Pft&O Y173~_lhC4!RsaA107*qoM6N<$f><0!*8l(j literal 0 HcmV?d00001 diff --git a/theme/shiny/default-avatar-profile.png b/theme/shiny/default-avatar-profile.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f87006a0d082626a3dadc70ef990fc66c20551 GIT binary patch literal 9002 zcmW-n2Q*vnAI4*=TGbeht*EAos#SZh+MC*Hs}Wm`;%BBtDQXKJ_LdXyBsfLp;fw{(LX48@ckzLCu__MYsjH)-U_YK zt<^$pnM;GB;Z+~;ycKY;hFy4>cX{Qg(ueH#-g|kxIlShRroKGUapkM8KMHPSY;5f4 z;J|0$GbnZP_cAm=`7S9w)(hNO1Es^j%*+gfwfGD(`_H0y)CDtti*28-mXiM%9 zO4EoXx;i@t9^s7l{$^N(n(9I;jh?~NR?oo=+%b&Co=h139m~8GWKW@TQS&CpH?Ke6 zGv!e=;LXIP=$M$%wL|UD{ZwQN*Cjmu^T8*r5{ZD_1=j1oSbECTNUU2a$@pppxDBG`E1 z5o${*oTioIKYsj3y{G+kX>Y>v;b>MLe{I@m_iD=9FXpQBd3b=?{OX(tRiy0Re&VpQ`$L@8IBBYXQmqZ+BBT6A}_EKH`IkjOTDw zV8Ytho4zB)dIh!RU8FDYC;}w@cJ?(66zK=3M8xWI_Xy=MY<>$ZL ze$r;?QET#AdFl7>-{(6WVT;{2f|%d54G$No$Xx7xS;>3(!%4{Yj*pKIITh8@6hgeq z&})=JjHg$zUe{fAM8XLbA%2p~l~`MUtsVAf(8fcaKqn_v>i-bU7r5%sqpR~Bj0x|Q zo1cx%ug$4?+oJ?Rxtb}rpf*dWQl(Kj&SmeU-f{3OxZUb%KO;_29@>LwW=g`=Pr1R< z;A!f%M;4*Gk*rN~?iXh8v_z&S_)3!CsYK_4>p9iTD*fEu6URR*dE12rf{H)cn!%oZ zr;@o4$kp;@S~&{x-}#vkb$UL3eU+*$t*gdn>(biNa&~_HGAPJ^Ra-+tHm9*sL`fHn zE*%o*-|W=r$we&(RTAV;(q#!b97Z&MKe*`Zl;z7vwQn}(yI!R4C~dzr=#|40?~Zv! z{hyN%7-27!a@^TMB-Qo|rrMlOX0Q8p1lz7;*x%h>8r+f9oorvRSY(f_NOt8`i>iuA z*vWj@^}@o!>@3sZL1@P{x+G7XJGIC57ShSrR~SlG>3%9PU)i_5KwG@Md#Lq-@Ekvk^b{%j87q=KuySByYMu2YF*`dOJd5ODf8D2-C+4f45C$f5_GuQy3_tNi^Fi-(eBtNMn60}1QW3knJnm_H4^>W;gO%c8wCNyQ}QdA@~V zOi(_qmq*F^y*gPAWbtZn*t}I?RNiG>x<|d2@(Gqee5^E#jvlN!mj2CG0~1Sp%1M)^ zUTn@cYB1(^)s*|Ur!zxISJHC{Y~^rVExqW@Nlhtf4U;a zBT31e-sguwQsXb!s5{THGBc+-!a8{SnXtaTzP)vlQc?qbKbDmFGF*Lq4O2KjeK0ED z+TND-S=F(#TiOXdY1NiKRn&c34K!EuXTaTA?)P~)IfRhB++3V>*65m0A%5GR{r&y< zt7D9l(Akgz)g{o*mB6cu(}T9QHp-YH9Uki!cIhK)J{)f*#hC7pM=QioULIpQqU@zl zf2T_4^S@Eum9&DVfh)wAsva=O?SWyGd3ns+JZI7BS3J6gXy#SZ6M`iuau`!jn9Re- zi81bTS%WJ#qvYXfW)>EP*aqY-(&_;38)SThV54W@s8_323(x3Hi~&4N4{g9pcW^4H zIavIT)R8JC>NV-0PNr1oz%pVl!2C$CkVl+}GFQvEO>e>L(WYN3b_u8m+Q7xnk8XFP zt|4jX%hg^~Bnz0rcUneAJYG^=84ClS=!o?EnO?Uw(2z@47i%ZB;P*A9D zJBHod0_2etdRPS380bYBnwrc{5Wm|_e)c=mLuDtcCj?H9h*IoN!E)Q#*dTbtJ^LW| z5iec;#YM0rOH9h{S3nn!7|1=^PyYasFF#lrByg_iFj`F$Vyqeomd@{e-qO+{a36gzz4amH3@_ILIT;k3F?kJhb5iS4GM z%1X_0934=%TAuzo-u}~I>5Tra=BlbHu+m!yKQpnvh*Y_ybW7iemu~9sjf51bhK2@a zai7wnq9Oyhypx z5Z|n_F{qM`Eb7-Un`Dvavf;7|+4C14a4tmmqSqdzsUwld|4--bNnKvL44`D`>EloU zEc%){rcSR^Q4&m$eSGM-NT-l%B9_%Wvmrn*>c< zMMZ^M!OJ@Km@mIh&OxEgxr-VNZEm_rvSiqsQWH`WRaRC)a)~3m+(b4&eWjBS6I%k> zlSe`Bz2{Na)*cjX-=k==-pRN+KMrKD6nZT>o}_P@b&ZStJC;S{$C^#o5PU< zD)0Hf;#=Gkt45sqnh6EEB-N4rE)Z>APJd?3Hv#yoaG2-8$NuH@ogF}Wgh@n$QTw#mxWA0A*`yggxK*R#)j{1SjfTE)de?`smbpBOYGsPIIHRZB zxL`XO#WovL- zk7u27T^vnLGC1oN4OTHtxkOROYNv2Uefibf+dEpKO^@txNu@5=eD338 zkiMMl-qP!iv3ppGcy2u+J4RGg^g(cPU9bUz#~V+4-oJGqsOlyk8s`FpS$2VktrNb70MSmn)FRB&-6y zoY8Jn0THGlz$V0W`WgI1m>u=+o|XQl=p6 zG%g3ju2N$s)(zJY&9PsK4t>15_Ev|BZr{GGNJisnXB9V#_h9iWTBsnk@1rwt!2c2H zMFN-Tzdeg(4b#}W`ImYkKr$~qovvfvqruEq+@jfBt5~nr#4Ru|(B7UaS8Jjt6wC@3 z^)U??1u;Px4Pmgo=@mfp{ZmOI#rKf8xjDcgcG}uhPWVc?>cuoo3UGR(2(As z=no$KjHh32>lnvOPx$Mp)!9f_B#G#Y>Hh=7Ti$*i7(}Ot61Z9}H6T!+J@JKi=Dw-4 z9#CNWZ)1I5r`cQtmT-A_NhP`a%CcI!Sg$F?m(_FJ2ZQu^CWQ}NNBvaA#7106gvmQ- zqm$}*<-~?Z$K~<)cB?iuA#@V0sh;LmdwOs1fbk}0d?64wSb`fJk}<8{zQzkTKMiIl z*Z=2@d_`Kpef;>s0tGyiq>EW%RAi7_j#f$UbB=j!LBN2ZwdJI7m+PU0L`CO)CoG5~ z@kR-oR4mCPrxzBiIo`;+xC$`Hdg7L2syeRDfaV#NKrBBRz=4WbYu?&@%s`HrMIZ-P z2xd{VkdH!-9(i5--2*Kv&GLmv_RJQLX+}~gDPiM_nds2gtOaqJIGra@?&Xtn|E+1F zn_NpgbjW6NcWdi~Z*T58m6RXz0*)dG2fXpK?IkcM2HpJZ0OB6W$Y?*rGf|ZA+Z4#u z=pJ6!0eC!y*7pEVakj&+Hj;&ZBcdkk`ijxLNlvLfC8#sG<}kjH$FH@mwKdy~RnWeE zs=2w@e?A0bsb1|cT;0(DF20n`uXgB`P5s{8O^E!FtRgBTRP*Wa_^`~?9+hE>HxYj3 zz@MwDtGQPHFX^ryqMTOVWo1R6hJ-^q^0NfL?G_F5z=*3&*dn`zrly)-o^0pkv0!G} zD0fWJ20)JE<2QvVC@6S|kV*0=9e7$gj{qVYHVB+4i&I^>KA2Iv*%KLs9`(T2Nz)jyEj@ev19Vvx#!>=8)g z4JNj}93=ZM%b$%}r?T5qOhd}3Kv+rFr`f#A+EYQKB3jl>FQSf}g0_akVRFqU<%V4p zaR0gmoV;0ASE1=|&`;U25V}yX&_>Aj5zmh}@4U7<_%pC6sa&LM(B0`E&kN$2y#SWb zzrR}4Z#Fe(mDHP6f{_4;1^BxfnFGw|yLY5f^21Khhu*S!(2^l`2|+=8)&DqPh|mQJ z1Vt$=Nn}@CT%0dl!5wp6C~Hc+%l9A>;wOqxF7Y-~K&1pTzyJMrG-;J6 zq&Wo#GaVs<{q60eR!*%2ViOo^9_|zUrnf$?<8`bzecLDm_rqj$K6~Kf$&{hNEpvTw zAdeavAOGVcuA;0A1kco;2a4~J#B!(3>vOAEpX-Mn^{v4i11HZJTn- z%gjWr@ujJ!rltaUN2ArMClv0yZA@3^QnzFu?RY>f5m#%n`8n$5OydiEC>JcjR+x<| zD=Q0FNg$L7*F1eGo;8emgB@JS>V_csad2=L{h$fZx|cn0x45{tr$;HZ7f=t|?Qg`Z z(Jj)uC$4PNGj3314=>$Q-z~gzex3WWjtmm|HBPF54~ZhIWJwtM-Q=Ty7&1{tvK2h( z3wcyf&0~mkt`b|W5TSpKYoV$ZU^6~ z?_YpUlPb`%AQFTje_4k z;$#+nIQGjkK$3-x=`itLYA@(@s+={&iRBGgmA3BH#|4_uV|!E3EC8wk4mmOPJ?<*A zR;b5^lgE773&`OsIJtMgo6$ezMu!?)+Iux;jxDm;An`wK*WrC2OGcGB)U5?JBNkvca0{v$r2G?mKQeP|gGD491XeeM<%1beEDgGX6CE!G1=fL($md;mUp3w@VA&VWGx zPnu}F_R}Yj1m1n4`hP?+m_;E>b8i`aDhwbTLM(R2fyE92MMuC*kW!xhvDa_Q9F)^J zuy9LD%jmuO=gdD*=6oRNs`+NP-<^M6d#oApSDp^#mKX7))?6r>Tsd*9)wJl>ryLA=d&_14>;6=-12dg z`1)Cub0@BSXyd4_j+_LwK55VYW96WR)HGcfrU{}uPMSBWoKP|#lN6Mc${e@eilfKA zFIH3R{XR2m4I)DMJQ5er>V3Z5e!gujKpGSoRkpFRI9aoF6ePu>%}Yn%sNpN+XTw2b z6OOg51q~16YLt|ee0+R*@V=nh@*fl?<{zZZ7R#_;5`lg;m^}=ND!r^=>6?2l7+xM3 zX1}bD=LJ>gR6Dyk7))Z85RsI8O$fDAI})QUMLQgAXuqxskEom41aQGb88hb|vte&@ zLQKpXuT?U-=JR84(71!3nTE3q2#Digo|N|=a(I-RE7GO6rU1{CwJC#=Mpj(D;4Oj@ z;@TPVx5Bl6?e+5VvI%eW8U8fIdK^@85MX*vxK6^_6kW#D)D(zA0FD=te>M7Ka#Mcp zS@i@+2wLa1!M=byrhgeBo=b-$8VE61jBy#F=2fFn)i|74h-nd-AA1546A+VmV z5R~6fQ?I!XkWUB(rf|;Pzu6o>AY?J?KB*Q|lUew#RQ7V+vzu&I10xdc$os|F)V3dp zCWnToNeLsmtQ{TisZ(vT@TjH4+V#kOi(D${rky(xDqUL2x*t22A%EkIOTV=*BTKAt zU-(3?u1Q|TIu~%-VD&u1xD&l5bWutPci(e?D!+;){zwc_f=50r!-S#vWVzzSD2d;* zU)jIxift{(M>A;zuxV~$f}WJH)5F?1b$fE6+@ab;!WP-( zmhNqTX~AgBCJaON)CC?mltv3~X8p%0QJzd5bD*PH`)AEA`KPtO$A*TZqa)P8tuj2q z5=@!1#BN`c1~6z$a(}34DHz{dYg@!l$jX5(ioy7={Kzd8*R|rCxs3{Xf#3oP4@)Ri zsSpp)FQ(AEZDC;ncxr2PwKLkO#(mSxJHtazIaxk2MU~UY$OtUZFTVr?8T;f*o16t0 zX5BG8wjh!!Fn7seK+tmKA0HnlCQ=G*b;XKwAANiZEGM8>`R9K9cZDS2Ii}hB|O46?%z`rbz z=vXh}?j#O7&3+2>_VB2l*dQ7yCV0Dk3!iBfh|bv9*y19`NBy>I>d=y+B0HdLKv3Km zv&js@aS!N_Vv}1%Nz!Cd@)O+RR%n;Qptix4)~mA(QIDUqv$Lu{HPhA96)0=w6*UxR|dAtxu2Y0g6Kdov|NvF5_+tqngTfgk$`|~=x>=S zw&d(dV>)tT37||_Ss;+cE}=7}aE~FuwzZR+o0}seG_6f8+ucrXZbHBe&_Kc7O=##9 z*z=qi@^djZ;%7NU4YQpboCbrh{I~0uXMv8ARJ?JYHH`xim#S1Vw8p@x)1{&CmO>PR zL5TS72>_O|FDzA=5tAX>t3e7#dKW6Kl2ku#YUwI(%}RSkr}rig5V~~nA0~W7mh=S; z2mkyH>yL2KD!BXpy40|sqHNK;itpI#I|}vjiEqg3#FF|oL*XA~C0G7OP7ch30WVn9 z{KCh&e|gq8HsFHkI^V-j9Y};V79mO3Qbd<4#LRdg8!LTV)%TF}#a$2lZpfl`}0FwXqT+4)Q{0$QfERi@X1~avC7n{^^tX+&5VUF#9y>fuv7nf=Q(^>`K3tugtlKJOT3nk^Gl@85l#JwS)#dZP-t zbLmJ+m`FE`*B>dT0vVEn@DSd{yAzvC_#E^Y(O)Kzmep?UPTc0lhhfA z;?|^Ck|s8krkka2_#csRY`xRq{vHQBsad5%edfNez>QVGx12Xr5ITdU@$41b9iKZd zL3@^DF&=ob231ilILM}qusx4k;~xv%@oSZkkN^y?n>U|aWj=2aFPs69dd+~S@vAi< zSHb&gTMKrsv`V_3{IVQN(OSmK9#EdSVQu@|X#v${xuYpM*L`q-)-RDqQ9sKoAv5Nr zc>;p_?Hy0C(s8YOPg0N7tbwD);i4YPsQmu`KFjI!D1)V&V5mz($C3!zdk!8SnzGBi z$`7_=fU@Um>D!H)C58Kn7?r&#zSA6>4_Nczkx~v$Jw67wyOfCe1U-R#` z0PAC*`+?9D@LFH1oU2GS1ta=0R7ONT8C@34YWZKRq8Of93QZiLUs%i+8;-zU;#&D! zt$XGqwyVWVNucZ%TRzoh~^r8a!Z*sbSqW=f8a)x zoZ2Lf*_|G{kQw&$mPf!^Zf9g<+~ej3dy4n&-BUmft*^t~Sh(jVCs#eihAN_#iwZ;I zdlvip`T(18r^=BfOgT{L7^2hkBvazGOd=e*G)AR^rVC&B^V1=-vLHdZqnzu#A_hGO zoMwCv$5nO=uv;MfT3d6@x#du60wMzJl3Xoy0s^Om)!?qLsd?of-e#Hfg>H)InFVE0 zAN>~2cH@qLIeS&QGTLC|g8z$CBMB@-=Z)%f7Z;b{;9wgYxfITfexhhbiKK5OWqk=C z4R?13s8l@a{PwrO3c=9Nduig6bcSc)V{+G5*SbSycUWDho<4mFav^3r9gdo7ZcU8Zkx2woKvee=F1Qkbjf{D&eN zMyj$MNp`m0VzBX{Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2^S6`65%?6+yDR#8A(JzR9M5U zSZPdLRU1C%%)NJ3n3Yms7&d`wIz_A{R-ma>XiHtv)Fwu4T3o8B#Kc5njcJSvNmCTp zA8oAmNBvW+DQZ(ljF>2vP(V>BrBpV@nL%cl?as`d0QqyH|gR=fP^*s)_6<2T=Y6Cp(4Cqjs#DBpeeU3YgkLI`mjcjn9)jPdc~ z$Cr0~^2sN#HDsW1p)ztF@_uI6C;GWy1K&Qa9v&9-o1MfLMnui z&*$5+WlMW|`-u}L91aIY2%R}|W@2K(YPCN9{PPGQa@SpVA%v!;rqby&y$UOe!m_L= zibswdnV+A>0CnTWjqu;#;2_5M-h1zrW!Y#nE-o%!ym*mn06qQm(_LL%Z@>LEygnfW zA!INZv|24gHl$4YJ^mpHV_x<#x5q%ks0&KD(?+gpkQ(^7(uhE?nSwzN@PXV|?w}H9-*Gc;k)bcR{(9Mx#k4lLrqT zjK|}D|NS>wd2gJ3K&4V~9Jef~wzk%0vnh%qisJC_a8*@RSy@?LUY@~V`0TUKR<3*M zsi$gdYei9f<&{?uLIVQ>J9qAk#bUB7ueid=lP598EX&?<%Pk0@=H}*TG>S1co6Q*G z6+NZXX{}aUT3Y(YAAcx{^2HZlcsw4S=LZG`2;JmxIM%LRJ2NwbF+O?nq~Gt4$KxkX zoJb@R%aXdgyBUT-2+hyWYqi=`Dm6Jd`N0PtAcR~l7sImb%P+rNQc{8tl4Y3?(%RaJ z5P}`c8fO@WY6xR2%d*?;7DdtNbgpc|7^~Il-rnBH$w`FJt+(DfGBOg4M%&xl)oL}U zblGbaMS(+y4<9~y^r*w(c;bmCWLb{KS}k3SxbMz3DIx-5xd z7?x#KDpjV`Xf&!Q3Lw_$bo4XWG(SIIuh%auEckrBY)@%wYP#c&J5(x_q9}@@$g=#y z4?q0&+i!6G!w)}XS=MAS#bU8bmo9zv)mI*mhn~#=``EE#5KZ7>ufF~_1`?S>#bc<^9DLjyu6 z5{bB6uJQ44X0;%L!C*8RL1iqc zC<>*(`uh5Uf&z@OD2i{r_140|LKXrB2)C}TuBD~L;c!qXu>5{Mz^SaP1h1APX|iqh8BHa0fq^?Jbx zIyyRn!C*R_Rum%a}p^b zM6FhXauGrd?BF;K_?<3ElH&0=C20siki~JFPNyp(-ctNCIuP-kz*Jw1< zf(W5&*RCxsEg^&wiNv;T+b9jNENd_r6h-Oj=>bAsamb~mrD!zz%rnn`IY3ZdT^(d+ zgwUEbYqoCP%5j`tub-Kj`S#my`}_MLdYAJ>=DUoIjkUG4na$?>{CtQwx7+Ra`w1a} zAUyZnbFwUVcXyvUb!u*IE|ayh9-Mja}2Op%O6-5b$!!DN#Jf*m}7#K1f4hMt59NYl4No#9sb8~a1gJFzA zp-^UV1-Ad?mtS&{48a)dbUKD%G7}y>4A3Zk$Pu{(Wp2$}ilSI77Fr+2VlhdQWLd7P zto)yXs4QT9TIy&tnmg~j6F$$*&WfTailRoNfgGD%Eng(%)HaU*N7zYA@a5(Ju`)6imRNybrOJuH4DAeEI z@9}u{@893s+lw(CA0Mx;uQ!=YsZ>gmBvBLzA)+XT!{JaUq`H1Ca=YE%fB$`Zd;93< zC?VvhpMEMYFE^XbJkN`wm`Eg|(P$_X3WY-dHXW^7w+_MuA=J>&uxZn#NF*XjQY;qp z`Fx9ui#L(iGP$*)qN1v*Dw#|ID6iMM;>R~kZPZaDNy>Q*gcq<1+zMp7ocI_9Jd6;c z*XtpKp-#xO5R=({XfztNS`E39BFl1nxF8mbLB^vm18rPEK|yAXM~~#?<-w1NqBtB5 zj^kpn*uuiX^z?KpmCC#&hbAl*OHECU-EIfc1|QA5128QuEnU2LF_B0RLS$K1sZ^3A zSuB>FJ9pY_HaMkHso)KvA0mW6={hknaplUDWHL!#=6XdoRak3l>!wYcAWc%u!+EIT zW@l&5o;@oF0?37`u&Jr((4j*{qY-ik&+}fdcXV|0*I$2~pPye`T!fvJlyVfJIhQ0! zy}i8?6BGOP?bB+t&`i>{0`{z5zuxEb_4V}uAp+v5sVPwuEf$N%;~5zl`TXgqao?p!z=zD|hTgofyv zot+&S8M*uJyVL1(Rt7`}S*_N>!a^wC0h3m%y>#i)xpU`uo(EemH%=Jq_4=ZsqRPt3 z($Z4MK!|FY}~j}r_+g|m`ovMd5E zC$KkwRI0YNw(Z-u6GEU{g@a(Mt5>h~_4RqZ-mLtoQmLRBxgH>c!Epcm z_ct{)S*_MgyU@FX!Qk-la3~alE5Qm|w{G3Kbt}X+oo5JwFfcIC)6o#oI;B-16D`lnL%-NF9=NlRtf}#}6j}WS-Bp7C7NYG(2ttU z=F-yA>gsB{-A;LVHSuId6K&`zVyo2({0Rqv*=J^E{yj00>om^SsXz!JCX=bOv~)GI z(~zP0VZ(+EI-TyO0p+|nE2qL|u!YfR+_Ghh*=){COjoX4357zUC<3(rxf_kfhaY}8 ztNp)TE`uSTR;x7{jW(OjX0utX*8Kc@P`e~afCHFtrTHbqYPD)Kn%{r_o!SUAR8dg@ zaZYDGMMXuMH*fZMJgZ47$B>8mP*G7)ad9!nap7=yZf;eR?!=4>Lf7N#Pqs;U|r8*jVqHk-{hIXU_9#~%j*0ZK>~i{;TrAFZmY zqQfkzW>{cQ7!gII(MTi`4u=DQz)cheS>Wg$B_$<0cI>d*?Pt%Ph2aK;URhbWd-raK z!yyPlJRZ-SS-})7olXma5RFE8p1--a pXK86^K|ukS44$xJu~;w|{11R=ke$IC&j$bi002ovPDHLkV1gp%iu?co literal 0 HcmV?d00001 diff --git a/theme/shiny/images/global_bg.png b/theme/shiny/images/global_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..1c9af189c294e614b56fdbdb72b32fc3f20c3a44 GIT binary patch literal 403 zcmV;E0c`$>P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf0 z3LGLUCdpa=009$8L_t(o!{t>$4uUWc+$LUqf-m9$B)md{;)970PG}3E1xdVGOqZk+ zvl92%-Pzer+o>w9g{HUIwQWn@LS5DVLRprJirTMGUuk+g9lfT@*fmWPP=N@_-$8hVu@59Ni>%vK+O*naf+#`|3n8<r|WFhqkD5v9>!?hUSvJ-uZ_P0%9Fx&U?#}a#_kI^2 z@e$aE*|TTXto6RXb%MXjh@+zrqd*XZE-4`@4?)j`APA1|#dGl4&IW}Vd;`u-UR)R| z9e%Y7{_|W8qHsxpUhj37!mPB^xjp8n!K`)KCTvuTAX_xs2;NBXh*_HYU>huzlT;IB=Jxw$zZ zcw{Q9XLnUE{~H|qnQS40(~Hpo(Z(*y8rVgTE{vAR&kPQVKF{zafeh$kdw31(ehT%F zKZi!qMz5lU`;H0Vf-ZW9MP*0OhDP$;U#oc|*oJ(9ZiaP@jM)Dh{GyX+fr9g5I7v9A zf~V)IFyvjK&s5LOKK{P^X3J0awJTMJiqkFvMr3>M1^KoVf&~x?RcsPMIRE4Qn z80c@z75=O+KK34bXD_Hj>NAQoVQ$}WYtgjI#YI1HPW?Nt7hCyXE2~-CDl31(XLC}D zg}L;hSnIAT=*yV$ey31HfPT7NTbchnzdt^1ZmvbPN!r>PGXGq>W@56l!G6bWG24qW z=ykS%j6CRdyu7sh7Y^$Pm4=RvT9`aOHI*w?;9xu#wUL-ODeI>Ey%T#F8>};Mu9J7@ z{^~GU%tMKJoXs&1lbra0$=!BWzLNQAA%-Th`{8=Ug~@ULdTVI^&O`1k0wn6HUz%51 z8Wta~e6iP^-f&BMG&uO4pU?OFM7Or0aJRfibfr{VS}E4(8|)YZq()6>(- z5T3l8Z{XA*A<8!x1648NMq8;Y{JA5O_NvVM;fcxbZ2G071{&ZuQqnni{{0Rd|1#|s z`JK^B%955~r{xbt^mpZ^6M3i4AXjitd{Blj5`!J?DFKvWK3#0y;iXY)@#~vxjVjK{ zc&DhSXjEQacZ2|zD(RayS+x1}){FJO?-#6bQBAlgcLTPz@EahA!)Wkt)AvZ z>O<>9{z&bWAGd|)eBiEYl6cvAqr-mQSR&gx*~IFOYQwl3?T3f&sQBM6OzIgiF`WWi z9xLlo{>sX>?q0z1aH@d(Kth?jxpiBy5x6Nh zN1KH?CY#IFz(6f;4ui&mGuf}y2s%EZWcqdKKyZoY5a$Qm2dczpVuEaSgZFs2B?V6dWQEVrnaCEulqb=ku;Q6pI z;De|vyfT~jqKciGCVd7GQqkk55bpVvqSa;p5|;LlD0UyI5|%0^_eA)(~-$c46Du$L8>5-3*aMGv88grE}nlFhDiK!Q0n-Fg7)ZgJ+RFlO!)A7m0v>ZGf9HFFSL3^sVZ%qc%t+mE;5!jO6*`N$%y{9rr zZ!X%O=Q&urJiC+XSa1_3&4z`2TNiUW_4dxV^IV`!;WYi=V8cL5+uJ3Rw6n9mm)f}{ z12%()hsOpVwHLd?x$)V??(M~{u*fy$nqTc|XP_K`o}}dV1ss&hs%y)feWR_tU=mUK zj<3|y~OEKmKYl4wevJK7d^jP9y_@-=_mBGJ|;ycV16)0 zgI;tyd3wHY3U`Ks`xriW;<)twDf-@(?- z&YVT3b@BWD^b$AZ&1J6H<>M>zLdgLh-lsPZlL;-iHZSk_b(Jx7`pId&Y&!k-tAhr7 zBhLH#AIZF`upv=^Ge0O-@Sc*SiU#5P0(I?(h%&oOmi~U5yG4g{=5caN4&; zhlVbMT8B?)d_U66O3U4RcmOK_>#vA_yGgEcxt|}Ex{Atxy*16-xAOX@Yt+=K>M5P{ z0}1cruaVBzO$9w466eQr2l^qX)?$uPOGjtL^W<-)m5S7<`4-qYp)DMLnjgtPn2C`xA_EE0SpS1N)3cyc*>Yo%u3cnNG#;tFRr zwy60;*uk6~la-iU!IW98@_=ZI01t07oo9sp zdSU-E=c&WrYfJZozJ&!9zgO#}0^}{7{2|Bb_^PaZE#eh#%JI>XTS=Jlo7eQr%%v^d z!q!WTl13wG9$bU-*l^J1vQ=165M>esVPG(%v4w!;+oz@Za4_-o=%%!|I30IQupSf~ zoQaN(?nins_{+Id@JTgspri=tl?%aqZ}X-fg0YO3L-aDZxBH;OrUyTV7rz zYO-l*uBC&Ah>3`%L>D5Ya#B)K((R(H4K~>JwEa?-qV@DV&r}eh$t91HR}Ai<_;a5j z=x%SSC~|P^@wBI-`EsA9IZKuV2S<6P&ns$@n~Y~zGlHPHcbxBEeC!QQ3BxGSxomo<%#r%x4-ly&wBM)h6XF@|mBls;DYIW~Z z@|9Ap<$3J&=_&Q(5(oXv$P19AD%sg-sB|+9PZla5u;|Db7QEhAU;m`8vEZty15#N{ z>y_#9+^DSWaBEYBh@9xap67@eWUrDL*S2bFU%^^xYHE^~(`eD4uNoRn9|i@zTB#j4 zlX&d{3hJ&S=#{I%hkG|nR^r{`6WF)UA@8H*76pf~H}?OYmB;;Gu(7SQH+j}Hs{U@n}(&}%X+S=MLp`SME-6-SvV>2_x&e~fef&@X&py)*B zQe;#q$%fG{OOw;n4sI9i3k&Auv9VN65)$Qa zAL|SU;y+i=yJ;+_psSdhzjv2z%7UJsAm)J&3}u_x#d$dzmCGENc3*vj|Lx%5aBI3fw_LW;Qgry;K}+E| zQ~*MhBqZeT@81wf`d)kFMSfJ&k3atfuYYPBS$J=HFPBnSXv%}kOh?zQZ*5I;xVib5 zB-iM1e`WFvA_mc;&D=5ucBEw)7#gZUM|KPjaDQ&Nz5l7)q@OdA?YnVv&` zH#a}d&(HHFVcy*zE1sXss@Ga3Z+{~vUrFHqB{iJHrC|Tyj7sF>6p2IegR;Cjg~9b` z(Pi&$c*d#eY&i9aB{_M;3l2KDSY+>=ahhQ;dgtuo5>;C}%oUWAgP>w*xwL(9^30V% zrF8h1PK!aAF^11}WA?q+AsEQ`3y6Y>Doo}VyCk6wSmbdGDxU)b182(TC1*O3R8>`9 z>)PD`QummrN=I>&b>oqVj9)d`tr{|)S0Q(GS&vakwaPV4vcTka$GY4^2b)Ozw z)`EkL-Q3mLsi;)9*Se(Q2$(f3_UIz`-QcUI%T`nwnVH*_baceC=MvvLMaS=~~BDUv_?G$^ktb>*9Q&u-4^#nw_6ttM%c*XF6?sW4lhF zq@m#!WV0;dJ@FS8_O}A=H#eKN=i7%1b+GKa>lGL)Uc}nknkGnu(?PW6#2QB+L8f9= zIe&Wj&B#bhz?UUM$E8yh4qAnW z=uoKhR|e0~3$Xn-e~bA1`c?7V|E%612G&fhWfhO+~ln29)siugf$D5x&qijOnMU|Dp{u9;O+Q}|$G$lDCiKV~ya<{Gr zF>lk7ikq8z*zfMTEd-_1HMjUcYIPUD}^v8DeBA0Rqj`43B3I z-&1I&kViP%11XeYJn}XK?$-H2cAvHN8!onov(_8q!bkD2+6xkcWWvujql9Nl3ZqC zv$M3=8XEU`zRAhjH0%{`9s)%1`n62={Cu7Y{^84hEmDrEDE?O8$#v|FcHjH%m;Ko+ zsmb9^=n&L5e#5!|#1K%aG~Xm)?pN#gJSl^tV6nmO z#%iTi@?0;y>E89De8+WolgoJ$AHVE>U0wZfP^HP(n!55XH5FCi1CQ-SqWr&;zWAo3 z#L`SPcd0@@5JVD_JEa zeM*WKVMg?M85u#Xo?4Q2SM>b+(jy&uI76hH3w0b};*n(cHw0@n%d9P8k=ZJP4cImM z+p#y5(>am~p>ElXSy{po`jqAx42gv;iHWrSU7?3M*Gi99w{KePGA|DXhLUFr6>={w z%*D!dR27m3++vrbVXwZvH$h*FQS0RqY(J>T( zO~EZX8pp>&t&N{+wxbrvDS{r5P)|6CtkROY>X+Vq#cgUc>`f9<51(#5GZT|?_zJTd zwVtgZvS_Wm*029_%3a1Uonie_C*gPHgyl%C-~L$NHs%}pPdb&a%Fow+MSX>Hx245{ z_`Oml{fAe1pOi~AnLodj{rFM4+-`zfF)D^#vnk$;ijlFm=KE@T89rnA(ba#$75b~3 zZ>LzR+%B9C4-ZA*prtm!V*dz1tUtfzDYHa$bRz5OrkWYuX43edfF@Dj$QP=stMz;% zDx74AdS~6(*tiWb05kr!`CI()<^bIt_>ubJ!sn1ESOIUB!KwcI{`QtfRrO0w1iPte zLij9GWd62}(uHoF^@^3ORMYZsgnfe}Q`~PKknfxQkP*oWSkbSh_}u1xD~}Bc_4oG| zMr(_S#fOGh0|95uD9ico?(PioF4jJj??Q?E`4gHF)a{6EzCPBVpr;q!oh(Gy%eDy) zMoxmf88vDvD;2uRL<%Cp!^4#kAp=lNI&kk}bS3aG9ahR|Yd;x7Lh=eMM1OB%Cq6Z5 z>I`Lyh+H$&*VoH!2m1Kk|_tYW@{bLb0Yw{I)wY``V<#t+;Rn+MT1~c#Y5dXOqNC*%3ty6wO6t#U zEjDo6)sOj#(brU0{~OupI!IG!8=S0v3d@f-SdH_%S-UZZgeIq^n!;s(_T-d&tkW1P zoQ+=#N*xTS_v#SV3lE*GbrrFs+NVut=ZF7_Rc~GVI5;ySju8o4>)Nmi&|}uT8NqUO z((0@XcRV~RLxK!u%XOD>PR}-r($@FQ?;Tmxq@~e+e@xojt0PxkCBVYU$<%$kb$-FMsYH~(&aCF33w@28GLax8-VcBo*Wl9MT~7DI@GS)W%uS4JUl#5QOIA2XCb0KVF@_w4Z4Zl z>gV;$X5txdg%(~Qqg^O~n>ye3B(wZ8Y5yV;=m<|iLA`m$yp^efUSeKHi-IqvE>BNs z9PpVRs<5&ndnbt*kdHU2KOg*U7eP-9=D~MvzgiNISm#zrqn+UU$b5yM9xd8O!6$oN?uP4&+G8-ckaKE5?^X80yjEAAfHmz6~Z(T7BT+ms`V+l;jM8f^ASzoI@Kw8(X{g61He? zYMLKULpSnZ5|(dxWi9B0Wymr1O&i_^#HpHcgAgFh}yhECHBbi?Wg;n~=AqlycJPasU zEZN!m#BQIFqD-6X>s4F8-knc7k@JFEcsskXVNn13_i|;II}m3YLkUE_p^K--`(wTd*VZ3!t}h?keN)tx zZ59_b4IpT9{oaf=NPz$dM;am`sn`3SpJD~Nah)eDg!FG{SMi{XhzN#B-agb3Ts%CM zwr^XLL0?Xk6q_I5?YHK=eNhz{rOO+d%3{z_<~8_7b1*q@O%J59*xT(`0+sj1x}LO(U?*jFwT z7i_nOmm-VT-tjRfJQqIK{y+;+XlpN*5$5vSys3pdzrVYqJwH3k63v@_^XAQd+ukhZ zp5sxu^--O_!+8#1)=9%00JjO$;j-SU~^Q&d92 zHZc&2-o0M^@(j0R{+qQmdERv1iE{WXqKgY}DUUTDmo6wd)j`SGRb>ogPKv$Ip?nbi zdwiU~w_0&~nKxxy#nLyCs4L}z*=uZ0|K5$mX>mReMTu6A`I(J z8)Y>bH2I-XXT_1icf3%iVs|+2Fw#oz_e7JClQS5Tm^dp@)-}G$d5*^rFL`=;YU3Y3 z_SZyfZLLy0eu6XQ&stX~mA;EVGu0^uAAB>UFfN*;^vD&XM${R%w)ovookBlCShDjb~Q z$tbO7E8QAM_jgA*GP((j6$v3>VXiae)r@MDs`TvaTcl#XzkbmP`k(#WOp{cd_0%#p zu7g)oBPy+}l@+os6>B29{XZ5UvINx885}3=gI};RzpC@~CQ+=;tlhsB28EAN<=f}X zKcBrorUFGdGCzE5F+7e0#Sa9WUO2xJ!-@(r5}Pj))BnC;vgs4d2=Z{RT)tasMb#BO zfy6~GiXVPDE~A85QkfsZu(4_xwa z0^EEi;Lxv;W1qBWS z=-al;F$N@benvL1vrp272qrLd1#ZPyN-FeuVUc+oJoM*MAtgQUUp|KgI2ww=VZ>EfEpp-iXy79>O+4Lii-@k~MU6p7jkd+?rypQa~r2 zR%hVA#A$IlX3orDVRZjpnyvq}9|g%jni}&DcnF=Y7vBrh(=lO_g%eacxw)Hhv6Gr|+t7=#POJgEo>!Ybr!&)Uvf{LlMhkX$cxsi{A8p2C3OAJut%7)lWH@?BqNyKeA{Z0lrh zm!Qk|FT^h};GlMLo5}OD`L{cVhaxuzkC*$VA?rP|dUqi!n*#)!c`~WP@ebJo2?`q^ zli$Qf_@tmP5dvHq&lQzTy+B7Ci5s={8K=OXppZgaX>+~f6z}=-Cuc;4SF6ERPFqV$ ze>8zbN5I&~D4toXu{lb436HMU`7}DJQ+27kI zfqlQ0#)7c+WZ}=w(g^qWN%)QMjywFRZizUII21YfoxjT}eElk~!^WL~S7`~I|a z4V!*<931p;yDhvNL$kinO2dDDh4`XOtEoa97x*{idqgD3Tl(y~(pvOHr%Kw-?DRl(@K*WRTG1Ww`BJu%LeTff+@0z0(TV9+@J6 z3443Q{LdkKkWjlr-qVxKpHx>JoOD{e`Ky&7cj6m6|mm4ge7dx+a7Z=6zxVgFES%oaMqmH(nz+n;9 z>IIAVsHz&YakS*A2Ws0%Ubm|Y3gumAXXh^OZhAAkDU{8=nA3Du-`cRS{iGY%Oj&** z+upwUjFkl(WDkVehl4Be40UrZCIsjLP%gw=T-Mm6q`utfXP+@5W;B%4mzT zW0ld6#}sZ#e?Ps6re-z%^bB1r<1>ybY|gE#qs6{S60ZJ~?;^0j?O2jDG&A#0R!yGi znFa=nqsDkNyu6zVdV26fpD9>bU%b}{A5P{`aT+8H)dK{8d-E^#4@)%zD$xQK6M5lc zDdS8Oe?|gt1wHm!?*0I^3qV1hdtp=@9I0k=m)9#^1OUR==w(B^*p*Ee$hC((rDpP2 zYaeq{sx>)!0C1zQkZykCAklthKsxP1Fl;y#Z5_yUzlt^LlylyXq*>)-o?k3}(fYC2 z;x>SAJ~PGjW+fRILu6!GC&@h4+%_Tm!>L~YTE#%$zq&h-kFHw(Yc9xr$LMyU8H-T8 z*pYhDQ?veO&S{GZ1&&}R9FugDg7eowQrssZum(b2<&Lur%U_=#6=}0W_$q51R{UwYmqPYaFVzEoh2h9<$iaIto*Z*3I=Ke-c=mc0{?a7WxD!Dywmh4{u=JmM9x-|au9 zCpuH`cI$|PpaE*Zhnf-l1-1bmmz_rM=@shT-JDQk4~0>!CiNS(%tRusx;j_ zD#iHuIZu_H!f5k*uyO6O(9S_Mk7A?l<>~npF1mVf;%a5JZ2SNN6vc|Wxtr}87WDIQ z0GpouEKwfNK=<=CN7k(~1ytP-GR;77Lr2#I<8l=AhkB`@a zAQ$-ZCCtUvmh5_m>o4F6d`Vv^HzPp*()1IMrsG52-ric3Bs^AyM**`B`_T;p*WlKXM;zpe@z`G1j z(UIIEu-GPn`U)h(=$P{x1=#^=8XED`O{ZNMpwtGSvBlAZ9Bbs!@j#aDr^GGTaBlgxw&8`%ab~wH68U1y792E zG63(_&`{q-y;5B*_4Wo9LnG_9cGQ~b3VRyu?(Kb{1PMiu3oZ}Rdbqk8-Gh}&gk5tu zTcO`n@*+0&Ia|(5S65B6!ktQqZS1!TCfZ(|AFb&yun=mb;u+m`ft3h&m#r<#Ka!px zwz|O9K6Md@ty~{tT2htfUpPWSdivR1-x(|@2?*+D_$`|*_h&+!O5jcJBCD!mZm$2% z2`pu{IUO$>4+^@~8e&5kz;vCQkoreMP=4mI+p>S{{=tZui>pLhUOt)x8jX*S1ok_a za&)4unbEK7xtO6Le0jt4>Gk!5NikBYF04FGN3VdsBbyR5esQsQg#mqKDQnxX=x@_dUNNS zsO#!?7F~Ruor*x@QimW?PKh5#Mb?AVZ_~KHDMbSPuv>JMj7(!W4TMceax$DsS!5HL zjYo3?!Clkb@^W8k-{*9rDL2?yf4ASPVS;I(KLDP?M1fNw1{s=?ZX6~*=Gp`x8_gzZ zJs}}noHhFdMjPj`xho{aAG`b|E9c%Pv4&!G?@3s+oAsPmkVh2A$VhU2Y{^JE*LgOY z#bw__khY>7>o+vHjV_W`RVLB+Tuuxn*G=1B6$blU?5?frJ9uyIjvh5TZw=A~;K}ss!>)iJ2 z;a2n!I9=Ot5Ea#by8vZ*nV5vJs@60ujXW^1w4}w(%v_sUc{XH>Px6!m2pqw6Dz8tU zT$tZ9->`Fph;-ClpgZ+tWKhKCmjFzWp`pIM1^9(;aImp&hiLYIs2;aa*%hS3^pz>KY&4)|t)Zr}!gVc+Y6) zzcHgU^Z?JpLtsjhjF>e&&HV`gt?oBFRV^)@=Vh0KiaKhydA>^8VEPhl)$5#_-#Z-< zPX0=7V~>aJPS^xoxD535otF<#YH@H=x-X42#n9;6uM#xzV848+7@6!~&K|P8wsvI( zWc&wg?5LsQ8x&|1WMRm-{*h$-pt)g`N#n!H)8!0)l9HXWvT~%AhlaX(#lgt(@_VzB z2SAkDrLVcL2nZ+xjkWYqFyKRnOgcc;VY~Y%2S1-f89=RxQ)^pZM~5=NY8lI7VaRSB z3BqV*WHfwD3X6DbCOyj>dE3bEVe~>WW@4@hC z^aWn$A@DjYI95o(vx-`1uu}ovJdV?+u24rGz6>7T#gF1nNTKYkzh%uDXJ<_;0dyst z#SQEsMq*OZ3DFhh^&Z$;=f}HnOoSMmJ8ncD7^g0S3UdM)rl7hMkHXprFgf}&n1lLz zV`+#^xEaVq6Hf%2Ha`)b@ME*?(Ex}r-`dhLCUAs>lT&r5%TSu=*#}ZI=R$qhQ_F8F ztNs4qet^MykKbLAFf`r}T3SBd_+u}vt|CpTl-ko9j(7jbzzE(s_=b}ZHMooaf50BH zoU4k8apBLO9)=iY0s@ z8yYxzJ2o6Xtv0(wZ)SdD$qsIpx%Ga=hQ|+Ll7RKn4VVF18EdHGBUCKho_G5C!m;OHm9&+HGO@U)?d04)1ECB$(7C*lj zAkMHaLf&HHJ`6NEe$U@mFKDXmE2?Lw*HY%#e9*BiOq*+2*n$xipd-pSa?7Kyiz({bw zyRgyJO3me?5g}nKN;M%M&rT(IkfH*(B6+2gHI@U+005wXYZnuJHDxHz?1xQWZo;5! z=`#y(`ksfFx6&`4L;v;lHK3t}0v`k*e5QjvJ)!Ur4qy{ep`d~SLISc8pj4Qg^mKRc za71}2dVzJy0-)f(k@(r5PVI$*aEM(q(h4-erV7ES2?v+($dT&W`pCgnTHcq(BYMeC z9M0iBz)LMmUOeHxw@vk56q~hF^qcw?6C1mDrX;a|4?$)I2LDCM!nV`7Z;ZvT931un zxPb*az)}srpn(iw0gPKo6mh=MVF6gDAhV3+#mega+wSXZ;_t!Gk%d8sj9pz>Ss6#0 z>f4C}00|r%86FKaCg;7q#w}icCT{N9Tf##v&aXDk&K6%Oey`)wWL@yS3_~N*zdq9H zfBjnbQj3PWT*e!uUd6NXcO&^zQ`YYrWo(G_-rd|3(9?yun6cJHb zkTZS7w&ry<%cHA{t^L;bnZoOV-_O|gUs&ACktWU&9mwHZN~n5)REFW~9JN4Kkp?&( z@?YlD<}yM+X}9Bb!;Ki=F)4>_vcOo^S>$H;+p-CGXh?J0H(v_;zYhqw2~ z9DZ{WfdZ}U4QSR?>E0V#7MXvg5@7D})X zhJ)hb;_&`#uWoO{Qo<#L6GGUs;A8=JOXcXOu~ zq%|5Kjpu&+gUL=?I+B%2GX}2&2f1AAi~)kLC!B-8-dydMgcN_*))+~NiIva!&*p1~6xw@wuDPH;7rP4n0H0bMH1O44 zSzdnq56rBoF<%<^=KYMEoMn7|{%RuW_?7eJP+)a!t>fqw6FIf)h$a7#hMAe!qM@Oo z1t~OFXB{~|U$Z~pT7;u(W@ z=6v(FS6Ha2bDcl%^DwX{b%np;6%Hb;8H%M-5S>k&W7EP33&o&pF~CLgIWUv$w&1$lkRVBTH7De1-*>k`KI#PVU^4EyEFl5qI+g0 zFQ>iWC3j4u*iGk#?2|?15lBT?#4+Yo|1*i)qI(mSZq#WEsKulabBn%51Onslc6`cg0+cI!v ztKlF^b93J^Ut~;rI=W9v=ZMdb3U^62Vh z8NpS$zDP=`fXk;9n#>3NQ_%&*?$UVmC@5!(&CSh>*ZhEIHof{xNvXeg3Im!46F@II zYaC0GH3>*}fZ0E}v+HDI!*F`B_!}^|Hm4jG3M6>=_^Tkj&C*WfcRF&%g)%_FhUId{ z2~*gnaFDPD^~o*cmBCM~CdanjJybtSpG$P3hlH5(oT0%%MQ?!!AD<7HRkcpG>U2$d zUHy6wb)~kBOL2VOH7t!b*-h}-wMWrI#cw|yT*)E4_sHcgC`A26U<}M#!DLn+KHaUhL zw0g8piPGQ#N>_Kjy6}ypB#euVFWkV8OZEXYlM&)Nii*Bsv;VFdHLy{QH&m9sBC`ox zX4&0co_#+q37YDgOz-%RwSc{fzqJM8)fTYbX#X*4!^%ys(u`d8d6hmfhn3 zIC6)u{(oH^Gb@7SIXO9guEgJOPIMoxj|{yi=of(TB8rPUqUXMB0|H1IXrd5Ez7#?P zn0!u23A$H^0wXVPF1GAKrU;U~a*4WD??)2slu?u^2U}aZKNFyF*FGvXHdH$7c!qPO9ZcP^tdIDC>d;b2z z#|y(P^{a&5Fdr#u$$ls2#VKtA3%Z$kscH+HEvC$fpCy9q0C|8LZ?ip2`dg#!>GBmh zw_|a`H!(3I)QFGvsi|5-+M*qG1jvGd#p;{1b~~f1bzyfu0afHBBQq>+^e*TIIDJ}L z;rZ3oVY~0uK)a*n@k*WhF7n9gIq1C;`-h=l6XZ*O3A?qkCG$dn2)WF1{-nNlY9e(p zp4#34>hV8Y{+D_@XcG<6Y>b`%&wXW+eA9B_sc@&rb`34II2zpC)0q-_m3*3(RvBp7 zpjLL}0x-Sy!}Zk__ny3js;Vdi8(LThG$P;pM{gs6hvw&hI0Kl{rlhnq<{|bIAYIqo zG#8h^{-le21annxn+aOU`k&qB>%QX?P6AUF?5MU70YD|I#dlG;Qir+gYci{{78(C& z?%^*}uNfGmwB|uiZ6$oZ8*}?MB?CjJ0uaCbv0K2bDSedn5)<1B^hFY>FjmAeHlE2U zRZAip!y#MIes#c8F<mp8KF?&I-d!@_63&bhf7taQiSaq4lm zD})^oANDO5whG@+QTeGvW*@KcOdPm?h}iNgjt}67W=xa<{8MmqFK z_}QIY*MwbBblLGR!JzRA91|_AB_IY$OG__6*Jhxk74GaLI<;`UX>8yfI9?&Y z3J78*BO}XcX=%|h8mq1K`rO@}R*VSEHaeXDO@05Uy|z0KT$HM;wNC)Gpe+MHeJ4@p za?20({b|dL-?8rs?*Vu>RcCR^Xn4WTI;vyd`8-n3_DLF^gOG1B76!W3$nW{m0X7lz zmPW_qzd+J=SXt=_2{0KQ9a*zWGZkXH;r*F1rNt^^9cswCtt~w-(7mI*@c&qVo-N}? zIYDqHPTAOLh%43kgEkjC8=C?0UQ5t+a-Z?%4@Ip`XSV@ebZV;f)rn4yuL~1DiVok)NM~86fr_0Y!lSlb-Q^f4mp(|KkK3kT7_sfS*Dg5YmxO z&0iyc!jXBoE8cRt{sfigvwow81-JLv!o<@Pp~ z10WtNL=Lq&yhK&m~t0A~Sg@KTs> zJSu|Y`pF|zSa!UomK*c&*FNI;1I|}vGZ(w-g4bWk5>HN%AKBgVUi_>Zb3+IZ=iPH)~sBO)TYL^n3xIT%QTTmR#IeY}t6?@w(T zd{Y3~Mm^-PmxoK!|=vCiP5@UE#@_R21YxacP)d10x(FG0Yg+ML+*94!xny_%f%I^ey~B!#H90ufrVbF53d(< z?{|?7$vR9!gT>6_e9ND#iW3jd@Za^;C%T}V;%%@uNxJ(y9-Oi` z-4C|5z5}N#28MV8te^`?YmaUSm|w_$*CnO?A5~ugRaMk=dl3miLJ{dMDUt4y?k?$W zP#S6J?(Rl9q*J=PySux2+y8yv|Hd1`;c&>+bM8L-ti9G;bIwK0qaQ0HCYDL;HVfKA zX71PEGMb(M{t4u9b&~lAiTGzI@!`WJ@^e2fLjC30)>bTnb~6<#al4Y*onAm?x~$H1TL-}N7M2u{w++?o~>T1NEUDJdxngMe_kADLK# zogHNhvyTV~DV6nd4aj%ZPo3f5;1EqrOtQAN$mV$kmWUy3H`$-lfh2_KPxY0=Zih;l zR+sH+Tc!iVv$9f;o0*xmT|o{sgjSy}MquPwtriQkYppimve@qK!j-NrL(-uk21Z)( z46Fn%Val}EgXMYKnom%F6syRQ;TaiXS4+&-;FAi{<>Wlt zcOP0`($LcxjkUNTd_cis57+_n!xv6Q1zA~rW8Nm16A?>*HRH}TTlWLnnvYKhXUyOa zD|sz%^5Ctmk}4I|zT(wnp47n|{YwVFw;Y6TdoWRiTPzdMag-Hf%0}Ki2L&+ze&Mi#zWz2*4?TJhpmn_gKi=Yx*uXou_1O?gbhMt3VdD=r?w8(y~)lvk-6l%@``jR)? zO$=pBqj+=RKPC)QnI!0%OVHCEMKN9T5)zg-=i~%5>^Or3mcgLQ6SavFkwz9$Qde&U zD$Aa5N;B2liG22?gqOLhSB2QzAn)r8FK&N-8)^JDH@B;MfB#!}#mo6QLT@r_87Bk+ z+%{rUf!hZ2H2`AyU7uYKek!xg6srwk;JRj1^Y$~kT+GwhospwY`m`OSi3C73 z+Q}W^>6zM2A(MuhkCM(}iQov#Sjdb_C&tHdOzgw&x)VI6i|4EZjql=^0V(}_qeD84 zi>S1uL`1U>v^OLm5Rd}ii)pXa@d53_-_gvDVETspEPNW8!QW264uoU(_AEQg*VkEC z6*G+ooO*Ms>s_RC-f$@LD$k%{9`hb;gY4|7q>gPRr}l#TJE0^d1oS>mg5%<}!s6nN zvm;4*c;F!AKuYBu-l*rRfc7qIf1fJO1@qFTWAU*Tq%(j`@qutzFE5kRIqXw!E~TXWcg9#I-%IN5BmwJ>IPg zGAbh@UN7(gI(bm+>W=8^>6u*fWA!ClQ_f_I%)tUqy~}-x^W_eN_`I2s+m>AGIh^-n z%bwVLaj`lFaO0sgs4V<~$zrjoApISbz6qGvNp>#3<`!LS~vT0fK@gG)0Nal{fFCRU&@APgGPi=#^(L(7;uapP__^w zZT^rOzw&AXM~qfs9LmZXD2)a#LDP9L|6GwWOv#Ei7kM*VG(C%dRv; z$Lf8Y0dmNztjfH+ICu!5O!{`S{)coeEn4*&#Z|yZm8TN~ZQ~}j=AW^IE!GnovdZ|K zLUcQ)R^ZzT-3=i7gH`wh0wMFdA-?eAT!LtpKEkJ6OX2!!px7S!+cBfRwxp;nVB<1F+vEzJ>OH8yfv9gLBD0JoLf0jQ! z#y`2w3JV|vNrE#-5)l4}=Ccm6x;=+vEp_$iqJrHyW92JY$QRvqr)5B!s&%8ghl79n zdfsF6exnXJ7+^4i7`}YOU2uCF?G3bG7wAQo2na#D2Q#tS_gTpPZ|S!ICG?C!*%G*3 z(6(46V+_ntk582CsR2>v36ho$s|>LQ=*Fyrm6CqA0gBZo(cY+8z@qu++LS@aYw8dg z92hvRQ3GgNKNz2RpH?FQZwl#xf+9Vi9$SD3=(i1w6_(4XR_?FNea^f^t$$}1 z6l|RD?V0`rOb+Z?Yhz4vb90-uR-ma?33>W)VAk(lPCBPl*z>gt<{)JBFLE0jzp)Z{kcGr<^MFJxVVRnnrV%0oY0MI{$t;$r^+0sYFF(#+4NTS~1HP9dzJ*0e zV)+KVz#{PYtqiX`uEV&B^Nt#aEz_7$l6Khp4kOi!G6O`#NhyhucF7coh~*5BWj=LC z7$rLYEQlc&j2X?~&uwVsEj&OrZqjr=aW-~axob$R>R~=_JY!fZT?h>R3!Z&x0u z;2b{O17U&gR}bQcP&kofkx*=+JI1@Gd}-alfPn8B=*cmcJs6eFIM^*VxQ2uzBoyr| zJ0_u()8`ErH@9ce+CKn)yw0kNQ;}O8u|Q>3oPK>>Pia1XO>dw5An`GYK*PX5qv{o; zb7<(vyZI>qW20Njm0hPT&%ks>Rb>3j*rvOm6WEWQt!;n*>{9)j-?2>EPnJx ztZ^xLnwst)y@)9g0#6dK0}od`3Vw9Iow?D{Lga;l5Yy6jBrx_Uowu@(**)DGPJbwA zY&7Sc$)$=p3YR`ZHCet8xM1*a!291b$(mroB5^S$4v z<%sc+3EyMY=USbv>N=xQaI_q+c*ssaKlx)XI8#V^r8@vx#4lqiRVgXWPYgER?;(U| zXK!-y@_@sQ>d#34rx({;Bl`G@l-n(|d3oD5HDic-r0+MZ5R;Jj{&s0@-nnSb`zCi* zf$o0(A#Q!-T=D&ThazWZ=Xk`d;)@*xB%sI~+*r%WAwA&W;AkfAC!wVc1@v`#b`l!p zK7ao*l4dkz85!-}siOE2#f2908EJF^0_}E_D9Z&FYFf>PU+Bz+rlv$G(HBj=1g@I( zQC2KAInVK%u+^WLFCXqR{}!u# zelI5015>H8F<&k55%inLa~{Ce27y2{RigSa7-Iw{9E))+f3c@RzsF&VOyZF@tB(Y0 zsT--V&@2Rnp#P;T8M&gEP}Wsu|Lpwyx$Wt=JG97WSy6SCDy{3L)>;Aw!mQW+`*qO~ z8o8tq?d;6d)Y+vWu-+3C5fNydY0c+^5CTsz16rT1P74*yrdjp4*{UYJy^W2BNW6GZ zVKTHjo&9pw&?x3`na`C_`7ZdA=G&&!)+uwCu7$3y9P@)?%ri9pGpj{_?4~!t=)R5z z9A39KiJPS4pF-fj0q>&a@}OIfX?dHQhKM0A1-v!dD)<^*?<%b#BXMHu_E_~gWh)5A z{AOoU%@9A*M69uT$d8{1^Zz0F{8`xzWVrQ*C-Mq1IC;6LtP;{Zf8A$^LNMt$tlK=H z^aQ!;bp?F%WJkr7Cub7q(GcL?ViHbAVg%=}J$y2StgyvLMd@rU)zVdLKG1w^2^%d^ zAuHissO;|QDpdQHRK$?j1}GY+uf@d0slvinRC>~+MMPu@ayHRL9>&LqlYvlj4Mq-+ zLK=4}jlSaw>G_jE(fN2T6yU;uA7wEEW4+qP%bhkawueTmh$|_s3>8O;5&&4!4XcY_i)!@JjLV z^g9678R~CwSoU9d&TZ{dNYkQhYTlI%fo4-kP!LK1K0CH`W?v`phKW5oJY-6cBu9gI z_PySoDw+|WDOr%6YB8$U2F;sgb$5I5{Iq1ACAIZ%UTJq2NS)h*a5%rWA5U)kjfvfz z$LPL)nHLi)D^I( zZ-N4;)df1m-agLQd_mw(l@zGN1}bX_;w-IsX->EC@2cGrIxg77OWtJ z;@F7woCrn!?^kNk-))lqp0`hzA}Mg$Y0Yz5 z*ArCSca>Jn&q(fw0@*Y?5)KO$MyT@RXeRXt3M(NHA*`YP3MZgW*xSRPsh_yJzjrGr zD}x&rDy>MUSdk=;p1R)LL@T~MPh`|w(b-Dmm`Y@30{Qam9wc93VLx$*Cztd2A79B< zun#NFlM^rlEtarz9l$aDv4Wc$qX{r0K5Q%YM->z8#8U6E%uZ;`$er-a*3kM;kRse<~78lZ(o|5bA5- z0crN`-Ow*@Xy=$n?+&Lyybka|m=tpr#DTg8W##M4dg`O=v$JF2wD1pxEgMHq@!C_K zOiZq<^XAi!pL>zgJt;;QjfdTz+&N6@ zI6MNbNlu7_5h@_Ziyv@a@6nsg4^p4b7%1@9s(~oq4mEsHkcN{gZmF@bAnq zi|s)yc^p>ZAA)fpz$xQ~w*cokNr>m_D&L?~-q_fJc>_ypx`qUcrJ*62`SCYN$xDBY z?JF5?rJ`TxuT^os3a81W-giWBYYGUEm?O6|Jqpmqg(WbXBaftV{L3!tz7tL1a-Z-0 zip|f*7~%LT)~7!GO;1x(bK}OoR&~+7Jrswv;+B(yWP?$Oz1jZ2K}zKm&}t^fi9BfT z*j;Z$mmHmOMt%&ZgY{a_iWWL)_&Qrq5L&o+tD>l=XV<^e6^v2rPMS^($+#v#;Bovs zrMKSMH!}Cpdn)cTk`8SQ@Cap~qUNowW^Ch_T3uBl810vnl{KJIT^+OB=q?cdb3S(v z7`{?ct>eXd{7S`a-?R#Frnhxz_OWB*RVKmNUA@0=CJ`I&VWMNrhz)9TV(nIzjL#0a z`7fqht6##pxITXTNIa6x`yw3D_#qf

&1cMQ9qDnmM7NQl!(xcc~}7z@Y$RFIyyh z=G~XlZ#p{P+3$b3Wm#!zx?RkaU0DK3R6EdqgxpsQ5uFUjFb$Io|2aKL0;u1cdD&THm~m1(DM8DUbv=v zm#clU^V>6h#b-$|F&29}yY{zl&n_-vg9GQ(yp>9;E)>DS(Wxxe{m2e{`}qU<7FIg1 zO2x-cW@cs|afy|S*AuVd$`oho=-*$+=MK9%Rod>#W~C)3!|jtU<*XJr5?2{&X?X}2v|*%w18eP?h*-D-#ax&ZN>-SM*_ z+x){)qy9trORKf^SC3<+jqcE~+FF7fiI&pIHSnU@Oy*}0uHexg6)F)aFP^-56_(%!nrCizE>qOTw7tir=EeqcR=m2cs9IXakb+BUa-(FthZjJqU{dza@A~zVS$xN&$v>FKmmr1zy1gV{wGr^#}w9t0v3;J!ELoUt7^vtxWj#*b9=E@ zIRKm?7F#>Je*KGeS_)~qPHro9j-SEZm4*XiE>-@>M>CGL$v07p@Nb)e`K+%^qvJ^? z*Hd;`8O0+oXNfCa1-^4~wW*vNqIl7$sO5^fprKokw$vX>{egsp)q`BZ){4#LI;0Dr zH5|+7zvn|t+|I{uRR&-u!xXKYp1*gd$AO`+Qg&T{ote_y12s#C{DyVg%qq1l}Us{^bLuCp)y*o?- zFE1su`&QR>$2$BBotmU?IER*=*$T7<*P?=k z20vM~IhS#D+!~8OMGz|u6AAB>GA>R*&%1(9o^+;k$z&2-=f34*n+|w!2@w#M8YVwF zY>d&vB}XUyoKLa*CKRroC{K?Mfmm5xXyxUlF;M6WR)ov|(@`_&bRJXjYLC=z63V^u zvC}nyt~n$Mxn&RE0JwLgy z@5(D*w@gjg^1rD)6P4mNd@jNXzcwu%QUZ$N_ZvCdyKqb!z#ZAkj!KlO8ycbm7*N*H zQDN9W;=7Ol`Gz6q*A0k9Th~Vm>WW%gUb1P?QOGzIIBlUgGetF=bWp&h|70b;7Tl^- zl3OzjA~0R?a?TR|d7oSMZ{^ER+q7WOH^%0)9a3eLl;*mZ5#rSyXg8nsF@t+e9vV`37~ z2li8CU-f|WhIR2Br*6KWDfB(dG%*ZIO-PxJ$8wZyHnz1p)r1QM}!E|9#Vj|V{ zR`YF>*;En==GU?hSoL>k_}m=A?tWlv1g-ME7Ibs?kw|3wcpEq`;E#;mP(MW5zHVr5 zuha*`xp6%`6q6YveZfSjHi=O-^W$Sb%z(RO^aRu1=B9$Z=21@|T2F|%SqoEaOp{dv zu#ID3Vv0y-9-u9&IHN|RlMxUQK*VpY60kY{p+G^QN7D1TcF~R3b~~mE7=fqhpH=?; z9r)GC>UalagVdv2)=`RP`*S}bp1{~d99XJtQEMe0e)+y?{m){CgIf9Z$N1Rl@H*j8 zY|6Eb4a?rrof@mqeSB2Z+pxyw_4W7goICGVNhA4@75a2}tfx!cZ zk1w@f(J(MX00sDsqYnYQ&FJ@Q3oSoxhr@ug!Ne;15nKdB_3ZcfEpY;DQj(HBz%)mF zl^20T_-#D!>%ktGl+at(f<_6y>pEoUK?Z$~S0~GOMH@#$oadnA)ji&1${v`o zQ?<)_mCRBy1CM}UxR;tM@q}Ir_)l0Xs|a~dsS2vDJ&@pFk8rdT)h!VS#MHv#72lHc zVSB~R`fLS>5yUeFWDOhn&pqKU&#;i*^)8+SW761|m_I+Aoy*rdG3c)4gbzU6s3^dh zGa5{Y1tSW6q=kk*-CwQEegVcdgB4gN(=-@!jK)zVK*wf=kJG4tQE~`gVF}2HrB9LC zgF286QXH)_G(z0l@n5soTYZH?A;$(i&%yPQ!GoHT|A_0Ck-?uU6FiI0XWrJp7c~up9-=ORG zVC+ZTfsUX5mLAb~=UPtG|H>5(0z4ut=KfKU^)`1(<9C_?y>d31VkBv_B|j%+e{GlT zh*F$@eZE79PV1>$UnFEYip<>_0?Eo|HK$XrS(k#-PtcEn11`27J#J6S$V+YBK|KF@ zd!RMiA4sFY4!`@H^nK$O&Ww{O+jkw~83j_tixVT7d*E?Z^H8W{&fz!I7pIWNwv{o) z{>j9*A8b@!z10vHeEj3{z(BadF((@E!m*0hc1sMbd139RGDIt(;z=@1u zwGMlpe0~nND^{zr9lN!7y!{~$Tuju${}xH&CJKp;BmB*HW7n_RW72%V!fPawj9tFF zdT@~a$9AVwMx$wPVi+Jw9Kje5Eq~jHiiT=xYO=s_Zz|kz*5quvb$!CC>MiUYM!B%_ z`q3{pI0Bj7xnl`mUtd2Hm}-4|2+3Hwx(aX60~sAD`ik3nCw&$0me_`Z zSj@f8t#@_S0ltucUwq~2>MEyS5l?%eayXG+8w6TL8za0E;wboB8qmC0z&qT6!{s^! z;}+2jEmvM)WC|@dx1@yfaa+n%f&%$?v0g!lJUv6VC(M!qNF-=8zcL>3n7(OszKHwY zV7e>o5{SdfAWNe6FM>MXoyWpvc)_)I%oOT{afe8A-_S4|1#BGm26(;b-a$t1649ko_dfxP zF>y_Q3f;ZK!>Ebj&dQLaBsyG4F5A4|Lx5Pyy#rN=I2HF3ga0__;EWj@YoH8Xz4CY= z3tFf>S>2)f)-Ltc9~tk9y{+xemoIPLxV-)Fp+QVY#~$%%wY4bzjI|ywJo;Ezlog-`a~4eAa)-s`bm#>2=bW=@W&Kb4 zf~3&USaFBzi}1CzcZM$?@CBk9b8-aos*LK-Kz7Mdp=pg@W#^EV2o1@|&82+2wrpf< zuwKCzkQwn6GB`kwff{>)>a0#+w`GyJ^z!m*`TpZfLVj?j)kFL2;f7$HY6`r6(RKC* z$a}%&8k)v^c-%>yGrL`YSWZfJ0`q$*rP1MN^x{mdoyZd?wZB@g#MQVPCv|Lt_oL6= zCW$HGbSOdA2$@N##b{tG74w z8?_2-s}N44EEJW^_fws$v&DLR7^lj)zJXtd=CZOGg&;25nC>mmfzx^|O%Is*_1vE4 z=9Ltgx-+S&s|N$cC$lYfcqN zB%71oB`ed=+}XCjM7zrR6vF}~Ou#l?AylTj?m6USr=g?o<*X|M$6fJ#;GPq7%qY3E z_H`^?XKOpz349qRAwBg`VL^?N%F|-7e?NxY*XOJSS3HrUK=r1-%a!-%rKl9mqhl}q zfY&MmJ^(wO9#C*L*7ej}d^nsE5eW3~ANRJl086yoRACYhBVLUiEMGGWWObYZ*B+RG zc90gP4>_&w(GzA6^gNJBe5BsUSzAkoLF8(*Z8h$|%X@x4!S&`DQ^QYfWe7N%=xh+9TYO>DO@zJs1rpuK%Mt}4FENHRkv zefba$iWn5`g88qj`jwQG-)|@BE0T}7^T|CsAs~VYB6B1dI{S(uiNj1lyLP0}>phfA za#j9zd4EdRQ1Etg^6+y^n)@B~YI*?z-*KmsA{jub-?HOEcgP9rtlCVgnM%apAL!99 zg2KZvFa!=l2+Y|9n*=w@QL*H>(#Yfy;NP{bt_F)L2ket(;ep2&gYFuUnz}TYdb0Xg zkdYzC8q5NzKU{%^j;{*aUa2H&xNRh16Tk}o9Q={iU1;2d*kI4t(2yu8qPz@&wydaV zA=n!Zt)6wY@`8dGWDY(mK*^0}&=S7QvZvE051JeH41TwRi65?Oet}(58a=wETDeR? zhF3$HsSTJ+pVAn2B&DPTTMwq0aq|OX;#xKWw75KYLhW4+THM|UYrtZ7KAIkKS$^1c zBLw-S85oH1kxV>4ANV>b-`v}a(PBV}`6Ix>!TkVo57%EVZ)<96EejA<^>HW z>TWIZ%T#600GNy-70dShs1s33PDm&hwu5iiS?gO~PTP3)^6}{elMw`%PW$H@n8k0v zDZ*Atyxi(hhV|$#VBdINegOj^#5?e)bFQ%t->#qM6A?+aN4IrwV4=q4B_pfeH@?mX z7R2^6_g>HsgHVvUro`M`xrZKi*T%*N+(pC~_XkTt>P2lKp+qw1%F1!v8zUe8GU}U4 zJC!zS^OI$#Xlb=0*Xa^<3Chm9$2;D;mJ~D4F0xr!XsqD^FMq%%8CTbo$ozbjNJ3Nc zQ^Z`L=lj;)(II>Cai!YaAB_G0Is1Bf1n^G870%Dih3TDE0i;;DxbpIH)E0WSPLdCR z9%O}xg!EO(UA;zd&)I2kXD)bbO^oEQ}3kPd2Qc_a~dYsH)Y%ew5V6Qa0 ztT@~pb5G+<;Nxp)E@Rl-95-XLkavd)@!FDC+uHfUzoA!s9A6x4oS`7r6L1EWJo`dQ z0DxdcfrsA=EJ|m!cIUBtd+P#<4A~o*yZg_|{EjuRrkNP>J|CDvXBrkH>|F(;CA#CB*51< zQME@=`9~wy8FmZMQ;F^G?+4lCz1#GLctYv)K(f1t6$0nF7sJ1pjteG&c`{Q_5U@@E z4t8`9icG zh#PnYglunHOG0$;IsU8+4q0m9BY)<=Af??NzH$mo!=o({k)e)!{=~C>1`3X?KP2E*)BI|G zMPh8eR>vzoD=*J)^K65H8q69>uDCa`wx&x1jt9Nn19V>uBBuP2vHDMBeM08v8(0Wy ztpnkC2LbkA4g=>Om$et!+lw?$t>V|z)gB9cI6kRpLqYhyee(l~#=$YK2kD0^kIS_NZIW~n_d@joa4IbNej5j;r&n|EaCe6hy=trREG{Yep;k8@-2Z{9RYH8(Y>nUmrL1(LLj0oRq?rw4|`4JnRtO z#dm!i%F1iE+gk)67uNoMagris-`$nENV&)q*PxzL8ujh6_jt{z=y9BmrOA&#*ihKJ zn$AhbTW-7K0IjVZcRD%>Bde&0djD8oc_k7PN-nbqx;GmfMS{JnVCf^sJRnkV;?_LI(MKoEYw;P1OgoR4QY(i zLJjS`MEqxuH%#zv8`_N_kd_vnet=-#!$ZogwSOgou!WzJBFso*VQJdvh;LaA-ur>k(TwBNlY&=q7Ix?=ho}Su#!WhZ zvtGGhxHvmgk&zxg2>O;HBWLGwUO_c#02`RE+zd91MkY7ip$GP0MwZ0uKF2z9!mO;U zkg;r$zPg5CMNA&o1g7Wp%dcCs>cm&gO&>q%#Dar+8Q?_A-8HJET{Ugq4GCt3hJS6v znoBHE-dqaJ)50olpHx=bB!LV>sy7D-QN08P67cI+({~V%6T#4#(SHkTxq@%`8q)iC zhj_8E;dpWB)!b@;f6XvHK{pj28(W*3uU&Ye!L-!k)+15_BbS|(b%Ge~BxAC>UkgCC zn6*5t(-gdGznw=)4-ejIu&T_jAeA5^HtP8nZUN-HVFd-BvfbXfg|jC*uyM*9)Y$Ev zt6XCH>7-Xyp0iXksaELK3scZhkRH;5(MpDgi}eQzPEH995A*&r!FZfCSkY@hk!X~5 z1w_s(z{UZPd@iUtK?imA+jPCMyZe9^3o9%111G@#2bsMC0#@wnRx1xSe?JYu;a(Oiat)V#pUi^nJjX6nM*Sf^3{}b^#@hxC&Np zkb7opr&f@b+(?9d+I11=31a~Ap+-qX73AXwdjRvg_|ts3ZnKrB=&t!O7r0&)=%3vR zmw$eBBrN=TPeWxjtqAzx2E+sez-u(v;lgi+_?E6%dkhFaV>(MHb(Wl zMs4>+#4rOb3DukYd#eNz04v zU7KR(Zs3e2s@dvZg=}qQd$lh+6cBJ_{bRd35$Ktw-XLjS_~|^y<-4md;Ol|<_edkg z_;?x5eEX>R7H0aIj55TT1g2Gnr;ngi!VCvfA!%0ynoo0i^{hh5+a7#;= zV5|F+A~;-jm|0nCBNIp{zNteK^3cJTaWPyB2pVgxm8heZpuOs|N6vD#8+6_S*-pSn z0=?z|FwG#q#@<&4fEg(*4FEW3RAcebK?Fbz)t-9s$* zhv{?LPoFlClz*b3p^bTZ=H3I&erwt9-&SBJ#r~-}_&gVIALR(p^!+?H@xV%o2Wy+_2KrI{1=XL9km@VK!`*Txtya#OE zfRII#-Hnap@K|MSZSBpif%rw2o&UY|fS+CAw&St#F05tJr zew-{nr9(lChHN5b#5uI4cxs#Ev(Y>j%Yg+I&^4eSfd(%_OUtwK)s;Qh0U0P7zg(ZG z$+xlW3^HCG=}g932-q`fYqw%(e3k5=g9S}CdBEvAjt4!R3YPPvgoJ?YogG$N4tAoX zckgh-=RS~mOUS)~cxG=H%mFaR1oWq$l!1Kj!@G*K?;K_mc}NZX{6u97q3u?-bad9^ zoYlrdNkqUk?bpVue1LqD2YXNoM+hAQoisBzoVtaxU|@V{$WyqSqb$t!)h2CAH@6z!C@CpLe?1L&*O3bn z(e81stS7XRfGV5NM z>N`QY?-QP;AaP#$fP%|*nOJ=GSGJt%-VYBX&9P|juiZ9rHG7hHoX;<9!FyQL{G?M2 zgE%Te&S>252>>xoAhlPW2-}-WhXuFM_i`p;gN{W}+ELGZeW4yy4-bqe`cTo)h3Z1j zK*Tl}N#%U;)qcF$pOSby+vo{x8rIKwK4~p;(*zS4jXURP(lLG@D-543(*7Fq-7&q$X|;`i(gmq*K&@d? z1~}hI0zFiHHJDrZ6J+>?PJ3XFL;zMS%b$8JaMY~@1%;P*a-&Gw!67WqJvlkEougoW z;X4PJ-WBFu1V~Ts|D~sgs4PR^@ySDU!myd;x6ikz?Nj$cLqa+c5D}B%xB1_d_F|^h zaB_0?f#{(Dvw8fxEky+;#pSK%Vl%$Uqu}*0Qj@j8wN=C#bW@{Bxl>}nTL!nS9iDfP z^{bDNb#4v3e#sy?ZS9c?;XW2@-L3fe6Y{~&2YgMAA#*(T)mprtKE?F>W@2D?4`#&* zB6b*7p79nTdw6Jr#*1TIbQ|7B?N?q_e6emdYA9(}K&SgD+i>6&B0ca~(ed;1GuhkS z?FBP#Yrx~%ym)?skNc2}8Bz&2-OM5z2JlY(|mQ!De&yX*r>-!kmRteYF{ ztQxn6FdO~@uNOG5x6MEjQVslyVt!z)64(%*&R4e{l&W1k05Nn8CO8*Uz7zusg?9{K zI#9_|sYsLJ`UcvUD^U;>$iVE1UbOBJz<~xFxUf^Ok5LClOF+c6!Sx^_BlC53?LFTb zP}TkU`}a-@s4Hy@;i*F|fLmWqyKEm%OA8>~dDZF?27!93}9aS+8 zAdcD5-Apt(mRY6zB!yB5@9po;@{=V2&XIXbpRi3(Q4+C}Qv=K?ein54FGb$HYXnIVL~T|J<0LLwbk!d(X_M#Jj_4oq?lF zn9+M$M#jdJZU%6FYXn7*p8>DF#4<3ZH@}?Ot5HLJX)!S3vCN~F`OlYq5o+z|CTF~u zt4ddhuSVyF5(jkR+a5|Nb1*loxG7z`EcS)|!o6m+L>=dft8> z)P$E8CoV1SC1VugU~JlqK)L<&!TT9CYq1G`_uc>dYiH&ssK#?oTT*|#k@_zeU}k2< z48F1@BH~Lo*!HAnHs$se@6%W5pvIpRPJn;n)m*D(E@JJ(Vy<>@~u=|Nlg)EG&83j z>YJSdy1KriB6IgHiHT8Jx>2zsB%F4BWo2m;I&hAx_cS%_j59UAG()4hC;GXe!_+Om zD=E)#gA1_}G%Y`eh`aGceEfb6)$Pde1ohs-%b+y^lrCmmO`_uBeQ1ARMA!XE$_fg6 zxbQX2%v)XC*ZslQTf?BUL7$HmuH9K`JWyI&6OoqA6qOm-l<4v7dJmlr5A&#dMl*Nf z*`W>pW-@4s#e820B1|Pz?6AIOYH-!RO5yP0Ly?Y&5l@h1+8Pc5i3FD&H41Lue}l&_V+9LV=qfNk{N z0I^g!Pei2MS zMskGyW@zY}`0E!!j~l6}sWF*=z>K@wxz9xtFttKJ1alj9Otuu2-2TMHs|>H_ul(mA zIMsf|$!RO7zVJ#+Ol+Gi>Sek4?Hrhk%LKsf4fgWxv9Z8+`1qv2=w58529jK799Y+J=0Y*3&Lxz<*AyOz7n%=iKa)5|#ER_ls@OF))~yMSn}Z z!LH)8#br((>3X@c{wR@9QOMf`tswM)1{X?VEn++ zbV=}|&7BR$F`h92PgAX|(v*|5ZCfh}<|pX)g%7X=$A5RlT^kA4cYhzVLhb%^WzFS= zhk_aq6uU(8@x^L~h4p)jyXYMxegj+*LEoeXVs`c$h=t0uF-(S&w#ajei_=2=^ZC6G zeTUPyS3H%wj}~qa>Ki zE<*~s{%oxI6)&%{+J#7R{_Y%lKLtnHFLc{RIoE9Tcu1S^K7Bw26LpFSGTH7_&@Fm_ zLx;l0WATfIyI>Snv4iKXRz}nS}kI#I> zdwwJP*Ec@izc(0zJqaijN?KgmQv>5`^-m)uNO!zp=MWQa2$T}KneQ&`km1a4QED=TK;1DO<^N7v3S@bG;r$s(B_q3p0u(`}l@G+fXBBgTIUt|<$a4!Cl)&Ng#uMKwwzA(a>dP%2K)ZF+KY zi1zbmJundP+%Qwi-Mus~dcuInO2f%{2n~#FX6PRo8G8)@{7MUY=4w|FpB|tcows|- z{kJh?4NxtE&Ut?I@X1`_5S}!Pn|Mza(d-OdcKIrZf$LHO;!FmJd1mH z$`V2p@_UO#vv$aJF)(tdozC+F)DH_W_m_LxfA^r#6A$*Vw&iJML`0y)q_~TW%oiF% zw$suPftY&2@=}I{Q1&O)+yey65t`Lt?Ehb#$V9uPjej*X95VOj%x0F+%r?59V9gFFfwW z#rRCUEx*LM0|Orn0Cr*s7~MBv+xY)UG~4`-mzX2fYfII!F)@u5`f7jZ`*h}rMK_Yb z6H1bQ0UpNR04Oehwk0985J4o63kV;7t6t8pj}EAS!0Z7q>RQf3fM{c*vOY8O&ekg3 zY`Ka3Jt&2)7M)X4aDB70Yt=wORtu_=HozaIzP}+*m7dPeTHATchYHcDZ1xU&sfbfa zuyDRr8zw3Y?wb<+)6n>h;+yv9eCN`~rb|^zBYrKdn#{yRrFSm(<>g<_fG0;anBQS4 zWNs`shG;7wFtM}9woM0Ml6O!{xbr+O!W0e5lcKg`QgAA#7`#m zbwvlb_7V~YDr|Ob*|cDA4&YK!QBjS9(edN7v?U=Row^6jJiitY2e29b-HgHors8) z?^k~BDQom=6sW)x15?2~S90VfuPj>Pg^ye=9Vn&cPEbU*!nsR=KfMAwlAV6~5a7Q? zU?L%TfQNhmqdl;IL;Rn?5jt01hr?T$#jR8>XN^+F6Rid?;b3GW_2B~N|Il<6Kv{3! z*M9^B3`8VUx{*#nT0uZTL8M!{yBjYGN{VzNEnU(f-QC^ILwCNL-#h<1m&%-nMV5(=cjrcA`uqD+dDVReOlgUnqT&chz?O90wyvY05Y3-z zGv*f;<4e3dZD?$5Wt8?5B(y$1!aVf#mDWs`vda`}kk`_RR~C=Ub_UN9z4_QZYqJ^;UY0mz4^uJg!Uhudlo;6`A7sPbFuDOO7Rv9N;Y4yEc?Xs`Y&UIl(;$ zw;;vT)EQsKY&%)}xLC;TObLGQl%8u*=hM^EADATkACpArg1t94)0-6(1nwCIrr(?& zPmb$v{y0RW%}mwAy}@$gCwYgX7AO_$qv zlsrn6mcEw#VbYHUjg405#;4w6fth)PJoN6Gu!Doc4jWs?$4h=LpCzEylZ|51)jlXI z@4^PXV|vo>-)Rp#5g}vErY1Ti>`x#3&dh9w>GF!ZwZm}=(Yc|CNfru%==>?92ZkaL z9F47mgRxfgjceBCDse*BE41tfgq((kE59gV3gsIs;35J1fY)WH5f>Lkk~laWv4U=B zRZRrykd`bf34}!JE7!avmtzub`lzxp^?smG4uRaYM^d_Wa?fJ!3vinlaB%iFBO@dA zGp)7thLR!a0_>e(EkOwv!QpV&PyFKT@#Nz2m@*lF(zx1VulOO_r~B@GRcgDX_Ana$ z^Al+=lM&{uj@Gx5?;}~~hJ3IR*tUmXIxvg24Gziyhq&xNvk7~yy`vc_^hCG*!+&4A zFyFj%gxcvf)K0z;ELf&WHTo%Sa(!0WgtKqd(ka;c%~7K<}@f!d0Jr2J%>VU7YEk!q!O_{t zm=OH;*7*^2E6jf`8A{b9-|?hwf*zDq;O^nUn$E&f2dbv^Ikg-a6Y{@th@7u6oqYPu znR^UqR|l}M9N+6AUG?1_GV&@m0aox`jf>}tPgXmKq#vK*vhso|?x4zr9SR^UEO^Q^h;(TKjW4PVgoQd+N zWoGvPIrs;MJ|JL5MP1#%quEGkN4E68|0p1<=>Y==M+f6U6t;*M2=XVZoZ`ctAN*@d z{`HIf7pyE!kW#ISN1#tM^X)zzJ@G@14R!rxR20N>XX^Mj|)f91YV$wPG zRp^>Oy#TVLu%e=*RWU5@y)u(V^iAVe*+U#V34fW%DEN-Gk1UjxJyf-35n9^=WmY&m z4<9=2Ef$pLnB}RFkv@^YZTYY)@Tk{!bNT_jH5Sz=DyyO7pkU#-RO#_0p zUJtL#irYU&dMKB4O7rvbdb{Z-IPK2!bg}8s)HE1FXfwt9>PuxR5R?3)IcNbfn+77W9;!b3=Z3YVbB5Wtf0G` zuI6(_MY}liP15v{I0xG6Q)r9ld6K&Kv^g11v;FSyDqUy^qL-AAz>o%fhyN@4TP-X9 zLN6yLO&M%#vP^y5IiG2MSr^nRwEv}9*%T7=x|b~TSoL%2Z|gPeD30XDw&}pJfWasi05}Q?K_3Y93vIt_V37FNo+~*sN;)URVgDo+RrA8 zVHm(ud3RP_egeKR~M|TT|O{Aw?()COVh!%a^0yW0zVABxjF6|AgclvzM*jz>vNsQ*R`W z65Ms+q5e3_LhsP_v%Kfa`)WD8$ZU7AB=UNnZ0x=Vb6(T`(6M$01l^}Y$_>2MCq8PstPf2myOYtR+*Xf*|LgoD3B<` z6wElW%P8I+%F_G-kIWvVg+&D~9Yai7CR}lf@Nj`L7LKnj$L4Ex zQ^mya`s=HsH53Q`VQoKhK%kmwDEJ6yPbPqCB7EXOj>fH$g?aMN!DM+z#d#u@)sG_l#?DrG&bXQani=mtD>nHQ{b>I*abf2YAugz zxX{Xnn`7ssf1h10cV$(Gc>6mB93cTnIzH((JCX|_J(O9n%UK>kXt3@foosA-#&APW zj{|a?T9R=R?)7Mzc#uX<@1Cf*I9*w#i+h^NO#L^F#~{1u2P}OT1O^YmtVyd~9OwFQ z#H|R-M=O_4bRkY`OtU%!Jcx$xV^>e&-;YBIpErEu%SD(FS`PdyDS5a687$%OfjV<@ zX#$tPN}uZl7s`pb9qg)}?Xf&tc&5HR?ZYJ_(y~f%$n}xDyd5~%Dzha*j&?~w!5m(% zJGiq^$^ONMGs14I84m8I<#H;cEVf0%uBmFkHyv8xE|7dTCt<3hjZ#Kt0}sX# zBe*0rB!~7#)RL~$-SHoc0F7lPat_fd^p_JBsCeLNRHbOOhfAXw4k@(dN{9V7{rZcT z+4^sTTRc2HCSLyu-?3kd`}QsDqxL)r4rk1J-8=*Wh~bTAM@XjW(UZSsLz($156~wI zVJGIfrc%?Wv=_BF*$K|;H64d!t2dD16_XKu3LD)9iGZ`-@6)#!{r5IYR@VkvhCyY` zI9Wh>w9&J^|BJfjG2;Dd_WpbmXAUGe)-3&PGfC0WwjU1JT>-FM?(}%OZbexqBkhX8 z6xZ=F)^kX#mATIrz`TJ;D!4x6p@pD0W^k|sb^bk2=TqC7f{N)gWZ4PT#9fK_JeH4O z+|A4Q^G9!fWWTpUF|S6s>J%$OqbgECR_&s2DX*5@>e=Arq}=N9OhYJ`z#0Kx^7O`H z3)#QxFnm;mo37LD^&ec-yFIaM6h*d1h?ez_&d$-fUJauoRU9H7V~_^mUXK;OiA48< zV~eo*Yv1n}5$e^vn;k*{J~uIt>$9xPwIH86@Ghvms<0TVbhswUoVk5BFc7Dah^V=h z5r)k;$oiYc_%)Z~!72b11TPb=SDnG#B;$CrX(XaOe=Gi(2{0#RAOc_xhJl1Y`yKFm*)h7X5_TjT(gOyQf44^FPP-4R6dy$2s552d8@@fNk($B&~Dx+@&)=8>Sf z=~{UreRU;CWn!{10T3y|)87MmT!=Na(I-8RmYOQ5ei-vbx~9~1(bCfT9IR?l#s*tu z4bT}RrQUt`FckCNy`0x{gc(Om;0ZMbPblfmp4D9{aF(EBZAAxweGaZqZa}r>@^YFm z)K}b5ymrR!Mn=jE5)&VHDQIa?K^t92^1|3w!ROPzsYytWT!=3zsgBQ&_zQl4FsFTf zhBBkLsMFTw?%W;@G6y!wmTO1UM=UJTZ6LzOq&oRxm`s3u`G{yz>%X+LikoB~CKwd& zJn%!Gn$(wETwE-MiOwmST1+oAeFg{xqF*HH?2$9*4%no`ur<6RLd-V)SQL95c8Yp{ z5_NE~N=tv3yvy`+5EUbV^Nye$bsvrFD#{k3RkNZ!=t>N6O~I6gSp4#U^p_Dj$|BcE z$Qp}$w2aYyP=4MU-mte~I}cIohGt%NvqlB9xprt78(YJ5kDLCzL>v8byw)SZH#^(E zx7cW)qvGF$+yRO3trf=DsalVg6p!l}jh|0F$#k9MWo2VzRL;^cnWg~Z@i$G%PCthW zb_xwCQBnEqhSGm#=b&DcgJi^~aKV>uyDgmHlai*VWMwgMI3Fl&3D9)jJdIBK%Q^kf z)3kn54&XK!4@kIV*>x0RLdG6}eRjsSk87^)OLA;yrw^CCy<5UvrP75tEbO0G)L{v3 zHjKl|>Q$IrN`%DNzF0d^Xxy6Cdu$>lb?C<9a4a!&VBF9)BTE{5Vqg$~g+t?y-5@yt zyw(?6f+r`8%$a}w=+O1uf6~3y*51x$ZKGLyh~y*7D=yB)%;#R;E3QsU!#_JB{s}+m z&4%`olWy%h!K~?)v6t-Kzxhg-IJeju>}7oS?s?6x zMRc-L!smO;Te2!D!^5T9o{WfBx_V1bu}G(jv{*zG6ar;n5qQC||L%UNRgKerCfmd; zYNq&-yX-g1XH?-I$wS5cm zBXBzV-(`-&_Eis`tzdnw4{SKY#E75p_zOwJa8+0NRbjgJdvEeRXL3{YQP6XJys+#|~Z{?wjUw$76 z?^>DLdAG{Zfw_4RwOAn0{yi)UXx9~NK6UjZJ21Jvs$BvZp-dCQ%4GTdJP%LvmIhJ` zrM%f?am1@DMfGWL@5@^NU?I}V7IfOF_FMirPi(89fl)~C(vo%g(=x~}m%O}0WVjn( zTE?oTmL@4CZjsfH1;-zgxm3vrdPtwga68>gJ^lBEatOY4%M?+qje)ow^b4)&6W9dl|HX->&_G1_VvC77013L(LK=d%1H0{`ufUYJWx|UwOC+#_Dq=y z&P79AUDX#yNJ4xtRxjOsQs#bHxSOw)j1h!hWwVmDWKoORc8bj}{(|^_hq<2Hc6ONF zQBgm301Rc>5Wd_M!=Pnm#ssG^_#|spPUerngc;FXC=zSWD=hfZ@kLOay>&DNP+8K} z+QV!cf+>lw!l0aGxi(@o9xR*B9k0|J=b0t+D9~}J5%*pw-x@vZ4IAbwYp*3}SzBZ7p0N)+! zhTU_#r*g0c>jabG+9)Z=(WC)ST@S@i%9$G!e(Y7-H`p9>#Nuk7S2S2CN7y(AS5_Si z4J}KdU>?uN%DN}u7Cp4S^mhkGh3Cf)mmySCMTN`v)Bj_T9U)`5B*RZyAEkx`2WzX< zxb{)qpu&zz$H!S_mzS@|1um;(z%1U2p0eXpGbK6e?JXa9?8>W$GWddDV-*8 zb79^|@>!e|SqZ>hj(EbHvc52O2tJf`I=b`&VE(_nXauF%*v&ONKu(AkCnjce0sjqE zK>#MqpJ*r2Zocw)Oad?r{h;zzI^t$$&+Hy^TCTjI?R^7`8imr$_kM_px#g|U43DW3 z45Q>FZI#2q$@Xsf`f8NijehvyL%>%(=mC@;Duy}TM&Oo(kGsEl&#OXGC3#&IksWng zFERBCd?ytw0!}JOkYDiipUfz;*4r_N<(h5EPdXBU+cV!DMjk0%hMcMtw*v_{-XwB7 zpIlgwO4p9sf$;wzZ8A+3YLgFBMg78E=goD1K(?18>L-NqI`+W-nbbV-Ia=#x`M-K> zeL`q$i#V(guI14!CbtI>0T5jEp3m2>86ZI2H+ynIco$3pOPrba?P(6UTy9 zW5|wse*OkTGyAKN`SCk-9B=j-sro6Q{=-(TKp)nxcV8>C$PDO|ft zQBG0u{uk-RqjmkvDrxL%ey&hShoq8)v%?Pk2Je9OiNo*3T2k1`KO3)-Gvoo-Av7 zdnb`E78yGv)=Lr%YlWgGZxQEQP_lft9{9$;Kb-St+V+2xz#{k{zbfeuBacrhs4{_ zoWKDHFVF=-lpR^^%73<18$(%Z%Ye=kmQ9yp`TZ*h%U$=8GFfJmL@_s>0irZ)$4!4)}`YNd;X8``J#&+I_~nQ&Mm=`3@UT z_y2fPt^1HBQhrIQ^77p6(Gh{}-?;ZkAhbBG;jwUj9o%EJ#_5nNep;X-Zo6ZtuB_Zu zM6s~CdJt_kJbe%GGq4VQhrB1-!Ore4t8u7^R(dtXnBuIgJ~jdYRa7Z5%c;#7ysmG5 zB|f9pD0A9Zc=pW6!tlhm;<4q5ly?A3DYVII5~C?+Zcvm4x@x6}!Rpvl%qnc`Ej@4% zJZcIFd&Z$A2}M)tozxh1_FQGK3d{W$!OYA&{9jVwN{c%}^cmW{rP;j;7VQ7@z;up_ zbd!=Y-}r$e9)zh;Tv_r&>}mD3yK7W{ixDlbFXU z%F8o%C(;1NtW>(?Fi8E8iHYfsw$HlN2SpuBHRbVkj5s2c@Acoo4yK@xPkFoj9RK5{y3Qt@aTSY#ujg~o=mU-I za}id{(#leY#H6U1{mtabZYj4FCXVe+m)iqjW=ES&!2ULp=>5Aq;9gjSmC5fGJ+i&J zs^)V9tNGd>A-6k+N|FAHxG*tmo1hFhr)uwo1N680rTu2cnWI@{TwK78MXmZUcoc{U zNmXmz<7U6zH?XU&;%{n6%1%pL)_BOSvFTPUBO`OG^lE8ovwgi6hqzjN*@x8qjQ~VA zQg%38p2>?SD;o*gmcR6KzC6qGR&t7o&SkkqmOA)7RTB^vw(URMP{d45rX15vOH6!3 z$6!)>FRN3f#`Q3(!N;b;+ZJpM9xo0K4}U#1yGBFz;nZnsnd^c5>*EtMcvqAt{B6$K`#GdW{p=ay8-CkNsaEHK@aN#NNxP*d;g=#T}cgMnaOzlq?J zCyYirKVWIi!h!qY2WGb~1fvjuq#59T<@B({3%b^vRJ63JE^WV-zHU1n?Tyn*r4IxX z^Pymn7XJzlCx?WjhyIhk9Yadx{gKFzk-51KJwPoljh+C4QtTV$YVr2KfNZF#=_V_s zIVpdcrqiXfpEUvjFq}Eb4(Iy?S6ekh>@m5bq1lMH5kc2Z$wp9eI$lwY;1~#fL$ipr<hGXo-PJX6x4pIXSAipWDJ%C3SsBz} zOCZ7>!b;$aJ$q)73lkH&d1;}pWjYNEg_*I5iF>rvsfFdDGgYS(i=-YGOLK<%Ey;7R zk4V51y71IdNm0?KHaXc32059ee)_{XMU0DfH33g7O*|j%y>2;uxNU*>ejZpO$?*KG zNNAY+2@t^!Ed3u)y?7x52D`Zzv-Q$@=?VHWM8wE2Nc6gM>+_M!b6g1%6V(xDwq&By zG6p}zHLS_T@i;T;{$51)=~KV!uV3>i_4O;JY?4YeELzw652$hA94p7kU7Gpt%>Mf7 zL0EkJ^cCzc-GHy=vV2DvyXsx;d?+#A72{B$OoOF()eM)4Gn&t#PBxb94Iotbt>BRg zQrZA>7Wo1Mr27C?lNctHuMMCM`Ef6ve#uGbfp^JO^y+*LHSx zCsCcZQu6aLHpDoo=;_tQr>2Sm$&e2dEWYRE1v!5FXo-r&uT%E>62-#(ks%A&%O|W( zZ=IceDWY!)cD63A``1@F?Pq{VVGX%zXi$0ox;5AoA}>E^K7K0l%F;Z@t`k?IhSC|| zl#`9&WmDJFj-tD!ZWVSL_%g-iKYp)TWq0J4cXI_c;4?fTIeGk4Z-x?BA+SrP+Ha1Y zdiz+>uzOgp#SHxS^p;+z>?Ey1d^5ijyP{3gy@khBS2gaJipdG?(ff{z^`E}_S5}HM zg$pNy*=2Z5@Px*>y&W2~B{p%r`$k0t4KnBr=9!M5qrB&~`wjcFGiqP`_ITjutloO8v@$EZC-(f1|@##|)i3uOZ`lg{l#w~PW&k*zG4!&IVe5G$FGMX|7$9=qo zRUhc>$xQwCU;P!V-9j;(Mik+yck}<+IetjLPcb%zPWy;yA3Ryr42lG`ksJnBAv`wt zi(m+02?8>jLYaZIE(aNj*MCf1@NPK$ijK}kh)vplT3YJnCY5W4u#OVmdWthM{r<0b zA(nNp_v<~BF47NRbAzG5C&N?l#szj^S#M3=kuHLbX`zqEYqyrZ_>As(>wTL<e7OOtdxN};>CZft8qZeIbVU;8p9bg1p;$+a`K1e!l1FM?fH4Cqva2%Mc~rF zV!;BO8T*ss^R4ZJ1Kg&>#93_4n-B3xHl(jRmaO*5*@(hKGe^zn0?s3T-j4fTuUy3K z(9D{A^@?BX1S8!HSK}kp_SkPDJmFkfzS0@BAZECRrnBi!V~)wfrr@|nsB!6C_k4eT znTTwb&EsE}i^Fl3cEia9hBNmIb;W;@s>ho@Olw?EQRtB-Mn;m4ex}X}_*0_5fZm`x z#rqplE9Cyw6(5zUS&nG$9=|((L_jHEr3;_4v#SNFKC{r#QG7;9n)O|=2OiwZ#l59{ zZ_o20CR2Xo&Hs8eqnmpG>Z`C^QaW1qs|xT#r3|qMNY#4CWe4o^n3<)LvbQ(ZjicbX zv{L6`V&eV|XpS0}6AND6ab5VN^M)0zOC3)}7oo}E7mwM$9J%ig%jZ&9nEZjoxUQzt z#_%CaZ;g%pw3^q8k{dFcMrrr^=ZuU>XqGR9Hn+DKpjsz~R7cS361KFl=z*J&zpTIF;hgFgOrb1Ri35s2n1o~S?Sx;XXQhe1kei(q_Q*~ma}+eO9*IY0vTU8z9>gtlG^ zAL&nWa-3NbhiU>s((3)JzkT-O9vEfndM7qPKwnOvqyJ}v<#@M!FTaOreE9n+C+0jSmMK%`mx z?Ya{W6Og+}Z4xv%uZgdrqqEiLUk3nHzCL#d`fLofsi~QuMnyp(6yIBKI)F{=Qbxul zrtjQR3;4h2qbMi|d=52xZv9FwF0_$6`|0A2I({@Ow-Bx1iRG)Ra-F`&>QMUL*wR9u zl1fbnNBXLPa}<>S2#%2xK?Kc^=VK$LpulBn=I{R?!eho6>z`22yY@Dol(FgQyPciG zwJ2o<;?|r#8xBAU#E6r+);&CtE}2i4A|6pKvuwkld5nuYY54i`E9ELja^jgsYbfxq zK?E)p56|ndp&_Tvhh@~Xw9i)-iTW)a9Pr?%guj1$9CAbGE^|GtZ|vWX@wqJ+3Y&vT;PNl~7<6FdfTl`Vdu~o}2o0riD=Q1d2jEm1MJ|_o zTliq4to#fooKac1RkG60Pjd9@?7`a1JzPAz1%fZo;ML=6glYK;Pw|QEa~{iCOBYK^ zPsVXRi)}L%eu6YzxJAWbR&T__RBqEBCJe)&N{(ZEl7S`fro1DPW@utiV0@w*rrcov zuTm(tu8D+066Qb))C4&>In|p^yRwc6F+SrB4I(_vfl9@O%2&Nrl{Z(x(voc56%^+& z;G%s((;fXn7Ex7=T*ae}Kg=t1sN&${{EmDaS$kch=~v^YqY7Fa@_21$P%n+|0EyDH zuxV&W*|Y;+y7MI=l!&HgZ0zjwFU?`3YT67LHg+>D@eVMsV~OQ+V1`9~sm!dkb#!KV zaq&~NRkE9&ShIUo3{7xstOx-oL0s|Yx_JXi%uOmhi1)1WP|Q|h28)+g*UguI|9)*f zQR*V0qGb9Add8n_irTr!@**RhWc0pwu=BD148>gm{vZO%XbsD=<^I%tu`I=ys?Vu1 zG&m5nkUO71kst~?=k3dF><8Cu6b>J44#p_g2b?xXWpV(+jyqT8i-2u``}liWdAa;M z0|Ru`C@wAq3W!O!mF_{B3i<>F9#ItOUuKNLe_-P*S_UOYDFm?vy!7XF*i!ofMeA!h zX=!PIXq1?p+t0Lndppz2?sXr)-ggM61*L?aKL@Qrcj8rdmputoPY?r!oS*ddqsPG{SphYUjjzEM zuwKJpC0(=3(x~xE{p2JOv5pST;L`_JS2gUnZoM{j58c`_*M^kdF2@zL`S~MyUOo#k zfo*Fzdt6dWhU4%S1D-#H|7CZ^ih`+W_Sb;{4ppB4NPSu}4iD#IvASR@xR_{Re~19^ z7vsV4jDPq1{4c@(1nV;vyv35?ESo7Mm8)mC-&wEiWhv9Qza?~4Hqr2_r}55xe4*uk znx61RTyIVN9>*eK%@h%F;C^)Y0qfzzpMAr_*i-p+nUSd)4Tdf9jP&$rcbR(p{c+`K z)4P`9;^N*@@H6o9%XQCqC?aR&lPFnjma$NvtGh;!+QX<|iu%eEe`m`N-Shk@%bUxN zf>r#TRq@UuEZ*0r-u0wX8!XC&55j~Nm-S5u2xIVZa_-+_af}dTU=Zn=oUFiQV3F=& znxAnyuCA)AbdiC?ZIZ#>74o?ltr=Qj}Z7NP6-J&(0TbPBO6*)fzFPm zo-V6+t$dU#Bo)V-3mFcX!vE%ox*TRcB%ho(nn09%0Y5qU zpKlFBj>p$vyB4*wvRe1X#Ao^b{$Cx>zOSVFm#S2ccl}qFYtHaq_UI5>;Dr3G2PKyq zNZYsh-Oj#Fe?j%p0MTitm+BZCYZ%Y=dxRK3ms%|7d{9QscmDRipF097)wkz+9dz}w zX|8ma>+;IUwH~hyS=D!m-7gROQ*L%hVFp?{It{%J{Gh$SKxQ?bxY*bXTx@J*fik6+ z1T|7`p3pwF`AVrNhCuAi;`}?^H+X>0q;lpzu??u~Mq?9`Gi&R>l7gB_%eidwkT%`D zU)xGLN1F+EvU74mjW`Le`%@YA3dWPNv#Dn1=Gu0LsW36^z{K<;bRfNFcA5yDaihx@ zCd12EIQ+?CQr)k+Mn@Y9Yp>4kAEwb0d_Y9OiiDYC&KZp;)bp!MDK4g3x;X8?gt-e+ z8|bU9t|c8OXImNMhO2+ZMn|g~oh`Hr6s4;&T<`9ElemX5`eHsj z48m8a#l@d=dgWy)<~`zsRcbuHZtpaaja{4h>SCYqn-5N##$)c^Vr<+~LY zL4bFD;6C(=FrP51{pa-3VSq+8803b`e_StyYdCAB!0;hUkCV6p}fak)spnz?hnwt9NvzTXQJl_DY zIyJntN-D2BCD^%3-G3;WLtU7izG5%TzO^&wMWC<0A(_8->n3M&kC{=K)zEZhmwv$M zwVd2n$Y^2Vec48vR6!abCK5=})d!Nkni`U^u`wB`_wQqkwY3#43Qhw;LcB8K^^Q{N;L$CM{#@nC5xwo$#zDLCv*bq`@8E`W?dh_KZ&DJ9 zvV=tRc3(2B`tjD(#AWnxIBtD?ntFihtU6v+R9uVn2{fjEV^W=@a=*UpDJh80 zf@*9)6?%Jo1dzjr4QZ%rpv@8+Ip->dBN|P%riILZg5rT2Kry8cs&s0)-i%L7L_zbdIyIH$y!V7AKulCkO^wQadzxcj;T;3R{W&O3uRw+t zFostLH!BTZn}eD1eRM^$7aSbe__(-lKFJQKes|}vm{wD8ISAaJ0{Z?I}HwUz>;bz=%s8a%za{@eY7PaTgV( zt`WLAAr2V>(Shd1Y+VB$9EShe6d%5o3RD~`ZZnee-THx34!{C}m4f?i2X~=3Wmy7|awOr+pU#;bNaw|8-Oe@%)&ypQAkMnOYU$Blmxpz5@=zD`vRO7)URJP6H9 zo2tD|to-u_JH&w)g2j4zdTI?bh)M5(2M5>E-hQ~ua!#0sWJU{k@*%Cv%z+XX(}NCR z>W}-#Pr=Qt_`{;+RLppQre!`Yt@#UVVURFi#ZXZpwq*}7c}gEOXFN$BKjxy>6QHJ6 z9_lt9$T%dSU=ImHe;horP1q8+w3@47_Q_M!LWGxq_KcXJGm0Z74a6|LQ&TT`dwWMU z4k7uqI+ga7hEN{78p4my5j6@5PW*$es$og7X_^`wsV+{M*v)nR0KZ7Ml?pHgm z-^!~|Bj3h8>b&s&@Subf1%-3*-wRHQ}3ULMx%Tv^%{N1Uvs zD_g@m9S^zH2dEDnY#037W>W;T^PLaJtLnli>=?2FvWGbe4WuLIhjTRW-mJ|-|1Jka z#@yatzgBB8!K5uahe;HlF*0v`qmnYg6CsR1z$owi2OAp(1w9-Y=yO|`n-d!v8xyH~ z6YC$4rGYH3@R{14)myQb_sc81oFRmSlRe5Gu1)Yx=FrWv@&3ceO2ItkVU7AM^}JIm^juZ^^fmVMKX^3ttsE&JBL1@yMIAM{aC=ULk`wKIGNflaU6 zkGtSD81*DPIg*o?$9nX~<6|!~oOYh6SXvt1iGB^~5yI024T^L^LbXg36cvFO9~@mQ zLIQn#-8fv|LvCc=U-xQJZ0-vS=(h%(oTT`oW0Bb6Je4)qHh2_px6aQ0{y&#&Ec0$> z1Z%}hGEYRD^#sko*VEY1vLHMg@%8g_vAY&bjxa3O)}D7IAu<2dpe7y+mjx46`Nt@3 z?J0d3uv4QS!m4<@zPdV!R%~BZR`&MlWZ?l19QFQdZeDh$;ADNj`|S1h&5p}&zqx4X zKu^WZtvb=9Cus#9aiLoRUnU}%CYwWEi`8K{MdQ4FT?wZ)7l??DUriKlv%h-r+%V$3 z+hxpj9UH~t4fLDUrY>=-F5rT8a2axtO`M#at1~h)NqFZjXf3yO^F4(N!2hxC9f4$P-J<*u(pZF&6Ssz#|sW1MEc1r^0n~8F^e2htR5?ay2MyqT--uq zx~Lh4R*D-BAOEP(9pDrqG{KK({JOtxP7~AnXyZc5H!U`n@j70ha)@p5F`Suf_7Ced z-A_}WhWBNprL|)rP&8^>$FLmv4A3#U%^0ii$a}m(AS4#rC~n#VI@*N~hw>mO0aXQ- z%vpMEQzfO0{~|{02OIjr!~7kZg(N^)|;%;aQa zHdKe#4rnRDW^)IZWB&6mn8=amw7SEtXxn5 zno4E9ZBpqaUY@bV_8UiW)7}nIq7VAHN(I8Ji)|rh3q}vg5s0NA`7+?b01w780muvSx#qt?-$Uzbr}e!;|;J%*+sC+80$-Ge%jNkaJZ5X{ZA zw6USt)N%ad2c#!F>}K(~h8c1C;MUY!S$n9j@4edMV$L6RpZ!(Vf&v3STHEaZn=%@! z6_OpO*ItzR?&A}4GbtIH5kee#UWU@iKA)bRfU<@|B2TTnzs{&C{X+~5AraB1uVRvn z?OyRe+A3Vb@vu*!Nxfb-6n6dK;-X3qj_y>#A`TIj>!qOV;W09zyQScK9^8DQutk)5K7rc1oaYFzBzOMi^+Q`N= zf!QldF$szO+kAX3Tr-dc=T(uGwjo{?2JbgrWktn8MH!UsO z-tSdZel<4-9GPC20^!_NYL5|^GOvO51CgVObQ-mHF)+xWvjTk&Piik6ZHlmo3BI%H z>dR4ly_?H#d$3wi(%0@l(c0C;#>&N2_o7BeCs|%iZL(dgeHr0oXZHddNF%};?U3N* z85lL@T_5xs)zGYYWB=sjr93UILHy)yIN%j+&kn}8?42TWYVC8@%B--jGOS(!hC!?` zSE`-g{lfdNxl%^k-A z0@bDkub$(&y90$uFZDDgCMN0uTCxMOZqOE9P=`SAx!lHl4SzvGGN=x=FOq8_9x#K4VZ(XIRm`e?N=|Th{qh z+=365!P+^T1h>}L(Po7nZG-(ZJt;h#<{85CHk$Wf6b#QBqrE=A`MT&y0F4}n*CBvT z6}yc#QO%d6AuH?0l%WLBM(fX?G0bg8PfniR*jAtD^ws<|>Dq&Aq;$Us{o}2jvy_yt z*k8&axn+ukn3zZF#NypMD*_D-!MtmR;#;I!Bz%15pAd+7B=V4%24B9#k!jTa7<8iGpAtCp8El|GZR4eVfDkEQ^ zKh#~dN5%fJfk(-{>Y}>3TGwZf1gT?c`peyolbP9k>FUaz(zXDSbh%@qqHKs; zxhN>q;QB^JnVlHEw!FSNzomNd6pqd^#l>i7Xt=brE9@E_H{eIKS6Iel0`bdDW%u4d zudt5`8{1aY3aT-F^!<8Y^X#lFulAo4U;V_0u~j@Up(6EzgsE+?(m1GZkTUhFOXneOUc#==<=L*AR4+n2&xwo$R+pHBU@y zZbsv3HnrGR;&nUY99K=|k^pf+IWGP9&fLM*uV05S+q?kZN1xAP>C_78+GThwL1RT8 z!6X~bkdFCjcex%_CoQ^C`fH4Y$TZsd{*_=S!2ZroHWf{ag5Ty$ z!f(mcPpo!2*w`{P2M2OF5YvHSBa6iw*G+Q{6Y}Y=;YVXd25u1VwZgNi_2GjVAurY} zk=lU>A=$z`8JSAj&(+DF{$P}zHZ?V6#Kfrnp3by9-n!&HVrqX5CpH11yeCstW1@Q- zd9_IZQ~dVLZjMZ(`H#4;R}L}_Dwar?N&_KW_yLQXg9Fw+V1kipX*3j7N2$fdxZh+! z0vjKA8lVKxK~Rn+l@(Ki!$ACeYGOjNq^c^3g@@u2-o+DJi!Pq0;K@ zopy0_43qsMr`z_6`o9K`T8HiJ^^6QlJg6|zXN5c|#S1Y3{7X<#**Enaauo)-%*LO8 zIg*l<^%A08$rn_BEa_-LLbY3BqEMmbR(>fd2_HQ-+#mci^L?Q@FVEtY9jTS=WQzUb z+mbI?S?7|gy0>5BDl7X$hlYinBq!^PsYNt4iMGYoKp8u;(NZA=b_%1#P_Yjm!n~=) zJwFGMYN;A%5$-2s3BGqLo(mKxF% zfq3L_Y?kWmTwxlnZEr7S;^4qNS}Ww$Yy6|I@G+FBbD7=Uxh#FtpicTn#>0~utY;Sv zywhFx762q`cu zOMsoMytzLkIUIN*lF&@O-XOuX$3P&;?KTu9lEtM}dHzbmUD)24Lq&r?xCS**42;n~ zvr9{K+!~5=p!T*ycYB3>#ADyPgXF3{&jJ&RSTSc)6ZItxjs7VDaXTxHoLuW~aPXY5 z;WluUEfuTw_V%Ku#Vfa`t9@cvqTY+y$!~6xzREwlFSt|Z48y}H*!0J-NCh|bJVto` zt$|cL{at`v95i4XgGabI2aASA`ua2;O9s-=(i)>6fSkDMtT{tGq~xZhrFF^A!jfmv z?7zK+LtB{V91)>-06VnI=c>S!N81T(3og9lF7#m%Hw6z({dq`;EWzL6;uNJrY&dKQ z7a!aN(s?i_n)wzM*?e3YytzDRJ~FTBf7B`_^$u z#=n2+zV7aP&6`q7&@x_!!MCK-9~SJB)6-U9s_KYIJ;BB%2bL%$9$uJ^{qtVv&~Wkd zqi`oCgHo+LF)=^FZi(0|l?Sv3&^MQk*H$wfD-@++Xa8j;z5$Pix4u3h2GSAEVQGaB z4{BW{kIhL%-DEO8!55H4Sa{Pi`{HuEWfvf?ZqRiW?7q<4^)SiSa`j_)U4`9pj~E|q zSsl!Fcwx3vhK>aiKe?$%{${g(G~avfZ;ZtJAm(>0`w`*P#NZ#G=(o5`(%>J%2E9cg zl}Cb%?lrJV^$_K3Q{&Tbrl%q#>XdY#KXfo8ObYc6?d5#8~e6# ze|v6@d1a+^;ZUh$s7Y^MQgtGrj6s$~v&MMog-7;2%XO~QUsl+W>gJp7e``q+0FZwn zB-oU#NKsHW4BfkTZ_M7HzJc#_3lvQPB*GiDmiesVUTa zg_`^eQ6w@>B17(;5ljvi>bLv5%!)R_NHE&X>v}w8TTxvtdzZxt$V5dPpt-eE`~;1_ zfZT?9`zJV2I53>kv3~V}fnnfZe?QvsERa|Jl*Pn|Kl5Zb-Z_2MGx$eS(kfaJS_rAn z2-aoARUsV$W9H)2<{M~F=i0G_gh69+`nV8~Mct9{?%5y+GJRiQxE(T}n z4RJBC5qUYeq%9@jaevm>fkBG+=}-Pexj>M7rf!)Z`7yyzkqU0RBkw_6XlVaaqN@9c zoeRIH{X&&JDs9)S@zVKGQS9Y)kft^>rO(db@s6JxNG?U8RY%!i1I^%;5?1soHT@yTqD-o*o_g8Z&XQrT82o{hp*=!po*PK01mI(|-AiGE;Y>oBR0b zlLTdVtU}_aKUB~<6I}?#3asQHYna=tD!+|DfIf_Vb7h6HXT!X`#_gH2g`(+0PI-lz zEsx4Qmd4>D@W)JMi37~|>$EuE-(pV7{mcEHN`BR~y1L&(baX$W9gS2}RnfZRDtqyt zK23y^|A*z&SP`GXgPB~a7E691O3)yzOVcwm*ZCY(!ukB$$dTWVAF_S!>3z3f#?$h` zq3KIyCHh2Q=XABqwmoKLWo48IALWc2cYwZ*4o`jh-^xm#v5^rD=3G-G5-D2U4WcSb zIrkFyO~$_W8;XL%-GOu`0cc4rI_9>GJL>?ZpS%fxx?duAMd4|J`?3=iqdK=ml$n*a zpCI5;bLZ77*Uw|&VPSuQB9_4rq%NJXeAw93WQ=j&&yp$Yj~xB4;NZ-G@o{#`wSK%n zHXInBjzYuv?_VvATZ}L%*^j~mNf*6L{4U$i@bDxvBcqU>8j+AI7}dUwc)Gp;XDrd- z1L)6XLJ;751B1!uL{fP{NQDgaWpS{zP1;+Ek0&W%6R=)1ECSJZ%kE@h)BX^E-S3#0 z_4Qy_3mY33;)h9yGBV{@IjG*;BBG~H>-Ww5f`h-jOy`6-TaL~L?(6dz%0MSb7}Z+m zfW|nS>TdSSjm5?1O_IceLqn%Nj*^h8iw9AYWvIeCJa+5vClU#Y+Z1ZSjTAD_w_vc9vJShV{q&sz2{2^vgfnv#l2(9ZV$?(Qdy2M@IOvqFA8 zYB_ve?X*7}bKF-0rGh$BERDkVl>ArDFul z09e;^baQjN3!gpvb0%_GWgh1w*muV7a`fPDH4RO3MwV!vX6^D?b^!cIOC4Aa6G;orYXEM{mDVq+5psLr!<%aF9lNZa_) zhi)kmBqRkXY3VKn1PKK}LP`*j?vzI9?hphC1r!u%q`Q&sM!Nf4y!$&f|LkXVcb=KK z>xyq6#s3Yg^RBlL7q^xLN71$4vRK7MH?4r&r|0oKwXC+Ejh;mmr};l|5QpHg+qi(^f=vC~=ym4;_Xh+xPG z49lkO-BBSPQ_t%u3p2fd@*s7q&UmiMwNqE`%S-5}-t8$nOx9v1on-@;-7Sx1K=pMwA0Prxo66ScF_(?9(STMv@9 z7ZTFdhpQ{3xT0-W1K!B^|-5(n<=TU9}%69(EC$8HqJ5AwI@~IACM3HU1?y#)u)M# zy>}tAOht%^gA)ZVO!^DMQ&XNllr)B>wMTftp~CF*v$mYWjlUr`aQ@l82>-*W-Eb8{ z5I6II){L6VdVr?YC!`lX^E z#lM`}q&vI0KLo;GY!nhABQH$%O-YBQ5{HHk0>Qyt3_Czd;c@VwE&LiG(U~&_gueGb zL6|`SO__-lgQBnepQgu&U~nOo*&+WL4svL5)G=F-NAu2%O#LMI_NVcUh{(-LyIoek zH8?-A0$?}M1@(`ISXd#}lT-YirF+$1b*5DP_LrAP4ou%rnzKO+iI|hWQQ=(eg+5WN)mbZFU|GCnjozrxOD}o1|#Zrs9p1iV6ofhA)C9@yL(z zsRvK9szse2XFYoiM+sqPml6+I^qRELtqo!r_|Argq)ps(AfXxC*(qGM=2X$9VJqe$ zx^#&5xljz0lX+GBW5k9av>W-ROaEy6tT*{En)IrRA3r9()V@)X zvGo$G^gjP?q9_AZ$g^) zM!v6aP@H}ESnB+uBFTBOSP3f{WIoF+t@ufhF@tTxZ{~5T(4hr*Q}%U~_P~io1KNTY z!^3=+E*^rSqR)FI~S<-Rl{KhzF06b+VTFzdSK)!J$H3H-&S`C+_$waXp^+2o5|}9DpPjiOgJz4>J?4p# zk6?YAgJu0j7W()q&z=SQw^qs1bNsYER-HdmhNrwn86!zA1URrf6yhxY;kS8)EvXFMX>`A-&toZV$W&Y6q zitHwna;oLMi0WG~Bka$kfZ{V>kBB)v-}dH(7NC=+W<;vbZEQ4EK*az`hvZ}~X!|~> zy^N;D*q4Q<*WUO^;^E)S05+)jMBgpA^HyMA3Q| z`@M}11qEN$J}-RnxT%$?w0one$;Ao-BTrR#kS6J)BM>)R2n9KL6+L}+VaUOAaFuESBytMS?tc#u!BH3GN}IWX zL@ESmJw5*u!|W%#=O5>6zmEr|Cf=+uDegrVo^67glrs7pEM3cb<3Nl9P4xTCPU`@{qgWR!RvtE-R0 zqN7RKy)SmH9yQe6Vr1qG^Nl%>eRP;A$Bb(OVt72Iuyw1S41Izy{d(G&dTPaq#{ zJKnyY3iz~WUt=hCr^^NyfY_;LLZGPC+R%{C`S77!=UCFYZsIN~a5%ld8>`#LM^_er zPedSKV30EE>noKL96U9CbQF#@8TvIOq*TVx&~8dA9DE%^(_>;3#o}iV_V-_4tqHVf-|jd>PESw22d8p=qnAwYmd;ZJ>oA`t?ZrJdGaI!i zJI2B)9p|^6{?KDqmqkoWxI@gC zs=I6C1909xqgl-*#dML7Cd^t`TGnff?(2!^t2mm2sRe)NMy7VKqk;2p2$dQ zY*L7e>o3*U(|r4xbhFZdQb1M8eVd3VXL)n;oX8WoWlcy(D8k?!6k9z+MMb4CO8XLh ze*XBe;m#-X;5Ih^ZYpvMSy!GP!FN)a-LAVfiH>1>N_2x6uCiS)6+XcwASKPdT*>er zURtD-)ZLAVi(C3pS{e&r=fZkDlCdlzf|89IZVK)s-+xmSSwI9=^O28`P6UhXou$q? zBJI=N-LY>Py1Ii&QBf}=x-*+je0`D20d@_Zsd|&rmf^0f80dkSJ*9AbW6!`&1)Vg! zUXyUED_nVP?eAA0TvAxlatj%Geh~O`AG}PLYX?C0XCmYqhY}H>1~|}oxQ~X7_K#}D zAw=XdS&L^+S)!vqCaN?8f`?-Mr%&H`ST|@)T|rv&0<1!+ClO z1AR;5ZmnW5;2%$STd8FMu{TrQ>vaXD>QB93=$aC}F#2bW7 zOu~X zA(a&g700s-aqsCv$bL1&{90NHn<0Q1>`aNr)>9t~?t%b*I z2A!suMbmo0U$1}3DJe~|e(F*MSm!}AsXpf9?|tC{aZC8uad7Sema<%9yBUmaJU~mo zUG}wL6w-29Pm92wLLa8}$8hZXXF6cHn$I;+<~==^BU8zoe~*c0)SWVCf4Vhwo>o&s zze3wzO-n;_H37;)X+_1w9Q6f{n_F8~1q6Q^R+11dMFFUqHn_a4F-g8<{gyuGAIK{G z1A#7y6;JnAV~&b7F{L;`CI$z1N+b0=B4SKH`^_aJCXUEwh1;ydZEoAe%s@@Cu=VYn z(?CuL5NqN)QdgzmAH}(WQ^c?TpgMA=PltkOd-s`YI z31x<4%R$Eep($l95(4QdZB-{7@s#Bwf zyVTmNA_qc4ZU|JkBym^Fp&Uw3?YQA2e2?Q6=4imiB@j@GEv&bB*JTOV*`F!^lUhPn z)`Z$ih#i}C=3{vH5GY}-NyOZ}*<`>EvrouFAnzX_5ocWtuFkjf`u~2_$s@mgTdgVo zVUb%W1OaRg$6NYTa4=<*TjJwR=9Ay~nV0(ImXW#n!=x1V>L{JGAf;TI+FHF1=pKs; zpRZboT#`aR2o3E?3V#*Lhmep+D2cPeQ)6|u0u(+td(Hdi$NBimFGt;uE$8&TYsNdY ztw)-r=x%^TsP{x%`kJ4}-w0&5g90&s-UTc(Mi*Dtx_atP#B*`+Yt16`wqUcOd-t}m zp?CY`%1=&C4w;W{xCXj|uc(*9;4Pi(CwzY&u5WEI0#2~|`C{kc#?$+^?sdJJ&1EYh z0q0JR`yvVH5m*2+>`LL+Jed@nrh6nW8({If%KeUKPbdo5`&{k-?WOqhV5b<%{z2 z@=F)Fy1cv~Ll+mB`*&)9>J1utDfxwk@}7H(Pe^^>nkBNe}2!@F<`Q3Me29G%?$^80pgpp3!>YF@1 zA*;YvV|?>okh(6LYX-+$@wp#a&J}82^L+xmazh_D))fes0y;Y7laoJhzvdxF^LqW7uolh`C06i@f6?3Ce&1V! zsGy>P49qz~E*9Gd2@h|Q20;&jb39gJwdc?8gP^h+BOP5qG@mDEHL#zA5<;^50@TFs zLhRG{PJ}`YEYT91n>kt>?t71ynIBYER@TlN9*{szOXFy5J)?Fpd|Sx8C;)5xAvG&6 zA0M;U;Sro_V17OX;gbf+@B>UtOuadXrgZf5MjV&BT!((-0Om#rqU{RdCS&fqcf+>c zzZ+^=6BZCK+H0fsI?)3Z)Xao<+4Rl%y7BMdhsr@fo-*sgy!O1hXpZlV(|h%ba>>w$ zxIjK!T%3rKGG}gWt=Y-wcKlx)!pbu(sE01o$Fx5-S=ta|bGzQE+D5gWt{w~g+O?m{ zGco=y_Q}(y6zZZL0^lmZ+uvdyOp5!r_i>{>oET5BSqH%|d$XV0Cnsl78~Om;<5fVu zD#yXXvZZS8@3vBmf>Wfq$v8}4{2a=qo?0!ffAzhe>XeziZ*$=jgYZK@;90`(2`1)_ zCd`*&S#@pw8nt81w<X&C6yN}JEo(fLw0ezg1iiMrd8nuXqm~A zBH$jV?r}2DZ*J1kpnZx_H-sfyyrH##R3Wf0YEI<-X~zzX1I0X z=2F3GxQ6FYNyAKM$p6lxJTg+^u)!zH5|G>M^#gBeFOMk3ddDEN@&P_umlLM@-XaHT zNvt+>hdD^uwQ2sGoyW7M_W~~C@j_|X4Q3!NuK0X@-tbwk!ST@%_ikv!=%`s*p{BRR zf{ES(7M8x!>F!iP>9=L}-GhULiAs$0t8(s!kksMM^v$$^QYuZ5|IJGM?>eEOX?W=4 zLq?&LWGLfTgFr$;+C7z2vBpMrM?yv>ry(F%Xxm9-gYG(RON{a;1-v>z2KC9_C*F)_`2paY`RC>?SAb#AwW>IfaS^QIMi^lZP=V%!toTkfdHzWnt(aHk5n76u`N zrw0`kGS%s6sMjd{&D{t_xs9+%eDshI=;L=o^E^xBX=pN$kl{i8&$Szcq+3Gs|6c#U zzeK_#fHm;{TsIH%|6VAl$p4?~=4Jk$i~8P03C@+U3xz;L0Ww0J46zKp60C?!Due_Y zA`7|xHp1r#8bZU-A+j)tu1@Oz+|#DmS?LoBA{JpVfRGSELWm-89guuztQ`r(UL(+< zUOdf77O`#+ap{a$@bNf`(T~ALG+-eRef;`cuA!>dgB zgnqjx?HJq+j9g?9_Zswq{x|JTIMyj+m=Uo za3T9>bQxR>Vj|3Bcpl^`CFS5rc+IyHGr@!>Stu4= zuYt(JWkzen_&(M;Z_M3Ld7HU?VssIdy(iiF5u-Ao;|cRmVdy3yL|;(l@Y`Koo83YW zDx*?D5C{s~`){Z+3U|3)rY7!kJ;6oz*cf@>u2ZQX5yZNwL|5Pc)U=WPmhP{fMM-g89FNFQ&;kEVx0b{snR14AXeRh50=^ z0!FscVv6EVL*98tJ>AV!ajuF6Llqe9v?i?SP%RaJF~!}5HGx|$ap ztc8$~r2>pp^>lQyQzIi?_=5JzP*MFq%&z{Q`5JW@EXW^Kgk0TlPCf?-@my+Vp>AaZzxNfJ6qjU2#|KnnrVBtF}Li2XPK;&lmg|pr}s4iSMDUl&@wyC~w8ct%{(9z*Ap_{BpK+BB>sg31hwuoL6w5@-9FfV4kQ0?88o!Y4 z6(bFV5U|CB4Av5^b#~~@mxI7vBEU;EirmV}`IMmsEW^n|AMl^WbmFm-9F}=t(Yy(R_Yl#L8djG5t=|7x!!WGnWnzr zE@gd|e#sdUEvF{pyuO=;+jXaj^HA04=X0C57Dg>Pr$-!D|FOkZCZfLmCB$)+~M=D=j0^zxjhJ zkJG{dVT_NZ5mBFO$j(DXr0HN;MTGpa?Enek!}ZR5rFW~T?P%MwXdz1|{!7n6og0wvm)|2|~FAhEZ7ArDpl7XOJ4)N|ycj7%{1-L%Q;NA2Wy%HE{2a^V8M% z`}0xBJr;a<>i^a( z)%^UYPe@3wza-Ry+>mT$^+lY=^XI=6l$1~ls^UsYT=c*qlzdzmJ0R2@v!=8(YtFNb zS-cMQcwJvo^0lPEUIybV?STpbpj0+fTfSCRS#;rN4VobjAbhZ^dE?^vEHVDR za$dX5w-;N&Sc$>({rn`un`~IRj*qVTJbty z&xyPZrMQFuKtP0VW+sD-Wum`j=GBi+mmf=ZMWwyUt+w4lI+O!SQQ|h ze?Iiu>cgE1bMSlr0h=iL0}aaq7K2Z{y)AOGO-HZkSny>fRp(v?KMwhnXwb(#rHk^o z>$p{#x@$5SiNy2x*9hCvw7tr|AH8Dk8KWs%+*MWQEuXN6d9fs=eGo{1#eDB)U6o93jcc9bEJCYRzWm$;s;uz+NAe`&4~)ra(eS z$gB}T?&vt&@#zy0T3PRp?*lS?e2yFF;y?k{xJ?{$7CKqG2mdd(!)9l1Z@h+T{}(!e z{~na!1Oo&D?e_LMKKo^uym=FBZf2Ivjz1?@ARmD=O z(}H1T<#1!_WoT&b4?#h8$wND|JbePPOHiR%yB}_FSvlLVUWJD9iW^FsECQaD=KD6- z+SQ|BOU)nuKG#}0JUr~v4Togif4SG$EYs6#v2BjK?84X2x;`G7677;ZY&Tz!fM$mS zL>+{Y(ojfWGb0cMc0IklOh{(PxIaoF{gDvTp-CVt`^adGn1zLW7-)@dpFTx5>YYqh z{Z&*~QW8S3s>R2tYX6#_ucNYxTE`enuT}Q|WD<3Y^7H+LRt=4^&p&_uTroL$rxZ7@ z2poZciOz|CIPY#SE2~UQT=;5y1q77|dpcMs?M_7)7=ky3nCtY)E`C}~>;fP^Ib0lQ zp`*dmOcMY5kXL8{15fz#45?B8#ee0+GUW`~ASJ?7l>ti(f28J9Bl|iN$V%Gk7@UT<0BdS0K{;AHBCrQS} z#$CQ@&X6n$3UqA*hdu54^C=@bT6_5Fa++vsi*?kd%=57)xOqL{<0DCqj@~=fa)834 zCbYdjbprVDMeNU4qzNXv9QusdV3BgXWmP*my6QE4G&Iat_WFP%d+Rw8ijj{hf1=A2 ztKlJ5wnuN5Km$3k*~7EMyG%9CAgUwllML6W;Hog6?;-NXBI^m^t1ychkoh^_ywu?X(zLmr+V$oQAHZ)>o8{mT9u6e416SkRxnU6(I~ z;u4{)?V2T9rJL)f(eZv&B#Qh>kFo+jB|Culm--Hbxr1{Q?EwA^bcV z*{*Tr<&pmPy+Lk5*1(B=4^a1w9}oJ&C}%)4D`<$my%a<1#FXGqcsF?2E(-~!9Q7AJpZZV#F<}YbzSRGh?_|HjT9K4a+p#1)} zwMhm`NI>AboBR2Jn~UY^^OM~)t>@2AE2^BW_vbaz@1{Yh@Up9IvVIi+x<=fuo3;KJ z+05#4X1O;gTcTc48XJ2=`_Nzx3=Bxulr7Db26Q(X{m6}tWlQU zD_%DWg@H}0cFy_@>vMCoS-H7b8`{)QemzrD3%t1O-P3v5-Q@V|pe2mpJFqV76cp^D z(xxU~oVm4P=NDSEp4vr8$Wg-{%qCB5(ekdItc=N3uFf#*@r7$kj)7nxbz+vAs z@fLk0@%t!QnA)V6h`1x%*{+|qd2J?*{O4l0zJ2=%F|}GSu=YsSQX;5h?ze`eJa(z4`|pdGMJ6PC&M7E(`S^Tt z=9=vo$VkH=e^dCFfrx>D;eiKGLVVMNk3YF3Dk!+I;O6OMcAuLGIIg4qJy^@VU?3t{ z-`>uft|XaunQzL_C+o&g{sp6`0Tl9ANp;uF_vBW~jobI=RTh) zqwSYRHSr%Y?BG`;KSe`ZDr)GRu5o9F{@wB!wP-LD{!f9_JdMRa%fl_!{?;Obog)7` z3}+c6W;~c%|7SQ?Z5LYbra@g_?VflzWt4%>%a?0=$;m<`Ral=tXE-h`-X8RFpqLAd z0BZ*YXe12F%E|FeZvFY=!FT_D+$&#quWBSImxi;3$e5U*@87?VCvid9R6~$sNji2f(2;A$y730)>xSHa~t|E4>uBs1_sm&Aq@3_^QX+Db2)Tp$KB!K9vwY( zTsQ^)`=y1};~6Irjpuygq_>U1NI=K*xkjvd-5UysoCLeO-|XBaPaYchxv)0q5(UZv zPFPr6Kg-G@20&%Khyay_h2+_d8Zj^+rLIA-C09^an|_>^ zYgz^@>+fMv*80_tZxfS{5Up-wTwY#!UgF_}S*hodzqxZ~8N3Mc`!}81I$7y!Da^rx zQ_i$EUDO2Jdksp&d~(%+K%fmxUa9IIKME-j2xOGvJD~C%x|QBO<2`e#RH#mP!iA3c zo;ny504t520Jh^9>_ze4zq>(JeYUYrCH&JKU_~7k=4*I@gJ4J05?)qzY~X<&^73GCZsv3;d(cT8l90*{6M^pAW2~}4_r`HkG5wtsY#E^tjmT}FGXyT{%`Y^*HVt~p|!8d&PK7Yx3@5o zm2LM28vPqeVJDAZy1_!rvRIjl^1J5!;N)zy}GK=q}pXddq9*n2CG#`18hG#cg} z5+ZX?KkY3}>-ljzH!-6UrQPmyqY=e@R#shC8qxREsIU(Sw%O(UxyU%u*QODrzVNbf z^~;dNbj@0N63~ugNQWHrR&MdJ zzANcS`jhAK${P!CVKeSuMnm`jsO>~n#{V}u^9h06%>1XP@a+Tr8hs~2L(9a-#Qw~q z2%S-h{c9Ap7*QhRPU`9eH>~j)xJE|gTtQkF{M9HXb{5|^P}@{vJWHoPDomSV8v%(^ z3s4cbEi5Sbt8au}OiURV<;rg3yfLBc>jhr7uaE@R@#kix%eW9WM;JuC$f?{&A=Z7X z5gNDd;O&f1e`G}Drn{Vke)uC#fKHWYMQq@sf{>d58I<4z(vnrwXU6!`wHUY^F1d^3 z;ot8r-DTu@GQ>sXndvP)n|I1pxV|QmK610AQ1JVh~ zBku0txs_778_L4i;cwO38nI0RTA?pp4^}gDm3EN+oy0~)`s>vy4dsr_oy3p)Jx2W% z)cOe9Y8v(*Z7`irvMGD?=#eoWC#Ny!fUQQl<$m_m7#^ld2;w%~?LabZVa^ufqBnA6 z@R7f6jdqu=g>7lgAAxw~PjzGz8NDZ`r$1xR7VwaxSoD?imW;z2;~d&|m*Aed*0+UP z?RBYU+7WBMWVQrgZ<*EAMYCY0DSl0Q4st!&A2Mc6qrqKI z$(qV}%O5MU-S~yY#>+$0R$>|npZa3_3PCc6RDZm&R+W)4-u4btrr`g!1W3#5g6Qb+ z5|xJ_Hl}vNbG4clVQLygQ%P_7(4F}DrEu9T3c+_Xx6ajcbpu>(U+%AXfJMLcw~CIN)oW8#ns)#9 zdxRYvs1$@!qK&{u-d=ALS#$yP$}6|xaJbyq4p3y zW)e0Z7;GPxY53R6pVZ7e6ZdPZ9)Yd!qyfAhXV^dR$$Ph58t)LgJC)e@q>(?y! zTDf^S)v5!3`5(wA3OlYF-$5X3Y+sK1#+vRgAEtU=l)m6&V#*un>B+i>=)+C`MKdz6 zsf#nz(Q#i1y&GSrM9`40&h*1SAb^Le737FbDG|M2Xw{J#12VLD*4v=3gmgK=ir(ixiBVGi(xD@xfKWMKeoWY}PLCEc(i9oaL^mNP( z^78!0$dc01VTVKc_R`_6?%x-Uk)=2h&~!A2iiyek{Owy>$blF?zdES5cnZ3h@sjms zFttIh%a4!wQxz{qtn}wkWAK;^HFa})>#D77nh?;83$$KBJv_Wkwh9jjS5u+6-aX0F@~4v&kaTrYr-PROUZaRJ1XWkeFOePuF@8$J`|;GpC|jDHZj; zD*Bb1`+8{G7vwkBEhj4kQ~Cpje_6-ehOj#&E%nZ$h8ieSFn||wigo{|`z5XU)zwFK zzkWVC9$Xi2*h0D-^7)Ec9vTUOjoCYpZZUq;v|$N#vUlegF|WKpuIKM zJ-2{BJ<>!0Ti=Vz^JDB^Rufaop$`!dB0hlrgOf=C?^@#ZrGRB5!*p=2nVs)lYkhyH8hA1P6a6kJ*9elh*ac ze#QJ~>6vSG5(nVEbcPyUUq#}W1NX$3pND5b`}aT%+P7<7zQcjtBmV!DX2{Y?e*H3X zKizY*_Vk=0Xr$%dOFse0?}^!E{T#vB=8t(sp`l72fK`&|tU4N`^bNhv9%kaU;4s-+CAj7*J- z%iX`a%(EjU{hK?tst2ulsz&pDYeOH0i#)u@)m8auK)6hSr(hU;R7P;{gM$lK-*5Qz7Hr?{0*;sG+nj^~ zMr&g~nCuuCc@)eu00SYL`TKX4^I)zOyFq_nhkzf}?lwZD2jUbZIt7y!G+ z3a`O|T6!8fLpZnOwFu$#LcFKO5qKFc{}QypVl#C!J3ABxCDpp*{j$n!=8*N?tTfYq zLNPJJHLYq6N08WRObR#pi28+z*zZ?geyD!ZS zuL?M9?d`w!q?&7rs+IM2DE#Gnl%6i;(tlcK>VsQ*yZbTQ`?-@7bll~TJTbrh+^_hP zGc=-?+3Ddu6}&me2yaS%>ubpMP$2hNQ&lA-VrT#A+0&!AZaygHLeL)r1G3TJhpA0H zYyk6c6M?A67MZD4f#=JGuY|$5oRPeBdU2|ZSFCrRSvl?P$@4Zfj#oRxWSnAwC$Gg_ z_ZajoE!pn#9=yO;cxkpvwYmymvV?Sqw4bV2OFgWorbp!C@9d!K&Ft4VHTjDe_;{R~ zHh&=b_v4LlY<=1F#0)SEM9Y?{-H&rA`p(NSd`c5>33_&egIs3njB*X!S}ScYV|}>kY0nQn`tL{cDo65E$nsNBkh0oBbVq(kiycr}Dm^=*yHp}&7sL8EmP0M1Xs!tgHr25+Ulcq|)(r1=dM zyC;1!GDPErlT+YUnR&|^{C!tTgkJzm zHTP-oAUJ*BfJQ6gfyXuag6&KacL?dvsztROk>U4V8q{PI%1ggtewRI@2d8sZ$B*~e zvK^aw^rgwFyD>AQ8zcD$ZV6&?aekwrv_Fru9v#&hGp~b_ZnpldwY|L}4*OSt7P;Am z+g5J|%1MQzqN5k!kx>Vq3JdkTiHL}ZyIGD$XNNe=Dg4DB4dS4PoU*&SApCUvA~iLB zk%B_y&3Q7&%qW;{y~-nJT#2ML2T3C>3JQwPbZl%Af4CUYH~1M42yj1G&3g*KaNN&1 z)z63f`jjaW&y$j@RbB1di4p=)Fg(aXrOMbgoG>_~)X#akCHj=$RvNO@U3&+U%awT_ zNQsrL{-F9zZtE()el2M25a3p4va(zICo{=}?MPWH5nLAuID5-zQQu{h0+1Vy1N*m5g^U4n)@z zAjeVHpP{knB9m29ROBho&)-e?EdC~3^gK^xt){s-<29PK-JS&=E9*vTOUs=ho=~X4 zbZ$>o71J@Vkyr}rSGyFL85;`~AX7p4a}LUmf=!AoQ&n@(_A5ek>DQMhT(ZuS0++nw zKU0#E6FC2Hfc#B#WCAt))L)9YBe2LhY-ZS4P5m=RU@?B8?2g@ zE1z?7vmZLi$xSB+x*fRi4OHLarv~Kwy1B*1XS(iEdL%_foS%(Bo*IXTc-;L1H&c?w z>!RtP{}b!_+FHrKsSRc!@2fxS*MCl)f{6KfZ&42;Q{4yzMA(g_zY^H(mxlgkv@wHE zOL~0#wAZeo#EQXvDjYc00gWnF0OnpY=TqsT=M&Idp~^ZuKQ_WUwxL&dbkt1(l~#J04T5c)FrTVU-dAA4!E- z&(G2+2b@4B@sX^o;J`}n=S!PEqg`Fm;V+=WTH)m4;Tf?H$z-n0*}>`LdoPLo$XzQ# zkkfon9MBxf1+eHI$rLgy0vd@~=lYwW1qQ@qU|>rC&`a1b5V7^QdGjV5u$fNy>75{|R!l%afl4?$r>k81?+Xx8@>kJL9VATZ^mEF4QuhxM) zdi<87m=itD+j{vb$-I0)cN<%$r^7)`uSriUQ3VtLb7|P8|Ik7+wm2)RmO@$cLU%V~ z6bVW*Ovlji(C>3154@F%;|mL-v)Uy}L!s)ep_xG3VOx~69f6E5E?$@|PCP`GYxT_g z@$q*onVGlUFt+I^MO-3V>kXnITrwGp$n1`ymuKeC7t>6CWaWnRH8V(O7x)*8tN$*f zYP_$Jq#GO~Ur+-1CUdECO2E@o#WDO&x+GDg^LC)3le0I-*eO4IhUvD)Aa@Q@gr|~{ z4bm5h#V>z+U==!h!k9x2*kASZC}V3?5!tW;yy|8jj05MR++tw{s4xG3#jE4^$G_d7;fQPs z>6%btKo%D-uS7ZBvc6?iBvgh8v<8AJn5;lOVYiseDYduJ$bBPXoP?Z5E(*Z!?Cj%5 zbnF-RnrvADUU+L)yJRWY?FH?DsvVtfOeMHJ-P7@KY8|rY46|vjE9Wa zxx_$C_yfseB6j-w28NNrJkRHNxS=*&o!u!}L~LvXP#g|j>wPI9K`>rnD>^oDj!2`J zXpP7=wz4#hM?%ztsA2`erylrkUWwebuN#HFfo@hoDAjo}K~zElt!h47W?7lPa?<4i zv#hg?b~SL;7lS{3ydIcT+IHG%j}ZvC%ft3Tj(Eo7WJlTk;^fKQoj^Z+4kjkjwatme zZ#z3X?@%Q_iF#egG+~wi9(m|hso~Rirlx1XQyZ`s5M%(ku=wj{Dz=mf6x!>HZ@IeO z9e{wCx8InV2Yx78MZs-scGL35{Be2Sjz#&_0 zu-;%CUpW3~*XTn}h3(l)>=`(0acTZFDYvobPIm*@NU7fR=C#qW?oOYP0azOn1qZiBFx znm#Sz;pUoz<=p(fu(R9G@$sJglbyM=M_H9OTaISSQm1!_<#cs`bxs%*ib_fnUlI`$ z|2rj`1HW&w?aw1xl?UzYn)ulE-eiWCY7ig*&{kvIXQH7 zVMQ3&&BI+m8oc9gH8t5EAAQYU@Cg6&$2X9AY|D1xU{JqSNdr=;sVe7a=#YHX5v{PY zwB(G)7#r^~tn)k%{0Hfyxywz(YP8H;5pwdE4XqK(LQP+;NEv+oJ=*wna#O-A9VpT& z^)0Nfu0Dss5O;puXacJ3&7Evv(0h^vqyV#D1{Ns8)PG)DS-JmJtF++# z*mo$spw6cA^YW_6QEc<_mHYPfrLcoabDYUy6*yW%Lh5TwB2vu0z|GCQSPBB_m+6kw z;$CXYRnEob-p9L7FM_Fe&qcix9-e*#{z#eic-iMA_qg5V?kX`9Kl8En_F~7`Y3TZ~ zNxKCdEUc_B)p(`la9JhWPMc-t2emTRMn~JROjdO!_$4QGYs$!Ik!`u^=(LiKzqwIF z&Jgqb7L{bjs66zh%AsAKmzGxfK9u9t92|0_v__u-;NS7ZKUdezl>i*7-@qd_aQqyA zlcoWIHj>-SUNj}u3O2a4vKi%G-NaitIo18mH)Nh?j^LUyH{%iNH*-dG_JM>|fQoY2 zXnL^ZJ2xrWvx}s_kDbvMiU}98;Gduq5eph70dD_Bqqs~>?@0fg1Fgs^VCpyWy$L7& z^fwS>sXJ_JN`3?e&Ey{)9lb+Al=bIAVa62F-XKGW05>LohgUc=1FdDk!onixUnOuq zzBhj6<4I}o+Md3AXSxRJKi}&`gJ>|x!$fXVQC%)Un~DUcTpuSV=bu+pb1N%BxyosO zoX-wk3VCT)Iq@a<`VzGU;!$`9uM|K%$M_~zNEfhGK>uG}t&e(jwc-yVf)gMQGI~kh zk#h4_(M2Fgq97+FmCC(YjTbak^=lv2c(8JkVImLt+W6R$wV;e&E?G@YD@wv#ARF<% z245k|p-(hJXjsB--!y{p!flefhtFa%4uDt|2^`MFPnDJPG5jb?J<^;xboWS;IA2#U zW=YHM&pN~|E*{r_7Q;Fa7_4lTfR<=9J?whIDP?u$F!=iLYi+Hh8}MVJfBz;acqe4? z;r(sI?5`ucQ%8`^XhE)O_}oZ=8J;AetMpm7YDD)de1Gg`zQ3wr>V!9*)Z^+wzowr9 zJYZTrN$cxdi)Ui>4D|Q+|FTRZIU<#4Gj(4M}Ry7hD}8+ID>lq3Js+U854uj-=?2? zD=1A1;a+{xEw3-Yc`;i?dksB5RXB*g!!Xf0E-7S^Y3t4}WS2*tv=0otGMo6h*)4EN z&ia7z+wLRV`Pi=5SbiZg-o|x)Ih5qAawPV)yNFe!6|yLdKFl_vq9aaX5xa`_W0{1p zab11HhIW?on<|sR~3pTw{!@EohI$5!?zbgM0&tz)BGB7lFB|Y=xR>ShdKDN2?nYId$F{llw=TtWRMb-WfkwUXD-l@Thih8z1|T=kK(2U@5tTnMJ2(OnBe;XDF6qZN0b12a8VwG3O zf_nEiUbcU^u`w|`^IOs`Co{vGC}Bp&TQ#SC`|}G6OwCOq1Ie&MqC`Y1;V?0+Bzxl) zkqQB3-XwFlDw8HcO9xPs&ehxMN(RkmJkpTX+gS_77-Lg z8fj3vJ4G5cEiI{ZcXy{qcXxN5$$Q4P|2VcfaINRLW6o<{!N&IRCBiQp2?~)LLGY-* z?>#imf!va0qs3HlNkt& z%0fw-@2=lE`~7#*9UV{6GHc)jsil*>z%UtK80<*vAJomK>gg7ryF>F0=dHAP0#;>_{Wba zKa!K#7WR|jhQhb7@T00G-QSm;2ps~0Q$Iw6uf(|lAt78sVe^0)tK2f|DSZ2e`LE%N ziX%AED`;zfgw1j@o02g(K28tbx)FVRW6<+_pTi=2+R`Sd2wB=jHg=lwPM~r}v==!k z<3K>*=4EbJ-UiKmYEnoDCF#$=yI$tY@H~X~eT7400Rw?ctBHH$aP^ww%^OpE$PT*Q zK*gV?f*ArQ7@1J`H#SnW-n$pgmQX!aWs`k5UThx;3BN0U>n1C$?C#}aLHivEHjFYC z`P84gyR$Du-sJf=_cnvCEPv0^`c9o^_lzsEaUcsI`ace9ENDa*n!E$BrKDJV2u8o| zYUC3N3f_!#bojCXDY;cMDPQ9nt(n=>pucSXCs%)_^V7?e!opC`NO4tF_4`+C?FFur z(rchb&;k~{k%)9^b~cm1(6XRYlu~dcKu~Iid$UMw?Z5aF4VA!Q|D_zWu#=ggVSM<{ zpTGQ$>S}8IFK({e>l*v-oUa7*y6|lgoY?w#yW87U{~P3$NiuyJq%bPtgYz#KvF@II z5+4s!7Ae>Jkk21K`Y&%5gL@6Bz2IMhM){kKe>+R6kHE$PVqm%8Zr zR-zpxvam2D^3$itLgqOSn@vs*e%C8GvoS(Oab3S|aR!U7R>~1l%!6HbIT!(LP z);ciobalMAB{3~cRPCU@rKM)B;~^#01ScJB?G`r1g|z7&zX0rqqmdE9y@d8@-!3w+ zs6gjdX8#uDQkTDL@lbrZccHZpLsAb2n|}rVjwW3_q@RTtx%-gwoXQM)ZCCPtt8ff_ zcg{<{y$;h%8r`DXSwU2b+r+YDei+E@Ujj8*#q+rC7`(lI}qv|radZ~ z!jcktHLzisgHx=sV4~D6|8rhi+OXNKqtj0pfuUJ8t1UEA98K5Xwy#qwWCsr1#UE<2 zIX*?d@Us@}TCEg^n)E<~4aYDroQey0QvhDpN$mhX)uJ&_%PuH=VbX6?8bz z{ZPRPZi@$q2o3NY@c;;4y7^_nmGY8~e*F_qd=6M7rGrmyXj||-Gp~ET%&aM}3 zXfqcF`=L}INsY?NdaE#6cDML3@9z=S+H6)G-Tfq;_KhO#W6;Q|@J&p8R#*4xvIA^m z>dW^K_p;K`kKj4CEPh#$oLqQqm-yXnl152gU6b{ieROnGUc72bHtC~NZ_m5&L1cO^ zE|RDn08Ok+C(AHD{MkP^cnwh71jO83ZEbJ=MMN+pG5!xs2s@NjC-uRBvB?z8Y`kc@ zICW7icyF(|0=XOZ$(Zmg_S6&c4@B(G1OV)Qmga^Jvp%1B0L%qSq> zaxI(mjDwvo@iyBRCQfZ{!I}HfvC-cQc5>PY*m{f0-K)Gx4r7!3{YfwNFu>(3--it8 ztBJ|x9XU#-t0`uZUE@dnyk!Pl<^nGqy^RaB&P_L?Xk_y2+l zgpZVl8c4q5y~)*#yE}Cm%uv@EzJG7K3Vu^^dQ$;JvZXL@V;>xHzEKA5;K} z@^yS8+#m+vAi4%*F;m-}mfCn7r}+9hVaUkzCP;F?{#W2rsRyg1UlgY)A1~{>AM%lt z%Roz;657`E<|3B}OWCanV-WYXlhb2@Y!hIJ#nVi?LW;+8o^y2;mAa>REvToi|FQ_W zo;_QMG2i7Eu-k{ZauKvv0!V$a&@LDqpPY1Z+iv|a2S&lDHzpC^m%!9IAe$O``^>fy zw5oxmm?)PV@~blA`5o{k1Bm*Mc4q4}mo}ZMOjyYwx2+8_<7`MtV|A&QACWj{Hjdc7 z9}HP(1_=8tc#8_Wf8Uo5>@AUmGnmbylRlOWFDZ^oVsH4&!N7RF4L%!cUf50fzJ7j8 z&0i;Tlt)qm2rDCSeNelja&ufRj{Gt**Rh6$W4*nTRNY3|gg%x852Jv9L!o-*>API1qJ#pP;sB~$jj=XSJQ#%GlI zU}UkN>4vg`hNgL&-1ZfSX+(JBcNdTJTmNv48v6_)a&mdgwSiEx!`PxC>TWO&Ppfxc z-vQl4Z_`Eqgi6@*U#DkhH&@wiSE;3y^d|}ZixHgWAivslwcG2%E-1EoP9gc5@4sLi zMaANm@UUOwVAZ@U|DvL-{Le>GR#8#0Y?sXpyo`^3E%QA{oGVYrcT?T;f3w~+bq`3g zRw34v%*>dTlM}phxyyZheWs2&zF43;S)!pA4GNN}1(SjHnm@HV?R}`6oP-@?W5k@n z?NIw4Lcv!-94p#XRySMcGODAi8@2+=VjHl7|3ct#Y%Q0{y8HN`S(^XUEYWVw`pO}; zJH=DqMcGLNrlOwZrrup}j8qSFc2?r|bIr`4#rF2(6q%Uh@=(+4{;f2Es>P``Dk=kc z`w*b(?=`h9v4aP7b}VXI4QIrhK>XDO${Ee~DE)s~uU;i4R-d6qqPgO|d*_@&PUc)| z1+Cr@IiKyT29kL2btkruS%7uX(WvDb3KVn?FowhS^t{Dh4-0C zsk_8qFk~C1Mw3tESXc~xg%-%PproX;S-u|zdgYHvV$y1z&sU_i7ana>O6?LbD1NGk zij`>H<)|-Sz0oy7wOV7dsP({l6-bc;Ik74 z1Ib#V8DFUZ@s}?Q*+9H;akwh0HQiTUUj9K{J^FcLEo8s0igtq|L(qZ11r^LYvgSLX zeLUa`al#|6n-u03u2N_<*7&*0qE;aZ@u}J(mt}Qzh2&2(k36%5^aa30i}uGq_a8rg zFi#jHCv!yrZl&eDFja{Y#>z)3S@`G<%$&5_p1|Q7p9Zq9&AH_-#&?3&+v~t)ZeH`E zvVmMSYQ6U0Y3#dq3ND}pSi&76wo!)gYEJFu?kTmjiDv^*w8&w;NldS2$zfB`J{lm( zg_ag%6GspAe{bU2&-Qh^3l1O+ew(yyELB?P3#&4j-W4EZ1EWb#zNcc{m#D`bjeJhS zhE>;o?QYh8$BWR~QWD_QStKDLJ_sKCyZ*SrM7z0PwW29s9U{%$O2|wY* zP|L@>c>6SaOMFB8?wBxSe+&5xF0gwJLIZKqicWTpzkz`p1 zNj!)9WBEZUhZ|TzJ|e}wdtb^b6HD_;Y(4g3*@~5;YL$4;gA{*%|BkGZuks+Kr?(Dr zouO5TX1S$>GP+MsODm!MNj^lW$tfuf7#Q=@ERN*LDTBmzf`cRYbj`IBa`ZByid1v}b}_ zTL8qs=iir@#mWqUS$q?0(l50vKt{wsH16kfl(P3*D+>#BLe1H~y@nh>GD~Sd2)V~^6d8g4L4fDtBGHsm zspaaV)~oqyq0tEXVk*b|g>*=I_`6LUK={+8$b3HK0LJQ=xE&$$eJB-2k-4gNk(%|c zGC04`Y<1h3L7^xNqOvI^m-Ii}KWr{f60ptBJG#2|*?-BqIx#m%}FKd`m zl9GEVgOE~Eiw&n9awBVv#$ZMqr%4u;q6R2OY~FQ^&+kzeyWq_KoV& z+pE0Se@ahJ87omGOUPooQf0^D90(7J()J-Q)c$?oN&M~UVLV&&i^J9c171TTIBHY| zW~wVIr2?&0&88~G*XIjK{xPT+87Z?r0S4pTeDmd7PR`;3NWGF+GHeGwxw!2uW0aE8 zSM|AfNa8Nl^XpA&W@eRUSQ=Jo2axb?(Fq=7E%&=_ydd52zIISO1m?2PsGC|^Vyw{a zrAtpg2+7VU?1;wVvV6&1+n(n)VTy}Wb^Va05*9l`xQknnB}5SEs%zYx;vn6^euMJ0aMcVyYU zqoAOG^k%E$`opnyEA#{m@f$oWl|=h)FKMnNWg{aac0~^UHzMo)gdU|9B7f_bpv~3Q+(v1KSSKU7DbvAWdjFU-s@}a`PvJp`t4;Z&!G;Ti2{bv9iN=j`)EjWCXTzAJ^D@}v zEcQomlAHV0%|DO0XFj->_m#ng_)9u`moGL}R?DmKF#%lPuCQDt&AJ?f5o9(fNK(FO zzofaADAD0&<>J!2qrN>PAXsK(Vc7-3t)biT#y?*YWF*sds-xC;%Pz@s2uIDuWRQjA zCEGNPjEszw;9$%Ev>=fxYk-FFR8&Z{@!uNYB0Tt_qk{riPF665KybzV5|9!o14>;M z6C?I)DBipLb~N|W3!1Zp>im$mGBVea-O<3rRgjmL0iJ6g)XHVrU{-Jn$$Kv({OMq3 ze^#*Z9L(5}?$WrnQ^4LjQ?G1xd)vfYM_YSsMW2L(;NmAjcuZ%@zHmKO$XSlNug z)oy~@(ubUQZ>3j`NnZXCtK=mvIqwtB_>)`Yn9c(Jro|tpP8<}Z9tXeNyw6`AL^8Z4 zFPUXlS^8LJwQ75>q>+O1_DI_PESC+*^ScoM7n03w`ih*2ybcb^uMva^W}G)SA6NfO zH#4A1Ckobp+>oCPoRj5F9er?!n^)8n8uY(^&CbrAsn@NziiO3^J5}!{k(r*p-91sd z*%d+|FoK0}Hlq3a{kcC-2K?cmF(@sU{}VW}+~DEzc4cK`Tyh-`PrDR{QZNj6^cLjL zX)p)Mh00lXbY!Gq#%O(KN3@C#30%S*2R1q&;`v0rwj;RrP{6FG z)odDr0U{kf@*&K{4bCqVeV^<#@pA_3RZnP)xN*7+O3wg3US?sk)6qQj(B*}NXAtLF zWZfRDj_rjV{py<{gM;Hvx5&p9W0Tb-?;k%p?jF)f!i4*2-hC}+EU#yPa2f8~2rG>- zorAt(2KzDRXPlK#Slb7TDoZ&P*6Rmw+u$jYXx**1{CeiM*dp_nc`lC$j^%10)XfI! z%}7`<_4MkxFL9S(_ay&%!eXey&gWFI3_z1MZ=jK>Dak(he-PBrQ%N8dH3N^*Pv4bn zhzLRziuClBBRpE^d1<-f06m$mUW)P%6XfjycA0nD=$GSL;3SI@Kwvz0Grg@$n)NPg z4EV4)avcIbv^NnLDOfC`$4on1PkYCI+CG{V4_dcQqX_Li>J9o$UqkyN$j0_T@cxC$ zx*L%;)qOBw#1XWypgNl@;8|80UOV{;sS&=CLy30iqa!Q6M(xWB&h zFQ(^Hb>uS+m$vplAbV!jolkbGj#8Xa906Hka$#c<^zv}Zz7C@#C*M}! zs70MoBBX_L{sZ}1Id27rtLy3{@M#UYx)}@!mA5l8$j^tthdt2;OW#=OtMN0yD>BPTd5>Pr%$BO$i0ya6YGiUkz-^flh^ zo|TJ>PRW-S>oC8B1Xu|nMP*QD@zXFdzyom@TzQRv@Fy=Xg)h%>&b@qKrI+H^{Mcb{ zE;uVD28DTCNkL%<#0yavX*aVq<20Ya(-U+7gnxzESy{h83=AO)MI!Q@=rQGnggvKd zaUrD?ve+K3{*{hK_I;Bq2Y1on_i{m? zf(*we5G~tSTWeE%0?BW>C2Ub%HC~B!2Q~PHS94rr(>Kd3$v_IwC`d!*39~galA47y zK!yFKQp3Tpu!;&g_5FP|Fj>sg<)Gc_OJGgEdzPpqlokIaBw$wK=^Gk8zkhnQ*gj0E zZv=yg`_RQ)*wxkTXO;M3no=Y^Lc=jRTmXpV->ko`iPp z?MFkhlDL@j11BfdJ`j4m0+FR(aw<9er(m#3>j3`A@6?9`tXAILJplA($#v58ldncb z+PsL*8M1#_Jrc6X^1vUev0dpo*B0N910&1)l$19=k}icH2fqF@S;zu-w7+DN?XSfS z9BOE4;$?rfGU&^_u)enT>t@$&Gdm|oUk{8BL+>^txG@EE4;29bDf#4aEz#GxHu3lG zP0h^B|D$HNLC3CT4k=lSkBN~o;Mkg6?fg&P*X6S2@!f*JfAlE5&?L?WL1h*hSuH}) zZYS`2LW0PS`@V<&@#bxNx%oVvXsUTvL}v}yFV=h0kf?CgApE+#FlZ6t`EuZt!y%F= z8=JdZXSIU(K z?@5lf%Uv$@KcxB1fm!;iz^>AUhF>QG1K&u^_1anm&NVzZN&J!#&4DlAnWyA17mA4$ zB7%D6`EZlG;X;$`ua)S^OHre?i!kXPN9Sepad@kk=(Jd_9`tc zu1H``x2(WG!1DSc=pT36bEwzAbGF9Drqs7j?C7Y?|MHA1>uGr96I4CwSPh~03TOL8 zlEHMnRylL=+J^@)@XVT;s?iXtXa5KR=Q*M;_^1~?c*VwIsG6F(vS@ge>UE#+x|>IZ zd7R)nXng!QvAb%g_;tDpJJM@*wx05Xf5h(jVe|_kMsw=fI&$$w`8MDq-g!fQIlOxk zqZh|6 zBFf4i%z@0QjNdg76xPx4C$FNyP#t21IMN)qXKK}3z-KMym8JfR`V4JbERdUFDE;`Jj>q+bzof*(1z=8kTg2AJbRQi(vpLfo zN6PBfRhK}m5<*fJxww+35|cE?hW`B<=K_!R%tv%LJex>_X zd1P>q0EIRB67I=oa8CxSG>Dp)!^B{uAsu98+6-J=F`~(V?~n~pgRbX^(No9olVtKz zbumE*$QTU{w1<|arrmEzjJq2a6a`R%Gdw(Amj*61S6u%&xX_ArjCf1O?J+H~qZ zMKiFo;Yyxlq@rr1qN3{40kh`S`QFJ(VJqDwBy3gHOET05JODnR^wdT=cvQv&$-FL5 z0z;S}J3BGiZ9zY*(o}6TAr?xRom|yZpN=w<>a~k!%sWz#)aqauP5y3g#r@q-)c0>f zQFO9AJS2p;AtvUDT**jiCzt@QqC+NVDX{;bmstZ+mKEx{F#K~Ho0}If3lId<=yIIK z==+t9{jM1z0*9D{(2##{@KSkMS?~8vcK9H!;QYCLnwaSHSVud>`oRTxnFfdR%e4Q+ zaX`zAX_#c7tNV|A&}^W7vAuk`1$~zAneOI)w-OQ(Uug!{7>54--L$f_yo=jqguc!H zrT(Qpu}gQLv8Tx{iwp9%Mnt-u{H|Y+vi@~=eX_jyIS?(wNpxS`a5PMd2sw@9FM~dX zq~gfW&rh=ga3c*3Csvwolmd>DC545VcEaag$|lNw73mJw7oQS+tUM?n{JZ7cd?_+#6Fzjgb03E`ZA7dS&?xTy!SDU9n}!cX@Mk zq$v-{kXQ07Gt}yi!-HBk6~ka67F$ud9`aD`Ir%U&t@}ub_4r@EZGH(kek&z)pEYjv ziHOeqnHq<`>~=e3c}e3C#Vs&KFb78qFEIZJfpf~C9f1x1Lm+B+SV0+77{2R%A4NpG-n&{r8<^(ZK*XZ)(uFZ2Ir-kn zOPJ-#5M4OCi88->6=XWPyuauZdlz794#4fv-k8SXd|_={*H`_vh1P&`I8jpKvTe5~ z`5*J3g$}5_wP|hc>E*(^#lSdOs(DSL*Vc|n!?zfF+2F6 znb328x;Bn^L`s^%YPW+pY_E40x(mFwY$yxC5BwmX*#J%A-fdo}Zhd=yZ?D+;<}JV{ z-Gv)vV1Xkg+(0V^xDH;ht^4jjeY?|FpMU}SSFAB7H&-mM=rO)^>2-@=cy9=$#0IQN ze`el4+1Z$83d14^NN6~()aqTm5TkuU2RVWv>|mKHQp?ylYGQEkT>TPIrEuF;5Quk3 z^h`J^5~^K*?4}&(v+A)Yl_1Owue~;Ikz53?4P*2EPF;$q`C&If&N@z?yWjwL7ea&TC|c{ap3j+}v7oqp`6$2h@IevmU%!o)pF{Rya7eL;24& z8~0M@Z;I+61#yhi*6#F(Ee^)&W)GID)6$-{_b>T*oLhAi&&_3Hfc}j{(rWB@^Yx38 zevluiy<)9@$xWA+dvGwp;2D)sR~P*DnN@K|*V|$opJxCn>v?(R*?vji-2FWy@OUi9 zM`m_(w3*|&x{CL5J~4G2t}$O9A0JcKeb^8@a}+Vm*L5zJk4<1OHXtY~BeMy7bl;`Z z2&$c(Z&^?+O(UM(z%isA&8$BB<^mvk{S~NgwW+8+6BwNbfENcop5>?g0V+y12B4Zt zIzY2SZ#-6z8GCXL!W-8reoUOYtOB^l@i=Y}5rpA@z^}{Tak)?cO7Q(|7Vac02E2YL73zJU#4*j!b43<@{-7qLSx3e?cE9m&-$OGiCnvrH%<{Y9TU<;)wCIQm z(!xp$3uWr9*YigR7@`htjz>{QV9$p!C^9Z%@Xgm%4^wu z0y%|6WsQLCmi;Gl^8sT04SX1w|LyCeLeq(Vlb0uL4*>ghPtTbtAhc;N5ZJ>ck!($M z5a-i=vLPM)L+zb6LIaV_3E!M*H8(f6R=X>N92c~STd>urw$03FykI{j6LWX<;0@mD zBJ)F@6vx5g%urVXkqNrRDuiv6?iw73s;TjNYy22V$*bEPE3B4OvR_-axO)NxtOj45 zWq+~~TA>|ugf8CgI|cC}A{*GG`cOyjdkxoNZP^mT?>Nss>#pJXa8MnD~LH?{oR?HV<2r#zwDp6cTQ`u`u?XapoJpeS77$KX@o*e z7M~D}53GgH#@$geLfeMl;emeT*3r4SLW$urMb>e21%chy$*fOq5&5d+$r}gD**_;| zfQwK2C1RK|7!uE_7KH${`zh`b8TqP**6ei)x&Q+M=18-mqoX)bniAjijNDF?K2XZn z#edsQRN=P))>IY2e9NmuU~SLL;CjXVQ9@CXG&&51AYTLo-K;%Kd1t44eMJt8<}>&&nKbKO z^tb6h%h)e+D3*x)^@LIy+E}M|U?iL%?o}btf7ImkLusFBB_;gbB|~vAJTc1t6beX-26Yw> zI_>J+^HA@)xw(H3HC=r=qb?_vxO#aaZyMvIzjDN5^^BWaH#pcoC@5FGSRWhrEDn*5 zUWxL06%sRx3_>XWepJ=g9+K10h{B2G{= zN<>7XqpwfBwzx=7N=V2UnUwVVBNXd4{fX1gNBy@)e@}`cBGP!)p9Afqp{uKmO-M*q zFS+g8-JjRrIQrBOuRxa=XOvT@gr%*b07KBo{fVBh7)yui>&i5JeZfs~rz1J%LL~3a z!C6$^A3dHl&@DUHMx?YFOA$KQ^h?YEnl0jbWxbgH6k3Q~9QH)6ouu2a*s zvZy3AH34egJPeL)aq%BgcOU8H`&AiX;s5BTW#r@#=o2tSQU`yoIKlMH`5h@-nUCG8 zU z$+E3;94S249448f_P~!|R2kPp2@>LT(R7XND||>^NXP6R<0wWUqIk=1-|=UHx^t+( z-V6?GJc!{+{I@Df&BDpZsI&pyeD~slwjLs4urCa#FyKlHSXy1pd`d^x#e%PK_X0XQ z{SJh#OKOd+t?@0UAWNfbb8%6#-~Re!+ev|vQubecX8iSK!uLAIZo4S-Fx4Mr#9UUbX z&>$7~EQ!I3>g?`5Bqb*MgNEQ9AHT&cE6Wwy(XlozV-M&c2Q*hdJU#gdT&|I94oO(x zHNYjoq-}2ge1mizF8!w6*?hV@;4cmh5A$<_ia;tk@Gs1~48eL!3E+pJxw*M9O1G;) zBBE$veYB(mzH%vz8l@>=HyL?(X?%o+gQx0nGd8ZRJ+k6=gB~Lf#EgxJG(~#dxCe4) z+p}g$JBy2A7?=UV72x&YJEynRI! zw-3cO9aOUq0b_1=z09>9?%(a$k}5THmt1NE8e&MV5BNa*{QIy&cg>pPVpm*L^wmp^ z{H&}Uz33mn^cMp^9kFN6p3woxx`UseUkUgNSfL$0kzrwTiz_P&phLSof@A84Ml2jI zwh7n~72m#X{-ie0*UxxM#6lQd$PgY(8R8k3qoS(n=iqo@?J2ug?g`ckk`917a-Dax ze74q)cNjLGbH7&)L*Q4#wf#bxv>rc_;Jv?{D%A0*sHusU)6rQ(@P3n!BG+d0=u!Az z5Gzl8{rVyW(k7ehuTNCnR8-m?s7yhiY6j$5rxC9!$jW}EVqo}<^*)-d&I*3En}&v9 zyHOqpc(Ges#bT@NHd9n`!QUqL8T!fAc<<%7!JX*wS5?*5ttM}2GZ`7C$K0*7FJ5GX z!;@m2AO&tf3Ialge;gZIp;t5u(I%9naZD4S7>Wjkzdm-vRbXJC2U8g}J$-AxvrHJJ zRK1gmuOlI3KTd(xi29yLs<^4?%M9I_bxPX2TwTtQl)ve-02OvxZXE5{Motfdrzu1xT87?mQ#Mlfr*QO#Gx&*Uz&9P@gI{ z$XpGD6&ln_i;5RrSopBMtSk!nSy;DF2da<+swrM0A93%F7srjZEH#9wSDz@F&ejDz z0ZndXw4FY(_P9)YPft-1+*$rXg^AaEurvp|x-#zdR;(`R(ua47EV92L-yq5Oc5-6t zsak&XloAh5<#5t0{gEWc2Q_C6tJ58qPe+TdsY5GpC~fih9FJB_@5dso_7fTIO#T*< zAO=kw{bOP>L-$LH2v27;9GsIT$RJ!*GBTp~PIhxIl%WnK3J(v@%*w8&9Lm&N-a|#B z3_my(n&|Y*xQ9XEzW7SfxpjB#`uCDi{8O>3#7O_CxBU*Q+9h6pGZGat-+Ut7=MMae9c+v5z zRFBMzjNtyRE)p#=J9t zX2zqvzh9L}sQwo%*J;m#KW& zXB|jMHO)^{+p*jZrSrZ4je8Aj zZ=>I;*uMuS=_4aQ>5z~piv*UueR`l>RLrgbG2dRyKFyw|NYqU8+=?D8|2@?lLj6i@E5B=xX*1J~%0!STy{`SVzJL`WjpZnzI zcFW<(x};HN%(JsSIk+Ag8oCaE!n?pACbjqF_4Oe?fnBo$a%Y-5(H4lVSWT`V{GAY_ zJPV*T*V>dTK3wfL0uY0eEzJ6OgEoQP;2`ec5R*Gt?V%s?JAM7CuWD+}@t|hMK1N zDKNpGe5Nus$wh%9&NpWVU@{L6id(K(XBvoY|J$)aA}ee6QCC+%$jc*J(qPV&<0qSY zH&F`HA2vEXKls*IuYijYTUc1HNHLPD>T|fi|Izz`nbaACT~Y9Hf>2Q@He+zXf{$() zI^s;Z!?^J9bX{%j5d?AzYAqd|5QZncl%bLhU}5#GV1Z3p*@ziZGMTwu&yWLZMRmxzpEJ1I;@pa7Qo)(>yM0>Nz-i1gEA3z8m8hL{v!VMoRp7YYddpKOhw0R%z zo9#V>ZcKbQ1<(8|jA~y251-L$x&CtJ@f%?7ih_i7cuKgJDp{}F`n$35mcjYV*qG#8 zH_K?ifaYbs;30uXcIte?$cRcodb-{MFg$c9!R)US{*qhDweN4?nfxo|b-! z$GX}_VA$B%G&~$Z3&u<`9o!cI5Ttv`+6PwL{Z?ytX|^@s|15n1#xZlE%&V)bS%Pji zNp)*$KRwO^jcjeJ79dJhH_aBThbyqLu)dEc)8R=W$3;eFc4mRIMzkSJ>=od381BrP z$rb)r77v>B5Wx1Ml9DJf!N04W5a=Y@C&Xr0|Kr~%; zLyNh*IzJ4q_eNUS+Ij*m9Re{)njK{xJ#YPtCrZ%sf0xVFKqGaw)G5CdGTnZ4#hwMT z{D|-0Tlx+T{LvMAyrPWeBIs%@@3M()Y-}_OUOa%qqM3(>{3EDf^Ojql+nRGfO#{>3 zv+e>PTdcnL&QEMFUy4V@qOQ6RV7BaAbRB^yn6Vu8E5QAhItS)pz$4AmSLm`z z#X%vhs=D}O7}4ZoCrGGBOhUZ1TJLr{sN}?Vs1G^zOcc=3?ccZ_h`wp+6nx&UAtvSr zaS&vxDi>HoPohIZmm$;qlh4Qh4n08M$1+`IgC=is22s5{PENlSD=P1T=jGcTDIT}GETHejBNj9^*f-Vp&8lO9EY3pLw{X+Qc-dCTAZ}A zvr~bEkW)3Dq` z3$lEL@qi2jh?exUXKFr&!!!&B)vHl>{XUY{^%d|SrgAP`YEGK5@jQ9Cd(L;%&2B6L z5t-H>2G8q$%et*{`zw94)NmTjb6I}yu5PI#v|(hiy*Uzxj5YImZ1D;8o2Epb@Y<>V zUCD8`n?uAQbROq1DaZyiIOvISj{2vxwPoy$fq~(JhN_gm6A=+V%E?up_uWa~^$nlI z-PiH^B=kNpFxt-CT)P^vHHt~-K{c2HDwkryAz|?9=omYjuqp&R01!`irXQP_?Z&?m zF{2ENnjymR_CAkwbVQAeuXR$Cm+dbIBM_LXb;`e8Xk94Z)oHl8zHYg^xcCEE+Qp5i zl$2%wm6^A!fsi7mA@)_als*4L&?54vC@Bqxh`Irmng)V*oWP(Df}a{L9wVtZmKPTj zsFZG4X(1SXF*kQ7B`2Sq9=und1l&96*0Hgi;6}-z@k*MHx9I7Z=eGa2W~XXUNHM(aTG1-qo;Fx}$=jZu>2iYJsDp{jWR&0$2=T zYE-VBTrcqy4@B-6o<~I(Vg*L)!Q|CE7`D2)@roq{+++927G4gQT&B7v75stw7be!#PCQBh5ehSn(mY_(NmxGuf zZ%HscigSj=zkj~RGxU=Q5iRXng!>7Zh~+^hEmW~gm|9Q41?D+qnZ9Dh=&<{Kc`s1B z%v?rV+RW*$?dj;}nl*mre7=m@*w8R%y0#{@fd^JY8Mr3#Z%AB#;`2-dJ>RTu{N3Dq zqZV}NevW?A6BBRuz^IUedleId({#$6i13+(dZnda<6CtoH4{FosYNi*=$NAGvasL| zo}Hb!J{JR!xg|F(t%He{wzavv-RCY}P-Tq`B713Orlv$=Bi|_BpZo4QH`CeM`w?oL zY|V~kb4BM=0N_$7PZt)bbEm6qh=zU776Mqz0U1aX;^i%)boQ(lsKFJH7Z>;c28Q4@ zM@2blOP(ir>Q1xOYVdepH}p%AVI35XB^whrR8NR45G%1f#9gg!j?}ihFx_gvwc4TMG%8FsWzJ>>sV~ zCVMUOwLwqc`{;3@p(zh3D3r_p<8Q_|I4Jt`2=D!?RKGy*ZkMFs zBgBfKHeY#{7#lk15sORzSywl$a+W7pl=`97mHqdrH)3tDNPIN`s-hIYhF2!USTdy> z$m{leb&(wG47$91B&>x=c(;g|F^yQ0LwUfa)k{k&^l(B4lqUO_NQVTrIN$?6#V;b?D`sn9^4J{)scBZo{aK%%R}K*GZ|ptvDSJc)+Z2Q;j)9Sn zAUY{e*R)S(nkV;aYP@%H^+g>VcjMF z5A$~<>T2Rp$f%95u{tzXU9)9@!(pcSvl&h!I8b25^VzxTI$yCMW&WDWaRl1)X6d*3 z0s^+%gYIK{BO?+DJgM)PA#`7$;cs`lJ|1zJ6a{H26(Nyb(JuK6_`BX*@#KPVSwx%( zk{#~K9>KFBH8r&y@F2%b^RU}ra7X}0(n8(;AX+;ZyxE@`7#nk%(SSRyL+86%o8ZRL zQB^QFF)m44>LP0o5q_dgP5ov$K0#gOySG>YKtEZsNrKyOX^80gii>`i0^KLx!r~)U z%{pg4-r628SAdN6+yiuUbQ?I5Z+|)Df>q8GNE5&2tYIS{-2ISmBROp%`}gp#UGJYk z9IvmJ*R_0q;`M8n(UAPQ3x5`{tLLA!1qzh;p~>na#`o?+-LqeVF^@T&{mj07 zOZaN6YpXDKbbN_S6y2Pblhf1aaqp#WTlY$D-2Ee7W)>ES>xO&b8>ikODGPWzHk%`O zcShhdb>s=u;XWB=Q)f02>Ml@R=UD<$ke8AYK$Bz4Atola1DUJAEVRobm$%2es^>J)Fg*AMD *TSlaP z%nS!S)dav9!^WsAlKq>z7a?cAHBlPA+ZsR=(bo2?Oc5cN9P_{bqM}wHp@#|w8(SVE z3A2ejR%N(B2oj5i5B%(VfVXgVc-YUD{s|14Gl7N4S)}tHO`~&s!NLNjGz|POV+=0d zvk~COf0C8t{@1cjR-Y;h^&`M=!wMoIix0eC3ceD2pL|akNjmEJzJEZ#zI^7eAAoB% z!a%(oJP;0zjNpMe{4i3ojFXXT@;luCoJNDmF>r@>;$%+l}?=Rli^FZv5!^1}EGng}%Ov zwOd{H-P|aFx*dkKklNi#E+NZ|$@dwX*wDJk?6@XKsy5WY2(>P&y%_Uj?v zf1#ln&es<#)4)J*yJQ|fCWue@nECg^2R7r~WD7ex0$^bv#;9Kheh1>f*Ue&s9x)*d z%>J)y>ukFL;9!Lkl9qRD@9<5rMpW#%+@Y2+Y+)sixz&30mJt>hFIr zDxF7Y@br!-Zx2S11pA^lMUW+&|7T5`Ww^r6_r4Z3JSeCUWKsqVOMd+tAbd_|dblEk z4BUlCpmOUwl0$FWnx2{2*i6i*yF50u+1=Cgt`u6TeJ-=E4qz*XL-|kxxyezGW&K*h z*qFatcoi&r?Dy>XQL}^sdhfl?st?YHVx=?bosm~iSVDBKV13s0e_Q}mB{pq1ovxtK z?X)gUBe7_NMljRS-u@LNjL8g5qwOZ5V`E3{A0L|;;8*&argw)5OvCX( zpZ9Pc;&(_WD3aBxtSdKR_}+}gjgYoa^}zS%-{0X1U{L6Dbsb{c7)YOW`{=%XPnFH4 z#a*??#l=O?)zd@aNjeKed=yZ(5`O1o1AwQpGIQXr0d`nu@yl54zfEI3kyTPcevE%q zJau%$fvuN@jD+y3vVuEYTW4_%`#mWFg4Oy^YdYZZ4l?~|p`r6#_p>Sf^wE1b?k=<* zPCV#)&`ml9%Ce{MeiLKPwLLvOi#On=_d-C}8cg+wr{MKba3W(JAR?RDif2Gn4IpoI zB1S-vdHXh&fs^xNZ$m>x*bR^Rw7`{I-|G(_>Vos~?q&VS_w{}78CU@;%|0Q#+B&Q8 z+iaKl0RiD17ss3FGVk7Xlbp;J@LSOWCe=GNm9;W`JU6Ek_TfWeEp&F01`$0Pnza{J za4&=-VyZ0b@;4$5;Z_^4J=w<}8kdV7;u4k$Ftq=U3asyb%u&cRpMw+Xg^~(Ij*bV- zQn{s7@$lLjvdEJM9@*L9N`{7_xIIqAI@`<3%y7=WAjZR+xP#g|&uZXUGzCkA%DlWC zHn-cAG5lLO zI_jZ%?s{~5OsHDtTyzFlD%ScOG{C#sf~UgJJzh81P&tSd58&`s41HR+!QDi&=@mvX6t8zLqJNF z;_`x}($PYzwx#@|5}HR86x55`+oOGRE-cg4pLe|?d*8{(C{|f4iubn$(9#?lt&-0G z`Vu`h&cn)73OK3}F$_`O@ZGev=@Wp8>yIxz{rXZEICBOA!bRgay1xGV(^|wye5HSo zz@UT>^T+$MJ_Bum;3SfIEc`u)ejdXCT2Yg zjD|`<$OfM56l7#=C8U+E*DB7CNP`@E|0~==2i};i2|zXzj>M@n=x4rxI}^jf-kv7I z47ezyTr~GHB{{k<$~`@sf+x#&16^XzZw0uWI6n)pvR2dq`pWi|{DHXwH8pjSk47-) zDs~c*F)#tB4~Ih)7|DUW(@&uX`!_vZot%xyBbNE+xu)vp(O+au4?J zjCc?3x_d)2GlJkN4eFI&U(9wpboY39ctXMK=tDXd5q|t&puc~vMC$47*GZ3-{{9eb zY_U9ELsQciN*_PIZ2IYcj3Y!(FU8EC=&q$Vne2Ua#UBJf&<{9guAVR;g@t`oBgVpp z!>@O~Q>PvAX$S@OmbMR9@)Pc}p9<#YlB1gAcs*4+y>X+Db-eh?JNqp}K91AviY@$r|;-@nIsnr6VnggXK=y89x% z|ANUU&u7@CE^Q%0Xs$E-w-;<(G%9>c($G2Ws;W_6=h0nI$sg2)02S5o+$$(p#gv^;4im!nju~20D zi#xzoJM3mDcw^T%Fi@eQp%F~S&yQ93Uv~?#O{_*R4=ZY79OE zniMSX(jPxAnuKmDyotOivVhjal(=7&G&@*k_wpqii`U_Y`@yIELBzzwpRZ?cbDy1G zIQqR70E%;3>aV#gxwl>PVijd~_inB1-P34mZwH@bqT`+M;s6LEfJ=Q(u0L0;GX8r8 z=$;TwTwGG$mh^##VoQ6{mh9WN8^E`D6OkJeGcE%4@Qc7vke;L6Rls!bTmJO619L!! zLDSyeH_)TeBMWyK!jXg(6e{pi54B*qbab8H$HfhQy?K|JRDV0zS5opfE5}+LP~Qvf zMOstV5O&^`-IztTBZ`>({AliG%OggZZ-PJSf0yHpqhJcj!^|uW4!e=`GS69d-|^|F zR#qB_!(3Mq1r^n$;Dr)g0}x((?GI9bbU;eTOhjwIM|rI?+`_-N*Q7bn1=s*#AnP>~ zBQ5v!m7{(9xZ3gk+WbOmSh>*E9+C-!M12PWZ{y0q?f;|cDuA+DyEUP-AcAxX5`y%h zrBjiVM!LH@L|Rgi5&@Btl18MZyBlc%>F&CVf99SUXB_3o$KG$O^{gj0^-_%E;#88j zwZO^uQGK1D2Xr3K7VH%jW7fENc<|nq8vf#ql*)u_Y0#WYBqc5FGq9V9dwY8~tZZ#X z@#TRvWQU2-ZwVSa4)*Gp7`E||k=G!V&GCQC0zp^#cWD2Ahx8~{0bshWVGlT6;NO+U zf$bfPaT?47;Vt|6Az&CnDd;{5r$CourVbc}aN*$K@E{;?a&d9>^K!%HU0!pmK(Xir zXmV(9Y^->}+4}hCh)G2`_Km4IiBxi$o#~a7uCA_tzetl9UmAEcPlkrZJmq}KcdK-G zgTCPW7!g?#2gV1)knVT-1Jo&swmdX zwy!Fx*xFXL_v&zV#Rdlcm8x(8DUm?z6WbilgIk z0cX#bk`lJWdiT=5HZWI@(*Y621He%7vC$JDK#Uw#35WbY2mN<)0`7xVLO@kdV85S+ z3nRx6qDFQhA#6Fhh`^Vx(vKXUd6AQCfi?UwzMWlT6wdQTZ5aI$HJ;D9&3Bucnu_<& zKoS&JEiVPHzH(1@u#LGnng4Ld*1a$DA;KO}5u+C!ar%z2Vv2ZL^%TaQKgKT+up1Vco zE%WpuEImaVJ3C6rM~<+4BL_czV9O3b-PRwm@9kx_`Ynt``}AowBw)UQ*gI6H=W3x& z2SG&4rI%WfR?y*r<6U&6Rh{QC$w+%Y=mLH~$zuY+Pk$p|?1)PY4~N_RsY9r-g@^sz z*lQrvkU*wJH)_zb0I%B*b6VKBX+km%0Kt`(n>qdW;6Y@vS{2M|@IQX}tgttL%=`2O zFE5wRS&0?27@^EGHh5_F2-}5Z_>}4QjzO(;1O32`AI96J zt^_wodvbYgzsGI?6`Ye=Ol+KjC6p2GUYHr(tyW*(21^JdeG3)c9YbUlt9+GS5L2H6eU`Gr=cVsb+ykehkqO`~06zh|=4jP7vWt>*~rTMv*SD9DDW!X0MMiuNGFJ`D9_)DT0auUo(Qzw0*&A z^Pf3u`(y(&VBgEjwV7zrqM}X=?|$8V9sII!?tSl1G697$BPVA#|6P3o%Vq_{QwOD= z1AxU66&#GxHK+&SwiC$?LTuK9hy|tondn$Abz8nB5poTbdZNO*%rDfc`~USJeFsAjSd2D26 z_MF2=qx6EV9bh8~z4`A*Qu0*mt5c1Aea|=R>R-?B!WJw8Cng)+o+_M;&L~Ero@V97?;)20=q>A(jxZ=Y(Zh$YZU+8q_qw>>%Lw zqvSz;A5_M2KXiT}DctriENtb|qTClQEjWGXK^QJpnxRDWoet4rDI{2mLD6O(K;&j; z3Rgpb!stQW=Ki&Tk*X=$jOb1ZFfpZ+ zSJW7FU_U}?AflwiiG+fk5gQA)Q)rkSzvo;Fh6D^omoN^%i*P5v|1u`zbK&eKCT2+a zGS{yElAGK00dU4h6y)R-O^*wKi&g8xN#t{Vjf9Fb{icj&@?kp)710-S_Xn^h-zkf7 z)ZY;^EX>UGZehMUUuMwM_x|HYhoH*Jr|W~%0!kNdkQj3Tk+lvHXMpxp;6zd2ke59L z6$n>G3_B5iJ0cr^+BfUDl;;ch?QmbB5Y6y|^WVGVYl+R0G%liJEkn^4@wyNmE{OM>jl0RJEgT~4ky z9|(lG0Resql8h=-4qJTLc3k`vVRIVY{-`(($bPHFW)2R@kn7^ z2Z*_4V3d&wnrlOq)&F2Z9!A*+Mt*>Bpeo+2HfVfJfJS~wgj$9h84ymSsI0Dz`_9tJ zK1L8xvJo!-&wU7FK5U*5k6B@>EKS*eWoPg;cfq7>2)D%Jr-YR-dJL`=9xGAUIC0d8 zNi{W|Ny-u+J>#4H1e4tXay-1JQ2PAJhEz2Yn7>u@r?YC1ka^2ViHb%Qy#bHB*f}79 zD(Dl2fTV7K{id>lOEPBem)EK9rC7g#xw$*fqa7&MFtb1XyJcbEEyymm(_j~pPn|fR zN|sBj`srrf33pXM4GifDrk>8F`(7vo%TZiNuP~M)LBk~b^5q+DcJ|`WcG~FZVLsW} z(b51$1^p}5)|_I?_5rK;-wFIz7n^=v%+7j|5l4>~cGgx>iIqVLzBB|oTK2}R&R%B$ z&l~9;n1U5Td6=BN2xbR4WqILkj1J}L&qmYQH1!X^U}RaDti&?F zyL1T5xaqFt4kG~&m?mBo4+ekyXweoSj?e%v`B4Qqb;tIGr-maP8Ye3n8X8D@5u|*! zc5e^KQX5VC2;KRY$sQS-tlTGbWbQORs7Oy|wZ1x<)7@SkA(?gi&Rg;5=(Z1fJuU&1TGg?>$yl#J}# zubP^lcVd~|*49ETIEWqRg|0c^s)x#Nb_D8gn55RcH=p)C`p3Sq@H^n;AvyHO8R*rQ z={{9tej9Iwo5Ti|Z>}#*7Ir`Zjomyu(BD4@!E=Q=GGBW8o?8LyZ-uxRUIsNX0vk-g zc-`EhYuZ|Ib`KLjIV(f-Rf9ps^yPq`uKXSB=X1Hu<6W2rIdKo4#C361yXrQ0&;A_r z+1}Y97Z)vuD03YIgow<{dUKJc(*E1W(`QF1^U*T2OSi)>Hs{DO1lD}PAdsrAkOMcF z@4NMHdk`umJ30w4qo2x2OA{8RJ!jypb*5h7NS4b1;Nd4P|8)2byiACb;6Omg{7OZS zo^%XX~{Wxqz9AGo4z%4 z0`8F3D1MLtD9MM3R~(RF{>z0NI2 z5uKqpS!`epVD%~3f#vk60uleu>8`N;1r!zu3knUkDmW&cG+$l>->ff!6}d$u;^wmHZ!Y5=qhyObfdjX>UQ0JhTeYH7JAANTf{ zlv|j2{I@4dBL{|tvPpzIqgy~MFT4KFJj}3EgE>en1AO#wQ0@mcQ6Qad7XQ2e74aR{ z)bvoKw$>|0P7WK*X6hgy0xI*iTQOP|8k*O$&CM9D5qDp=y^Yh=-PMI=$VSvVIM{gx zh-MAMlxx_&uLIfl3|PQs0}>>nhWrSK&D|-$+r7_f1=Hsb)k<%4z-d!eNofeY`wP^3 zSg;ZPp{6h3eMNutwcEVNBX0RMK%fx&^Ku-QP)KL?1a&Qn9CQ*Ryk^2W&VYuq&KdsNxb_!ap3ey~H1Rd0t*8);AA_1wgh}fA{7g2hE8)_3+?8Eb1DVHd=h!;Ji8W z7g!`_-!lEKt!VZ^w_!(!C(N9WUkHG`7)cDPZr#_MtS?L7gZEQ-R$>?_p(&3s3l#J| zBhCMm1)WDF7FI;}lu`4|M0nc}_~4?u&H%)84fh~we=o|z&bGGu zDL=&M;xrQiuU1ov+d_gnN9>myT(`Bv^z{`(($W@Fd@hglh~eLXb>d7yLV^YvJf&H2 zcPJkP-%`gLdTnj(@Y~-3(r*|15MUx*jf~`Ls@W#1t(^iC=eL=)wQkdGZAG%`6AQ-; zJ{QHz%!T=|PEY~@qGiERE40*e9*z=FnaZPYq=5$d+qZ)6-^uj;34x{VlPb8>+55H> zXGuOKCN8@=Iu@N9tN9_hHUV4<)_|&L8x+_f0r5Rgp6nr#$@`C;Es(_iPyhbf6OUH|pNEV*YYpCrWdf^S)Y_2%QLi2&?YrYL!4;ogn)sK=!L`C{ zgE+~L)>d6Lny027TOxBvDJq6;p6z!&1?(msPA;O5w8Sd|Ow5AMg@w)!)aG5CoefA- zh>7`r17&P9&-~f5Zo!V|5Y{e84eT5cE@uWZ<7d!Y;h&LaAq0kmSXNYsFLsMY( zXZD5mtCv3_XzALS$}fI={fa>Q!myMm@Qp18FmUjG4jM7Cu!J!rN=r%Q^4Z+xrdM@l zBo9DG5OzmCwLgfQ_w$nn1;RYd=D3gl_n#msF72)R$Wh{TD&NUfKJV-G2Q+HEE!aZI z$rk)(1FJaVGj9X%!Xwg~z6qfFv;-f==xSN4kL(|BPGGWtbWn8^9E)_U6^_y&kjHTBz>n6#Z;Cbd8S z2pq^6G0j zoLK+B9)*eVZ5Ghw^Pi8O->niXtSik6IOvRQZFgRyVkfB*k&q-#%?SJl(DBAhnF%JV z)|4M?*;+UyzaO21{`_h8_$Y}O13F8WfqRkq2IirH+Z!80M6fovoGGug8ZRtqR7iCF zZV|re=>D|be%~Vsj>WBpSoqz%9g_cJSyg{4^=nKUg%F&zc-@nYF{TYLje8oCc6q+` z)l`sTp!E{u%&PCk$JT!y%;oQrHr1{4Ey#d$!dib4)PadOC8^%h1TBsu6m{9_sqX1$Jzr$7^z^BccU2M1xS zw-0@baVPfoy`wPD_9cXCc4uBlL55vLmuTAkIhuAT5{#iKm^r%Bj z>b@SBW71YuOy|(XMV5=VfSH>OoIQUOE6QwVwPdAq@(VT@5Ehy7R8>uIv&;~@o|dv- zU0u1qvxh8us|nPM={lE9TT~IfVY~n;g`osX6!XjW94y1co0yju-##91ecCZO^+x1+ z`gu(oBWZa!4y5auibe(5*^C(UrvM9df<~e>S`0grm=H!LnLu>IBTO7bmgb>-6jmz8 zq){b@x(ic^`<7QQhjnglp{Z5s7l3vH7!?P}3-?9@wztWR-USRFGn{`UpXFZr1&p4e zy}iyK@7|>gX!e~(lJZDF@z)L3eZt>zb8GR*qJZoeaQDcs?P7+cAX3ML#4_SPF0QkG zJJiESL1KuIYKjjvXV8)oY0A_Rw=-f(8anOt#l>cyGQ$=Q!X!iVpSd}HBs0Cvt}aKy z$8U*5&x`ns%q%URd`Wam!0On&dpjp5@{tS{*a>Sd1O>IV9TP1dJa)Y!dPB~4wwQQJ&7@*y z$xCKf=3sm&ch5Eg@6n?f(>hZuj27$uTL?{@3JL6h|M?@*KO80TLfpGCL z|Ng!6Q$ap>hf18zk)2(iuGKR<7~nh2&B>wO&CNDBfm{)X5lJ?>g+Nbd=g~(%s>i^W zM>^|Cs^5pLYSm(E%My$5w$Hr+<+&vymLw&p5AZ`a*5>MK?~{>z*}#o3%=yLg+~*~q zW2?dgOC8;M&pziWh-`H00QZaP#WRpUFxfCXCMOBv!IOPv9f0>9DCx}r23r2+gK}MJ%#p$ZEu+cT2>s*tn9H^?dHY&ZrWJv;lbo zL#$}I-8==~r(mvpk)g$w{sVlB$K##e>h<9_7f|IeaNs!`ku*j`6iRWg`kdUpO56w) zt5;EW{Dtb@_;JTTaTt@t3^F1_l!s+2L9M_vH2ngC(I_Ir!*`=X(bPr4NTrk<(Elz1 z6V5hPI_jSDS2T&f-@;5xW>j2UG87-Ay}Z1L2b!Cp>3`1g$Y!X^iFQu(aT5seR3Zdk!xMUIu9MHElCP*&1fzXT$V_H98jXjj(w0uApx58^qb)sX`<+_YHR6Y;ns}=-iq|N?v67W-2#*ls-3e+u2JSbPiB*M(0J~T9+2KRyq zXD27K+7oxEH%C)=OlW!%))xpc^&a5hh-y*IR5|Ewef{wRyG&~U;7aOn;jNjUgsv?> zhZ-6L&qY;&{DC_tK*qb?_nM!54_)Xt>U${NkDt77y18moqn+x*20koFX}+4OstaYH zZs4EEt@U-5uvYcLh2G>V?(dsG9VF-B8YR?XK7^~h2&`Zfdv?6=G2#vYKC=0vg1!?Y7UNkCaNaC-`wmWK|$tN4}KHwL4xLj z21|5QRCCb=0>rMe;NTRu2W2HLEX24ncm+_P-9s{dDr00+esFe%SCZ1dysU6SLY!RZ z;Oc5~w7+jvT2}Vs?)Px-C%@m!1s7$9Qne)QHz|YbekUhUE|9R%#cZ4+D;xIN-+%D< z3ff0>ncc+1MAkFn`#|szml*)FM28CYpSihi(=fCo*+~Y*gas?BLS@juSCE8esISjv z_~5W3`c*QwH>7Bb+qPs1&E`j9(%qW+f$Z)K6`j|#I51b(^u-{93 zV>o;IOeI(Ob4*&wmoN9iRk3|9t`B{|3zYOf4i0>Oztu!|XtdiwXS$vj7JZ|mN1|D4 z(847DfHaq9z2yln||&LmY@Vh_N)&DE&K@OPnp_V?159 zr&$$K?I31J!M|ZnWEKAwm}IdTE620A2p+oA{1Q4al+7hHw1%1KGy8urDv!(RRezV( z12qHLE2@8Iwl+x9=HJ?%xvvOt*`gz8zcY(5p#}k7Cjnq!AA?%gfu@oD@84vaF(B{rCXI?;t;x;yu<&50LvEh{KrdXtE(ge-ut%y zWbWZQ=s@X5&C^p`&HIW>nBoT&9bGpJu7pf%d}6@E5arkU?D%+tBRrS7aR1!Szto*$ zze`K^8T)69-zq1+O#NC)n*3Swg$MA)4(k+Tpf-*1KG`DP%DDjbA>Qn4{f2Pcitz7{ zK)Z(IzC1JZoE(A`2qigO3ZRkp&ISm)SjyA(?q9c?`y^f%BNnd5Od!De3xuZjqMNAx zk`CO-VPPKygT%5$yTbA4zr};lw*(&}s0v2OhCptrdWYcjcV=v?erWoF3VmJs`uZAg z@F1?cR3|Nu;(mrghWc1mR@OtFq{JIF|nww0YaFHxTJyh<1uigC;TO` zCfg$Z?ClL!fYxjpWMVcTvW~hJ7Z6aN6dqn47}-ZXnLV19$JqMxnHtI;?{_ekR*J#I z#B|UhoNH+*@W|;UZRX`0%gUj1dK1(NKS5qmQQY+ScoYL0lz^p*J^q|2+sXO>Z5IbT zDk!j`xhA8&1Bptn5y3!wW8D`#>M$7S1I021 zL8J0X8|#Yp36jskCs0#$V8;RjJFODAS#SWZvBx-&o-iGgmX`lpmgK{`cU0We)Vgg0 zcKxfG1Qk} zE+MBK8z28$bRdkj!%hf|+85%)GKDUX5M~P+57Y=EuQsD3%b;X5+GKQx6 zoFsR8uNG%#$0OP8zLsyqsrkKVUn2Nmr5Y3CV4z=CT)ZU<7%&OFz0S|&RoJ4*_Tyj} z`{eE^1xR9tbKeiYfy+oqG;@e;YKnLoxZIL11ffAee2mcJ9sliW6{>kj4&=mD7~MFK zlNa%si2_a`PhH7KP2I3iS>oXl7Me$wn)=r0@Vp&t7XBjUuZYk5Zv_w&Ti90E+<98A ztr5mR=^^xC6%2+?ED#Y9bA)hk8dLAZxD=IpIq(WfJJ;CG^3TC87F&W77pYdF*6&tG z83ytru}%hy=elaIey*;n#YaVjBqiwA*4B0qAX9>~{sCgAv;R15lS6*9dd#bSLqpmf z==E~;f#)Xf^CJ?fTA*K)Ly5__!6hgyjS6}S6$feQT+b}C`}giuKcUIoY|5?ps?dmY zMM^>O4Z~ z$W0t+(AG#2?N$R8Ls{8DX3tAZOwM7u#(0i(RG@T-e&0ku=v{320ThfpIYy_ImB*oL zuey4e_Qc=PKeQM8a$;cG_-y3(=_`Dy6;@CWY>C?-pzt2<}bi3uqUUd%Uxb_#lOt>^@}_K3o|^aybg>ZtU7;L+S#Rl2p7m$+UmVg z{#LXt+BQ6_oKvn3Qq)(*U;Lyr%8b!jos560(=jmMS5;L5a!iGwFaKX6V6&3AV=1^% z4{_s~67E?0nvzc!zXHX^F-TUyt`TjNsGOAV0cQ9Xn70DcrxNg!MKFJO8^OfHOGdH0 zxcKZT3^lCmc0)hQ!|-Sno1!8Q34mwsd$5%&E!XdeB_#vU zWB;7v5IWrcnF0(cmlfaZW3^mZmG^6zV2D{G78E3De6b1YL*wsj#cyl5m)6#vlRtVi z_uIDdZcH5i@nak9?sH~2Ne+%ORH2i)7#UiM)%b|l60EFxlc5I%>UK%o`xB$1Pi#kF z((5nhhk=e>jQ8+i6E+S`Ie8Hn)uQ~Bx&`0{L$CIv2W|NnUg2@cNCR*dXeb5(WEB*~ zJdZbA^mKHP;%um?sNO;RQ4Aa)IusOhugz!1$7bnOwJx#@gq#>a_z;+T+OZqd54q;# z<3b=0m&*%z@uJ=?!+pIyQrix)4OBxq4)yQW82on+1qG#@UqAqu<2HV#Z0P9pUPO_C2u%p# zRci}La4a7K)mv9e2Yic!;kAA!$ji&-@OC>Prq1BYQzYWP>~K#-L1>cee~TXIeFJ!U zL@;&m4?X+&l=}IRkymYt_8QMzT=^(AfU$xA@*q4ocH<$47?_}1HmJDzRn|@?9rof#MOjbBiVUB##1B5 zyIFn9-h}1Tg(Yei_Dq!%UUG*A}543OK z2vyFQgOGt{#80S5CT43faj}p7ne9I*{U zbp@*9ND%4~@5%xkjZnk+VvwRCC>S*<%?eIyS2wq~;ENyd_*`DTjHP?8#E*H$(FG>` zcA@?A=RVUtlZ0NE;!9vPNfwZyBJoQZLUkNA-Z-X1)xs^@m}!%jXW;`(hd7xdgqGrnt*borpWMnkVJU#R2NI4!OAh5NyJr&2r?GONcdWj|iDAjADm18v5bG8zhDS9EeGb zadkS(H;|kFg>zrT_1@{J(pN>g!9DICKHr1C>l%iJj?p0avI5GUwx_45pO;q$K51RV z`9?uxov0|ai*+|ir&->c4cb`UA;>|LFz7+7aO`Vue@QG$03piQY)kC?{M;Vv!z&+S zVvL@#9U$3%4PYbdeg;8wVpcf)7FJ4jVtO+6E-#psw6yrevgHRgRQKS1_Ak;NS$ciZe`Df1uG^k>%v&-+)AzzeSDIdqisd&;n5liOY2C<<)PX&X3 zz~x4DHC{K&{!7*@y>GAGyaCZt21rLl?eE2U?(-|KkPRKH0Y{w&Y-$S_XlT|zKEu?` zZGenaMiVe$ifipZ`?s<4_$81)ggrQP$3QXsDP0dCyk(K?+c#R4yG1`%AWRSUOsA=t z*+1~ud0DQ)h!wKDXy`J~-u~km4RXzA!WTd^>IOMpWMZPa*f1o=<~oDV*N9I4R>sA5 zs%I~kIR5+Z<2(C6q2Kgp4Eh!pZL%xqCbeZ|EiXrll~tfd8fMU!#$oh(sBo4brz9qR z+rvBX<$Xj1mpWt|A=mA+8L+&q>HTCY3?osiWoWW2Zdkh-8r$fOfNY4-zjh5v;}x9E z7oa<)Z_+a(6dCXIy*MH^oV8F;D4y<1xozW_7Xs@tLYSlGNqPP#D~qj*F@jzE)&*pU z;~i-uFf`A3tqjzM02r%iq{%LAc~|>Or8I+FeSBzQo;9Ln5t5g%utQq3v?=k0efTvu z0qSAoyhNdzIlI^_Zp(Y~Or*IOcKb6>LnE@KlHJ}9gNNkUq6>(vt3>NQOZ(>S`2gk{ zQtp-(@%XyBKPDeOuwVgJKLPHKW7#=5$I%g3Bftv%x4D^aYqy)^dvm4m6823k$bLLD zG>q5EO!xzVX~VDQd;ZkWA6x)#6TW^Gx!>f7oTHizSFbYQ!j<5#;OXiFe1K;VTN$dO zp;5B*kp|I*Rj(ljiMxO7ZlgSY_;B)u-9rA&r&b#qA4N;k+o9aP!F1p7)wO@_)j}*R ztC{J;x9 zWM&>?1qFr7W>y9UMe4h655^1BAXU2%4EJV5^E4L`D>NE0p}%s$(1AbvUUX?`J`IkxuKGO?E=r{{=$GuN@!G+Mhxd5l!Bwc(dWf3_Nq6A zQEW1I9#BMj2{iB2`M_<@fVqSJ8a^S^Uw`H$b`Y@;L~Pi-WWaU$6&wt1!af(DwnMW+ zLQ?Pv!rLSy$jqi0PTL5rLIGDavUIw;eL-*QchWCVn78S(ux1)}Po{a!t0ufMN=sea zs$g76-D<|pAspsQkRnQDi!0q`X=7zI#&1nkCL7pC)uC7(B=y>hrD#{H*)erfp^bsO^ zd}ud5c!NQ5@#*{f;pMk|Wv^w=r_FAzf;3YPbKLCwrsJ6=?oY#v-{c{9&x8WR>*!K1 zw5?gs-%Twfl!4W_Wn-^dY1#KGd@bR*wq>7bIm7-wY0tyv!4OJceSXVPnSz*@71jro z9qm6{BEmHF^0U{vkAKdyya985`%8)h;JtX*Og>D{mF0%`8<n(WxBQO@FTL{P_5% z>+2(HhTbm}7=0lZNe2NiwUYaotD1E5yLsn7jbU1r!0UG-2t562j(Z3%KEc0L6B7L6 zOno4Gs=+6G=3r&J-2Bt+!0YBz<&RW;)BamVyx7!>* z+x-RJ_n`f1?=L#>k)K{}u@n8NT|tojV9ArFS!JDf41VYNs#BQk}#DJx3n4Xu%c>$@>*p%%RAr4JWBQ zb_O9%gUrmlt<>VdgD}S`I-ifNZ1C|?ff1hJ=UB(Df7c^zzXzB02J@ zhCAEaZM;sa);3a7Ir1uzOH1Q?=t0k6oXC?mTgt#_Q5*6sV1FaJZ5w+`e|+ z@3x+z*x&?7SXj7wZ?UDff{(IDtYQEbg`_4c>1X3!a1VlL2)jZ1l^<^fUg$9>8zrXa z=F)3YEiiEfz0Qa!O$Ndi&w|E-VY8XC2Qw3Jdsk)AdHtAxUaEx{4M zpr_+wV@zDc2jK+IOQwI?HFiq@HzygNpz4pR_HqGJrc`8BG}$?}blh@gw-Ot^OK@P7 z9eZ-lJqWTfbZ{ueidM;D0)miZwco91OFWbMeKZ75UPeZ}OYjC+;o`xJ@Ky5%>!Iun zfBK26#1}7KbP*7cDX(GIgofJJg0DcvbkcSksolN7PU9yz`J8(}AHT$u{BD^{H9 z^j^wvb0uyqRl97OP6VJfKJVC+Shws^V!*d<4gI<9&d;gJXYQV=DcB#L<9X+O&*>6X znVydGRM0zU?dBR4V{{DHg^d3wQaF7ek!YrYtqS?u>1Pxi9JjK}Od8PseK0l@qv>98 z%od?ie50oJGCcehZG3zU(=+%IM=X?;BG0Y)+t;$DIj$j=CtC_r(ot8f zDt24jds;PITpfzkMC^w5t}~lf7o4|hI zXg!y+2wWv!13aKRELe{icq7Gk$}qvetB%H;rjJup49%rGOSE#>Ee-d zeF|V!Eqzy_kpn?|&f!VV-P`O-Z&b`)Bqy(*Uc5TTbcv>L=|dwFL))Hj9B}*nUeYpt z0}{txBtF-+#b3#ir!X=y`U3uGucmo0Af?L{lKxf!*U!5+p3o!R-1In5qyPB&3#VCB zC7dy1Lvey~$CyZT&MaFu}#`DxQ~N@cIkyZ|keGXfntJR`cGT zrhHF$JO~VY4xpNoVuy&=gI&!EX6m(=Fn~>sTw2xEnxTCI!nZownwlmhc+K#n)BS`} zVEQ=mY-SVU^h$t-VFK;wdf9&%K(9a5`NhGZpxO~qT+G_m{9b&t4dr)%*MGQpc-x_7 zso$vg{}o;)%h6FYTPN4o*S|Ofhp)#_Xe~Dm_CQQPD;$VZxM=qZ>scle*^S!SVApSz zxbHv8^Bw`Wtfc-(g0JHI_J-5h^ytFuEx5#IJBufS}2@Ax>Imv=Jm zIWw~?K1SHPhlpdNZ(aek4Y6VthCTuhKs{LQ;wl2%j4)i>#UIg>!i(3}r}IEOK(bgv zv*#uI79P&&FgLAlgUkfJHDcSNL-RPK^M-y5MRN#qfk8Y5)@^`eg zB|7`MEw!SX8gme*3VL*ZH8?G9oLerpH;9>AdjS>7N7KdWz|jBa0`z^hsJ9qNaJ+gf zJY>`Mp%cl)gp{(ew1Ua=(!~Oe5ubyAq^4Is(K*j>cW!nrpCs<-D+0~ygPyz#s5{T! zAzoXEiiZDDQO3q!aCp`cLEMtWZuI$(XP%6?&hOS=9;In(DjnPl$t^3brw+dCbQ&T2 zduBRt^NAd=vZ+!dGbIOyFsxk|P2LBKzcLsSev^`tTI3I)rZbJq6w7$iU@tgY8SpCM zo+cQG^2`tRXY{4uy&ZGml1t@pV+NG#YHNzqL4D1^(D40TK;Q?}^$&Y{k6mSDYoECc z(FD6}>NSPCvW@LC%> zA6ZTS!F+YO!!OTjKFrq2O8jc8T%iaAKYi+jp`D9|=hadSxp1fDbO&cBGE9!<#r3%` zt^wUy18_-nU1!=lGC%CnhKA+dq#|ve+9Hk8GX0@%K?%T?ctn}57?u0w@_5tEcXM3t zI5|1_8%O{WP3Zx!edOcq{oStdMT8`keo{U*rXY4G&Tzvi`|8e)JT@k#3pxfyzvNjz z)tT9VK41n12P-{)AT#-`hMF3kI2t23ez%*Jqv6rXEx3Dl00sX3THV?!8yNJI14 zd7t@)Szox{y56|pSWJfa4u18gYirAng|b9)ZEZ$y4Jpe*@3eou1qF*pq_V1tjy)Nx zIRF(W&?YiC=lY}GbWa@wP3-u%$FU3{a(s57&&$Q!l~#N)oWCP)Hh(Q3Ym!v6K;lGTGmF=``ljo8zybC)F; zE=#{@4a4i*nfIgmN2`uT9oPotT~xFJv#mB-@wPXTi`l#HOxp1tr7#LfzmIv7+?~6% zr2}&dHu-d+kdU&?M$D~DNsh6lFpOTv*M>mvN$JAOq1Lgc&M}_$23=- z!$#haQ8YVDm*PHv|62undMR3qXFAF1KYbCuyAsmZz#xO_`EzlZ%po*7I<5$L9_o{w z*_qLyp`k)(DZy94zswaoyz0p9Y}G8i&k)!b!`wF0%J2wu)2le2^49@(Rvg%1&YQ;O z%R;%CD$({K2dUgP7)C6@0e#tYN3DRbiJV9*DoCaF*Y_d)P2V zx1s*F+ZXW?}5Mh2M5lpfRpAHZ|pf&gGTFH-c;#S~U#~jhL(JYdK)lz9u0hy)zsv zaz9~y{q6OHRo)2eSmfQ!&1u+bf7#UJVX?8Xe6*gPG+Tf9vjq6=!4>J7Ba5e{M)O87 zUHFEt!WCUN$F~!>X>?}KiCDA4#HjHISaq!{oy?R~*RE_*s6XaerLcJ%&>n)82s|1S zh%ESUR@x}h(f0v$Cp&`i*h?a=w}D;8kAktu#S*)WUw)Lya=$oA zt}Z7eCM8`a!@~>r%9n!^uOP?ci#2yh=W?DN)7`6TypKs>_WdBRBa+nW1jLALn_Y!A z9~6x);PEov-Ad3*Ccka)j%R(i_xRsqVAOWAb8^;t{OxqJ9_{mcTls7_t>?8(jraMp zoyD`ie`$+>-a%&6?(+M+M*^UaKwZ_XeDMqthPc7ck2UorzxkkumW@rlps=vs^sGl6 zkd)>n!{5J&3aq=msqF>2{QBYAdbJlRsBX7Poy;7SQj~X_{teL(dkg6ad7YR=F*2gQ z0-GfkDFlQ%Wm-DAYS5tkGHs7o@6Vs^Bpe{)J5UK?anX63a`_E-n=>gFYw14&XH#`w z^K;yNdKMPZl?Y^vpa@tpJ#f>;U>QYKv*^|hZh-Uq@#ifRE98PkpYdgZHQ72C~<(H){BOPk_xU9Pdsh}`xdHTu%n8NisP%D zXM-*U-AsZSs_`LUzwt~om^GOt1k4)xzre>Nbv4iDWGZ)y(r>F;?Y&rrepi=(4+sTx zT;WZ_BvqJ$lxGKd2HJv^{QM-S_9+ezRub2eqbP4bCMz<0(rdht{>iKh9a&Tx7(x#;3V-FNFxlQ!mtMw?uneSH`pEzbc9M=#Hjs2+a6iUFa^-UjGai^JdFL--|T;fUCK?r5ksGH;sWIc>IfvR0= zVm*@L#RqolNkvy3ow}FgLN?R%t9A|NC~H&YN9{j8ShyOFmm~(5FzISD)PVm*h_wsRaD&N|g(%S^$7dLG9o}3)1E`MayP2H+Ko*GcQVEnZC zQM5xGHf;tpa}|{2&ccD(bY`SV$CQMa8m@ao{}+_ z&DFZ;RbqrRAHm(%oS(mejdJ6Utamw(@>6kTiNem#uDf7k1TOJ(o8H}y`qWMsy1 zU+Qx6nU?weZghIUjf@LM5;rQQ8w9m(ES#@F7!j*h^kMH$wS$W79fqZw4+rI+W*89D z3JKv(XnidyF{uJSh{DmYU%|>KG0)~|t@ph9$$!Tg;6y_I#KnY==q!Gw&ZFk}C-7-9 zqyq${9w8+VN z%d@iliCS@#GYDYpnDX=A*kQ5Vefz--@j@5}mg%8tlKp2%o7s>?Z#R!!f4(X*9e|pr zW%iHu>GmE5j$U%OnU}dZWJ4XOCC*!Ohs$IrDw+wrQMpz!*>p{i7L<@KcK8rJqc}{y z!sW6-d-&&%_dWzLNm`P{$W`Www70eKyX79@5)y6}h9CMr6m$Hwl|2;k>64G|#+RVO zH9sp|I7*8ScVSAQtW5<_X)J8u25xGD04w!upMf;vc>pou7afEiiv3$lk9JYa!6abr zj|dBM-I*w6-Bwj+0ZTV4fFf=VuP;yYT_S+ze(;1wotJ}1?tM-7^jN=iL7|U|fI+i6 zcJd$3M|>%LPw41uRi_5Q%d_&4-V2R2IlwYN4lDP%A5{#^=X4gw1^nEy(a}kDrmP8+ zv?uT0?4NRaO`8Va!@i$w8}eB2nVauA)CU`1aA48|)9XZZa9OGIC3|tfX}7Y5f=rj~iAw(^7|Nc_=&kQ2*xx(0&Y8 zmLIZP40o9JBn0K9PC13)iGIUusz7-d|oY27Vuv~`>LHvzr~Bt?aVvfSL` zmYd|b)W%ci9niVR)H<$cfoft<>lYb0xoiMRy{zA6(N7|Xx55_?&{hUQO25+|@LuWC z*%5!c=F^RVi7DV6E<-B|ves4-vJa*d#Tfz1u_-C^;GIXE|EgHxi7FU<)KfEBgs4kO z29@OJcQZKAOGlD)p(9qxcojpdbIRMHG2#OMc^VmV$1h#4Ty?YcgV-vI`=$iFqsOV)~(};x4S$k zqUh@Ks^F)B7kBU$?!n@6Z_8z9lODv;`}M}kWPPZq;g5X45hSLhEu5d9Z!9Y-;LV~_ zJ^A|~k?;-8$lak~=@^QS!T0j@3I;9$Lh)0KAhNgBd$m&a-XLq5OMB7PkeUwsDh)_; zE2*y5$e+&B*uClF390Dkm@KEC;$dbMB#gEh)|3XIF>+-1Nvze#M=p}rIWMKbp5ftL z4W9I$72W0KZeuZSn8a*Z8W2&rl;nD~*1(6sb@H+E{!-95002xQqbYjo>huGho!%=G z3lE4nCXL~*qF{u7p5LuY^)M8G343zybGY{j!X)xTqjYWFXfwi&V+uAX1MG6h{p@d+ zEai;z56YfIRwrSv6P?Hl$HGMD+FLWqvF@Sxu77_;(%sWz0tUnep#RvcNSm3Rjl3Gy zwqu`jUw%-Nm`K7Qldgl=UI$&gG#kzg;AE>pp9x0c8@NIgBXo^FTHBR+F zKvpj01ifc^I@t64z+^7nZ|+e;lGT7d8yf709EDW=DHcINqzP9mYwi^2IgJpTe>$}Z zS3LjFannc`B!9O3bN>8ubJqZCO#SVRmnjfP)&~pr#E+4b^_UygDl3vZk_iE&sP?TyZ-oQ&dZ1yrYx`1gcX*2C&yqh&II1pMv6~^;(oB2#@bLE9stPd22DInyof8t_M@3L8(aQA1^f5n-K zs+1*eB8WM8eJ+kTz$VuwqhUWq*smcz3_X6ZiZpBd05YvTx+p-Y_Snj6psQ=H?vN7< zdbn(M0aD!x@?rTX69e=Xa_Yd%(C}YQ$j@<`2SM6G0*7Vmt)F&^=pA5rxExJCX`!8o zPfV;z1kf7Dq)vzBXq49|mzE6Qe#GCe9xI^$_je2l%X&VBE+$KR=&7 z-RLLWt{_Z4#=8Z4DpC2@ug5$>iu&h%h)}(OGTkdDH8uQXa#90Nb(V)c18?6u4lZR@ z9imTQ_$Zq!?DxY+Ts+Qstv`#yU*s^a(&zFd+vj2(%M0YlGbPlewEzA0CYM?XB|sF= z+g$UPGniG@Q)>ON&>b8$b-razJg)EWwrKkhKXnJWz(E)p{ZNcX3hU<>ogEtWU$BqW zDyQq-?EFY02^}D#G@8X9Qs8HX41viTVDZH)w;He0U`oYigb5KcXtW` z64EUoA|>4=B1i}b2m;b6jYvpKcXvs5_kB74+2{QCjyuQLo4tv(=KAIrZ#?nv8@WG5 zP-Dsu&A(3-eSmtKx-lA|md(U0eCaSaO9y^u#H=a@39s4dvXGoWOom)=mMZ*STX18H|@E9JqLes+e$A zmO;7w(<6o*n|Aw+QP$}qa5NW0!jqPfF$|F6 z!IennBF%%y{8u2Pnz~uj-o6%VrhyTB*Y_R&PvaoUIEBG8^f-kUE}Q8^Jp3vF>BK}Y z&>XD?g$8>l)pb!~$&LbEYiK+pQ|a4_IBBRoCq#C5jK1gCxF#X0Y5AGBpJH1FphO2* z$i+D*O|lgyrhn5POM)ZCT`2oFM!Ok2#AAEEyZp`T{d<)p_j(-!RmnTGmGCILNYo!AD8!*7)pi&LimDcFpzQj`qn>0MV7k-`7`#2 z#`o|l$G*|+PVB8TuMBjy;_LXnf2`Ne;3Jatg!@h26s##bOfgyt3cpOM=~wH+U3!pa z)4r@^p)FAzwcJ01nBc+n83cc@%k$E{D!Qpuqf7|L!nU(9TmM-oQJBxX`}g9AWxsE^ zIj{XFw-c2)=cTPmGWFpY)JprS9e?1mLDIVh1lOE5X|}GJlK)=u`~9-Oyb31vOLs@zJ8~5?(^|F6b>l zxiU))C9c&9BPKe!3}oq$dlJvfRwsYzvzHEHM%%u#wKXhrbiRt>2HDxdev^kqV~qU) z4{$B{mL+v{JsyM|Nnz9Po3%w!aiyem*hd_d#NBMQh+uNm1nc)8*8c@Iz@e(DrI3A|wO$B2|mZ%<3p9onwmN8g8*3629> zEv6W9Zca`l$b3XjjF)uu`j}o~$^B%GXW#*@r_I(yb!_atB}i`` zB{s(M*!rGA5d{<}(z2 zS8E(BT8X~XXZ!-~dzi1)+>XON+Jw(1=QHGq4R}n&W9wK2`%`W3RwGBgL^ys;G4)y1RAM38moXl%y*d*ii&JQz#i5@& zSY@}I_*PwgL9I9!2{&al|5rfwAUWd###9{?Qw}XgR`*q&fR?j05Qo!C^^Gl|Dk&=? zv%!MG4&|NoygWj~g#8qa^NM$yRbrqxEoU&R5fg;&k^3%G5ky%ukyEPh*fV}kR=cn_ zis+iYCtUw-9l^lF}5`F_eUL0%XnEIvGqIoptn#)nNBt)I5YYiKEA9rD)Z8`Dlbn5&}40A z(DLa87BIESBQ8Ht8YlGJM&-`)?N3GO$37L)t{sqZ7h$XhgHnz7R1H`MWXHy4cJuSF z#wiq|n2Ufuo#0#;k#>!)u5R1Y>Q%_hen!feC=B`LLGfWMl^6x0C#aNtZ=ai7Ss8lP z5gRmmx$UL@QbMZ0K|w*`t!gw$Mg}UmYbYkN|A!wxl$~H@(Z`-EZ>rS-28NrnJE)sc zw~7(0oUTBmJ2zl^tHVlm@*+R{QUdlFVbb1Qw{`8HS_ zE>7<2ojWMR9~7NJ9*jT1r;bJrb!5A>LA>eqXa>STL2-aN!?`h0L_xRh7?S|J{R*z- z?{{wC3l7kdxPpe6@l#Ef9*~4>gVRgs=~yVBvuZ6M<(U@b^ne72{&;V#^81TirXL*k z0~vRZou*xacCXpE`rHrKWTaob>wsFjCg|ryb^m%I#}} zj6+j16*kxM&!$4Mm7a(pGtkpNF1`MB$?3Re(h34`0afSY1>!-q`5xOfPKrZQPWJZS z*YVB3DXJ)kg#h3ALvQaRUclNHM^H$|?>VEj!(Q{q)Wk%NPk4RSKq)LVv}1@H_9g4d z%K8MrvTR+PgGcrhNKwgG*eK@D2` zpJl2JO}SlN(0R2*HkaRw*{Nd;UgfNBu2mtN!jGRmeOk6z3y6qA*wU~pQ5ris{H!;e ziFo&n6U)s71O+=ent$cwyaehe4X657eE6J@FAW{74kTo(0XkE3A6#8@L8URRu%vTw z8Mm79A@~FBo7(;`w)?R7%$h|vR%bS_HPdl zH-I7m2r!|5ilb5r^p?Bo>yz98-I8%~(!}1w%75G}_^+XFP1 z=MZ8;oYFrxPk&mqW=Z;!-c~kv0mgo-(j`zY_}DpBZrve24c?3t3yxcyyk1vg zQGgGX)6%SUkMnr@_I*ph7>Sp_wEOn7$u)41d6~3|N2#G6VSDopm;$dRp9;WkY=3d` zuxoItFe_`Y@>!RGnybpudrAGs>eB8zWrsE#NjMmkEI0X#}ee1y0y8BS=Dm@%@ zm<476zSEu4xu97 zrjB4?exARgaR?Hf^>uk@oc9ocaB03BO&?f(^}}Y}oj3!){V3p(=dU@&#M&+h{iuZm z6aAh6ke>S3IUFRzTr-(8u%PdQ53$ndm6N`{KDt;|aprKy*%{v|Xf|5x&DP&ZEH_Sq z_VsyZoV{xq@ahn=?G|71-|2i05`t`_V-;m(&nL#1qT2XI#WgK0>0imhhf0>lLYtax z`UeYuF)KZ5$Bq+@4L|zV#dRZffUtss>V5N7@Q=%yv@~sIK*u9`GSK_|*ERd1WO?<8 zm>#vx7B<-;5`3>0+xr#O<$r!1VV1M8=c%_yru>S|7Q4{D z{$R%j;SMSMSR@u3qc?;cr#}r3Pe*eM6kq;zUE2cgf`w04;;-ERWjIs^5JWU?|LYI_ z{R{v8QvD8t6inLwpUZjbf9~f0{!0Rr%({_o3s1pNuZKkxdVAI+BCK@$1T|NZkH z&YS=Lmz4=eMA(@jBlQj=Ta*@+5tDo`B8mK5`_Nk~41?OLX3_eZ<_`u|TYy*wC52zE z|0E=%|6Iv5bIZ8ieXH&$VjSdRC|F{0SYi@J>vizuF1eUYAO;pi8U}>~CdFs6IlF+~ zo?8glm_MMw_y-Ze*#qB`JdxRuLSmNG{|ho50VX*YIVC2A1lIik%D4hQynMrU1x%HA zGXFR-|3Aod378G>7!CN9ldV{PT>g1~_*&)b?R|yg|2ePR^S-KoI1ZU9wwPv=vW#W- zpV@ZD`-P6Z5>jF^QsVE$BxT-&VVH$s%u}Rg;iAw9=r%%!XZhx_?8p(^@?gXy=OOif ziJ>w`G1#zRXa6fd;%NT?Y455XgFj9=GUf?#8$;!!xfm_p|9bZWGScLSL}aN%Vkp#N z{&Fedno$w;FC1o$1%r{}s=w%1`i7@|?C?;3Ky?S9keUVIHbUWN%-&BQG3+Fe;|`mU zDy<&}P>FqE5H9BhZVfIQb(R!M!6aXWSO)L4vuH+{%?zBa4h#jX@3u_hP%blgZ`8 zwOb1x!yDAHDVK!Y|2z`C|KEx5+be{78adhUOD8s&7`vEObK#!hVm`L|qi*E3Rb)E5 z%E@ImT0?{tm){7;2nQ^;Z@VUtO6*7>Gk6hcDBit$P$c=@fDR{;ZB`i!AO5+VFLz=5 z`&Ze7{c*~4wo2MZm^|`xwLTvq(-r@mTxL?9N9eV`nbIrI(agM@{KG$YcHm-k5X^0rklhM8YDX;ep7^tDs}rnKby z`H*lzbw31=hX^o!v-&pRwFw2F*z>d>Rt-+1q$U`wF2yMuQoXCdofsJKHmTpmBKh1Oh@1*b^NgR&GkTV)NbUer; zO)HgLZ?7TJmF2+j)aKE1eWbew#uWZvF;(_3$Y0q0eApZqB-@Iy zS1g7+M&WPiFQy_Xg`{Cv&2wBKDr3>TB-Dn~_Rpxm%V|V;dwWhJ8;0s^EzlbWtS;k< zBoCOrLndSJSLPMt*5hR^OqZeZ%@Mqx?%lgvc(ZK#j?_W>9VM&M%p$);?>)yZa zsfYBfB(iMfB+XLG{q38-An{lJt}MgM`ghiUZTrxiBF#ba{g>7yq1SAYh6aHc^;)!) z>GeNJ|9dw(YrU@1L3y}hAB>of<08)PPqT>2Z24fQ|5+0H>u7s%-=S*oKAA}v23^OK zC|T`+-X3By37=@#47P99)Xq~3jNaD!WaMluF-ovzUqW-Ig-n-+ z*}(R5l17EXf7w5r(DrAK!MY8?irLK`UsZ#-*(xSu*tI0o!6lG)^$fX97UsV%aX2%B z|K}JnGTwpSAp+|TQ>!Z1ci<@SpQ~jBdj;0Lh3QK9aDJ{#T5bMvIKEK0k#p5qC7Hx$ zJoDRDB-_Jnxk~sVMhMC0q*-USv%h^tfBW1iI`XnYk(ekMpB}+6TlU(m4Ow<^?0Mxn z68_fF<(>_`L)$~$j+StqEP8Imne7XmbDP{KpQE~5H~kkp&h2_r6(67f#R_i9E-ubc zP$jm?^#i(srih5Jm;aB)j(#M8F^N?I>bT5-5mqn=vXq8(x9;3lILLR(zed@^P^mIC zS;QWSW}m+3r@k}pIgs9s|GnVdkel;jr?OT(L5$FuPVC;uvbM8{6mCs6b9YM&w)NaX zzVKPO>iGB*-SrR5RazwHzcC1I62)JZ^D(IK)nU7YqF8(m0H!M9fn_p5@ zE?hM%DDWMV-oObzyEfz{4-RC5` zYZkhP!L^s-XX7?ir6YlVi1iZl>4aKVe)YvXb}Y^+WHNZoOT_b*^e?Os5t-G%aMGS| zK0yN!@B4|&>me91=SDl?`ub8D+G11t`5w%g^529!YapU1J^K*fo}K^n52g}-THzJ9 zS)FfzV^{B$q2i(9$d#p{<71mD$FftjO+T(QB@`v#;M{xF!ChT@kC@~I$;54?iJ&rF z1O$gWii(bajA@>1Y8p)5Oq3w6)t3+X@wKb`&4z`=1-O{M|1SM-ZGU4dYWdDR^yt-Z z8fcFJNMmZ$;GGY&oPVz5p#FaHop8ByG&8e2K95Ej#TxOoflU4F^^tAi8zZsm%=C!X zTrQ~3PYk^3L~Y#5855_E2Hy^?LEl9Lk&&qQ_#8?RE(DQd(e!>odIl?bwEN<;uivTA znsf=;?%W~shl(UsVGe!I#z3acQ}KqjZqI2MN~6D1kG4VONlr`4NA|@F#P8+h;~mSsg?`s+N|v9Ne3Ts)G1!ikspJbuE01~>p_Vi?D6u7ax@B4L( zkWw_SuJ+lg+syto^4(4e`e?4w($bv=59Cj$r)!P;d*$yXfQSVKbO}&y_!f%k{fwXG z0;Fxy+S0PBNad5Q|JVxCBmerQgu0;0q;G{&$Fx2BW= zG3M(gAKE7TU0eIZ!OCg~MXDIFl-F~+Yq>f)0-;Khr&p`k}yCTtPyX4<&x z1X8N1H8!Ay9anU5Sdf;IGW>!u2HE=cM(!aRSU^nYLi@W#a|y`9uHaJri1H5-!V0m1 z0xbvJ1sf$QN`MLZV|o8VG1uH2d`eI|N3tfP!azkgK{N>`(&u0=WI0^!uL zibCP~@X8O(NZQGP+M!su z^M7tzL<5ikI+zVCs;bXkYMd8CVM_%5p%q7texdf6?}bLJYF_@PBmP^=U`muCO%sD_ zaw$-o(n!@vE)-{cLq?CI<~QHIFck7dff`%%8zX|lgCCcV5FD^UfLShG1&z;NfzlGQ z@0G(@Zuqp*G!P{*cFW3w39|Mi^2;yn6P%@|3qGwVv1eS};sAaUE+{$< z?VO@rMn;x5p!_Q*{GVIKm6g?&b@vpn^Yu*yUm{qOt7D@qIg?x|Erp_U75n zGf{HsM)X5X$+hS{-ZK~7{1jdK0d}c{;IG=4cBFek&1VLolhx5%H-dj2J8Da1l1 zmU%B=j+RD%?fvSP5u{J;unkoxXLBGuminE|-31 zSKL=nly)UroK61$9GVx5kLR?ILJ*Ocz~6jxV|7G-2iM)fQo=4WRgoI$(&m9yjEY`r+*Na1xHuX(r5H73P$ zlXj~^n^Rg4aYL>#D`6GtKuVY){`3&HXVo9}ehe@11I$47>z#6Q=W%_HMoFX-&{|n|G;sDt-i{PHz zi1VuDLwtrh$1*F&G8a~g4&VXsvT~qTjc4m(YKXsnq!7XsysF%NcJj8x5_@;hUU#FW z;7!nh^*)Qqm+leuH@YbgSOoX62A&VI2reSBC%?hB)L*kawi@7XIZ*s)(L+YDdQSm> zTn>MP^Xoo6*`)^Jo6hz6$aN>7fO8hY_OIpc#Ps1oHP^DUf~6!xL|)L&{~04GdCJAf z8Lf9))cCrpO0KT%>dY@pTIgnMmu?1m#>M&I;HPvU^BZJ)gSD zT`gsJKzWS|0AYsK*577S2jY{i2HX4l`v=2$(4Sy<();;+F|(>*~%)kz*=CO)~-blKZ6vEMs+EBui0B8C9HITsxpe)v?oby&O^48kP zE{Pkc+CR3k;?K{Oe|f3(kpIDh2?gt(XGsE~JDU~fXQB9FgK}C57cUb{d5ZxLU#z4SFM|7Fs`z0!Dv$9`6Enql$>O zMW*qOH<(mR=j!-cEiH>O!Z1g^r22>c7%zVqL^L%t@Z|#0Bd#@fl>oa$YW=sZl@88m zzP5&<=-Gb`V}uu_XCF~eduF8-I`OeSX$(}rpNzquKIoaf0krKl3$O+mCniNlt9L96 z9RSq@Uo=6OA*xNgxVYcCGyw1z_a()}jW>4}q+g@81r-_7;EVzgFOk>2A&n+R_2#1h z+S_bpwsoQPAun5;4zeE!La#^Z%pOGXa)g8%Us2J3Ra4@xkfHn`&k|0AUH)^P$c zDEW?v6WCyoL8Iu<#U<`tVBiu6Zyg-0Hde*Qf2d7Kk-r+s-*ET1Eb8wUa{?k`RcNTk zOIO#V{_q{}|6Ppx_DvrgPu|3pn|~s?4i3W*gCqCRD_3R?2fAPh@`R5h*Q_()l>pz$ zOOi`xt9U(@b{NhrRHr3I-bYJ%`k$lFn_h+zKcL5ExGK`PBSsO2KDwQd%|x??Y=%Ji z%2+5^g6lq-ZcY)&T)?NxhUMWVuxK|uJv~hyDb(NNpnS8s>H>%BIS1UJtA$0%ufjs% zBbyk-S1VX5ii(mmnMx$Xy!^i&;o*Y~Sw^A=DR@+T3in>TBXWG}rU=wkS>^gU{tL^O z>})3{G&HM=lWcbehF_T-F-#@7d5pW4+(=>{KG-FK2FX13lgb}IthxL}aUPrTmzN@+ z+SG97q4(@V+qa1RX<^pT(d2fWel$gz#P~-60Vx_WIsaAzLpDV^yPs-EDxjwS?<-4; zIkx?af@(hY@=Fh8ss?sECG32mqT(*;VFec#$xS#>@^<{sVW(Mp`O^QQq2aZ(_&tK?=OF{#zWgpmGnFD^ny+|Wt2pS5D|ZFiKQf`YZQ7u8c$-PZ{K&_TXY#}3MSze-TZGwj?aE;Qme%C z(siP;(s^-q_jJ`EFgPK>ytZ}*Ji^{S4sM!c6UobJGp0Y`SSAIDFKz>sQf2vqA=A{v5+O$#E|KtQFwhsNEvYC;&hl}Wztoi zKYwn!FkRCYO7rY%ggD&3Kg7mVP|du^94n=Z-~*rx#H$&k-XdJVWk~sj@_sd^%O~kh@ydV+2 zlGg>KbWN-#I*E`ka5q3YKt8Mt?t@tH%-B#uqIC3&Ei>((T>y;T*8P~4nkrBTraR+K zGejY77^`bT@~^$T^fN)UD|4OgExY>(as$X!o&z*8I+W<#(64+MS`=n;YisTG#!dfy z4%fQih+Yk#*mdcTPrf_S_=Cyx40YV!W4-CE3W-nVVPVHqt^X?FYh#C8af&h9_ zI@nxcojCc&pz^275+3_EF6$59yWvcgApf!*C_I|gEBvP? z3%k)je>Te*x14?wF0ci<-D@y;7}ymMzM0g39n0q>EC*2&`_1N%x{*MC|6qsHzZa)I zY1fzA4CNqE2OT&}LSfHh4svo8R8F*$r>PbQcg2yjb9Xkk9X+?2r`_ey46|KH2KK^o zct|;WW`p@N#0hts?pXvgBst^np?TC6GV3d63N)x@Y<8px$}yRSas0tz6Jh3Teh!xQ z!Ix+27P!DDjk2lb{ftZSOK+TxIA;%`!u>0sW2eK;EZG|YIEGSDHA?y;1uO(awQG3xFgD0GJd+)dBg}UA05v{^aX};D-%b6>@+<~JR1Xzo|alrRC@>f4pWGd`PK`7P_4zw$M^PY;#A4b+PZ3H7%RvstnnGQ zY?Qw9!-?N8LN%Yh+IIt*kBY(UHKU^9YQ_^OBcmtO@ThPg#iNUmiJ|Zhml^bhlLT0< z$pfp@9H4G8XGl~LDy=QESBM}ajU0Vo+#4JQT~&0^B@hH)q%gOMyhKA<&LKM z`L$Jqh2IRayv$@~eigY}2zW#gC3&$Th)E*skdV>PG^)}^%L<P#?WJTE!4Z>U}tB~3BK<~9VKf5B+Cof_x98y++gA?o~GQ;>WA_vI}3_T9VsH&a!^44j9CZG+hZ1dc9FpdBC!U}Y9i4>XLF z!BLS95dj%4O4veine+%5IixPo31tjF5}g;cLKk|V`&-?6tC0{zF#q6JPK=AGsa69Uas5f9U@4g@>*p{f@GCJDON;^5>nJF&*&$h^n) zukBjXFnrGbh0JeZCX!N8A$lXl1E%B~phNzO&;7)pqN#}q53IC+(jSq6ltMvviE zfL|~|9z~?0f^KF#UiwpdQ=8ZIz^!TOSH&+n9J}VxqJ;-QiZvYiZ^1vA8y!7tG+lmq z3Y^YCv}6ggcm37p_g+d%@{^i-pL3jVM_8p|V7}K6^$ZbPIaca7{3?miaC@B`= zG(g2@VP}paCuR6nAp-;sNUEeLlV;^E>>}PyK_#P#>{x1VX+Z*Xt1VB=T@agOr;d6fm97#T3f5cjEEHke zc*8Y3+g553C5wrP30ZaPJm^&-+W+me2pqqG3jELYBmqL@_%K4=$EUt%2V9iKIuXjJ|5=1ycg_PLN?~ z*im5JZ)y&SU7o|s;`6#SaL<^qYtDWJ9I^%A3!t~yJAOd}fWgfRQ!Hj;?*48{|(ABi=k6Gi9mnLC zm6aU=GS?ocohbUz7sBp5&B65sEImnr8p-n2Jupi_JB39_(L<;1oi*yrlU(|n7cR5X zU`IkH{9{z4FeXQ(0)-e(F7ACv*i|F*@)UM|+T&7vBDQ^W^MO9oMg0NCnpBX9h|*$w zJk;LaaGT5@40SBuZOY{c+s=PRwTv^igxwot@Jz-|_LY7Mr@un2}mzT<188 zfsAl~2F*cUuSw>wtf;7~3p6BPwrHMRxWq3GX0!Jf7pp9J-@4@=j4hmea&n?VL`X=R zk)Z%)G;zFvWO*qmaj{SV{Nd?Q{ads4=!)v{-p5nc6I=trSI(&k zBBZm|+g|(fdeOn(pk|bz1n5O`I2{h562Rctmg{!><`9&r6$uk$7s@ZhdGNWAqsw8R)a+#^U@&{GGQ4nc+X=-jB>$OuaT{wyA3qwH;Vj9YNT3WZX zwN}0J^NHTgHz}3F1OP*Up+m^j)ROp*6Q=znfTVeFA6v*Stxw@Spl+FUt9kCKkNtby ziadm4mvZ2E+HK}JrDX(w=WWuTKksu@8cpEYrGWJ5c{vbizCt-B-eN!~|8AXvQ{8JI zRlg5BF}i+?`}E3eb#v2NUtRqr_$R0x9$2`3TKfoO33lWDv|wgX15N$%Wpo}m#p_>N z;d2@Ms;aU*J0|&(xj9x^N>dB|6|@5*xS&e;P@A2d+T*u3_kNk6+xjrcJ0JzKIIQfj zWl8>CzhPiM08m096HM}{kPmw<<4E`rq;Wt?DIy^Ad2iF@xfg#$=?)cz)W__>No3s; z!2hO!x)p(g@)7LK?*V%`IyS0l?_6D#vC!J1_GbL^=w?tb73J$>rLR2G_ZwL{!&~s2 zIb~(ufA0Y`EwHH1xr$OUQ+EjP!@|OnKm&X^SQl8u3!Fx=z4iU~=*`YF4iBRPF9P=- z1H*$7z};7;r3ua#oU{N7_qDmXc_Z(;4T)N^I}E>bTSH_sAh>hcnmmmJ67iJY6((jx zDU=|`ipL(C-8?e}4XGD^mK#XcMcJCJS)zqDj`LZlg2I>2qJGo#T#IfXNA&h76O;89 z7DKz5jAcNy*8^PM{NWRf@Q3~Ps^0*mq&$55>QmX}#81`L>rwt5Z|dT$xfxk1G~}9N z>UTxoRnlm0H@qAU%uUVG94^qjrsZlvNlhL7@!i*(^gRbb!6@Rb)tY-UVlube&gc3( zba5l&C}}JA&&eA)6ScbqkH6Xz3^s39-Cp}UWizm`MKE=VhPAIa$362XT508%Q`I@M zKZ}jnm&1Xf5{!>F4Q&I*j<+NRDZbh?WJ|morCVK94SW_^4iFJ@@vB^JDkB;UE%43#E^*lWW&%;F&eveYMbnYPA`<&* zw20y_Fg}M`S{{$-E)tRUej?v@xj2!X-d&)vZwVs`aNDCyp9y;SZB0NBq(+lNB4RMJ z-$O(yHt+^C6| z|K5FE8Q&`0+p8@!X?uQY!sHQ5X$w_pj?|lOZ_mg@k{^VR#z+1kq%=&B?H>sb!<2Cd zO5>CHEVOdp?Os8isL>hA*IfiLgX`aT48I6M5EMLm6W{n+4Uk1s*c#Vhm`!ywO#5K0 z-LEXZo%!i~uCc|ERwS#WN?j`d&wI#5D3MKOq<0;IC=;1y028aq#xXdeS^nDPjq6#I z+>@gqo{9Vp*PQI^$6*BKs)z_#VIaZ^bq7wJpLUK{e)nXFSPnxd?e3K6+Px;aC5m43QQGr6?uE zC)7Y-rFet!afo;(LtAiE&Blg6ZFV-EsE!-O!D@Q6Y|)Z92DWeRdc-KXj49#P7uwH1 zdQc>rVw*yRBhM1vZi-rL(pXrld!HBBkv^$^$0J6)b{u}!;=Su*u^r~S>`atP-jshB zz89=v@X31D{m#N2z_U05Iu(vXjlueY|ZQ^43HGi+4@s z@k=P&L(Zdwh)^0#uMLUQ1c*xwHZO|5)}>|0jReW(iRNe@333$}oOldR>DLMF7bkiv zD?I795PD&o@w#CB7M^(7{k7}wj;?OzC{w96(Y<_HfftL;odfj1)~BkP@e zM~$Fb6LENW_^Q3V9p|=>$o%ff*ZKL>48;U4&cBO`4=~yz)6S41Q#>OidPJ}eTq<4l zO!SP6Qq>$BN>?90zEf<<;`zIa=3rwi6bCWd9TF=XjVtwHe zLcCM{AA1|Cyx*aDd2)8BpHW-efw#4lgeKTak~V}^9C@7dWE}%q=YjW8QPrSFqC$?b zLrMIp)#CMQ6Ywu(H8wJusBLitn=?^I#~OHMFtkN_diFA)WNX*no{?rk=fcLOpt61E;^ATZtGfC&B0?|i+!L?|^M0lg0}MgO z{7P1kH%s{ph86GdPE4>4g9?j?K?$5KuHmm)42Iw8T?jvJr(oQxdT)N2#VXp*lfiMR z*6)cb+shnzwq;~oEK*!q!+81E>oO8mS-Hxv<)ei&$+zZq2fjq|r-dSzfPYriKsYc1lucM_@4xKe z*mgTcI$&pCKh~Qpd8#MC`r6XcP$@|u{aK`qpzG%>+3$Tapc2P~rHk7U3}huX0^#Yc z1#XmTX*~XSIAB^hDZtHLF+5=J`aNyc#7v0m=BUWaw{EBGYK3^7lapgGnx27y0CLm; zXV46YdlL<+G`zM~7rgi&dxqlZSoYD|+ha&y9XaLC`_fYBaS8HU+-998DwNxb@r(Ww zm9~ELp;ADr+Gjn_WD7*zM<6cw!pVwe(g zo13Gm7FGuw1Q{Ru;R(9B2dA9|f2hg_r{ffm-b|#i5DHJt$UqnL{K_{wS~Tl!dw4#g z-}4dB1?KY-%a*dW(cy3P6=h|8*enMtjcj}VE_>mZT2CA)MMOBA6f>8kr{kGzPv3Fy z@E}UJS?~dKn+=$K<*lCvct8pbTMO5?HLL;T2E1Pz7>J|{tm5D+CZURA433XCn6W(B z`0>L&R4~Hnv%Vkf@m$CVBBHr4R}ny5JEgbRfXd!p^${vk2ovp}!kJPF>4oJU7eRcT zgQFxRpcjUHfDg(R+c8(|c3kAS&~nIhc!-)!gUrUJatM4~XNa9K`3=7E<7TkD+jw%> z81!i=ASkF2e`UEdPI6~|!U(GJ1M@39vU#_T<{Gs-z<(>|?0oxbE;jbM(Ea-X@WIdN zczF@aBX}Ki_&u+$YA(si3vf1Oyf7k)_;0>7Qm}c(LrDBBGE%+Ptn20QCq{djKeq8T zHTmEeAlX>$^1u=wf35EqMcQXFhFmgB@u08^)MXdpx-OHag)Y>PS#*JtRbj2u)4-X; zt@|i^SuA#o$Tb>;)1Td3y3BuD&w&4}1sd_|=%8|Rlz%R{o}H~J1~9?;rk1aBf4jEz z{re6FhTN1Yugk;Y*NuT)OjDPguOtK5arxTSqnU`-L~YQc z2ms-Utdz{m?;td%e!IfMv>7VL*+)m^RYXMYwRK)17EV{GJYEAmHWM_I+k8Bu3(vmt zjBk&X;F=1H2fo`JmyHv;^EUK?S(+T8fwCm67enV6au_1zD@=JE7QXoG44*R0*d1PCr@-{;<$ z**_hZNa9>~0x$IL?&M?&)3=X2G}1DJ1|K2cZ3xCrG}Pt0;>`NcY-9_k9%o$K)A8xL z>)&4IN8-!jWOs^y%k-T9AHOeHf)|8RrFQ$%YxCdsU#=G_GzJFpg@uH;b@k)`_Jr?q zOw8~#aE>J3e(WfWA_0!n^?MWYjnSg-YT$iIL0P|%#J$1%Y6U1fghK8DbrpYH^x4DM z*;J4kSed26N*e+}ei`@CBW{JnwcuA8LtlAIkfE7e!sD`Mas|Eh<}DPLGmgd|1qFdi ztGp$|)>MGf`S&%3^~h2Fg`%RLrL~~w2K^p5-L>Uw7Bw)E8rU$akX%jI&~j2xh(EHi z*{+5dYUqBeQX)(J)gAmBIfgF9eJDz4sE7=fc zsOwh<1pb^z0(jM@CHASqd=AIIr+=pkYB1+e5Vq~^DNwq3NZ^M{N?aeNPOn7WU++{h6!&|HI9_QMRGJIBJ6oNu zJhzNXA4VpT+ir|LUuz0}=lWK?1*G}L=erYE_P*IxiRm}j*AqJ( ztYEUsKF+zM9nL?GDs|o^kE*V&#;**StgU4?^lg-WzKbthr+BlAv~Y28k$C-GY!%+G z8C8qCFD`4OIs;w~IXz2u{Ig%p_5^31xqjufujSx4Fmbbqxy)9b+Jz>>K;zuo%Gz*! zoUuK}+x{Qao4x!N7w@?`RAE^xck4Utka}q4qSsQ13!TWlGC;Rt`EBq#yB3b$b)m`r0j#kDzFN$JbA3F(4puTV>bW zOo)@2mew+fyGMSbh75{nO^OM_aWs^akD!1XH-u|KM?vx86Vza&Kb12}l=(Ts*_@M; zmL><1!B}J4Z)R#ihdzTosMO07OcgcMO3TXH=KJH=OxbSs=Er_WXy@MLSpV#jC?8(C zTwfiE2-jKvoHs(o!^?JsDQ{h3-eVO$tdyIZYXcf*W{E2&QjvP9s)FV~JY0G9_6dXv zoPT$n-7PLlNhA$sMb{SFo=N%mNbix8lQ$*JzFm^@F9xePBd4pHPd(&6U*xJMJk|U$ zy8w1U{BEjRU|ee1u(an)Ogzw$5RdQXZX^{yswpLvLmVJR25(rfxH0xah&PzUwB6)l zYwAi0RSLVc-cSWEhse{TxVTtz}FctXM<>f&>Eyo?kaD z?1CZTGX`-s8A__=b)Y&ivQ|FRpA14b5@xp_i)Rvzxg`R61-;h4d?{s**LjsH?ec&1@IGe*HR6g7i-tCpUZi z`uh3=Xv&XUS+1P`+w6N*mN!)DDPLJwJb%T3AKJ4$Tjz0JW!4y&-xY~}-^b@(b`&)) zzN>3@=hcfdDJ9#*KVe8f90C-~PtDDZ0DvyiAyZ=! ziI;CiPj-)NJpGH_{}U+r?&*ul%Hp|R@R+{3zVg!#aRUJ603#Jujodh*EtEuAFHTq! z<`zmywFd1WMq~$Czr|*iBSG9N`QW3n@2PJNy>?~|i_)w?HWc!nO;x~`d_f}q)W{yE z05z3IU|tY6GCA2_Z&reck8kPh=*Yz_mX1xQac zYt>BG;omMtjX_^C3QU%#esSON^$l|mWRKfpS5{Z|H!@y8MZPQG2^x<9f}FDZ8(M*6 zA!D8>!ZLxKH;_hi+d?&+pJwt@CBA{8Cmwj&$ZI(>W?4XL-0mGXt23L z)c3qYS^lHerZ=q5eOK$L?tbq~~D=`~9q|@+4?%CSwv2X)`}FBNl!(1Z}=O z5GB!P%=mh3v@`2dIglxS_+En7$o<0a!&3&QHN(L!VfEXaQ@?`d=h?Kr0hJY+9%|2( zl^MOYoO&VY)H>dtxdtQQP#-8&UP3zk{26zZ(o5Zb-HAJ2JQP1CVatWnc&lYj{laYo z%tq=vc6H?II)yabmXCPZ<^~4-OmuW>I3q|?OO4ah>R^(w%sFpzwYT&j2g0OKT?Nng z_!E??`d)SX4q1=h9c|3WfGj=48dM;k)$$-fWVEmEmLZEW4FUo(tmjW7x8Q)g3rm>h z>C;$`qm8Ab$Vl>Aokx$z2e02QNl$(`cQ^1Fd9lJX0On~LT_{HTC5QlRFjqw%~s#Z%nN_w!C>(%Ai<{6@g8M3zfAkpt)|fn z5#Mrg%b3m-#c*uSZi5zel{VGyC~ukw3VU#xdf*& zk}tyG*jO-_m5D+04Rw6v+ZeF`!5bd7{qRAkLQ-PV@_J`Z_Z})e)@s~Xsj&W}@$ln? zU6N;S$YaZ6E#JEefoL&uxhuhHZT%P9GHACE$(+59h#)@N7_;XCvzpH*C;t7CAu(Kc z5S|$AO`K6p6-s{+hmD60>aSHgZ}^=+uq++I+()E+ji5yIwAM>lik*|Q?RR%~wwhX^ zkn_$D(Dl=Lh|qgstz~TdofE_!;tij9{ywB2^Pa@r=E`qrF`FBa^ar(Vbpno8$x^bi z7MH$=4=ii7)E>0PuJ0w>y5*L&wWW&6^?LMc?B|2hp0pJ-#sd3S&9MFyngcij3ZN96pCkt27}B2_BhM~YLj zp&0yecG^Vob~q}nbeA=%YwW+qK=4LV_M{sw)R&LvcM59*=}uumm%R&N+t&Jxv6A2f zu6*u?r~+S|F3%iC+0WYA9y&}+xQKzR8A{p=A@>``H*hYxf&|c3-}ldZT?rLOZP7G^ z`q!K+JUom00S{s)ZXu9@lgiqxK`y830Z#ASK3*riR8t3CHEd#rGhOP^bm? z&HrO|7RF0?5QgG#4J> zMoN~3jW_Gk{sNP|yzFctU;w9pO}!5Mvh%PdB%&-+5TY3rp?R%P$y&97kJPMb~#6U5m^TV@_M> zxVZ9-&yP0g5D3*u%lgS2r5A5}F^R^gL!|i~ElJJhL|nA6d-%a$^{MG;BGj*SEF1NK z`(`a8)4K0h7E4UdlOxnZ?)`o%bG%V~Em`?T5j z{tNK+5QyUZ2ocZE-5&Z&Xg0XN`cc`T%B_WV@4i4P%)N!B20gL7oIYB{#>M=ff6Yp+ zpAZlbeDLx*$|ijLILFrB-hN?eiEU%DDih5=l?=U(+vSK37gno_OG|&FAk$?W9_J*4E|P_Yvgb@B%5!?qh&1y?P@BML@F#-@$wx>p@dO`0fyt#d%lC4vH? zPMxm>JH<4r1Q}}ALqbs|^GVf7a7pThXzRGzy6C@t`{$tP`po0X+5WxxpS8z%Pl@7W zO7f>q*Qwmx+{P4#qSq$1uBWxyuU{LZgn7r}zl>KZFD+FBc!<7%`ttD07u7*v>iu0E z{5VYJble)4xnyLts+7`6De0Q}p>t;Se_VjV+2smvUb9%=Tj67!?@A2ZP~u0&Q^h5n z;c&Yzsr9=>#0b1mu$`F;I30HcH{fY}1ZnWNtG3+G24e4>^1@5ITv1k31>X>|{;0A2 z9Eq_)qQfa>)z#I<^z|3>A@w_-FIxqsUyQg|0?qp&MoL*!r)($Ox5z`3MQ40vqJ3eL zcBXGopQT=6pjARQh=sb73E39%;$$n2V0WctHd8M(mw@H$eD-~FqGAA=kesohp>7z# z9F;UD-C_#lxa?>Zjb10P0~{i4M(6OKUHc+`Kk+S-Iml9C~`kn#K>>1pgY?82^Po0}9nk9M-K zZ`hd=V>H;6)z!_37=eL-f6PsE(F}UyKNnE0`FP%@FM{c^%<+V=3d3A`wAv26wavh* zI5sv`Sc52T>k46+rYcjcx^k!hzj&WB;uQBioUy}d=K?o+1!d649vE9wA` zI;3yeVdwM$i#di;oJs)|@F{w5Weqw%B6;5&bmJzxLjSIo@)(+58O5{erN8+mv3kt7 zpNH_+@3sPr|hKQ(72#;8}r0!yE^8s5ru+hI_1us^56BDA*aBtbfv^cku zZ&N>At1QCl_Se_Ay?+|?B&olC9Wa!a$1!~C);YmIX~#(M2S(Ly@SdmDBgy>FjR!lT zQYzWR3;$n+qO!&-^U%$erQnb?AXp5fsbRuwH3dKEBxV-v_Jxxt7TeyG0Ah=kmDzm- z*AOKR4i@LMW>~D=b6DwjZ|;@(@g7o!T8ke?fPqsa?5|hZ*>TWkY3HYEuKT*Dr)kb7 zii6>+@gF}n-Gw6>jE+Va-IWMm%g8W4r=@*=2box}rA_SqV_wIVi7ox+xKh0i^5#FO z`8Kl^zX|mL$UOyoD!@ap>WZT%QXYI5u~a|*TN{2M33Dqm0gC}~HM&TiyqlJSl9KnA zmRn&cH*W)s5o!>{QSkTo?}`VjHFZt{sXVYn_v5qQNX81v5UjG_6x;R3`L)uE{a^Gb zBB>pk2?+qsnDv-7Mos>j7PR+X^;3K84uFi)+nW|RWU6jU-CR`y+{y7b&t`qSCkwfF1Y_q3EXzYAfULrM?qm>Bi}RN(9zjx-0HUPAs;Q^X?{huHSo|1zqEbMT1*~4 z-8NeM$9HCmI^I0kQrCQwnAC4isoxLz2$zcyS{TNeifzGZhfd^G(M~9E7*LqFcz6gk z>zwNh;jG%&PV}q}MMIR-UmeOAECmMd&ToQE$?U}`V;PVPvOq%cZ2M2@qk6w>{~q6v z5DQ&HL&k{sc*D8bS#_pP&oW z)R4w1TUEsbJL=omg6@P&pT_V!8jeq_#KKckKes`$>x5dKvJ3|^@-4&{FuG|0t8MKH=7LGwsQ_j**3_JYRM<%J&in6IEGnHP zBl4O^Mg;ATd}YMNqnQzi?@Z0%J8Q#TS88eu>rpQc%>#K`rR4BFPnq2 z_&)Xu8kvqJ0&xYg!wnRVZh0ChH4&QRPcH0m_DT3d*+WJse|5FXZg@;%(r#;7V<0Ydk>BTD$it5UolV= z(a*laepx_@_G~9)w$rDQ38(kj%D3-K7+&%fb8Bb?yyy>BK7Jw#u{_J;6d>sxMW%-T zd`wJ)EJ+gB$q>eLm+Vi&$KEeFK*|@UCwuSkFB;_owlwJ*zhqL1KOP9rUaxvOgfR*N zwYf=#=02%;dez6iD=&unkWo%pu3LnAAq71kBGP@Qs5tcVy{E%%j8jo&vCG`N2M?mz z&W|hPrU5csZf|ecN2>^FKCB8o>9e#Yc%ZK>LyxI5hf}k`BN{-p%y@|-LTP9tFW3k$PTW1%%sD)wb1c? zAH=qb`C2u*nOnAwJ7m*>WGmPZKok8sPTAEp-rdQGuqIIOUxS}tWtLE?{Ld#(SZHx@ z<}ugT);Qn2LpP?(m3=YUuGcsuB|QV z7dpHWxTvnB|6B|21Wzgm)l~YohqI+b2 zkB`^Dwnho&U6!23k7L1jYHQI_e|;$Xn>+NHS2WSVzz-Xlg`J`YfN>7L-oNgA6%N1A z@aAYyF77bn&d<`)Mjsy^0-Gw=tL_*UDRuSl%#p(nD17FHUwx*3!Ye`hYT)JcH2Pu` z{XUbVl#6DO)qKX1c6KieUVa)C=Im~lXKyfxFMa-p!I6Wy^-B&05xb)9O#SDi)RYvD z?8ru6EEL-D@!%0IH|{(#-V3A+o5SOc-RLCN4oRqDN?^38#;i4#pDg$pPFQ_G%DG(t z@zKFC?$3Myc4=VQp(+~$rKo0pSXo*5ur*b~*WYQpP?Hoolb6@+2`-Hn$SOX-ce6Dy z&Y6IAMtx?A1*lx(*k2%pl@%8>C;LUz`-RELhFQF{l$J)g{cCEC0`qOj zp(Jwhm&QQk3XMiF+}V_1IBf~e{dKE4WJ%dE};69F-Bf22D4Htxa# zFGWKmWDqEMN{OXstNlMd2f!>MS5j8iC(b541AN_F6kp|6Gtb!B)hh}L%9X}DLbPhi z2Q@XR)}e`CZ0EM5K?|phmP3+zQa|ii#2!ogx9m^%wR>RwZR+ zYoGh11z}-({R{iceLWIh0l-F(xH0FGd;2!+5q>l)G54dP9sMQZj=#UmLyY#0-aY5g z4+sn^C^x2Yu+KxnCLOEMzsgj`?=4XNETr zkT^4>`1WlIC#Q6$4-Xoc7W)VJp>6{WLjKR-o$WqyTH075T-?juu9xw*AoVrp=um6S z?={7LN2q`eR7_0yCrnMRZQ$rm@)#DS*2cTX26SAxUAQn*@7_%(S=+SE6hgyL@E10F zWAgG9L2m$%HIOl(B5W$TeY3DA44KjJ2_H|}(N(y;Z zZEecx)#VA5hld9h_Jcm5Ccg*DmC$;b5IlaI1<~*&5Hh2J^Vs?E-%y#GQqdcarX(rp zWJnJFdLXOQv5QJiN3lP#d|@WrHkapx(5d-&A?0(? ztO_*%*k$c;jqsoN2=Qe-73NyefdH-A+3Y_TFO!}@zMIBVe`}HY-~9ZWl)+V24vrAn zfzp4lFpdD&HI3Cc;&6oLzOy$kgnxVnh5ycJZvxS6H#e1qTIWNt6vBz(;@AJesrz2s zzI}hC3Iv0G&QT)d|8U_Cm~ZFaoW74#@LwpOguzIoud1OjQf<8$+u7egIFrdxQjKxH zp%L?bgB+A@pn1cS19676XaI^rBT=&f9EkGL84$P`jtmZdrlqAlN!jcDXZZz|<+m$b zVWuDyc~Q^uzZAn z2%nw`n0u=$D$+5~(z5eVE_`|Id`4lzQ30J64afhsMFC&hyIu$u6*;^SaBVk-!$SHf zgp>b|CL9M^X|k zLq;YX{hRAxj~TPosN^0@YcW^p1G4anWjt00=u%Ht;bAtPE(c3GN_48-47M^vf{U&W^snOu!s3|)G z<$|Jj>U;y$vL00~yi9Ab<+GC55aQZt$ZBc5xmp`0YNeL-Dff5wSbaOwma9Us z10IL!ln=8-HK&o_&I6uUTb!5oR%d3c)A;#I)`PUgzxh1Yr2NuLhf(zt15L=OVrm`$ zlQJp2efzZOkI@v9&CGSPY3eEBnc6KX~d;THsAc(5C@|UAYYxe z_d&C72QLt|`+$(oLc-B2HYb(sur)b-u=61-*b52Q*yw{D5rLw-d@Bbac)bbhN)(;g z!1v90>QCuARdX!33frw>53#A1wl-@>%|yQ*34YlEv(TBx#dn46`I0=D0ag~~#4?b5 ze+Ig+-=x|eppsF6U3zcyPV2P6-aefa4=?eYV%_M%(WD1%+pp=iDx*PeW8mLHHs6EI ztfQM~ZN+B(hJslk%zLHu@ zP*|74_sA(b{0`A?$4wOfobu zc&(tKqO!6w>!1kU74dvT(>tw<5roiInOoZ08oHe@ewc;b`M&w2p9q7|E201Y6Z#24 zIk90wZ35=?y_#whrq}z6B&bqRj=69$(9T*qYJ%gol>60314&654grCN`N9U~Q*Hbq zRW;0305t!>B##DE21++KK5o3gR>-t11D$Ld4dV`c7bg=lvj@P)igQ_0{Amm?2TNt3 z3H-kD9&3t>eo%58Z1%BNJ%Wfn27%nI287v734AU;TK@jMVxhGwo*zi}I|6TQTl4YK z;Cm|kuu{yA<#Wm4N6h-le1gQm)!%K?g@Sv*85vY;{QN=-=BaR_b^tWNVul+h8Q$>o z=b-WJJE}R56p}0$`#pjcGGkGB`7)zDhDnT!Ix?VEEN?gT(Qg%4+&m%S5fOq)^76P< z3SvT@_im)P-3dIhIjM!gqyh$ypSWMy$gW7K-Sm~;A|44e!UKuEn$m4S^YW#+wXN-2 zP^}hML+tXTghrOniWnuklB_51SI6ORD^s)OpeW)Zx2YwTdt^L+P-*%_Oc)1xmJbY?{ZEaY83FG$m?#a2jeifDOuCrF-_MC51 zo98gsEX*z_DA-x*nTVy=VCV3Q6%id!sW3kr?EmvezO%2dP^)OJk6UePTmq_Rc7DFT zvlD%mXgVe&LjLCu|APnk@bQO@iVxJldObOuIwTiF6xqPAWd+2oL2LjAt6mhYIhb+D z>96!ZeGJ=O`Wppm6czstAFLx%t7~M3?X0Z&yiIa5GBaZ#D@1vF%4JsjcMqUP*!J7g z`ccpec%EtSZChYMQwgtaI(7#Ski?WriegS)ZE@XvHX0fl^TXZU{8t0fvu)(FE$r14 z%zM@4uxQess>T#8Udb(ns3{y9*!Ikyot>4#+OaS~Oy=q~y?`5h5Y_|KzM_m`>MvLX4jX z8+B%fcUT6KK{vt0k5}hCzk^CP50~e`J4dDW_wR}RwzhY3gn)zHj>N>kcs`iXBa#;Z z4X{dSSweE1@o;P{G(vU<-e-GNudT@+ z96GSZ@{&E)>AkY5(@Ca&}f1plrg(u!B<| zv#dhH_j9ChhI03h-0CXLC9Jsv&xPIioWj`O&xO7S0|F6zCGHWd9@97D5a)GJgHKZj%B|?4#0_unaA=Hqvd9S zwIF??9gs{l86htPTcbZyQwnp=KxJ(*ovK!Inr*z*DMIequ2-xIG6G`wVP zFP|upIk?!achA4s$im}z%S=J8p9vTRku5xLfKVMo@D(pOdW3Yi*gWLsTUTnjFE@Dy zQmTIdVk52@E-qVfVWEY*ySu0KmJ}em6dU7ZQ}J9nDrQ8DxP)M4%z?@ zfVW^iU%IhL@`137hDOq0bv48UQjtsBg)7F###SUu9!Z{GCh%PD0}CX5nx7aS-z)+c z%j7{qf&U#B_q1ns{t4;>3WQ?hx?yn{HdW&g1FRjDg9Dw|f|Ke|dF7dzG812~pdLrN zN}=V52wwv$t6e3K=jpp)J}*=)S_`McZ>*}U#HOd~-gV@~3k#?C0CCI*!w$gaA)#hs z3iUm+d-R)_zv`tcSY*`I7i zcrl^9x%l=c^>^JWx*LSHjWhC`zbZ+Z!SZ3{KZ@hnj&=7j7Y~gGd8wE~bh1a?h1k$D z&KZGyJ4??rN79F(FHc_5%g=1CX(Y!Te9-|*p!4Lw2DfYePilq25A@fzCX(wCC>r1Y z{BFKCr1b6@<%w*|?rClB%li8*r68Y?o$I{c(%#bG{u?M@U|{oFLRNO!-{^k7(z~2o zlM`&@e>F4~D*8zN{%8j2>8)QGKBH33)m-OPK%3DHp5`sdb#)04Fx}CqlzU~0KnyiU z&;T9@FbOt;CTFfM=n>(CVyLmA2%`{IzE)Z;D0m_o{W4*s(rP|-I#11}^Zif^C)dfj z29$R?NR?$n2qyR)tt(S~?1@zYdhbN}DGexR*P^0T7$Kfy?Op9j;9VANfL3o3{eJaX z1V$AXGe6_vs%mO8&?!Jo=ueLayd!{ovxBj*{CrbHsw@)0nWSQZ?MM>B%hln< zy5-pjBvV_W<8>=Av#}|(!Sw-YpqP;n8Z{4(ug$ePF9-A9O9uE`!E^eA)sSqurzcX! z*jQLuL4jg$HQ*6dc@HQ4{X2J&xyzO;-K zdTM@ZszM`_Mn~S4v->>A2?+@|VHA0_ypePu9-xHv7=Od(nNii5#K^;H8qO1uF8m41 zf@@UqV}BElrx;u)jE4{2YU2cNqKzCsybz1L5?uS?y z0mm3^10+&X%!%x5ZSU2W(0G1l5{Yj>JYBJX6uM;+*c2LUkIl<^TyU0M2jJ%J%`{w( z-g>3tkev(Go~2@oLYhax>?7+Wf$R>p4c`LF?kNPXX;!j# zMWc8R-@HaA=hsO_P_{MX`a=WYt#oMY=0QdvQpJK=3bks)loS+R(L8%r)(zVh#J|zQ zkfZ*;f75`EJAlwN#SJj>_26}xZ)4*F4)5~XSqMtg&$iB+kLcvWFa%7)CLC&+C`bXy zMnm-by>~^xfzo2LEMo#@I}gAPK@M^@4(*wC|9A|=)YN>GG+aR&hOiNqkINmWj2q9N z0^e+Yw{mYU0E?h_GJTqWsp;MgEA{=tgMueta6aB){9W(SftS>`-ZJmc`CvYKv?x}P zOc;(RPXeA>!Ph7wNuIjRWQ1|8ZQ}1QNc>J3(%Ahe?e9*0uiaT^i0H3Mu5X1&D@!4x z(wLh^HtMAKC)}70mX9(cR@SlcGZS4Vuu&U@fCtFtx)e8B>mD9fLN|AUD2S9U1DliS zX(?lU^6o@HEm6A7D9iX|2^h3 z7{8yWC78;_SFW zaT8!%*In|GtJz-^Jq^V##e_}^!J{_0CvJoWY$ViieVad&l-R7n0ohO4Q+e6PH0jA{ zv$Sms6FtyZv;TTmW&PuNAiXQS93?#LVRs_G+dG&5Yew=g zpl&0eW5MqF^y$(`8)^1o$b`In=xyMKQexR%&$0cku#$f0Gcw@DywrG-R#%`xj3}P0h)~(o!Oo z&MoiYAmUaWyIF_J?i@qR=HL7G?++&bG5i9$ehThHGsun}S{?LYsfF~M4gh5J?1=}U zU@Zt-?J)ZX2fq}HHFrEw!@TGHC5g@C9hYVT__?V(d!sESD@*v(Ce!08y0x<|HZ2Xg z1OR%lLhX=%nf4}pT}%mbX)ecvJ@hrh^tIuL>h`XTVx%uGLWFp0+sG4k^pGy>h; zMxV>^0Qv6yEfsbameAva_@}!}iZBq-0s%;m^YeHjU(JfLa&sgs>+XdPeU$Fj3OqRY zJ2s39qltCyCWiboFk^{6dw@GJ!5dd61mIAQuezT_D7<(xBPJwt zS_Pol+k9;SsYCIQw_P4-3F$w6_@mt$FT9~<9b7mW3@`P#uRQqnT!+hrT{=OcMR&PR z`}uGvcXoCN9WV`*_gGBLIo;-$dUB)w{aZ!{9Ih!e!va)o7a;!;d7^E*{?`tcD_YM; zlk`bjQ5xWm2qmy@a(v#~d))?!$2sn8!hVH;uTEXveJhR!!lqa7+dF%U%SZ~#^g0G= z>$(4h!~T7*(KA`th-$xH9|pVX$YHr>`1lSYMM*IG#5}^oV~6c|-gd`PaS>tR>eiLU z%i>Ylyxm+CHMln?fkBs`8`mn#%d5rQN@*?d3kYEC?qe|A+|=F5lBd{(0lw7I%If-g zP@?1;H$A7h7XPNKEEmmB10UOAXTG+DN*D1?T5*VP8U_p}Py@W>wIq{EvDsFmqjEfW zUN+EYQBvUhyY!vQeZT7JJ8k36c`(W}nHuRSiHeFA)Yk{2Q)BY*xYQX9x?iIny8!Mv z>gTtAd3jO34Ca$xM#9}XM;!E+J?jZufY$Xi- zxIZ;t%J$VhTpzpD??LnKty?ugFwU!IN?TpKqi^5$Zq@N} z+Fw$+g~+*su@WLB{dHSKU449GzNEHmiUj7ojhiGT4n{`ufUd&C#QFiCHSDL+L`RSC zHUqy5cVtKr-6fS6G-SOXE0pf4viYDMh<`5O8hvB<7z+w9BaAC2J(7E!0&U}PFcJZ0 z>>ku2d3BBTkpmW6--hcgJmBikE7IcLL+4310@Fm`}PkeZbl zeGau;_5R|4qD(w0O@x?oUjq6d9pGGC4lm;eiOf1lJg!;udAI+{Crq>+Jym zDXg4~j7&^Afah1Tv)Dyt`gh)t%gS5yPxmn^|fEzj_$$%ZT1KK zXVjq5?5}jcG$5QjfV0r{`iigX+qZ8`?d>(2d^CkO|Gq7R^taOv8I**Pl#MwZ$8cr1 z_B8Nf!;y5++U5?azm>2dIx>fg5w>FWACg>sWE!lI(yS(x!Di@x^mY}6_Go}4VWIIZ3bUBcQ&Jw3%HrK712 zrlx7OyE$}9G>_N2f0YgyUV2D1s})`CP}YTfy`J?%ywR3>n( zDXCjDs%aD-243^ILn9+45FR`9H*Ui2PfDv2Agixo^NcJx=;!Z0zjt~OjDmhemYPc4 zS>YPu zq>hu_dDM_6&kncYfAfCuni9YHdQ1G314;;qL;~(!tGW3TZ#Y8+rKP`C5P+%!%Zw?) zLha}5edeUTZTJ-7j?W59N^bue8WPE_7@O8Q{R}Gd4fya<#IGDrnFITDimK*ZJHd&D zO}ozd^I%y+oe~otU;1?d&!0EFy)UZ(%XK)&a8@rhw2CY#k=gQ*N;nX#Y;0{*C&ClO^(3=o<=9c{xRD|@f1$?9z`Zvj=APo&U0g3YJJ>0ax>sFnu z@@v1no00<(v-}iLAH4tV4)KD>n3$N|H#fd@-5b@Xs3=r16A8{-I|Fz;65)7gsOWqn zCzs3&$T`GZMXiZEGFdO81tR4kB3;%Cj#_!(d5pg%?|1;KGSM(964=EF!)|#zTjA+i zUH(@zv?2reoJP~tcD{-ls}Nz91KtzuUO03l{I1{U01$Y;9R|y;a3mnv`ug}>_3vK? zlivT}PEz`>et)53|3*fKtL8e>-Yy3yw&$O?b6~~aVu#nY4fLV6Rq|AGIL*el(_g+U zNb+dK{d6-JK-$zFovlffDxeRBb^HZeV9f5xsuBq(Gvrk@H8?PGp()a;ttnx_M8OM2 zsvAf4!DL*gp6QfEV4V}bwzifQTM5lrn8)?itEBHOxdjCVU|c83=A;I+6jMlL6c?9` zD2(T{Qe;dV0at}&}lb12Ct#xT#LL?>7rb{4t!r&)P))Q)~2T7e3ev zE~t~yKo-3D-~cC1{23hGw}R-`4gwzsFMgx|2?jK28ZlEvuH zY^$5=00(dBCme|_lcB$VQ8hI+1!UunTvh{crEp0FWQYjx>|Zyxw<9KMekUONgogf* z4&JRODN%6RTj1It0X&{TTbD@y^8V!T;3ip&6{8)sfI4zJ7HFtc%I4bj-E$o5?8Vg@ z@qR7uZX$SXgoX3eEW%?HGKGf#Gc>$;VFuDz9Jc5HXc7nIqTvf}=c70M6hF@xqhD&# zXq6iNkhis+q-NLHi&Rcb9F%(X>J=-{?Yj;7j%dG8(W}kQ&I;Z@kYlTZAH1QmggFxx zK_{@--Hrdoav(IEA{=lF74+jcP{Jv;cbpFGv7E_USo z_Cg_{yNbXs9R)dKo$}~+ixuVNdtCA5SkR}+%YFMDE}@4MBt~%$83|%4Bu&)Eb;U$lBH2HA z5!l%&b+-oM_pq=ejld-<7kpR;Vi_RURz8!8>IZsg1Z3oSc9@!dEK=PxWzWR<>`6u* ziYotHFXe_&kRQ}sn3H3QiOHt`8$%O+dvkjA(#r8cn;gy8oz1skE7%Ex_NJf)4$9*4 zdm|%HbTl;f`&d{sUjwSCcOQ^Jm%dY9FEtD}!eWQs!+LP<4eBwUx31Fs0Y0}7fkhYj zIx_Xo!s5-cn1P|;hLMUPc_t9piUgGcrN-V&<+VhmMHN_&*N%@n+un^qc692Ym>3Vv z1mlr*T}A?o@Qwv*PP5vmC}sYnKKySIdhu|F6G3uo#7bLKmoT9wFaI|zbhq?$Ys#>< z?})9zyUPq;7+Wl7-WHfTH0kO38};uM4D@)79IUO$q{2tQ^a2YWAi*%7&!0&?fWTo1 zRA^oCj9vZ?v^D&(02CP;G5JNlHJhFWl~Y%*J+D-QK>w zZiDlwG z36fnzBq+kb^67Q@ERbrnv<5wYy-)AVP1hHggk0z{JUZ3ym#O;A9Y*9Kv)@; zlf$hh zmldm^g*O~nwY3Ir?b^-pa%fuz{TSo(=g&<;7Y2%@qI=f?V^l~@P3^oPzoWFoF9QFz zwKYBA>C?>b2*lFJGOS~YU_&~rASagw1ZP|iv@eZw@EKfHR4PJ3LqqY}+S(Q^soxs1 z-YbAWU)ooiWZ0-Hw%+_7Y9T6^IIbsZjX)3z!awUOfy?6NbSbwibMu#wp0hJ6q+=)1 zPO}v4kJ0j5%yg_+^3SgiDF!AcFF05aq+9#gi_ej6irxNl^Etpj9Hbp-^D3}($ef*H zmISsy%Hiy<#x;g=VZN|!U!OZB2kRrU&*J7+vN$oYWDQ3z^)ZdndeM$t@>0SCrTDr^$%SGmQx}bz*P@{7Muo~^ zx3IYA-_a40bDtR1^orS@Vw$hgdeM43O|m!kKLllMyCvyS*(t7H%ljxIol3{HXWa2(@Zkrs3vh1#l_aq!?(`Nla8&bai#b&`^&Z zb9dKx(HGC9LRZhH+5|VhQXA>|&CGIYK|vI_)dqHkc5Eh<0Zfq)8p?qIh^W%Q;AW}C z%#-vR2#1;AYdMrlB~l*y6x>D(R}WHja0C6h_U-BCVUT)jAR!$oEibq}{CL1y__ZavdI)nF0MjKANFqJS^;qmB&I$M$$}qXCOYq zK}G4t2weeh%FXI!ZSC>sHjcjtU0~}K&2ba>Yh(BhQVH(xQa-x(zD&~6(y$AZN_U_i z39}ahO=ATo9NA}%|C+cGB40#9r>G@&z(Q3AB_Pk(+&rW9{jWJ!Nz=&fD)-CIYu#<` z+bNaRN8LwbTJK-fImqc+$P4TIdKsW2C?~`n;O7^BLM{Yk6Zr?&4O)?LNky3KPCx=}KkWWdO^I7b= z%>Cr5l2sZzEWM_zP<5|`TIwE`|G|CH`m&dkIhp=k}i!hiDQI~GQGDJ z+Y1#=!NrNmPvl`oqu_lFRn^JA9ZtnE?$O@97P&KZE_a_kTg*xfADnymz1()#08Ed5 zLM8~i+gTnRJcgQLZAL6VioS39g7zgjS;;3oJ)Vj> z^O?6Re*{r#PZ;yDxm`saz4l1VXfasQ6DLzvL9roRstq$V8w340bu zBXGqjCaIyJ5hMHq8(yUoFnw$ShKCibElySkm&vg*YY%V#@cOi5@Klg0yzxFIa)jLl zJ$7lk;7`nN9gLskMkno$OvSp!N(f0r@HT{J1Sy?Y=I8Ty;r*;L8DZvvk(PFo%#qRU z`N)$5zPP8{F6^l{n_;C$Z%HYsKfvvz+MXuSvYc$VlKs zMJ>{YwiW>i8UB>i6yax%PN$EQm4@4~M^WVxH|go<%xx?!X`%PPz?_meK0IU(_Veq$ zgv9z*t(7tAK4Wt{gr}!x6%&&Sec`(vR~1do0ouYTxGlWz5+ZsG=HyReJ*F}t@|n?m z(y>##BxRxQ<41O-J0E4SM;{>kL%<@y8}Ng%PmS)j`W*V4#8?X2+6$dOGGBdZly<5%d>)j*aorXjMX=mryP!V#o!<`-4)9z!3F-Y>t zVTX|{@0IVvJG@}F3QK9Vd{nL%#0(J~t5T)BcxVpD*n1zHj*;a{#Y6W)$I%gO?p~;E z2*iBzw^3Qq6aI$+7$0r^wY|{%`n1nIx#&=0d}`H2F8k5Xsu+gP^XEXR;{;D$3iu%v z083exZ;`6KeXdCM^k4E5C@Ziy#VyAd5PIZx+Q%|o*A-Sy&F~AjjQ_xZM-Sw|s>|y& zwQqy#JqGYO%qPPjN$TR2?_7^TUwPMB(^cb`UTHNZHFbeWdx&KS*p1M{camYQ9aOQuB#+u$k8(KFIqT=Z7Uj zS28_4pBVh|LhsVBD4g)8eI?O|hTB9Zil-QqZWin7N{&oX@XPBLlNm zm)koZ>;yA)y@Wjlm6X`9ktaTtvtwWIwt)dOHmbTFB+Wm%Cu#=IJU6%cC@|t5l$DnH zfpaJ_cfuW}7&>D}hR({$s$7M&eNab-cpT6AaZ}UWUr2QS2pHLK9r#$so0`~0(&$$n z6R}??#4ysQE3HzoBu)2M{xti*?%Ws&As57GE*Ksij?aR)bLXt{cy`55`cyw;250?v*e13Vv~tb~?iZF`*3@6;ja}M@Iz*mk$(Zx$I5YkW09dJe)o& zJbtUB{{dJjg|~%7nqt|0p#TSMxwB)+%aY3%D=j^J1>j%SFHm;H+sE|4-|fyFX98T@ z$E}m`U(7}b2_K%{4G-}t@#Oo3`>kc}CpW4Bi(qs3x0Sn-byuh2*Zf)91nBtOVF?NN zYdfc|9iW^tp`dX1G40FBfAt9uIg}|7uPWkbp~l<$vW=dNCJv)J9e9(@e z;ozXMmZ!$TCWL)EBRzrcaz13}-9#rP#eCkXH#&aTeUjIvKGE|+`940*R&xE^EiCGV z@X)(&jP8a_n>H__-n*9;M8e|(=Cw(_2eGB40tfs1`vBMrHi(xbCcb26V)~`C{?`n$ z*iWxZe8xF}g#22~8-o16Pg)NphjoE^q32Am9BGxsL)>F*uS z9GmpFr#BmbR)TH0Pr%~1^Bxhq2CmJ8W7ybmZpY2(V<4H10{{a?w|7=D1HCt6QIn68ELdyjH!TE>%-jTZwvc58}YlYWaTI5=?nDJCWKcaa$~33)#xiYro2ifon( zCUaF-M30X4li>w6)-58Cw!klRe&}&wrCC^2r55l7`G6J5mE*;U{CsWg#o5u=>Qqw< z%W50A=@$kB1&JTrVg~})q~~p>C{It5>0_n$QSfM0Wca*Lud>FSTTHw;6)v|u9E^2z zjyRfv6daDz&lEDc9cQ#AGyqzxHJ`e(HIh?7EqnE0XJf4E4Bq1rJ8H)hLF4m+(GtB5 zoq&>kVK)JR>y7%?iLPJ!`-2Xcblb9ek}Q&XmeKVa9fF@p;VEovn3nagAYxPW`bNL% zO##4Bl$7N0Y`{cE_t*qdO4(UQ4pK=kH!N*C@YNh`lc_o^XyL(rJ$JJN> zpGD&BIW!IM$W+!XQERD>s?LS zcjur%lm`!}Chy+X8LyxY2# z>^HX-JlWTqAb$gj;vRYji;0u2C~xiRK-3`_kUafFSWM=p${o>NdGM1Ig@h~ zyI*qqczY8jh^2-*@xHT>kuh(E!3Y^}p8P`Xh6q>UhMV^K4(4OOk&zMVtDR=DXK-NX zLo8SiY#b#dCG$74CC5o$fxk%HcgOyV7Jr4-02wlA=zsxccDoI0KfpaAYfN0u|M1y9 z5>z}F-CdkrU(e?Sr@1naWG{fEG+w~tFF4AUEJ{j><383iWycARzxY74I9+%C_^gIqL&o(lLm5kK4`nu~n+=pHhVTdn3n^)-@Gg+<@g zv=JUAHS%sf!%SkNbrnk_W1J)xJ zYx5=4vKfzI>oAhKNyHq31R;{Voufqpv^c1ad8%~AX2!A!*X+P_%V}<8Cc1&;1AHe=A_4 zfRAw;fsfCfA%GT}?(p3_XT1qEa-k8nX;nPz>nFREf$(*K-|BTq?>>v=B*rVT&Ayw- zb1W&zm2nLR&dpnN+##I~G|vHWrEV=R6HVfTQ9+rVk&#RY`%CIu8pulg1P=rU3193$ z`(nzuYJS2LG1TlS%Red4woQy3XAXVM72XD~HMn2m6=7YRts@l&c9CB??GsO(GFwQNqSreTbff z)0I<5gVxM!9jkAf9tef<@d+e{2?<&=sf!Av&BMdq++acV>f4&EC%PdTz#?fKJpJB*MdbtlInK9SpQU;)OLy2NurUPo*=+?IJ+ zoqT`(ocVs|&YdB!Mtam7vf4TXZHqDV797j#YuXC&u#{hdb@jm3D4pm}omT5eC=0C7 zbXGmetUec-1>n=ldJ3~*?xS7*%N0Uir@getgA6_lfj1wbrDfy#HzPzZ7I%XRN$St} z@X*dU(B3YmhlV0xwW=dQrEs=E(V%JmW&$(7m9Rw`Mxz*Jo9duN%Y<7>X#WubWHnlo!zy} ?vP|S99`x3R* zh_N!C&-mAj$w!kw5aEDIpLQNM_Ikf`Cj)aJLa zT9J$Y+aCIA7pg-XA75RUmgeMZK0ddu+qXv)y?w=p-o!9_gLS8l<60~fJBEv%6+*rENjt-8rLWwi)H)U(&&qMn#d(Yvc^gitfaV7%6T_5kel z`~`(NScn~jmCq9yrRmXL0Lex$wVrgm{M>k!5@nDJ&< z(D}+&gbo#w_Y#nAj=L2$R{~wKPo*bN>lw|)6@wNQ^klT_GX)!?r|K_Ns`5AK*wRK! zC(7#*JM`Z6?_6DzgFUSD%@6#_`p(kM?gz+PoZjo{eSyTk-{5JJS>J2{NJ|Rub3?O3 zc<+ha-0C8EEFV!XHO^7P{idLkks9qrP~&sdDl|Nfmvo2u#?NPj{MX~Fgj z5-GhSLlrldY-4ki74Gh7d5wRIWH?oEBA<)@^9*3uCxeiLjjZ7qxeeT-&s~-5U0ro> z0BaZ>>k+#6a15Z{8Q97`C+;(wtn`#g%@&jhBxNz^rqrsk{>4mB-wIJ^G-*3Ke$|bQ zY)ZiM*ksCaaC$rNXDO7zckVt(z~GIEgg5NA$=$HfPJ>k7i8?7;r6(>fu}R3(YU)zhu3*{iSwu^eM;;z}c@M5b#^Id)-BA?86u1zo%j@#LGV;H#7h!vP zs~T-Lgu=~#@g77*DVcxaFgZ^G{-Fhc zcCoSasu7Q9K?6J*cy#n?353UAKuuZ)E;o}~aQmE@JAaVMSbz*%Wt)rT&ANp1!<8N> zt1S#RM8gE`YodoN$Mxmq4}+TDh(a`A@Qe$%@EXB|%lig!^ns&|^11qYkGL5a0x(B0 z^YQZH$tQ7d%>-hI*&HV^k|*6Q~_=@{K}saLvtSJm+C zGm4QRdo{HxN5jPh;nZ{|7->Gn3htn~KM9-CO)%vR*a9tkt4~CEACZIJTMGP0L#hQU z;ZuUt&)U^gnklTcwIu>ZhbEk3oIHQq@bR--_bPpWg5168Xmu*1J~BBjPxaqM1@@3r z_oodzn5X5hD0mCl&%Xid2W1lAfkVAd&V9Jrldi+hh>9hJc3awg> zl0&dIZh(-h`=U!d?`|7&+!1u%%nSuewN|uRZR%1>aFJHGfUDH#V|Q-UfaXu1>~ZX5 zC31#kfE9O5rNac{@Gx*m2xaJtXJAxu2ons4S6xupv1L8^Nc+R`^oI|_bb$M0a@b53 zxI%B_s9}zH@7ue(Y5){(pFm=iKVoGd$^NdjojE5)4M66DE4xvW-c+^5!(L~^`nR#p{^1RMR1e}c4-KnE;E|mm&Yu4YHdsx-B#DEW z;+2A@r})D<56uVMc3A9x_xA(!nuXl2c%)=4e1OCE4h1GZOhSak&Nr#nWLPkJI z&!*exDOs(45cK~2Q{Y5OQmpL)U6`e>yL&Z#q}2O}*&eBmt>q*mxWuGq&l(TU1k^dK zL8&KxP{}L;k?Ko*ZLQ41hfxfIR!RK?w-gn_!+|24kU(fhgIg&BGVM?3DE@nnB1ceV zj+*pbmVL{}_&rv1zYif1jDO#l88{623zygX3lhU{>Z)(gQG{CxltKOgWG8rP^*;RzAaw|*SiL<3&XAL z9TBatFv|k?wp`3CE1Zba{nk#UtnAHp{e{9*Fydr}?z%I`3N5zl7Y#kV_V!FY+s)xh zK8yJj8DUNK5wM7? zgM-CeQPDS&`rX~Ft%L|CeBe`dujZ*IgfEh7LoK8`k zRw^>H%1Xhs!a}^iwCyGe_mxonDP`zlpWYG+zo&I^`jY?a!AyG_umuVN(3ZmHCn3+& zDJC^Fsy2OugdJ(NSBs!C?uteK127HJqRxzbi^Ia(`!MEgDhOek3UW_Xt)U zH9NPkN-}(BezQnD7uQ{9AUQ9DKBS+6f=r`j&WFeu9JPaLYu&x-{DlE!e4mnnH8MOb zklIsdvxPB}!eb{~nVzoFxpvpUt3vcAnkdfgZ|+6#K2&o5uyJ64<6qGg2`PH&eM8|^ z{@VBFs2YmIaKiZ?hZ`w`(dprKvhhJz9bK^)DYj*cXbkQMHv9l_KT;n zof^kMqL5bhzy4Ws?Ld5d&`s(7H`}<&c z{z*a}wxiJH{{i#*=GP75T>8(VRL_{uUGhy+wLG5_&af#eOhz z2Y*0=f1W#&lr9DaDmESm&mS8b>*7EW zDj-ZrlAkV^wdz=5qOg>KF9#hD4?$MrAMhSQV#>$PXC0)e7sWw>_?*TI?3t4ciXWli zQ%{6WrG)PE!GMX0N!;#ypeP1AE>2AWib42S_fWrHo*oPz!bSNQ{TJA`qgSPplI@Hj zK7<9EH$&k5K1*e8ZpV7Qdf}@x29*g$punMsTp3Fuj@;DNXQ83eUn(k{Yk)$IfNfwR#lC1 z+cukzr|;9WRzDBvaNt^P-5_0#^*t1)PXxP3JTKv-@N$k z@;Q;~xsDG0dhBT-^u*pCpQwitnixzF z?utC|cA8Z5OS=Oo=a&homGAgZgKmx`>|nk_zp~jjcoorG+=1E;n9Zdq07$aR3vB%0Oz; zVgGe7f@kdLq==fqcG%7oqAX>;EotT$D~2QSyT3oab5H?Rq_U)BqUNhtt?@iA(d)&a z>~1w=L>jhB3&XsxudV$=)F9ycYz{yzOK?|4HMg=-uZYsotoPW_ri168hYI@FPHA@h z!S(K@`Q64>ME;cGZl|C53H46V$jNt)Kz1dCvevV`vlh!vi1WLXcWy|MWpX&nCv7#T-liIJX=-;t!EsoRgu^YCcUk+szF?)IG zA)xJiYAP3d7@vFH&dEUE_7cFL^8*JYE^uBa;-NCsVM*3k9^iI5$0Eg&mZyo?w};nN z7+0xJ*FW0a{SWvyR808}G<;RksECxC(eA)s_!GX!x6vskBoj%0h%Mf%9MIIbbiHwl z7j(akel#EJia2I?85nS$Sq!nYf(1*c0isGq0)<2RVA1I#xiddegRoX3g zD=lw_b0lwYp9u;&oU=;gFy6b}UBN zh_SrhE^q+KuVLWTeWcE%Ce|qqqxO4+z_4}r7?~s+>;1T@5;-9XlZ!I!Ak^5CdZ9yR zo9rb~^Tr9ikpU3F+|o-V+u(Q^8Ptm{*Y${pXdVY3ueRpEO<$k7Ue^|nY8bOf@K^yOW{R*9O-cb*br=oVp( ze*PR67Yf{PMtg4XxKWm;#F1g(i;x$a3#8$e=vFdju%=EXi`$u_nA#uHcSS+8S75HN zT0vmBaA;5Y>qPWd@bbo92Rj8F`@u)C7cXAuTuA7NrZgFHXeB_7!mxnrbx}omQtH&T zh;n4nEqOXJ0jp8wFvtc?lz;!!O%N-f<6#NFrO&CNpF)LESym>V5F0xMDh;W(Higr6 zravc0GWm3P6J4H|k&&@%+cgEPmrUek1_rj`dR+LZPo=HIeieSk&oB2}ODmKYLabfw z1xKMkc+(My{%?6%qJ{RwH0FbSmCVcgpOex<#s=)MYXs3_c-6B-Z+dVhi6=Vl;NVD& zQ_4&GI+8y80*5GxL^={>n5$Z*p3Ec~QxY6}F)*dMXJmwpuUlg;8>0LaySOpsrmWc z+~oQgmQ(jdr^QwbX3QW=6O$inZ5|67a8Xe&Aq79rTFS9np&C!n4-lyr2n|m=9%mOZ5)H*!;;slbO-DM^nF5N8u`XUEx zf=}Yn%ydJTiXerJ{`Ff=#QGmqx6q+))U=(0RUupNBi%#fXS*)yI(3iXv{9z-j>`Dy zZUsq1p*Y9vK=-3?`64+sMsT86p%2d4m7wJLt$ z47D~l7yV_(KA+>6h+_DZ^3-qcpjAt2;umx+Ri3MN-~GyV=3@mxFg0GNb}Pj{oA|Lt zw}ZUVzP?B}#s0l~WONvN19gNU_+GCZEahY!PNIq#-%FJD<9KEl_GrFf=1>c9K7NRZ z_yT_N%nxy~@LhZlXzr%dR2)3^Acu0d!WMj1i|Y(_7}&Ux_r71C9I5;?fZSM`izIzp^6%@ zvt0#1;~%qiRPAyVJEs#h+-vF91O!prE)!lUFQ{0xE0op1P)iap6Ik&G{eVRs$WCrL zqccJd?O{$+Di^}LT{3fMu}o?mtwvJ)Rjcp@P&hz9TB!-ur| zUljqlS}-$xo&Wx^046e=vw&D^fcu@%qCM|6jALt}qXpc_dWe0_RtOA5eVbs&GA0K# zn`Ff$7oBM_gn)9hz+fbkXO_sKJ|-5M1lHF6)z$5Hmq~Y)+9POr`B;o0`)8O2Hxw># zMP+U6Up^PdKhho^B8Ma2MxBSE;=XgissRVlr_cD&>s_%OfEyi;ogBTi0W4NmUcTZC z#6WXDPu9p4Zuy1$J3M4mTh>C1nSQ{1rRL=HVLEH4x!H;kcymv7M!bU@Hvh;D!v|Nd zh{csi0Idn|M}kzGj%F`Y$ot8_5$X>?cw3?Q3L*Y6iO%!qw-15Z=O^GgT9EiLe+ySn zK;XhU4O%?U1ZRkazyM}hoBkn~Uxz4bsH?YwmBA9_prn#gF*Bd+4J#O)zFWl>xfIne z`S}=oclyttrS}LP3RUHfIpV_Xnmnh^2B#^&$uOXeL@_a0`32`XhREGdZ^VH43AjoO z!e|Pv_{aHqWsKma($n2d(*L#RyOit)0kR}MzKMtj4+L=RgsPx5K3wjKtpLtr_ol_g zr8@;4Ufg~_z?epQ?Jn54BiK8uo{SXJQQn?P_HaT2+@*vd=xCW2g@=siWfvE}*w74` zC83O!ou}~0Owe!g&bSv*h>i8S1(c(zF3!$On|*&_Rbuoe8s+C@W#uwI!lWG;;kpF! zNi)n!?f~i7TFgqMBZ5Slklm0F2xAzz`Boo6x(m%$8<=skkrU4bw~qoW5gC*jrI;fB z3@}qQJ-1W!KU4MQ=cpUL|KkF{xd)oY-_iRJ!Ej;)#hjeTlN7H9G_b6>czD7+sQb>< z9aiP*v|he+#K3)x@XFUwQF$zpgcceeKJpj`eS9~vHzhI@QC9RO^QjtLU*6%HarcIt z9xHjl^LVHaM%qoofG(W$QbVJozqi+>4vai+PZDBu zxm|DMq<(@5;5!7PzSQov;068-S4=4xaa|~v)4FmMAV&DwL^QNyLv~iNU3DZr!N9bG z42MjQcjwFLy~Y1-^Fc}R65|$9+8|q4O2_^}%RcO#2(WY}Q7_b-kh9Cx&*$e-4kjj9u-(lrx5hl^k;5NF zM&A7nif3)AXqhsf8?ioUliMOAu^|0W`p5HNEP@n)c)#`AZ?v_E$3K3I&}RPpWaUrp za2A9Sc*TTF{P4&DM*&om367>)obM==szF+`4#^!xJ;od`+v=}%aKLaDaic-{^u^HvEmd$Q^m~#nWEROXF)||A-`vdpg5gstO@g31 zM_0d{mPfr+lZXFPqjt_tu!?(1OIygx^>0h&R!&w{f^MBt?csRoqgq*F1qBvs<7M@$ zQFSenmp9c7q?t z(EWb~1_q#d3hUQ7n!K@awK-fnp6KihDYZ~FpM?T|*1VV&7emwM=BHyCf?=3S$^R}s zTZYC~ubhrhtrRMnTQ?VbNfE%%v>JSU*DMu$s>C_B zCcxRy*4c@(wzAU9$y5CX_-Y}54{F3Fdlux<+fb95ec|qXpH*0xp{uSw=mfbbkR#6M z?Yftgocvv1S-BHtkfhuyHgkcrLCYfs4yb|6gRG-b2pX4T~QcMbjhM+xHMdv4x$ zev?#`gDeLPS9|;JE8?SBFpAz>UQQz*@hCx(^|;x3^OP`wS{f^mk^V9w-ULq+ri$f0WCMKedoE_+M}3Hyr^ zW0?+8krct7{dOxJysSJf+nT?COD6>&U4+#rN<4Kb*Y$Oe1-Rz?(XF=iV#W2wBXAY1 zPEQy6qjv$Zx9h8`d4i_D&FLbf0zj;21?chLdBf$DKMHJY*yn($X;Gs4Llu+1k?RRF zwVyE6G162~Y2NF)O!1sr68$RTlY$km(~EugF5C0X{MFy3wDt9DT)?YhQH1zma@Z&a z6C8FnRM8(R;j__F*iLwKLhtcsn88HGIKL0Upz=4xH)&7&G)D#`aEuPxk7nw zb40!m%uGH01=uVs7+3YQC)Zo_~jK_XKk}=%D%203q=5u@cI(_0_I6faE z;s)Q@ZlJlV7zxWc0P;TXL490arz3hkI;eu){rfjFjI%^r#*S5 z?Dw@-2hyJ>7;_K-Za4{c#WUjRqJ)@1{y8rhdFf&$ArlFYhx-_bfbr}``SKMV_rgRVIC=IhRGw01UoSk$R=dN>mo<8-2nh^^txTU?FoVnKPA`(4xwm^5otiiCY zo0+pM7ONgq@JS;8P7@-iDsI08`1zHAnVheuuRjOxJt8($KjdBZ!tP8oF;qv86&imF zP7{%LD8Qe6Jl%AI^jV|5eRmil!iUuI{gvr`KYX}n-`u=aVZlkf0UQ8QN&5TFmDAH{woaAr$#6u4hcg9+TT!Cl zilR{B7I9?_xXr^Sb)5k5_F7uaz>cF^{H8B0?g`SzJkQ27lfSDaFDou{=nadC7Ky>< zxrNJWbcIrOUK|I-c9!&;rLl4APpD8}mg8k(^HoAp5(7;P2MmQmMX91OuqlMUhlTPf z2mfLH#^~)rW))llc8Nvj^UW=J`}>8{#j+aUH;YPswYALEPTH z#KCm+-|Nt3(95BMw@9A8h6eqIknujTjAD2fv?yrB?0vr*RHW!)OMn-z0ga-~^bdi& zvihBCyZz+BK-g{fzQ3ZSN}XdqK04|WBc4)#tFprL%rOAizGL4Q6Bt&lKIh7RwaoY$ zb13a#xfyz`wks5PeM<(Lijy-?2*zqIO25%XQ{^>9fx|U)u~ppk*8yY>6y&FY8k8-Qg7!&~R=3SA9%|v4yz?~@n zn4B+0cj%$)9tdTQ&OH6b=R`yoh>9uH3#^9>OEo_kb-WC_uta^U^q~~HbyG~u%?-uU zu+p^GvK$9;UlTn5*5<4=iXXodH@PSil*&YYB7kRUs-WY};@4&T@ zjEG8OeGhEHLGZ)Zq+!bOAP&ZA+xmNUSv=e5lb|Oe`xctrGZ{LHOO3%&TpFP(rwwrV zf74+Mu^cG?nH@>o@bj~#MUwKp4DB+;$$e#l?jKTvUEVe|*=new1F@&zBmEJa7Yeg? z@tObI!K9?lx_UEZ9$y~9Mk5#Y>|_Agjh$w>db4p`1f9wcw0-T6BD)6R8Rhsp|44XH z%YmFVyb~Jc70UP4x(iO_4ToA?Z_V*NlNrV`?~u2hD6X!>wjF$k16o)2^ExJqr;6q{ zKGr1F45BXI8Y_NA7t81d3dLU7R-;p~rA>IEI2hAaEaK1g^+DFVW4zJe{2hDo*RL<*8s1{&T z4NlGaRe6^GxdBWVx2`ze0h4f2P*d_Wr{(5G&NPX%b3XfP>TbQ={2qD$1QoYrXjmyO zJ2R8}-^o6j+q*iZ{seYCX*#P|NeSzIkJEkjO{C5~TUL{<7|C;=E9V@;u_A^)C;^IQ zZxF-%C~^fx;kT;=;yu&!@(D89rN27%f$NbB3n^mGF*PtaI2ViXP4m6GQ!yuSgtlhF zfS8QrVfondUelfi(-5{fI{@xwNlD??fJ5{c8etzl!Qk`0{C)sg=bMOeQq%GE*2foc zcEmiSpAT(aXu&uKW9e@&E%J`PVDm|Er^vIlww6~?64Chr*%!UzYoQN)9>Y2_%ly8h zDp4&c_?g&tqKsv2;rVht3DG@bgp{gLnZZ)8$=l1q#^#Dg$2bW#a!l%+<8yZxG=Ivc ze0+o3qlHaR-c51;dn5&4QM1XrunQRR?ykF@O&B@eM@v?IFw1rLw~4d_HWh2%N~`s8 zg@tFIG+iFXw#U%gPUtDfK!C0~Q`-(J0Wg9I1AsTRxOqe{`#Uv!N+Msf`Y%^OohB%#N^y&Y)zw`R4u_@SADS z>X3jZM->VxYTU0C_lv>*dfZukBo!R1F;sSNBK#d#oTKkw_Ur}x!- zByXhT8S}4}mRI0#pf)}8<1kP>{rA8CQZEtrbGtoOPoK5S$lKceHuJc88;8EPaw z9{jRMVmNL9hz9^{_4tc;BA6SxbVTl;LLkvM;CNoSs;P66c?R~|d3yE7_D$`EokLlya!_^{l}%XFmTFR2n18ned$HJs12-@@YXhz$ zGkMf)0bVBy3yWd+#7V5L8#;rBlYmfzJ6ep*JyH8sWA>}S$s2k`u%3CsqWPvc-+ZyU zxJLTjd7|)Fw?EA@kSL&B>E%IFoU>skG9gXU0<)+7kbG`Mo9RR5V*RVF!ftuw7dZG4}18MD!Xg#H&HML zng?JiJ)rr`&w+v7wmWx%UP6lv70HLYcf*N4KH5PvL$W!;p)jbC)Yq|=$a(e@b2I1I;HqCeb~EnU%E>S!!04evhqKY2h5_V+NCNvXO6c zlL#8a+Jt@GZOVavK0;tZ6K!e6qroHSY1JovC%f;Q9I%d&?W2w1j45+6`d!G2-Fl z{{cea>zUW~$Pdn?iEinAcBKGOJlWFDP8;#lH%R&E>3%Q-mE5g;OVo?*`Asm1?)kn5 zj-QQ`BWdVYBv~5t=^FL~6AO#n^W7PNUASntc8u^NY`qSfvR>$YFE{NS!a_&?4H>I3 zom*Q`Y>E&DVQp!N>y>GwH)-(b5Do7mQS!}goMV+7ZiuMnm;k}R4cxX_a7b8OU(Ree zp_=Z^&a{L0<^JQxN%;>VT}313g8t^(mjTlP$=aIkd1K@3IZO?oV3CFtO1s(Nv@21^ zu@me2O5ETPsmerUM2mzRYSUb*p^n9ypFX%1`Qgv;uYdH(H$h92hrD#tZpg~h6uzMk zMG4)hqVM}IPO|>{-EUXh-5T0tPR?sz!tm^G9Zvde`bwtE_Bwq(IySb^*2c!r<>jqI zk;Rbt4q@Z=4;ys==>;Vwj@?0DK}$17i#bJ8Y`32#jkW{4FFqT5)CYTe%W=}Jk-faU zE+MQyo>jNzr>vszD0)V!V+TrvR7b&UvY&vC8vk(rTL7{kDwv{qkXqZf0s~ad*GSO#vQWCH>9rOp_$T;d9>~KgdSlH&`{_>aceA zw%DI<4(v^O{y}8Y;STF-6r@k=S+{giB{l*cb@l&hLpDG3PrckhxKvmSq1b@+6}T-F zU9R-Rld(5InyF$}bF&!FQ+owP6_uRW*Eh9M5xvHpQ&TH3zyvY z^TW%(o`7L}fuH!-uWsM$@Tg)M<-VC@M!Ad|*O1_yJl#oP4|Vf1`5tB51=(&SNT3vf zY~6JcQox7;uX`HI>EfX5d;CO=2xyxBk3%tobRS{pS@gQs+U@Mnq*_B?LLxBV%G_KT z@{tLC{&0oZDKT$vvA?5*Q`eOpq@gG<9`6CbFVeWWB1Bui!L3=qi6IwUNIfX1vj^7` z^nJb-XBHPDa;&K!b~#!`;v3B6(SyV-tnw=g3-5n)zWmgc$#KgMp@?$>WE)8g=}{=n zB6uva2dhqcp6t#kxb9w#9I`Oqhg{}n1oa>{KPoZ^>fi^VDApiyf8_xLN!wuvLWAMc z$<_4_eN3l1OgdK9(Pf{Tdc6_ZX6fA;5G$x_*Zui{)ccn*1l@MLM9dj{t+oN>P=mzj zi~PJ_!{$!%^1sP578e)WXRnnt%m}$Gd7H<^G|*5==dZ8WY2n%q`idtG2|j7GEVFG8fTnzIf=kzyKm{ntth{f8 zUjX-rB$P_nS1Q8@B=s+dh2C+hL2zfHl&Zg51HZR}gX}OIZ2yD|_L{hO`LFYg&3L5q zAwaAIvdhcD!sK3g9N5m0r;AZV+XIRkqG5M=7|vw@@9VvRfsSJneIkfMBS8uY_MVHM z=i+n`LVd`|Rd?FeZ6`>Kkfjov&r`cDfO$n8c)wM00!7v5W)X^Tl7RU5;BGMEb_PbM zZl#ASXLUV$?6-tx9iPkG4ydjY5)v*!YwOCNf6^H(kpYlVd*5Qp%@df=eE^Zen=M>EYMC{0COg=zvgwPvOQ)eYJvg)b-%N z3?Ug7sK8!<00%#ynGzi3(=6v2$0xCNulZ7?ae0_^R&$tQE4#5sd6mOxY}YLiJ=6x| zmRy__{@$~hNC#K*`~;Z94!d0(+w^{B(a9TJjzj)H8IZ9U_B9seNzGY{W;2 zG+O{b<1|r#dljEQ|FNDi5&b>D4+gN`@1oq=sI*EP0rH*I`?tC@xG0Lrr*}C$j^(*y zyQtt@RX^e8PFIW;HG~uJbk6%OyAH&^k6xT;4W&@k;N!3I(&q%pgNy?e{nnf3&yDUz zby(%*<>3O3U)|t#AdZ4W3B3JKn8!c9N5l~bgVikf%m*VQaSEVru@waG9t@kIyBHJD zK!Mf9bTUAA5_XoBj{xxcm;{pC1uLcxf$!g!z~ymck}Pm;y*ur0_i=XX`GfhiF8Jhl zp`o%ujc7D*Tq!DI$%$O<2SD1>=a)b(v4Y+95HdtTK>Y$nidicwaS&;O3>MP zP@fIPJ`-~yX`)I>1OTCCH5-;P0P@FnGZ~Y{Nlf<4@(=nq7zn@uiSzAPf-@Dr6-Zi0 zok*lu!H8P^;LKAN0=H`#8gyT3YSMs3c(iw}#6UHYv@}}Q+20)}aN5{>E-ubAZ|w}m z9#2rjcsY^fjF(*$Xlb)vGhsmqyRh0GO zly5gOI{FK0!UYiArhotquGhHSSG0!C&I+pF?haZMM=v{+xeTfM^w7idM1+ig8CG+A zO!eu`IHqMfVLO$c40bfYdMoJ;%y%R4g1rQyszntC*u;ZKnne zgC?{T#;Mjx--?Ta!#_-$UY^Wh=VyF7{`180Zhg-~u&o(@e4V&gY7=r0E%|M6F{b_e z{2in;e9eS2vwPu_Ea5$3bqx)Ie$#RcPU8DHxw*1Hrg+2}KXtj>05~50;P2 zA(w1`|LC{<^eN6D@$^Tm+1|Ho10INiG@hutoT-4U7e!I{8>s0t3#~je_ViFX1^XiCjuCrzl5x} z&wa-`0)OFm9*y|)f6pL1gf>Ht#)XTWeRjS#$@RY8L`$C&2diz93Sd>wHDWpI!{NAE z0@zya*|T!x^ubT*-QAn*U%qVOgIr|6z8mf)T0^9dR}>y|WMj+!u6&-!{DS|+1BLML z!ZVyJN9(kkoL_}AQ1RlZd`3s7qQW}HdGPVRKfcw>B!4~yp5!A;DxKqd)VDi*Kh9Ce z`TP+-q*3y(TDf|+l10=1qyNWR%G+HcS0n`mXCf{x=L)dnyaybs_05<2U~MrnJ^hQB zkuiO3IoV9E#dNx=*RRBS;^lq%96c&pA7J|P{@Y)mj-zPjd#T#L4n&9(FG~Wgo^Hbj zSXert5UT!o;Q+-Np1K|QpU;8W%z4&>RGsowkIM>+&nTb_xcvF^=NlNsmqYDPoSPdu zH9g&Z+ZP*9dOt1>j#e1!7yu>59vI;rYq!1Omw@QdmgkWdlCxhjaP`h1?b6gJg6Nf& zgUf6>r`@b)uatQBhH|j`vbeIBIKo_M!di9J5J5w;wV11c~Q}ay3}`qTOMOkU_t2T zFtvn)L=!lTJ+klzfKR%uqvK0ZV4%ibCXb`_2hLQ{4CSuHQ%!OoKQo_cyNu-Ry#j62 zBVfjS?}!R^fe!yV=ckdxw{Jk9m;SrH_mq&dd+Y>>Cct55as-ov=UV3A@GuwbXFnyR z*MLO5_CCp|)uKJ&AJDB&4GljtpjUTtW;BNY3^i)%+gUK-caoI+nkhFFqF?V)`0M?B z5p%nlO-&4EPt}((_fmwI))i%Cv!ZA{aunM(PmYfrZ{5PG_Qn*XenLvRjlrbBIyPHB z_M_~_kLQM{5k*C;lXEw|SmedNvI+`z4WPM}Su?#jJNpQu0JX!vsVYsUi+9!dzqTtX zDq7*GH7P94-2p~sT)#+aVV%#7-{$-GO=vy^g=U7Ho(&P(+f|>R$8`h-s@5qe^j^XD zm*GTT+pLpzZ}vai{QC7zV`k-MjN!e5ZA<> zS5%aa@lDd&x&r8P1s{O#`-9UdB{;agyTLs*KmK!LHgG3YZ$jTWK6`cP2}82U!@fQb;~O=uD1 z=5i`3T_Yd>+v*7;qru6xLq17Q z@X5^&;N9WI`8$gM&tOs=edJ?;O_EJ#vze_}*3fR)p*Nu*XEE0v&@dy=$e+9a62G zKUC#xI8Dy4?+MfOpPrq42Z3l1P>#i+@q1TIvzn)bfnX*%@q0mG@qFi()2HG+ZzBSN z>aa+x!5AUnnG!-56adG4`$9{zjlCD4q$KTf=)-1yOiZ`L0JPhil5r9H`#6Os;Sc$L z(zHt&7#RFDzJ((G#;E(zUH{nO-FGV8u(wnI5^6Ikex;sB&WHOwJL7q?fI$79Fe-b* zU!b61qXy2KBe%}}<|Ja7f!~?ejp=O=|J$@eX0&-_wJQfT)wf9+i&vpx*a3i8edP)w zRzBXh*I?)2p@#kji2+h|Z^y`icY==5@y^>ZJ9BeGa$(XxbPBU%>|qYP$-lt@dXqM8 zUf7XFSpjyB>74N1>cIuy!=|m{Q*{IBJKLvAr$-cVHldSY`Dk)N(R1AqYImSdM9e(v}qBsViPk~SIBlqfVY0kENrJ#TSp@k_sjZH|PEZ;CHyw%m)%MFe)@0j8y z+rZ?H$z(~YUe3Toy+D(7ZN5a(wFPy`QMR+SE0+D8Je`rUva-CkTYTD-85kM=%ii85 z9iLi(WNj7A%1s@G?;OdWoV52q=KKS)!JXh+b#}`=3rJ!nR8qnTb)!K-_ib4~B9D^3 zh4gc4EGr;}V-)4_Tf?q9G!v*x}#u<_e~JE<++c;9G}^F<=iEkWtx=?GQo8vx>#9FF#$8FrC&jB z@zc|zxv1ZkAx=4!D-{M|3@rL^O56h(QbqhXrGzM`0g_J>e=l@*cc;s4oaMCZm!OM? z=&M1Zs%3vFK?Rx6JO3w&WQY$4g}$b~zEAW{*w3FxYM=+zGBb;RAG*HxC-*Y~05|3c zp0MUd^2J_vS}n%Ou}Lb5=-4Uqo^L3gd3ukMw@D93y-hd=e@ zlsASTa~OGX(a;HO@HHPi82m`k9&ws+aqO-k=P`H`L#yAz&$lx$SK3l5{zxb~Dai&r z5{H>Xl!DrR-t@_*lIN{zU6V@Km81{eHxE?=we3 z)?F%Gyl4vxv)|aHyqb&!A{q3H)6?auE<2N|vlEP`49VaTwul%NG&wA-9^PQuL3{|o z)^6ii3Ecclyr*t!5`Rr(I@!xX7G05_muGmg^Vjmhwr}n?#Z+OF)rAGMiE(s0wS5R~ ziW9l<#F~J!LIFgR()X2XYj@NVg{Hn#cvS0feN_xFA%)yrbJbiuQik~FcTiEkgErXE z@Fn=c7EI)-9v}?KO~cO>fjQ)2U!uVdE_1&Y?ALd9ZPlfvJHS>`;byN%gp|;(AVfkk zv$7Iz6h?0VeTR+=D95X+sm0lW3nTucM@OqGE9|s!PkFug6^qNt!iY#n#_mg2x3x-a z{yRB&3!mQ>IrdcP%|w}rV^6$KhJ3nm2pojbRJ&O#pQKOa=Gz>MwtgTz0>!yUhqPVRI;PV&0T z^+>)3Q^D&Wa$dk5DT(3-EOjhr&|DWxR-&HVratU6EJYO(Y!S8_Z;S=48ZYn^GL!A`6uBzl-!(OI&@; zj5CQrO;C7sXtE%{1VLx_fFd@jrmx>IQ{K^LzxTQt)4?+s;`off@fJbJgYWa| zQCMa^78_fB(5m16uy*@nQOm(2; zEk|(ab1&v@$T2?5e9y~E$9<@jI5la@8nBrJAYmF97+G$v*OZgmT4O#DzSw^DAu1~V z;4=%BUD_luaF$ykoQ+|3Vri7JK;&U>eCjQT2~WB%$G|ZleDDEy3(p&U&({a3iNUI; zMVXFB_Sb}a&JYa1@Fdy2LG<99mv42h^i>XrpU4>AD&R#t;SbTT=>x>m(^`HhCQLVa z<$$TX(XT4Z_kpCt5b~$;gqe98E{s=i288M9hmWRf8xTI@GT>YS})q@>=;!O@o`;+v_lQcBwA$t>IOEMMJr>vl9nt2MSQlJy#B3 zp)N~KNwJj5ayf=%io-OTrM}euQV0Ml49a*8r-bp#A&c_m4SX$*$($cnQeMIfdGI^7?9(1_T>V7z5kJ(%>!&qHvQpthj;l z#NhJM9a&9t|M#E+lf%NVJH`h5AK@7r8B+C5&j>NiPqKsGs8mo;@jJz@VK>H+38&{< zZDj&3)?==YlX}SXPa%QDx}d&3DLtZ>F1?PzDfgHK{U;8fVgCMy+U z_f2)Q72`0__jxwJbO300888$*#(d{ZQ&Vp-{F%o-rVfhu_T9NXljVid;zQL#BH*j$ z0k;dsp5VaiWTyHM>brs2imuo57-Zhw!p49jRszsJ8>-8>vR)Hc7L;OGQ1 zo=Pz=(qJRV7S~$8)|Y_3U@2C3zH?eVh97(f&Qq z3J)}yu@2pij|Sd<`t<3ka*BZ)*C55zaP+Ru83A z#dQ>Xw z=kAOL30SiA1o-<409x-plm?VxHngittSX!Fk^=>EbIp@%g(?VEUDJfQ)5g3#Ve~)u zSFhw-R(rv)(Cs-K#C@YKZ{Z0(v~#pQJ@EpkX6e2j0Unc^Yp>Gb`hUHS5ZNw6*N>0 zt>k&R*&SVn|D)-v0;=kwtwBLhQR(iI{t)SuPHB)vN?Pd-DJelIrBkG(L!^{0>F(}M z$ve;e|NFqp7w4S4_u6aCIp&C|g6~pN;4&UBEiK(x57BLxYQ(?Pauz+opJy~RCdLx^ z)fhg0L+0-EMlSvK1QeJ&5G?P{G3yo5Z1g!H!ScHeckny--ie8cXM&98F=?HB%V?W9 z<>e;ha9Tz8uI@j7KBUlIZW|&&ZMD*c7mN4^^a7A2FzQ_IUJj$B+EI@2Biz08k}jSWG(i8THx3tYp<;GpL5!9kI`>$kr1 zJ{`Emp&_-Gim4w5JTExY>ft8n=<5FJ0`!rbIO6x$doSS_=9-7WEDY#%Q)3(>`6fpb zV#|HA`es|oD`)ibva{(B3t`r+&vw?PfCLY3h|=nsm-HSH7S?yi8?VS##1jK%_6&Hp zcrC5Dmh8YpGhi@G90e8Cb#i?C3rxML{hAlv!x$MX%#2SMamk28&E(|`pO~4Na)Ip- zL$pkn*v<-2+pS@iP^=%%^6Llrs`{t)0nF%;!-3pbMK`SV_NNl8=_lkz-09s3Zae{h1z#t{#^3_%5$8=QKe-vqgqdCjAL^=#rx!*yAh9|BI;Z^ z_>du@B#}A5pziG4E8SUjdU9e9ri_t(7gxafyA^tZ4poL(+7C9#1(V2NAcnlTx%$rz zpm0KX)j5MQ1KJkYLqgqL-P}ySR#z+8Lj8BJJEPb&=woPNa@0Rrxh2oRQHJtEGm)!X z=V$snY9Y&UmF?p&23%qya`K52#xAOqzi>oEx^FF4s69~>;^SMh1on}ek)U|iKrl!> zhMbO8&za|dA48S))%CA2?B+E>p3|FTWUj-wczE8i0uHKbLzdj!NnO|1Pbx`;Jk*)# z=q8k3MttWh<-6DL^tZ z1h4_hjNP5PB^zC-MMg$*hLClYOK{W>?qppCR{JglGi?B#9YUY%0WSTM*2c#93|>A~ z#2y!%jjZhKFRTmQ!H=(-nx6iLFr%gME18$Z*fHm>RE!%6?-UgDyj@(r1VIq%+*J~^ zJ4Nu8Po)=ffSb8Sox=(fOA0W}uzK_J6K7$&Ir9xW_5dy1+SwdMB^nB8pmSOC^=0D_ z3;e=BA;?N;1#O2XbI46<>Mj!>U&1O(4;JQ2iY7s2zhF`*vtl<6Prc*EBNFb0e;YZ1 zFqbS-k&uW7rx|etxyi+wz z;*gw|)TIWGg(3?9UF%7=lW}>T0yjC~ImuVVQ-odNa7hS3vb_;--Q^sxaPs5F4sND| zqH`aXfYC{Jr)7?TlT(i_m|MvjFi^l^fyqVGR23h?pS+y(dC9#(?a@0+qOc_&Lsj*a zlbc&!h^@x6I>rIkU@5G{9f?*)J6;TbC=Osp&X8_j7hXNz+*HK{cO0r&{Qx(Lhe01U zhH^|UE-r+_D75tTp9e~1DT7I;!*pu<(j%PEuo(Lrd-gK9z*~Yy!rQ$kzBoPFw-nLn z`7gYA#IW}~FOKhD9?%K3V|kRka4!$DuM=A?c0&VTd8nyaZ6B9`=}m* z%l!AN0JKI|(TtRQCfPTyU%yr!k#Z|ez*7tDS zWFYnhWhQV$Ld#3oV<0tN8Ms2N&Mq#G!Dg`j2!Clm2_bQuD=9Q?>GtY>Oq_JFmadpP z4@k;Wp>?(6u`T;AP2~2Wp1~|%_(KApw{><4#&cSVGla5Tjl-5^Tx0?8AOV^t!VLK9 z`&SmAFXsyzn*GpeHQa}@o%`3fI9D`p}{fP*Vlf&zc8O)R#ql@f4}sba}dKRK50r5!GgE{ z`d!*-#hS+Ej5N;e`=UG1UsADyeWK@`Yp${4qy}SkqbxvR*dpY`TeG>pfD{9v#+pt} z%I@H9NC%*_iD3&Ojr1I zmsh3}Dbl?DJ~Ut5@F7J49yTvuM#O&wY zY}d;vR{}P@?O*V8{(2$vo>`(PfYG_8q?Hz)r2Bi0KfTKd{f%3k%Gn~8ps;rP)R zoAdtuYoruu-daF@T(;wFHr{k7wUK}q10%eZJacG6dGQGDt)Z-}ESt#feO;7#YDN+R z<;K>O=XATi>Fvtve{Q6jC?mg-(&aT4m&bH1*^SqMeei35Dt;=@!jO5e(thca6>OZn z)D@4Y#FE-c(Vl#&&j;wUKJ!>tQc_zO(k1Ty8NUkwmf6sEyUM+Pa&w1_%(fyYC-@8O zE~j4&*?0_V_8sSf9*Ufald0Vc5cc|axZ>CS^*7kL^!?%}(PA-%(5jZ!@J7|Wo$OMj zWOU2j?Qe$?%U_>e5)cr~m0OQJwp&%m8~`e>mC>M>4Kd);Ql(W@k&kmyVK&f#7=}sN zs-=XShPU3j?oQ`GIcSB9)Y1^!kda~E1QDa;NKKfPHtOmqL5ew#U?a(Y-|?Kf^8tRi zs2#7Ku!09Q{FL(pOyDN`e9Fc)xeN|fw%Xd}sE3_EHbw&i$kXSbX0-vT-&kMYtBBrJ zjNo8tm+*|Q>BsKWucl?ixv{7l?joBD(s4cc8~^Ms0QR<|L_``#i;`4mnS#`Tl@G&P z;Y$FG-KUc+-?|MU@`d|--(zw3-+qYO@kRfD)JfQkqjpjGc!ro-@mr#kA#fsoVQNpkdVe}1~g0a@_z1lzj!f!3BMvsOI7uO z{3i%FQ_J}A!;kGd1|_|WCgff1Uz}K9z?mqQb;TH%yCeq79f3{+WoC+aNG9-y|s(1vxy%T`dOw&ktnJEzGVAPVjvc?2FT0L@_> zk`BKR1PLSFNOJNY%b!2*D-vF@ltt7aUR)SK&M2F_1mEZ;2VNTkX*6fT@4nQsx)T7|^WQT2)mg%n)XN=^{<{I9MS0tE(Sl9{0Ps-P{VdgIAlNLp>oUza*x8i35_$ zzAk=wiu+fSlW%Fg&SvC_fKN6S74LTMG&?9Xv{Oj8s>GdR6G1gXAySGm}7C|{b&c^o3&Tcb(XhRTK2<|FfA9)>l-rYgRX!8~Q(?jSZsuOnPa4 zfjmJ^&-Mp^^H&B2xsV5?u7zTc9)T5c>V-_71mChG$-qcFUbcBLUx@yPo`*5HU6Rwj4it`}wR&XM? z#ggWO&wrw&-K&g}<>DZV10yw$hKo&kRS%DQto;0{V0QLx3uqG8F@xLyFo_M;c$`=@ z`uQ2W0?-W-?HfJ-EtxT*G+f`Re{}Q<#1enM#<9?V?@r|(QN6E728^44y*+pTk3`Q| zo;5U}eQZ^r1sWzh2ZzMF87pZ}?`r~_V+;vy&u`DOOw+%83lz_J{z2L%;=hJ-Qgb6C zHs~v;l>q%#XL6<#xz(=bZ8!@j2qFd0plp1cp*}TLBN>dPJ53C4>Gn@gZG|1_2kg4> z1z<_xBVsCZg}#2qES?)4=6wBbPmAiWK&ckSpWj9W(Um6(W_*0^30+-GI{NxEFWlWx zf5Ep4Eb8XN0?^caUaFR(!>|sVLk5Np6S)17y?=$Lm`w*(#S? ze}D_>=jup0QM1{a&n0hSA}(T z4|{;XA5-q30m-)qQwvrWPNJF##abB{K!jaE$|p~|Mp;#y3m{YmYmcpQ;3yy;!l5n zdUe(54rXlGRMk$dtQ@~Bcmy-xP^9(K7}Z{zP3?hW>B?A%F_^27>E7^<&@kmT88Eg!m*yN7Gx-)$?)^on1~( zJNCdIp5vNNWH(GT8|@a>z}@J_@o#rupRUE>VBK7JGh6@mWJzdlc2=0ztV{h5&~jq~ z0zQpAh{^lZLIO`;YpNM_r2XsXS!C)C(%64!GJd;FPy%RZ;s?7p9u*SA-2*m0^$)F5 zg@TG>XCUC)n7`fSTje#wB7KbJ?c?GLKKaQz0f_r7<>EJPjF; zMiPG`Ot&vtk}X;EL?*!n+nAc#JAd7pEPv(J%Gq3U z(65>*nVO=^&iaH$1D)&-^o%^BdEj~eBukkgmXQBS3B*Hp`1nZW9tcv(YQtNF@>Kxk z{K|+nxpaHSY#%yK)AWm37*amHZGK{1xwBLK<&)0BV_9D!V&Zfmp&4h$nS$|2;CH}c ztC5i=+pQ^rn~}jl$T3y8cMS>20_pu1tXsg|bY}(~^1F(38!MBAlEevu&}OCuNuUz1 z@ba!75f}Tz|81E-R>$1?qdWE{>0Mz|?ND&NJ3Kq%+FV~JW?=U0#iYFil8XmK)@Oh> z=vjzWBM^=YUM9WCb2{4%h-_(jUOyi&vX`|91tDqw@Nf?tJ>;-=ZXyvn*ZzhDw6eX! zvxO+hDMZLeFK!r2WEzx#fztrMN<(jl%ySVp_H<(ZB5-p?f~8yg%ku+Dztnmi@|bjR zXE61|ltl#wWYT^@YZGaZwh%%`!5*2L`;YNb0e6ZJ?8b?~BroePw8ccq#=icu^>2F5 z9)RLKrWZ#>3hhu<*A!lPlPq?N^Cm=p2* z(pObkS)i<{8YK%m3OQe`Z+o4@*3_u;JbiOhAAacRi; zdCUa_&rSOIN$YIykTLJgHHshwe}Oq|eG<>qSBUi6QIzE~!Nzrx5ywqzgQWz@of0vz zNXt)WUSQ!Mt@KF@(D!ZT|B4A?he^}3vLX&4kf^&uhO4);vkW9e83+zfh1H0hyY*Ir z)}4i!AOmm=S_ctr$J^PuP(t`*8fNAhK>%4f0hF5oZ|-rGh>&Ni*rK-5GBSH1)Q;%S zHUnl12nfs(HjI2QMSP=T@fze`Zl^Zi-ED0jnFFB-7-N6<+v3eBv%W2JxsI`Y)gd4l zs~su0Rbqrsb{ejEu=6~)d4)pIEw^oSR4Pq@J|n%q3}}+rO~`jvrTx4u-|elZ0l$JY zkOTexQF6y=*oP1JKY%xa8XOEJmJV)iA^!zRV?o?&wyL|=4ZH6|*}Dpk=jD^MwBk5M zj&j|Rai&RFn3gE*^!^2onCuoD1MQ1)nY*F<{sdHXvjLu@N#C6CSS~r9KQFLF{J*eo z2**9JjXMS|8AZTv>V@;qFqdO_^oTVXw@o>^>^+>VP(^hC6YRK|NFEF(cehLq(|a7j z#M{i;ItyCqjKn7{%nyeR5jV7_hjR#Vxt*=8m2cttA^CVr&;A6Uy@lYwKxdoDij|je zuhzCF6dXN01teA6`lqI-~e%fgf6cEWXl-b zJk{(c#|$knPXFt6f*6|u`eX!E`dOH9BPuExsOI@hqQR>bF6dR%7w+9IN12^Q-`g8d zL7AAno{#$S9?5qHu}CRem{BgoDl6XwJ2>`n-9tGidXbHl)JsHk#R`v9~h8=QZ{jD0|Szj-$p4W9vnN3 zfgg)v0b#qU(y$RcZ|T?9cP;1v z1m*;62CPVF)EKZ=|6Y@>ZP$sP?M(640&G;2+e3!yq;(fG$!%H_hdeBLyoQ?-2atqAti2!|>vDrW!u`EvvFlOxcDzj}y%{-E_>$*4$H_5k0M zBhQuk@|Bueul7#|zCxM|z#k?MBSm8bKlb56LwjK}zGMN{AHdG%Dl}OE54IBcT$21k z0NDnp3b}7_K&kY_(Wzog$gZjJ!P`MQ7J!$Js@~0MS6Yp@9wG+dh_qkjIUH>4Q7m$D zsfo&NSxc4#HfGOeWTf}!=P2X4w;)moHmtw!Oaa1V!}fOa>Dh%;`ro`FZ-HZLP%)?WS2lYSY&a(PqeC9}S_x8~yNT25P+YXofG7TPumSVh&P zrBOeCV)3w2!Q1<;Cy>Udlh2@1uLPx2Grbl|)in+}3wlc|BfcE4Rs7Amqhz{j5Ho*< zK49WY+ya)w6=Hl=Tf@r?ClphtaaxG~)z#WI{H*|8912|&npdw}JA{uAWgTKZ2&{!d zP{NkeXDjl~7Ev2!K@z}3T73LCF)r@(yGU-X!E2t4F?W&H(I~dR0P7HY35d<| zU{JnrxWfDr3jIK53|9zL(N$20Jq#&6qH@`BP!-EC{j9u5LxWh-L4l+^LcYSqRP6g9 zEuUU4+3{Whla9pMsX`?$&%9@Fkb@+hEf+zzy@g9VPET(p_VWu4s)~@?F$US+>xGKy z+Sr_aD_Lv@!UheXOE%al9NtqDf@YQj?a2iZ z0>t!UI`uR*cK9#BD>Mo+z{rV-4FI|8!fX8TZ8kRc`Et<1weAN)3sh7_WbKit)}nE7 z11k_Tms4C^o#^K${EUj~C-Pft%aQ!JLy?_q8vqr_>a`3E<_kghHsJr{_kR zbnM?VKP04erD##!Zi;oX(_gDnV#8#6J9iL(>a)6|-;PsU4M+j1uf;gWh4l5HLp6|okcpSQfV zxBOmI6vS`87{B3n_a<(!N;i?6y(4qIH{w^@vG589|SB~^6~G!x4GmO5MTriG}HO{IhUeb-#I$^{wq**(MU+A z6#~a2PL5JTSNGw{n(K>qcAvYCpufjFQIxQ#+9QgosOb3)e$FN7RkG?77;MqeiX?z| zYOHG{#rPN1eg-CN~HK7RbcRmxB>mpiuNN}j*bGftIl+#s?pcTLb=bONP zd;a6$5PN7F0wfZR)b;VsP@HxraK*j1xTF+LmPCWO-vK^g2^9QJHHSM>wHZpbUbJ`u zPWBVo(B#uSbWR0k%B%JTI}7_YkPfmA!zehvt*xyK0Ka4K!Wh__{yEn7n!WAgf6<+^ z!;q!359k6mC)WsGSorO_oTB0m@t!+_m%f34B0=lgZE;RN;2Iexyw3%j`ymP56EmYJOZa*^Lo#t~0$7fY`JKrC8T3u#n#)|T(!at@Qe4og#i=SA{K+r4q{sEuzb9Q!iD(1UH81#+RUq|;A7YjYFFCNLn z=$n`f^_Q7-;|^FP{O;>u(W;;L~M!UBXA*BNtR+Pw@ZcSVq@7K1}X zWE3Vw#kaD87gNyJKHmvT(TYNt6hk|hLIA%|UqwZ;!jXm zBp|pw=+r+I@Vyb7*lWedBt6xQM@R7Cns-MzO&7}1zoh0{LuI79An7Rb~7}j zXa=nfYhK>QFl0sK(IFFJ(BHO2B-KA57fc848IfXwG1bv>r&{O)^~A(f zpAK^@EM!PQu3LniW?ne(f6|6#ru7~He+zk{udE_D49Jk| z0Xw{HT6uZ7jBT^;niZ4}PNW>-1vZwZCMsK-mq7(QImJO6BczjcgDHg|NqQqcAJ$ z%Wt3t+6DfAW#-|30l$|;yv}p?;Luk?BwsUt7Z^6W+j38WW)1A?oqcH{NV&5qN0uZt4M~BSh zM=TqTW2lwl(dIuQ-ER&dE$;%_zHYeh1qdBSgkvzu^7C^-jJAE);I#nZGluMB1$h~n z&CXsSCEu&_`|=(3a-aYH1-gpn+3Bp(M5VPWVk*A8qg?(*dr6Ch8yXID&)b@{$3JvV zSbZ!k2t$58K%z?jq}*p2*b)HGgA?~bs9u##C~1p5>Cq)HlTYCi9kA!6JFXm8y5fWZ zU;!?Ldzo<;;bMv?=5UvBX)tg<^Y4Ch{9D9pu1Et}*I_~~EaN?6W5xLu6*kHWWGFyC zZ(Ef<+!`~RQFaRc`IGP9bmtc*mG{4+IUp%80g8O~k*Zu(Xzu2Bz#N)e9Z;?dG#4^9 z13?|0I#FJPN4M{T;`idk8`EzIabLci2ng)ukySFu<4$004c3K)b%}a<20H*M4sNUL zVJK^CNaBW}90Y%aKIy+U)GRhA($mnGxtxv1o`l&wYiw%j4`Usjd&%YD?L)nH+Rs7h zGK?7b`SA-A{CD$59ZdW%(NQu^yMY%b1aQBmpSbSh;BH@@y?2Aq`BQ}n%!TLPQVslR zHLDJb8^OpdFPD#qzY0SFoR1AG#N(Eim)V}V8BXuDB#hC~b)z$$sNr5Ctr!r=rn-m6 zBYC5Beo3XQ$H?(f*`<__abux%9t+W0^OrZW!NguxDqY#{Nmzc1_#lAS7 zfs|k2w1Kne&n~I(dl6?1LI<(~%cH#}Sp3_w1R>9=F2wKsGpR(0`59pGz;FUzqZhVk zi>-!vf?nq#OjN=FJyVvJMD-pXwPBN!It&c8p>PlYxa0|1mjc>1f_I-GUnr>mQqa>s z|9Th|WrPd2R2y#Xp^88trg2A|%+9=BjhFeF5SN+Ry9=ac)w&gq zsuMAm;PacyJv_uiM0?^xfwaHti(~2YP4$rcM{)p2s5S6IRhTrcE|H&X7bC*477*d3U-;hPq59{B!DU1c5P?xjNJPY7IUGB0U^ZaC(p4!OUlmNd#%ZaIDVfI+5AP9aomh z)7?EEII)b|(;Irie^;ve~ho+}FQ34H15Q7TX-MoB!d_EEW z<+JgY$yViqWu%3K^eyz0T=pUGso3r2inFsr`N4e-NY%p@23Y*Uw9yYdwlqDX0T0B6 z88=mw4DHwM6#$9*2M60&n3#;gv^f;nIo#9Kl+zicD00u9Mcv!oz1)1gj$^4<^T$nb zQ5KUr>OC0OiYq^|22%mj2q_X-kLHv#2`2C|W-oz*G*NjD0QYk}HdifiakAdm>?pg$ zKiv)pR;%ZJ^ixHtL!UlVf*q@<_{-WqAfO^ElREYZ>Ha&+1y#4ur=t6AcQ`AEC7#=y}b4{=%cv?-L%w7j^fVukPVnZeC%snD!^XO|d1)>Vy(d z{InuFO))?yo5jb(^rr(bo_ogo)(SO0-MQg8CB-Hun{ICWY+SA1dDJ8=ggO1%+?FfemW`BCL94Z($bv0Il*j zkD$m2OV7^sTRU(=3izG=0UC4Q!SD4Z@xbUWLEmKD!lY^ej_$iqbiP|!H0}YCt|k=0 zhp$_*--C1bci?m*k9- &S>}Q;$TyxQpz_f|a$1R|qCKdPGS5kIV#tiv7Wkm*t+E z0QiwiY%MJ0KS5d#Y)*#X+6>B44WRgvaB>cxNlHjKBW=)%25#uV*`ScZkGHh-YmVXR znpZP;0bZcSV#)amroM;#wH(nGO$$u-#{;Q5a}YDRyu5@*ErzBjZ~9V;5XQ})-wS{K zmP&q9jTqz#K?xHFXuwIhfa~e$DTFCA)*#;EjE1iuJc9(93#e(A28YyGff!nwm1QCz z;y=Ux=C(u&V{u;8mz9f)Ya%_J=H1+uh}JWneF_DC1p|LJdZ5R+0~;^@-u&%T(!)ca zw_e41Pf2xj5*YxusRhA89aIW>FNKtO;x3ou;Bo)LGuj)%Ryy{XmffC5YNjvFI29~7*5Dy%C z02q8@eSQ7A&S<&^%5JiRckbLt(omPl1)DG8Mh}hQl+TnmWZH{JKtHLguO9}Q!1CGl zgf1)4_{7DKm!Ci(tKXuo2UGt64Cb`JsJQb$RKCac}PY1RidTfs;(Yr zT_SiF0;7clr0yx|sHxfz@=9v!&B zFGfWoyyDekcTbF~*$1$2c6yp)U-%ytE;qLb_Nzjz?%*unvK{9$oZqz|Ey(Tf-~XU;KlncE|IEw4Ec1hC^+7UB%yA5QkZ(ktS_U2(`mPsBGQa=3nuDQ8aLoF>5rJ0#!JkOse zL3*{Ua*MX}eQp~qB?Pa<3eq2AVjLT0Mn74k{M(q&^XZWU_mNYBS?uxG2j z8v9I^^U@1>?)IMn5fP`A-RFnSby8#ZgYdm5f7?)#E4=_O%hZtT>xY==v<`NknL~2? zQ2w3%2N`v2^3u}b#CUi{^BWr)XkQJGk^NW^uDyG24}l#Zqpi(%0!^u@Z2FE#)m;GW zudcl-VSz1UV@DGsifEB}6Rl%Yj!Oie9LkNOJar|#{o~4nT+2l_eVj& zTC>Ijlfk3ON|NibA2STMpvy1Y*vMOjo<&1}-cbwl5h%v_!9Ae|flM*8-2~jFeGf~4^QsNL;ll`{+`#>OA>@`=yb9y9Dg7+Uc{IHK=8Cw$TO7?E(RzxaJOv8Lyq$zj4y+Et!I|^D?F*^N8+vZZoePGma z7{4Rv%+w$NQnI1$ZZ%eF>U^BXB96Rz^NWi*;lE#F0p(>9_{L=_D$h>ttSXNmW`Row zV5{FSKzj&wHHp~R*q*c-B(NNW@AyfG5~%^xwBMpaM*2iUQ**HK$|1^F^mq7U#$Ga$ zQP9h=1T-(O1KEz`eLe~7DyER6wt;!AX4&Hxz3j_-f!!1TjI5xzIH$tF%;Qe_~P0un^^qw@Bwi^#*N|pg< zY>=6aZI{@24AX`W7#RJ&hs*a*fOyD)wWe&}c-uWKz}v9`1P0pVpHZ#G2OtN-{oIg( zCXIH0j1=-)l6#x(T(j#oxOQJ@FNdEZ5jN;n_#@mwP6crWKnY4>dLhc!`cFekPKL!NU=QlKv zWBI+HBqm8B3<~;h1Hyqe*6i+42_&n1k2k?*y@-BoWhDn8AT5x{&SBWVlDW2`pDvCk zjE9HK#LqvC3;!<)od^;V%rhPBpywvUvfTf=SCDTN54@X$#v6|u!}<2s-SN^#_7}&DG*6y<(os3L7Hnxvxp`hn0CXxd$T0Id zSVZMwWURCGVp}rW)^mZVV2Cu_a9+&Mjp{N4~U=~s!`n& zBqWHX>jBOUCJ44`(~s8xPW%X+CH1@Ul2nF2rsx`H5#ddsR{*+~a!er<)G*+P141?N zd`Aq7BlKRrWL10N33JR6)6Q28a5=HAI}UmHad5RjUm^mw!w3{h*0t}_UXA3Ubj6!N zpSS)HzlR2w;8ry5kLl&Js@kyYT^OcwfP_B-l3+r8`Y6POOLI9XZK77VS@_> zUn70EL?8gs?CtFpL`r3;KqX<>2z}Ar-Ser*o7@_=gR#x}dZEIPAGfQXETeOa+(Sj( z#CUS_PgGP|r>TYFDIKf!3z?cHnUkeB&apVdtlQCosS1-8La4@R4s#C1eP{U(>jQ>jP#RvgZ6Zh{k~uNq)Js}E=5#O2vu z<=X0vL;$lOEKMplfXy$!d;|JA>zySQr|1xy+1eA`xhEop*%nq-2>BbztmMSZ4A=C? zNV7Ij4&6f<$YtdChnx{vS)d8>1aF<6FD|4_?jj-CIZny{^f>W&u08`&;83uIYM~JF z$kdjoKVTeB!4_$A`t9!?2-i~`;7wSk$n^{>I0k&t9m#Jf|gO8xP)8pbQV?laPZ|03EjYb8~PL~yZLw^2; z`_1HNpc0!J7?@zreFV9O+vTMb@4+UB^K5_IkkNw2OhpB&IyX1hs6xT#GyzWqxQ}x~ z;wHe(8l(`uN;&X(8!-HiMe|;%X(!L&=x7=i=*I4(^{s(IX9z|SlirIG76M4=`u-P^ z*bQCn3SLbc?S`o-f_LP@7?_!tK&x<_fJuZ51`|3uf1C0_vpq5_!{H_<`r$=W)_?^O zZA|C#;Kp&rU&YPW=H_e4;^H*bg@wtwnwqnyNbA@+WPtU>7&hLZ$;rxE5`dX4x@QCM z6{bdAXz&&1fI208bnL`~D{3e5VBbw}u%|}>JUZ)3=;dM1`VZce%Uti50L4Fh_UsM) z)3j$wGBWwyeZFnc67`6E@Jz}8v=YDw%xL_#YV8j;Q&AusfCPAC`to;nfv%n&9v?y^ z?#LOCf1=04?FTy>&d_hv!4M!55z+e*_^@rjI649UyZs%Bfz{C>k{!s_Qw@$raz9>| z-2+$23dty*C!en0;b1TJ5MoSXs!L-&hNE3$W!Y3ElW-0y`20tYPB3b`GBPv$J;A5C z9|_)$El%H?e{1->drYuwhGu4(A+5e)8oHCw@d81X0&+1U(;uEoi|-N-D= zzmeqOaR)cP>9i#v#g0s5p| zu=sEiQy346F!Ze-y4@;vwUSOQh4&#kiOZT>R7vU6`(`5*AX!`kFIF5wY7P@>;cr8h zg3$V_YHCIS`;pMy-JKHv?43OdLa=TyMW9-#NtZY;v4590cK>%D58vg_@}Ho(w$OeJ z#F&@ufARjZ((0HU4 z|LEVVq*;wia5*Wu<3e$p^MVp{puV0nLm=sf!t)hbzxvtDp1xk&18(Ci0f}d&rAL)G zt&cI(C6Mo8GGg5om1y0K9BXS5!+MA+`Ay!T1zb;G|GN}FXb11`S=7a|nKg>n+o_ky zj;Tk*gG_z-ZI!dqj zd|a(%MX`Jjd~j;#z1bA7wNdyYLmLfg;Xe9guUZy{Lm~V-x9STGWLXlzj1rvT{AFmV zt2)o1XVE61xD6bNEy=Udfh|2}W4GatF>puum~ywp10m>g*3dU1gLx3#pQH=GPILp_ z4?;5iDs70+rKUMsWgNU0BsOq<^-n&aa1TPdh8=$D{dS#NpR5Kehd+~jI`R@c5Eqn` zkRS&7HbU?Vw!zs8lMuTf+>B@clawkzh1HauNm5%o!Qb<2ant8KM-G{567|r)|HlX8 zzl@d+hnG^ouw_Db=u>fXi)Rd0V+Qz2`}@~1es8v~%y&#*mB}zM5uQNDJ5X!C^j%NR z70_08A)%CiG|l8a)gL|L5SRLoNpf2sL{CG!&yq!ge{)@-f1cCrL-?v{BKLjNvza!N zt$DP)&-Y6cv!tK!5fT%tcjewe1`5gFu+Ry4GM=}jjBIR=HM7l(j55Z1Z6#O1--UH( zaBv*bf7Cklb-1}l#{nJFP7(J0z7D2FCwA?2o5PHz=>F_a6_ek9A?_X}cBrzbXhYAl zZv)4iHF`gk2kf(yozejmP1uP~OtcssR%h0et#Dl14HFMG-s$b>(E{~SiN8Y<_dh(C z3dIxS;Mnf0tr@(2<|PVV2o&*6;|L;sTUevsHk z0NTOT>FC#YGqw7zTcbPtNJw3{7IGV$?fd55&>-y4E^Y-RCH;fP^D$0`?vPiU9bSmCEYz`A?N|VsQyO0R&IJ~z^ zvGof(^^rFRCUPrJg0XF0V4`&W3jM9z69(fXF=2p{y@AMR+!q!Ey5mHD zMLx!>w;Ynf0qM`d>FnoEvF`*0HIoE=NDb*R(eYNR2L}f|NJw-+AZ1Hj1YFBX@edfI zzdTM7r@u0vZH>K(QOvf-YMfVFAbQ>e3HD+u-onSTj`5qz{6` zkdcsNeA72vfi8G)aZd#*g~pn5-D{9*o>Pc?=ghUb=2>V7jmd_&=$C^7rOo-S9GL5k zLQTy9<2JlnVPOM)*nb~3_*^q7-xGq-#{fCM6NC3$!(CLF6msAeS`d8Q`0nRNHBlDf zjLifv-BlEby>*h=7`qP?qx%#6-xJa)^Q$4{R0)xDjm zwS*+XmKzv-;+gjuD9g2G1q9q(-uT%@O}C=fJDA;#Y1V@iN;?cd_eZdX)-cF;EQ&c^ zZvI3MQi%5H>Axq!aq9N+CFwm_@hGAt8|FiMkd+B;NF-o)Lku{_*3eMnCO1++jjE^UeRJcFWynGGH6IF+b*nPH|=;`|Lq%Xf~Yu%|GX3xT~ZbW z|BDrdr@FdOI@!{0PP0w38c8A28Aus|M@nkp58VrFuS`GkjF=>S&M)3_fU1PrW{%td z$yJ}r2$m6qbqH*63K&$q6tF&AmX%6Powb?)McLDwR9;tC*CUwh#?63@npoTxMX0yx ztM)jrt9aE7SjOb!4f1d2#7viGyMQ5?MRE4}8UN(@f3Wh!C^0D|?{dQ0$!hRT>+$EQ z5_}ev83bAK=uhS}W{Z-t+76baci?5x&CW-vCvGI5L_!*EYW$D*-PYwG_sxeRjOe~e zE1b^<-n2W6j)K{Z3lnMM6_x=RFjTc~kJSIyX!`6uG=y1@UpIgE&K>#r9%+RhgKoG~ z4M7jwzPpnRA?lNw6j#?gBtDI_B{P}59PJ#OoE=)!QF3Pev@uGTCtC$SflG?xdN#u6 zQ25B~q`at`COaIzHwS}sUEvcrEhcOlZmz49ZcV-!U;cn}Xf4 zijk)9zC^7@Z{IFi5Pr!uD%dTyuVgtn*Mm73P za1y~RHoX1y?Gdp~OgANpk>C1yJvRc>o33;JRTc5<9ui8K*WN68IF#vHW5u^K-+%Kv zt~wPhGzSj}3XL^8OWb<3=c+UV5zJ8mtTSTLqM`=gRKjty6k^i$arEq1@9Pss-}k5_ zB-Y!oFd0$=1eCQ|T$Vrzr43T={JxG3Y&fFs>k*A(J2~a9rwVym@$)(jR+O;QM9b(9 zgN1kxg%|bP?A}o}y)RWGXohpWqp+(u7->3PWz{3z3Ksp^adk=yT&ScBA&bRCSkHh8 zTXtQ${EfvULiQITJUltv^z>C_KO&hwl+NCc1iwt;p0t@EW*GV{mc99!n%ZTuV$e{d z!wmDcUL^sUND3eDB=CVyaAIU6&}CZpi;nM3)AZPjZyuro+c9OQRN9=>1MgM_BH|`) ztCr7;k8%}+G_<)zJ$v0ft8+RG0t17Q=%%#oM(cS`Z_4)mBrK(Q#svop z^iEDnfow4E@NmU?TeGdPwUkiEgVqR44la0;>7mp$p@ZA`R-)DgYg4Xdt)-_22rbM?T?~t$u=+x83kXb zuPI4M%*xav?*|4vSs`Uiov~oB{r7L=!-IpeTBnUc82ymb@V~)<)F}vXS%nF0oZWUf zZ2FsS?zSxN`NlZhjk;oGbzli(xO@EQw*10=PdAu|=Pe5WK$dNgKkW?s&b*s_s-L25 zKG%-=oCmVtMC3GE=dR`rCeWL2@CHjx3hbBKupy_~6#RkMekII|EE1Cnx_w^#6LbW| zNMoi{B?F(kOlv%_qpvj+JQI!u<|f4+8w`P*u{nZkj4V&j6v9MyPlEFv0lZ1tzL7 zy9MW`b^^c)55aq2>*nV2o^;f<^WD4r{BVf5^rhz3fz?a)y#@@7_4S>p>WRy9o1WOX z9TZVaLd<#d!tCs#QgbEKjKY&!ea(;GpVHH7rt&#PqPo6BL$T>)`>$A;;m8V%g>lW- zkS`E1mJ7}8i3P82-&B|5prorh_k+?mo0sooFt50n0IUn@HdlM69+35l(nc$*sQj}1 zPp{^92i*6)BqxalTrf)Ew$nmYBAB4i7TSs(s?HRL*mB5=L-9f-7AJKS#Q`PRLpWGS zu3T?VJg>a>h*)6?GVOj8dKZKexNMKdT^fF|pJRUQ-!oz3Li0zSe?(dQ5!cNT1ZlAk z0vj709i7SM9a%aJa%ZX>HI_2O@0I|(hq^SFT~HZTH`ddG``mI+A`D7@QTgzX&9B)l zgc}XeMKK@1Es2oI;3ZWQhjGg7P)^@8G)+wEsO&c5%2&yJ9*yCV!tPc%=kk$jacs9|y@?8tb$l=#%dJ@Tmkpk1(Kb zA=p? z(H`Y~HV5az{paSjgvHwB+?S1djKH9Yn5h|uU^o_dNM`hK$dzuKWNyn+Vc z#fC^=clFwqzC~;x;K<1fTb_AE&VNG_6WWdgnW(D}O!z|>#?&#Lrq?+I>Ucr?NSR3B zLDvt3^uWi6h)`l;-ecF`3*9(@--s6tUakSq_KvWzv8^VH_?BXa_CJ8<%*4uS%j>d@ zQW(v~Q{BpssHgn=e$#cO&vjdqL7Ne~zDF_sV?qOL>j^~~d%tLFPgFt$9;bRpK;F;` zsba=HHrosNBB8DXEb-Dr{7xaFs)N?|^n}k1TfV;}!RRo>9-Z?o=y4>MjvyAbgNW$R z&`?H1TWun}r(0|wWC!>U`>PMno_5Q;z*g8E?tDxPW3VrP{em6F!Z+1C+#sR)~7{*4bu!Ua}e#&JE66ijX04R&(3>?EhyiOZxaA^U$xp z@2MZ3@y<@IuV>}s{>r1pXJ0PI3!p%Wf)oz(_@pFVaKzHj__*{Y z?tglE??9^eKYrYv8A&dp5M}SZcScIKWRL8Tz4uB&LiScR3E9~qdz0+F_vZIJpWpZU z?XP>?n{&?lyvFnSd@PYr7{QHf4&_Gl!TH9tgcm{xCGWom&#jZ~>4c~@5=$H$z~3XE zq&`BEh;E(d1v2M52q)7^j)_5MdR6$_qVWAv$;$PI_fs~WYXkEw1dmh%ukH@%*0~Js z?d_HQe7CIN;B|E`G2GkGkUEb7U-Rd_ITuvSR7mpD5^B&^zMB)n;j5+-M8!DzD&m`_ zeDicd`u1}<(-FdX(jG#~p*#Rx{OR%*?pa?l^ab^p=PIaO(Vh-MLbFH4A|YBS-~R{Afo+Ue@3(87^w!ZXuLJkv6tLcggi2jjF9k1$>06_S>54EZ{{6J!M3^c!=M8|i`l0$w5JsG z4Gs4ff{m8cSK)-!fU`**YRF!RgTL#;Pitvu>*>WD7Stj?oT4gd zaSc_uBjc95UM`sichHSgA=e&ga9h`rHqZ1khAq~>%TgJ}zj9Mk#7YpXhm6F46hMzS zJ0VPxo(RUaF6Y3jxAk#*4Dh;EiBeK$M?b8vJ1pLoWf3P za)t^Dg$m`8!i8ODQV>}@`_M>FukRa#F&Ch)>N9eV!?$l{&HJp((^XpF`PBT-@X9F( z>l^Xy;jh(wc}k7$&dz0h;y06Ng`3RVh-w%fqZVX5mPi^DFzr5vB7hCU+?2@YQMxzu3(6l><*fjo9aPCD?au`#*m{rg4--#z=}T^b_! zIS`p!gLkUR;PZ#o7a#KTvCY6Ai1xt)MMT6C1i*7+1S03Eh%*vl=PDhb1HDLq!d412 zHZU~z{PX9JwSR!sGrD(~FVp`efk6m+NlA$%Kn)C+F=RQPD`$|MgtVUtx41t4=(;k7wN}+22 z1>n-%$Fc)}R(!^NwhFn5FM-}bXEWQ#)s!V^_C$mz5ueep0SPD&TE4#en^0;dTpRT? zBSxTMa2fI3oD_e#M@gxQtV(dL%Xzr!N`-|BHVu-cpad8JR>#ew+=fNL+EVzIcz|@@BeJ<>65^_Y{taVxAZ1n zE_n$zxwn7~!pA}FV`nCVE>(m=_H}P6o!f%O{p!pi1kulESU0)M>clf^=Wsy_9T<$8 z;3Z+%BOpXDpwsm4DFO9Nv5za9g;PM1#3? zPI&z5OS@h$14#tVoL(j)J)+9wddmw5Kd-)4#Sh!>FXX;A+f*zly1Bj;bQ#fV@W?%n zd{C_j_e+VU{w$TKJyjKq*k9AY_ECuDqnvzUz0S`fy_lSmk}{)*9G#wQ2KO-!T-)6F zYK&+|D&n*ktdC`AGIPqyU;SA7$Zx|fVb?V#~`XQf)dott%%p>@)_@6;3?yulN+L8139a7jqqV`*h3)OwQtLFWALfl8 zvyC-VH#Q0`e*VOagU9w;T^?0}kl%WOFrcD>D^521t`C}sR(EcK-&DoZ7NA&H$Q%r~ zpY2I_f=#n1oI{QE*J|jnmSBY|^+56P5}E-ZZRTA-ahY<`mlHyTmBR0UVgZq6wbC>X z6%-WdH%$VzWT2c$~@sP#U>3+&u z!^(4fZ=q)uv4aq8ocG1iSi3>l9KxanE~Y-)U1zuv*^Sz;TE4w{?8HE9)4Q}pFp4 zZKfrA-RcEjxt*1$(AK_EmDB?FyBAFOcDcs`cH4)ZWgMLacTZ0p^My8fK^S3AJ%17lZb9m& zH{S0kQ`&yTJDrnp<*9%PwDZQsSpcXMH()mO&NoyH(IhXyRk_eH$x$N!({g4^BR7`ePJ%gT6icHvzJ+;|jkLcdL#Qrq8y`|Jv zh{ZPl_<&DCABc}!EZdH~`KoWNK2x&)gZ0iyM;GV3Ls4%D>0TaIkoSWS3y3|N3Szs?ih6OVeaZGsnxxWbMvC@U4pQ!>A!pvI9$x z7`6mPAgmv>FVFL+goM7{K!{Z!gQk%lkw=mk4Iv+B4&& zWPic+d!KlQ8Fs73+%IG_%+MFKj~_qIf=p$YM2&%(e7xY(Y4V*8y#|l9j6qT=R@RaQ zU<cuy(q&xe+okA!S;?i}Jc9>~1R-q_1*Dh6_aB)J3n7>kGJS*b#g z6+Sm4x_g#>1yTDvz`nS1jOBzu=%^@FUw|ZCmd$?|2T5ABiy9?w3~xY1)aFkJe;*%b z$}%zjB-r_AZGYn=ufhEZ%_qOHPoSeqN%7d+nkeULk|#M`U(69O?zoc_A5X%{vR(1l zU-hTG(^e4&#E#l1DmrrFe+@TeXLQrnu6grw^2hfM(}}Xopb}k5d9d!325KzgKf-RG zY-){GgZ_F%Ior9;bfFD9XJ@9)5~3pmz%B$4TkCz3(&2rwCGhf9sE+Dr7POGzvf1~* zAztSEJUHd)%ZC-q4$3rx!%ae*bsHmNW4r(yNABWOQIOEChxwS9|qnD7NK9}46vg;o;j{)Tzt6FaHd7T?SEo~PpY6a++?>`;bW{vGIwC0(XN^nxU4gE!F4x3Aflj@#t_q zoTL+FhGJLPA<~4>{-9s`3*%D`q1q@@#G#-hnt7k;FW0g~=g0_Jg=s`nZ@FmY0K6y*@(mAwmwg5{SoL6Ja-eQnJ+SWN z1W;8kNXPIl)q>y+Zt!=P_24SbK579a$@w7S_LdOCb)X`dP~6 zgaKt#F=3s1=f?{`yZ8sn^v(AXIxeq^w94OTf^xC2pn_=KiF|5yw*LUyP#)N2R^zx| z;0`6rQl@8TX09h@jm1E>;VI5H#5vgtzj~QMDNjX+xMSjLYHBKB;838Flj?m*vklXQ zoBIJ}25KV@lflX)0gQBi?z|)?zzPtD%}NeA(V%SBEh=HXPZL`SN5tI-N#qP^6uEYz z7$^e7L5m1S#^>IW`!F@*1uFRr5^V4|9)V%F353bit4N{Z!n>-3 zB%=APSzkhzs(whH+p93EAq83Q9wKw2#L{#IBs+D6fz|4e4b={Li4&BOFGJvH`6B52 zo*J-YsClb|nV1xJ6nH_`^jzF8eH%hXaP{lug1o~|L9^p*ZC&&m7>_Jh!%U(knc!ys z^FC92BGi0e0l>oy>toyNkS|^I=NhtLKlUae6qgH*rHu<(7U_A!DXm@{l6Pi$_ z0eovq5MfS+h%|&FU6b7^9@q4j-_1o$je8|bdWyE_;|SFl(Ge4%${#=4ppg*w@bKVg zCc%a80RSE(XylNP&@+^gv@|>Kz2kpF4Jbbd{s=WRIMLvjNII*B0*;p1ksi70>3?5C zKOKXNbfDbiI|*c1mO-c-Qw)*{QZ&+Rl&E&(Wh0NPv+w}d-A{MX*={bZm@S5K!e!wkXL+u4J&WUYr6blF07LsPt4mAoU=WLc z`LU}xFm)ex3l9O_OxjEm8#?~h)>a0H@gGFX(XN5)!}Mi(m2ZXwiCMqP;6qLmEN_su zyDNPZS1+l7oDVYCiI7{YsQ>~^?CBeTGvXQ{%U6J&J}0C66+MJ(6=Av6KdCMG$VP+}q!KR84C6$xPJ*b;>~Lw6yzid|As2acV|KYh zr?OiYc7-yRz&YxJa35-1L=K7qwjXrz5BRLco@WD$pb3Uf4(`JLZrfS{sj!aVrgJ}B zq1=SBim~Pj!0F5&pp26h>+i;*y6#U+PD(&cI1ViR0T`LN!N}C8oYbH~`}mHmvy_4Y z4rcfeyK4zk?%V!{YIeJk?)K^HFl-75?PTmhG#?P8cjK!;eRQJtHUp5-a%ZdPmS-zK z14&``xzh4Dbil{j|Jxpjv z!02flCX*$JQT;2{KNTpUo(>MRtA=u$Oe!%sujm?()=U=WKh)%rAu!?|N=mZ48~BP2 z!sqT+CP;2gbRp!R*8R|o?9&nl zk6P&5TyY*8=|tqU4LR!-V5+YT*Gt9%EHoVSE9fCZg3uB{V#`yN@aKZk{5!U>5&jAw zJm^(ohW%-}8o)zfhockAlZ{l=i!>8P946#S|9vf18kEi+^n-$zJ@L7Zg@yYyG)z|W zPu!p$m6eg1c++&_3Lc_(w-=jiDosA#^oEA>?YB%{(Lp*p0+6fR^~Ld61MrUXvwT+L zQK*y>!jU*dflQ0wJX68YQWgdnf8drJ@4oQCy}dnlMKV9n8XXfweeI?(CX{2pHZuM- zGcW+92>b!l9}{BHv0tE2<&-l>O-)RDN*(sNzRnp$+&VB`%!ktSArPWynV9NE+hsG& zjWvqjeFf4t5vzXV8ye$bRAi)RR-G!f&Vd1}*^uEo*7^E~qZBk3Ge^rkZ3jS<>WK~h zH&tJKVw(}S+m)nG>xKO%byLB?<)PekgV6WfI|SM`m0=ST*C(@FVWQW@^F!trUw-{U zDty~d#0Z|x8cf;OV;6M)DX~u_tU9`{C43c=n~nS?<|K&M0BE{5^oER(h5Y7k;KHNB zKy&7&&q-fC6!S?jG&6g`Bq$i-?-%boe|i0%e^q&TD6Y@)V}U8P&#uv3^Xa|-cu3gV zDn`PceKb*ikIsfvhzfcW&{Iwo>u$!iFOG)KckN-{>xk|AK&CWZKPgs<_q6e^H{!zN z^SR>pHa0e2WV~86O%3= zXx%!1>nRxFwba%2apK|Q+xYNu6}iw8GkRQ}5GKR*U@9_j5Nuo)xds~D2hbL1 z!oWNWqxp>=kY18Mzrn+!$ouxK?Braa6^KgtiABJYGO$xz{DU zNH@{NX`a@)?uH}_yA$=o02Q1ORMTT)d))VFVx|KgZ$GtxmIcxd%Hed4-P+y;Hd`eR z6tWutL={TE9z}U83UUg|%M<0zv$M|o_OVLvuO73FazbKFER%O+bH6$Jl>7bt8&7Un zPUyBZvH$7Ob-bpl#KI{u()n?v@8D2_Ctph4B@QSD=C&TyR@GmGLK0V?nVsFs8dtWG zqTu~_`O80vTt9#WY(*1?GE`K=ys|$0mQkncuf~X3!m~8_<&ip_Lv)3^U0k$|tfjgW zNqC1*r+p~`QdSdX)JM_LHZ@Isil;j>_DmYgT&}!*F=$3UsK z#X!P%ELzytYRnUJEb;;3J>+yB!-DJO{L+s1TF;}Vkd(m}q9#6rUdE&q{$b^&lwx&h zLoi|p!JPrOT9B?^mog^8@aPXn`6gk~g~znV4gdGSFaPUfaIr4po{VglL@42pYMnO~ zt`F!^op=78Z^WC&C6t2w*4OD`9nFoeFD?Ec+{GBIW_(Knuq%Ad*c-1PuqTX(6cx2P zDLx@#KZ-&iHqKzU=+Ve#;W0NDS9(~(b`t0J@hPM(#4L0G8q z<;{D<3D)s}%ye#ZGrh3L^KRp2jN);vvty3W#ZjXB#Zir=>EsvU_q-ne>T7CsYn}4E z5I;X!3uiQ)iUKxP88~D*k4E`@eh%llQsJ|xohd{^VHrM_ks;m#n_Ue+pv2>*U%Rl% zU=VNW4LKW}IrT4~$!ctTpw#$Crg1S@SeV1^AH_zQp%mWX;o&4SB5aqX6uw7Kks^YB zfi1-V1W#9%>egvoZE2&FI@kRUWQ~!_;o!g|?LN{yJ1gRQLWDiBwstK8t#Ou^!yP`` zBTfV?9~KtI4AkQGgQB}kOja~+^yy=@hw1x;f$ZA~&KO5ifVYozeIn!F7<9?ZoOVoBvqS$(lVCh(5dVdPuP1w2yb%cJ#sSvSA$BWeG%_s36s-a_x_??QXD zGxLDY<4A4>N`TK*8iD}ne>2w}48i+{fuQqh_vOYhC2YdX_9#sx=AAw(FD#pP>7p;x z#G3phwIx^Pn!mh&+3;C`+$<<`*8um(fubxPVRO`q*#&c$lGU}fZ;lWuy#TyF`UYB? zi=+J4sF?U8#|H=g+n=4CQ)K{7#$utPt6YHz)aZtRTqiQDZiWH_@C8iFP$nfTaTu#} zW&4{YgWEe^eE9o9e-WLT1SK%AI;k8gO~f1L)8~Vh)_gF`vez6+B{Z8E!O}OT1Ev-h z{>MjetiaW?BjWv(PRT~bJrZ1h5VB=K+E*-e@hYFwZqykPl5J-jdxc?ceAyjW7{+u| zWrNGn^XJb}3*H$EtT+Uy_dZ=;JdMUGNODk?iK#0GL5%$0s9216rpH%}S_|@`D(0RT z|4HTxwSAim*+MNYO=RNK=;(Dc~_$i@Z8(k#z4lG)`3*aKOtBG z738IoPDhQB?nKJ3TmCh~i~*h5@Rw5Fd0PGF7HGC*Z5*30fv66g4TcN-AI5Ozl?gd- zI8ncOYiuy5p&Bkti-$L(SJYJ(XBbfwxYn%GMND(oZh83qXDxS;mD z_7zD8-h<~~IE?e;L8;!GDfO&C@Phv%g+Ktm!vb2M-R%3C_h;e&v_dDiRc0CYEQGnH z!rSxPd7bO;=RceO#m{YT%dGBiw0-YzJAcQg3ygeg$EHv(&L-z{ZZwHGSUU*6=@OsY z8{flP6oRNxZv0RtLGOz@TiKP#C{(FQ-eW406H(}q=pY9(b2zo7cnq^|!>1hZmzRFW z{s6aveLx;yxK2Zel>^-wBO#VF6;>9AgbUVNz||fLFMz%bB8hGn+IzqmlgL5QiSa$$ zErU3?5of16)O}xMq{1*;|C|4fAjK~h;F+G0jq!uNGFS8D;F}_fr7$HAf7JG_=klJy-r%VEo~*&dK$$R0&i+fN`k0Sc4 zb!gTd-Gm$4rlVJ>Um_t>KU}S~xBuez~DCyU5`bbY~a|G87 zGnjWNJI=Sr*nomh;SBS z1^{<D?L6(%ey|^LtN7?MycmyORjS+Xd~Ot*oEC=Ij3Z-`&dj zt-p`N?EVQ?OiZ+%14qV|N5G^jnmP#k-c6Rx#NJ^W8pB_a;otdBZTA;s%r?h8-!gsK zqsdkN!2wG`3#hbzbDmYzQCyZhI~l^po{T5p!WzxPe+2A$N4O&v9^Lr!&H|@ek`mZf z+mrXyUr^1x0#LL}!1Ls)8g7QMo^rmMO;5l}l%WdR2PL0!>`UO=`vWP}9Jt#sa4>}F zxD-eQs2)EqoDW^R_q&d8dH^^`_sMEHZ~mL@Yhnjd6#`7VBPm(6d~+c3lb6^!Eq<9G zMk?Lf&U-Iv0MCNk`zQb%*J5QQFK4y?9w`hWjeDl!o0`(GlY5CM_z86~g9L2%Z-MMj zO8^yshQ2=A`-r-Jx#wQ(3B#^gcf5fpj09SPK`6kpz(165w!u@=d4GW}o|A|mHN|7z ztT)MG!uqB8UHBvewa#fIg_@ow44nT!7BrB=v$K+xrZ@TB?FlXIgl#*{X=%Y5Mc~yv z)qefjyrXTaR1JL>G{V_1Xv{GMR$+ny-B5?D|Ic+JXK-t|3&05&smf+5Q=v&vfs7E@ zj~IMqmS$_6>#E}B@MzL58+W6!&*5w&#L-z!Ot*oK;H`nr`O}F{>_8T$$Oq?GL5Pg& z)-;KxprGJ}iua3s4Mp={c4vEtb9^!4e)P`z=vRw8$NocbPsTiC^D;^L%D zw?X1mp8;ixhw?$&EY=<@Q*$%@ks~2Zw(b0kBlvJjTQU`gQ^IFRD$_h06OUYaZL~17 z3it^t(3utjmfZo%T|FbqH9+j5V1Bu>@8Akdt9Q#mpN0t??@epUq)$;K5hO;x-oA_JM@+SBU`23<9Les4v=A0hBD~5TAKv< zSh>=J0iy6*0<%VK`ZcMo3`F;364NC%iEUK(kvh6dqwn z=eE3m&fI&Oqm!)_zx@zkYLDlzmhP;|&&#M=W~va-H4X0YBa?Z``3PHrykK ze$|vMW*~H=JGzT5G47+5UOx9qEw|Ara|h;s4NPq>G>z`ST@P+t+>@0|Gz1LZXeh{)Fb+N}E3*%d z`r_=WF9BgiEp~s`k_%fDFcYsWhaOkk5tMiR{=E!y>>`C2XD6Vw4%Im7Dt(F-Tk7(- zh3ksk2FA|ZNuq-E=7mZoCQd#T(l4|;AN%_~Q%V!ou5-0}N(oE=7FO2$9-!NT#aaxs zeoWDE1CuFiwJy$W5Qvj7Qd5B{127!C{DgzUsWt$@G+$h@{_L;ppM3%qnS!v0$n)zf zl-EZbXP1|WAiqF|r`)R|{*ghkF`!_sZni$E>H!?T9`40_pdA@U#_?`aXPRNlAwDCI4pKSUg6 zgA02rKsJzmd57L@)`g@4X>~c9^)Uu z(P0?RqGKsX6O#$1pTxe`7l%u@(!vSR(Z9f>u4}f6W#kH;7tiTVyMt-(bm@I67N>Vq z|0X9BiSAW2QRFS6ng5nBvaomo&WP{Y0f>z3HnE1NY`vOy!N}?T|G{*j=zV{}to+*2 zQqTi|cRxQelFXIzd!1!KTBwgUsFO6{z6Mx+odEO88=#~UTY!wiBbo2=_ZsbNHUk4KXh zPHpZ;*;W;LV(z$tK;Tuh!2Qk-C`K00PDw~e9DvWMc6wk+Q`)erI8pDO9RsQyMt=Su zTI#!gRLpDJ+osaFDj8v6U0E&#MX#h}5btcgw5elYy!7<9#mzZDq+!{zkt4G(xzQhV zH7F6qTKP!wSuxwqTD#z+neu!BY$NJDyEUp2**5J)kW#3H`F|b1`@zsTx(gaHj=*L@-cvD{&4AcGEOXEtx?{nd;^N4`u{?u(H5)v@ttDZ)db>G(rw>M? zmeW0U%S$7;d|+|?_)&VK`}gr3mma`K)fv9a&dg}8L0pCM*h6u+Z(O$~Y^#mh3rY(f z27=O%94tV8fZ>R??JO&Z*jaQ|@QKupYCvz<4ZQ^2n(SPCasO5~I;)Nk?`0ai~7uY$_wkhwYW ziobt_cYv0@#K`CDoTxCeW+h_EGM!l|~9s+O#$sm1n@~1EnJ4#}B|KuY!o7 zPibS({@w-JoiARdGTQUMdU}RouxunL)%qTp=SJ)2&p#OxlaqIo`xjSwA4DD=;<|yW zO5Ejlam{h<5oA=1HH4hT2ly9#yV^~p_P;;1dqDr6i3t5>7QJyu?rsO_k9@`3x-Ys- zKH2oFJ3h&?k&!dIkdE|8U7Mkav(h0u3JMq^3K5TbDZv9!B7K7_bj>v*%P(-R7<@zsN6zsLEs$Q`1rKtc}doYw%?S#+MR;V+5C* zyJy2Nj6z>m_q86hg{ub3*;JpD?+P{gvU0vl=mpl+`{AKR?yilVDw}2!;66+obp3B7 z0E>p3hDISzx88hEk`gr2DKrP9_*iHt-80_k*FcFk12eQYS6skrFQ}}%&%n<9^P9*S z12^}?6)bCLq3y=IEA&9gS>$?iB_nHL(c^y#7MZ0`Ss%T&Y6GfMb28uV1Or3YXKdyZ zPi-xA^~$-qW~~tEAyHQ@1h2Vg-dP%bI`{G0JQ3FKG0POQPt$!64u4S2moXYRt z3miH=SUiD7wID|3t;)~?TPdl)fquJ+xYSfUUY2cK{dhkIheUa(0D}kAnZ<(5NAd~9iZbRM(u@kj*1R`QVzH<1P8Vtt z{Dofo$HmFE6gj5}A&~YAry$={i?>dr&8))E`RI7F+8HiT7$CM^Y>t0;{j)!Rusk~L zrZN*?yfe7O2w|(bgHf`RbE=Kk+^=R8cVZma$Uoo!C)cZW3U&Z*h5~?RJ7#NqV0hY9 z2iZ+Zy1J?SAk#}y$VDmsopg2O1)hM&kXHRQrgKqonlr`8*|{7V-`MGIq{0)41KH19 zw<(2O5}efj$thi{i5a%&*Aj(mApk2^`_Zm0q|y9Xk$uEll}m$o5JK4h3SVn$L-h6Z zSd)NQSOY_q*VNS0BNCebZ^h3QJvTFANjC(bYWy zj(CTn(lvASwvgAEvJo_lU3c%sQ1VhQEp`&$d}fG6)Cp)ZGP6sy6sety@|W-&e;KeZ zTwPshI1fUfwV%MYUJ1m$`D)Rfif>@##)+7hECc1YP!t}jzuB%&t>!jIpu#VD=QOaWrWkf z5dS<=>l_-nR0GU@)sCoJ#jmcrdcgmwTY&Dt!JJ#+HK^2j`nyax+o7f_goB$D-guU% z?~6@k(b|tY>40QqsO0+ros*7wUZ%LHQP}4yXnAe`yZYTS4i{Xx@-J_v@(5DEdjuS4 z<&z*1Fl73vxZ#1dtPnRON;W`o zt;rp6^FzVT5oFrRq5Z3h1}1L;Sq6gFE*CqlWnjHW|I1VI3HwM3T3nQxxBa`WuR%V< zovb_kEkC>y(gOxz$_QBplPM7O%iF>|LQg4l{hmA z>IZV3_n>?+&;Id)ji<>ZuX?KK+czxuLi>CJ6Ol*9zJS!VsfuA&P=a$-<ckKl&rK zis;3;EAWW4LGm8jUz*?q4nga-gcF-!vlT4p;!-sQWQqF+ZeHamjyO6#R4H7*0?E(L zer&tkZMp)YCwfHtsLOP9wt0AacHSWQBz;^~Bkp+(5m`;o3Wy--Kpjx1sd9VYJ#X~9 zth~G#SPCs(*B`FHuD9;`nAYbF){`nC5EuiREILo{`7+bf6P;A( zK8oRaf%K;)ny%kZ;|Rlj88^(2)qN?BITdr~HJZTzwNaW{fbeI{(CD{p(V=>#Vx=Fh zH69A8b3AP7L#1#>`H@-2H!>u5T>!0nRL&$DQI6eQ)f|B* zt6KNOIPt%P*V#a}{rwuEug|HU}|prj$VbEnU+e9m+SIHd`mP*$-9oK^~$O;@2O zuP)yoNfmZ4AUE`#^U@qmkm>d|B>Qk4dwvdm!f&94F98TCNp^(|UsxcgfwYdD_sU*>ZkSxKfdZ+wDy1l0^i^(Go>pZR`yvq2+{iHQj3rRo^dg_d^V6%viM8^`G+d zEAMuaTNW1kUIW!8De7VSco$PB*lyy44hMmy=QxsakvLr`wRHXG*x1Lwe4vLq=eenA zoYun{=m}{l@ShF9IH31*cXs?SS#?Uv-w*)7Hfn$VBrJtkPDWxJFh}d2c(z2Tshs8@ zC64(``o^#LkZLO%@$uZT80p0%=pq9PE(!~-HOPcBwr>0w*TlYMafn~kaUNm1JJV!P zy2-{D=f1}^pT3mzp!E!-@vQyM`dqWUeY1N(SEl1p(7srrF#|D0aEQo8baittoRuL)o(G>aQ?{ zGRdFlP^)@zR(B@Vym7(Mf7@U+(eGJx@s zX_D(B_%-ifR9uT#({__YT3D-OFvApa-r!EbZ8Y3x3eJke!N>n`ez}{R+n@e)gnGhp zDd{Dg%7{D*h(bsSm&PzG*RpR5yE_FR*z3z>lETp`RI(0UUiEUuogb;i-1Z1#W-s>_ zzpBG&w=VW6>{bRh@BTCL_p-yC@aM7UKj0r>cUX7s%yprfv!GOZ(8qDzv% zh#|14TX$0Z=hG@AKd1s48P=rt4iA%=L}vkj(?_JF2E4926noH%6yq!a)G7g7gh=ow zYVGQ3*r+(a6$jF1I2Tt13=ab7ocrI>dfS3F{L%l>88^g0o&IM^ zl?w-cJnq2e=*yoi;EOP4X(fQ?i({vzu0DRcKAdcSYMb)cwFYFE@7ueW_`nJ@2!f-*Be3K%U7+9Hw_EDEYXqR05$LxT9M9X0GKtY7f>WA-<@*HjJ8v0` zHFSC`*2ao)cc7^Ca!&(c4-Lf&)X1g8C!MqH5t{Fz0cIKZ?EFY6MGlCfE)b@``lLi& zPHql9+Z22@%LqYXk_cp|$Z|#jpL`z=iD%cBO9hYOD8lwYG&c#8$km|G(B{1Kb|Y-C z$pAi_VyP{ip?stmlAhk?9mqMdG&%1=+#BFrNyDQkDs6ID3RJ(v-CZkAaH^Qw7~QnF zK;HcqX$*#>y~?sk(vc+g2TS>ufUfreM^F&a>1FWThA_?{@cwGMM-9En)l0wbh%(*5 z3P3_Zj$&Y7ka1d~4wjTiOiU!Ad7SNYIXDLecJAeAr;`VW^0Fo*;S!u_3tx=HLK7~? z{l!y|8~US?;afo_*YCrF*KdEi?mpCk$B2bZ2^IE=-E@@*A2aiap1wXo)m1wbsU(FOwlY}-1+qav zH}}QS2lj;pWRWw_mO`d)*Zc_e!;1R)-Bl5QRMIo`GXH-#7)ZXmvav6QasE6BIDz$ zgmPZ^fazhG(wBikNYAEnKHHlw1;@(jo^HmSBE5zck<9R5z~-)Ie>x0zCM8{9*3_Ky zk+8hJ;uREBFb6#|c~uqf-<C|d>$7Y z>#D1u@W}@8Vt_?bKyA&*`Nn=I$LAPW2|g_J^o_xG2Z3>MaWTqQu{iuN5SE|B`UQUg z4ePxC6QNt_lpyK<_5gNF2gri_@% literal 0 HcmV?d00001 diff --git a/theme/shiny/images/sn-tiny.png b/theme/shiny/images/sn-tiny.png new file mode 100644 index 0000000000000000000000000000000000000000..e1db3a1605bb0115a4e0f24cbc720ed0b767e5df GIT binary patch literal 4175 zcmV-V5U}rwP)Px#24YJ`L;#ckumCT!O8Mph000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf0 z1uqGBtr8ai01wYeL_t(o!_8TDbX8Tp{`NlQw%qhWLJA=yND(O^pum8F;~PZ~gt5&q zD0UbNgG&jA^PK~Yqi*cg;1sDMZnG(no7g_cGN3F*o0_td@LAKdsZ5wN`Hd+)c_ zS?8>E_SySazu&j_0e&nZ01yE9{Mc~r@u--;YwGP>vMxIH;>51)FZ%-^L;n!{`kui9 zIDiNMz*}Ej%a?5F#{u+=5=F=BNuBv6lUp1j{YO^%rvT(jUZh_Cd!hYVcxHZg%hPju z8ri)aNk=NPhWpMHsQ{|5`nw?<0ABeZhXY9cdRQ(80CDHqz%5I@?8gnAVO#fJ=U+Qo zCIE=-Xq@HN*yuHvF&ebp=#k6!3>ZFVrT4yV6&yh4A4a^ltq)m$_;>u~amg15!J~v? z?K_+La{yTbm+j*q^nrHw0RY{wxSrJ2xDgdk-{u@kIm6wiVFEz^ISU_wz*z=>XFp2M z3`Fh|b0gcG z&{0UpLjZuu+sb%c@4Qn3m*s2iABX_3>(o77k5U(*X$CZfVA`FB?Z+w_&~oz7pfnTi z&|r?mn+86$@yG}c-~&Q2b=lSdeD2C?c+QNa_vF2>MFq;=oN@|Yd9Qa+mUTu2Byt9wfQ`%dxZl(nUw6vy znb*x~8%M(Oq#uA302SH29lc6V`u8nN?tI=BWrga~Fuk^>_Z5RdDQp1juXpOq32;5a z6Q+YO#t;MmYO&1YzyVw-IzJ_&R~?#@oDloG&I#Il0Tj%c+CvTa%6!E~jH`V|*5!|x zx#h^jwynp;^Ua0h*~hy_7d|jOr*B3#y959?EZ+Ot-CtF3!D^oYpl|FAx2^BHq<{k$ z8lExXnv>0i3Kd)_!O%g4`M@J_riU~#0uzzR$f2@4t!op$8^K1Q# zIynd&BEjj!&&_K)v2Q6i^eOora|z| z2a^|Riuo872t*6%TD;<=&%f$>?K~l;H;+bm_Mt{EB#IW#iyXve7$#gTs{6$$XGg6{&w4dA!ZGrXrDx_h z>iQA@bpV7sd&GkKV`3ir*5_Tl+UZZ7E)*^&--8Ct4e| z2GQn=*WnS~m|1qm#9*}6OR#QrMp)T%l@)zT14_y4^wg{f9cP>gc072Z!c z03Z-vJi=A{NiVZ78NZ>(XOD`JK6_%~86hgp8lT;}zthYV z2Eb|nt>Gzlv7K8xJ(GQHTqBp8h6VHn;@6s?n9Vk4V&KVlzZ%*GAQ=E{b9-6h9gp<@ zP@evmmttTtcuws<+tE7m(Z;?+w?^C)n?!dJN+HV@Y+u{hR8!?shWtJ{At_z51_L_0 zo*24%XQN@w{yyfX8{}_9@r)S!`NU{LN zU;v=+rl*gKX=L;G`2Z?Z#qA2Js=wHcN!GX{LDTFHKp+651*>~&wg?FVrTU|{6=sc@ zoKd^!!z%XfmwBYA$(I)yBOlOp69qe(wr*Hn|JThqJ<8)O77Qyoww@BQ9e|c0%ai7J z&KOl5@V7owUwe(%eLy6uE?4Jf^`g%a5z;%G`&J;3Hh=W(15XFE@`-T?)-i^`Ay9&E zx3qqpW3l=K5EObnUK4oVF|d$l5>hOZuUXYp(?F_hwE{Q~zz2W_IcsXxG*}~K0I;_gh%)K+k8{uL zv&_v(%HvLJJgkxvb~zqamJ#H^1P^BdCOnipty~g(XlJ7q_@0u>jp&_4P#n z_5x`9q4Itq$n%cGv4)w`4+i}4;gkN4hyX-Vpi{@jK=2#On3c!Lrb*ZFp)W46#CGpD z!6Hjz87Dc6F|H{}wX3yhN738Quk}=%@kR|EVYm}@|a_g!?3*w`rri-Eo zD$6hp9h?DF5}^cwXbS|zk(&VuhdRY1oN=$=5x`K)E z;9OFIT8qo2)a>8gP_=bkweOlf(JZG|G~2Ygl81SUj9B)~6LAUgZ$vpGP<`TXpkVG_ zzcqaBLP7-}D9!5q=*wfH`j1R-x!iCa+4FJbikIdCDDOxreng-zr|7EPH;#;rPJT_c z(LO<=8M>jsG)*v52jd(L2E=u?Am`d_JT$#OT3fy6zWb*7-$UKi2S5iv-ClpJpGdF= z4HR!(dt7O*`w&1;sQy`f*;xfS*G~(r8wnsDz=crfF|X?BT#14z>A0`H5MR<})?;J%CaG{wt-(51Xt7 ztNSITq$KRJMCiT1O@L5{0$>^v)-A7U*!F2vox4p9a1I{;gHqV+PSNqZTjSFvOi4`^ zB@wD(!q82qih<_FK;^R8Rg;_Q^iu$M-`Q*aDJ7=euNn*zB}j0{AmFU#=y&;N-+yJ3 z?ry0df>_2)qbd}stLO9sGcv7%N5*Z5im{F)go08)k}1AeRpI{dwW_ZHa)2>j6v8xL z7?4VmL^BM74H+}3)8w&}Qo96v1_FK!s$!t7DsXV|-)o)(P?|CMrIgr#Hy6U+T3i19 zthJuAg{1)MLut|&>RU=U4Z4zu07!OkM^8znLl^@HWsoER-)yUES-Z66BgU{B;AcY< zcbt^yIy(p8yJP#^`PcM~SRb1t#j3%J`|-q7OYWeXqHa0(wcBNJTB!eI!F?r5o~s4m zd%9niaBEKD2#3>lw=4^3phQvvy4MrXN~)SXJ64@Me_&sO%X@ufq`BYYxx^3=06cEZ z5|e15qG*Cr0-X>@0&#PAlFT^=XB?eU?J=pD7HR*kmV5wi0LJCQw)FFUWXqa*a{u&< zsj&&xyF^)lC{j>?z}>1hY+uv-nX0gJQxlSenW<^tMKkek=Fy300DA)N);H>EPcN>& zaO7W&4JS6cS}Uq`RqJha#Mn#-Okr{9f^=6b6(aWdyk{ecsHk9u005;$em%XL?X1PY zCoslkMKPc%I^q&7IX8|;9G{eK4V*jeuhdj#gi#v;fDRvRY~vwfXb=yo&Fvrilbyo!3n`b<;AkQ-b zwJl9W8sk|5>=B7x(?ArZc@{#{6Kb#wK%gC`*#`^G7swWxJ@?&_>!T9MP;amf41mKa zCJq@Dw{Xa)xP^pLNP-0%9Hyy(a}LgN@eU3U4iJD4KvQ|3zFMsWP=A9X!X%vaWFbpW z_&kj+)7-3cey}6F1x%9wsPvnLtvVQZ%is*00g-~(4L~A*=J4Gs&+Zwce6sA+`kHcO zb6)?xS=}~H)6`*_Iv8VMoBokE13wJZ) z>h$sEbFLPpO}0_qCEJnIy{~;hdN<3!s8~6v8q5)!P zUm%Aa0=1)u5keL{)OM-OPUT>L*#X4e^LX+-oiZ&0zu)TqNB*9+)1y-2x{b?De%-0@ zL9ORKFf}vOE&fXt*)GDKjUt3?+9*smMx zO!T`=t)W6~_9`Zcmc&la_RM%C(G(`QTl|DGK$HbgyX0Tj)Vw;s)m=b=GIsGGu{9iW ze`{(=I;=rDY_6>1Vqyl|;*8p2m@KkJ*9%{5tXl!#RLHZfp$KyPKND$IO6tA;%E~z% zD~Nvz{iTY$(t+C5&c6OPg@eHVt;hX+rKTPi2x(v!xwLt;zcK&U(w;)?C%i0-M_)EA Z{u4_iVvLTgki`H1002ovPDHLkV1hr<*0lft literal 0 HcmV?d00001 diff --git a/theme/shiny/logo.png b/theme/shiny/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..b078601019959e5efa1803f29246447d1f1d89a5 GIT binary patch literal 13034 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igf2 z2Obdw5s?-E03ZNKL_t(|+Uk-H^XwpFbzUEO-h?*9Hb=UP|S zasivzd0{@EE1j}u%k1pT?Ck6;aDs5@tJ}%Z-qEAIczxxp!yheNUMd|aOpJeaJ?kp% z5xKwo#YENbcj=mDA{x;UXx7;ajgRrIw@m>dq|4eU$q(EvMZav+=Kz4lwsJhb^kS}1 zGK3Ja_h_{~A`@Nbhp)3z`@t|cu6gHwO8={1sFV_5LsZuVOSWmp#7RS4JDy%X7D8}5 z^+ms~O;02f<4}dTY{!PepxkcE(^kcY@lQMz~!r&#jN$xY*Us#oXbAxOm4da!i~!QpCuHmc0m@Cy) zwXa5BbMqK^qTeeglIYd1rZOoaL;G}_Qmm+gwzReipCjhzJ;E*W$t&`#XV?GP(B+*E zo!bW>z=$W-#8gJF2k_E~R^*r%k@7aOVrP>G8w~&eznFp11&i?RnuTzBqKHLJv^0fF zws{^bY>(ucHSHGP^f*`rB1Ye}KRsKXl8QXJtmyOfOwT#N_84xQ`E{q{QVKls?nngN zHRRCLJ0^6BqXGeFu4FX1yakU;(JOn(;QCB*jWt1>szIviMS(EPtqq{fa(3;BIklxD&Eo30l8bkKbOgSUN z&w9M`mHf69S!Rp7@-E()$Lr1)M+{UWK|}W`3}=A+;6DJ222cgSV}IX2QT+bR=7#Z% z-cR6;(ypXTx=&=SQ2?(dWNJe|YFyHS&aH&EL14r;12=anJ1BA&|f`9|a%wdeiQnKlM{%|87u87=AxF59w|d z?V5?R7uPHP+#Hfjz~31oZ*CY*KG<;O6@;2PaW@XFZrMUA8owcKk8-E3hjjq(Xw|YU z5X5cEcES)6SG~Cv0D;a=yb{Nyk(a*i=JK+kQ38O$i=w>y(bBdbJL>)fUFV2~HG~Y} zc&q(+RcMhg0Js$fr#pqMUNB0W5*pFu9OA~{s1yQC4KZ9&v;@7n7hz<<9L%5kB}{IB za|t6Dez{vV(qP01^w5>UUS65vM z!;C=)6GE8SUGY97X@{aR5K2Z2s&NXb3uIou5Kg}zL{V_ogAYJ&ZG!>KdB1l*dQyC3 z{M3P0v{iY`#`ZESUNISjSh@%#Af*HWfe^CF6_JEXfq@Ga0Ji0T5Q1o0D$Ga(0WQc% z@sXMRm-BRgigRrLiy#DGnjG8|kdngh%7ui4!@(+QdK#=v*YL&kvmp!vkQQwPA`$eT zl!t}q3=*eA))XJQi7?g8zFf6OL}DQn73H(trPTtwT?w>DT6-7{kLwk3PD6R?XD*)u zE}sMKbs=y8ESyusx;?&3;2#0^Jv*SMEV+`re(tDq|I#B@{y8UCK9=7{0>GXNr+#O_ zdbFW-8Gt_>>%&!Jhm*xa2mJWYIl0pO(Zmy}fB^vB{v&1pz)iMr`Vhbs_I1lqtS2%- zWlXH}?e@F(mJTdnZ}uyYJBJL53%!~I>c+8cTdQ0+V@0Q)zI;8W2TL|j@0;OU*{Vypgo$S_8UjN| zC=^(@WDg9JBNWgMQik*?U-Q6My`Rn|!AO9ZQN92EhE`NG z1@Oo727*fog%St}JU+7kbuA%)NC+WE8(~h)$RV?~?tHetG(03TJ$;AHBbLyR5|9!? zNJuFmxPX*^5Y{tpS~`tsn23Z81B|$v#3+2N{0gzAwyJjB?BQe-Tu2ml_u{L{R`{I? z2q9pEtOLb4n{J-0pK%B&j$Xiat{309e6b=B0zv=+iAZxgt~vK@P?97<2}NzgHZ0qG zJsheFx?w`sIAT!)n$9!Tys?3$l|QArVXQE@oGt+LO-liYKvh6LzdJEjeRRuoenv9Y zmE~u%J=7JANI4A)nfXPih0k}S&`}z1Ga3Dr%lQzj6;i= zWtztODNI692sGn>jSP7lJWEtJ6vONF!ZZXp7Z5_i?RG?O%h@k`K7M;cRVenGp56Sv z;}H|Jd!tZY6l#hJE`dmG5Sj*f?-$1DaVyJU+<>g-aa$(g$aat&3UE^djsoPrl z``3m@heL%!rBEFVQcB!>;bsWQZ5~1nBS8X?!bENJb}ZR&12_jbx0r4;s;}`X?A$4j zt8#ly@TnZP`v#RT5MkonlHHJ|dDxmR0Z79@@t^*JisxTI*w7K?9Jkg~5@XC*qHf+K zPYY9h`LiM#Y~u=Os%FY|Pzo?c?diFJ?6i>>-T&X9C?3?cZNr8=e}O~sLP!B=OB^92 z1eXX$G;dC=61(U%kK7muaFsE*2*sq0YvJ^GI+hj^h8={!TO*3l76>51If#@C{S2?& zP+NOajQ2b1Aq&slDm>0y!{bVGWTXtZbnn}3OAU*C>RB~L@4 zDd3z#*h56x_6$J6!RSOIo6@#S13}F|%rv1vV(Z<%f)oOf@<=|!7%Hl&5aApyuLF9N zZ^`j`%ZK&(9ku5&PzA|=)N>+DqbLzk}IVVtpZnNPPaAXWA4a0wvFO=RbKaPjE3I`!b6 zUm8v{X0S*=!r_+l06E@Ogek-$n!jL@SioUXP7+G-MPFWtBM*93l!6#dq6`A8rYdg@|&`=cs05FBZ>vy%? zu)8dM#aW}-%ne)kDZqjB_8&1rKn6|(A(gQFVq5^U6D;Ic0RA6d8jxfz`~(Bu95oRZxqi-;@$jQ~mk3_=%{90}k80FMHA*M8m$K*)Y~1Au|{ z^TGDBY5;F1+r9vNWZypx;7a?M*M4@;zMpE}-)7&Z+SDWf%(jg~G(9>E$&l z;kwLDI3~U#gbvT1I8@lrhQt?hk`VGgT{PBhKZ}$4kL~+A68KGFqTos@_fh*^Jwb%1 zU366MgzGp$O1nZxKLGz1z-s`m?&AGi0FMATJJGHK;4^zz5W4}1Fb2S50IpA+rFL%69BxJaPP8*_%!=I2f(a^ArXf`HZmXWf>-1K_=C;! zQqD-5DgZnnCE4`;ZX$__?&l7a&-#e`N0qIdX~%uG= zZsSYO&;8yJL(ddM{8dWw@B1VvE!+P>`=$d%QO}IV;XTrt>kb_F=Xs z?eNT}kd9l?V=0b2z4lP>Kz&Qg_%Ca&VEg2J`s{{r1OP7Euak!Iy+RT=4KCpVhme562oy?@ z>Qd3v8ic_G0OI^Uk#S0fOqrZbO;GIHnELb=r8h5Xi|j|p+=E~%Af#mg;#^S0gfl<$#5EW)h;a?YrYVxf_LC>)b7~K!!ccR^0*V-w2bx0N3 z4(($qqt)T4j@@+ugftEzCAgHR3C0l8ObZo+d@%m)a`lXqGEy!eD@wKy51(}K25s4UcJZULQmpA-UG(>wiyowTOjOa*nscp%WoaAd^gpwfA)foHh&Z`RNp}rh7NL7)GU~9rm?R)12Z`lj zK=xeZ_nd@Cv>97VU&o=)$8b1Rn5FZu@xAX!yd_fq72}9$EX(pl(eJ24M+cayH@#mauG3B}SGNhXzgkW@!RP1k!d?1BB zmpJ@#)q;`c8OcMUVbJ0wj?JdfEc>r*1Rk6B2jpcJSqLHu2w@f{S6lzHYbXDR~$G5YkOJ7)6>(`RMt}hZBEppQ~mqnquZ^2fz1a%9H79I-OZIKsi!7&#XgG#(`Ps6qyb0-VtUNQ^AUymTsiGo0P?8Fu!IDG%jrX?Jqj(xVVc5b&}30&xiyrx_=sm!jC38t(kKsLXaqs0QZVRdFE*Qr?n^HthJ3^unPE3<~q%A>&1WeA6 z;p=M!3_QhxA;}&@@gIx!}4}ij;4ynE5jVB#3Tu4o0X=6}DkYp1>fK zfWc#(lMygT3qg1P{lQkIwYoN3IaO~jYs10vgNN}fq>Sq)8J-@V?R!I!r)t04`0qHn z6X*9&A;AEZ9-mX!G!v%I!8r#&(Ac)eUWq%F?gB8Tq9L#iPL~2jVe!V6bx&tfUUx2e zxpXIYP!eq2*#ejns!HKacfivv1)ek~RE2<1g7(@Vl(2bgjUKsYb^ik8v?1i8g0(We z8|9&(rfIsx2RN7bc*{?$bzLcrfe?XUqz+!M530(bIw(|!0!GOTEhProu%%wPD#ibn z(HH|`6bhs8Uv?QLuiK2ttJY!a+KrgDZY|7U5R?!=04|08ZhCpC`DU*^^t2!Z01lRf z5e{kV!oe6q0S%#c4H6us)t^8J(?*KyG){!%pp@ao6*IvY1yiW?pAp=1ed)7wk0vMX z*lGBf<0{Gs7$N9><06c`?_O(EF$TgEIDI}`R$T#UZ}}Ed;*p%(#Vy=CeF$L;;@(AN zGlY=fLclOgM56{)7T=BS2i^c76hiRBKQ67E1J8am1*)oo0HB0`G6ErF=#Q@#I_Aj? zxi~lfEW{o9Lm?FY>}LRD7B{wkgi;70(EE;mhai?F%Yke1m_wd6gh+=|{_(Am4nwE! zsLTNZ%g2mS1z(pwiYJy0$L6x9P}8&l2kJk^yI(EDvmcLxkoIZ?iStqdDdaW^;Lu); zm_$wyHf6g6kGSi^dQY8~~Jn6y&r>834HBqAgO$pBR)pKKGT6=0@AJ zeJ&}bt*{C(>cE!$FM!yq1`-mKs5qP^p)V;TEn$T<8z-Xn~SO3iZe zU@r+n@YMzvFob}Ub2}e#gs767W7U8D8k|~QOKClQu^Mt}4A3XVh~`Xshv)YiATOKx zEJ<_bEuB<&8N9A^a4x`w?Hm)o76L9uDpEbY;c<0C++08yVWBq7w=*wHZmy|X6(Jl! zT}Om5d^vwU2&Ism15!W=0b!cZgF%#k@(BP5hf_s!Mc^UkW@m;8aa8srVpZ`Xnm-`( zs?h`fi$p^5gF!hn+K2VJ00VkVMc?d6$j_Q0eagV*Kx^ayr`ws<+;V7gTWjnULnB-Y z2~8IVV!ajm?)1S9%}HJiDjbI*VN`G1iZ>^XMYOdAoO5tp!>%`8!!siaK^TJ+5``D^ z#V?x={Vvt7oD${il&QU|*WO0Xo^&a`-1`pm`V>-K)4*GsqcBW@UVYr8p+=(~AC(QQ zQ8{&1y4+PdO$DK7Yck8$hzdo}N(n(K|zayV6D~6j%M0Ep<8W=N4!N{x+J2Ae^ zO%uuXZDH0>XF}Hu?YE1{*s7n8Wnv$v^Eet96hXJMJRfAPSle!Hmb*4Hi=uFU^~9~XVP;b2r*%K5v6^LLSg`%CyVfR#tdOs zZQjFQ9WqeXw??2k7~G2TU~Y=@|3(zWoKw8xWRUSSfUyAlcKeVrV8rMXsc?K-V&=C| zW=|Cbt{gg4IS`8W)l9S0r>MBDazBw{#}TsWo0FxC769qVb&UI8??Z>TjRDKuDY0Q0 z_I2C?XDlqwo%lD2UN|L5i203uy)9|Rx2ublr^?K;>a#bY`d{rTVf z6{t2c_MpRKDE`fllJa{X;aw9fCmXE&Xx`;-1=Z z;ZT>D-+cRix81J9_d^oOpAXBM=`iT_i(hs@Rz7ri`5lcJkGIqODTy*<7bJQtgv9;S z{v){(pBE0JujCI%u3sSOdn4&SlyqNnlnyvTQ~jxZ{fDD8zAKoT(4dV84Llim$o~H) zJKrkU{%6eLkX{FQ^aS}<99&7A)6>51dm@!dwReh-gF;#v3&kpASCWyn&{0q<#gf7#FO zPhf%~Ax)l*h_31pmv(czDC2ktNvwy7&Rg37U~|H|rcM??TU`Ck7E@VCnWn??OuiQ# zPP8eo!u74PDP$O|n2?F^E1NGRI?GN5@T5(ZfEDN}(O7jYte8{3OAw23c-HZ5ja0@#7!~&M{@FM`mopGxBnF#aV+D;4yLuRkRq~B=1RRPHMItlFyA{ zeB$%#rYMR!FU_Tn@HtrzAqg`$iA8j?s$tjejg+!CZzN>T{GF1vl~<5oNGTctyhO-9 zHKF{#L6YG1gOX@Lu)=N-Z+!esVK=Ax?!YYXK*AK%M|5kKjJ;Jx3P8a2e;`00sv#IL zwx~qTU3LBV{THu^C@rPC`MMj%${z^ie*s+fX$^Hq$=;rsXUuwI>nHhXo|!>YLSYPy z*h`Iv-4JYzMgpd^7PxgTpcx!d%|IX=UE@miov(+Yf;qi>-GV~#1A%-G@VE7oiQC~O z(?{nb1KqHx=>XZkH$CQX zAQT8kbp)asA~798U`g@qQ!bnG{vn0t5VZ=zg(c|#nv}W%eiXW_Nl)ACqA}95ugW*9 ziOIU5_n_RogoLUaNOMK`3`Veo3*j<_Jgj#-f9Y@(=J+6m1hXkbO3S*U5Q0zlH{tfB zJK=NMV~!9&$`C+$FsD1#W6o&4EbX69#GJO>nCsfkrprsFtE$6;x)S#VJ@`3IKCinx zz;}+VYS{#CYBmKE%lnF0SnB|Y(>}* zpoBo<0&5Po;JlYM;uoLnfzPQx+VyiQG%7)_VpPNww_mnx=09+d6M>kVOUkqWt*eS) zPg!mM!k!m?EF4XJ1JPPAunv+<@Q1dzhG~UG;|ipyf*=LLge7XE2}1-3Q`2|=01{qF zL_t&lqC-&>fY^JLBmgcUgaDV;o&#aWe=@m*t{DxU6f))3i+7ei@##5ArSEF7Vdnt0 z`o{B&vz}RZb-G)9JrFfW*yJFv2++x_D1PAyUFKLbGGsjJs zQnh#UI{Ni()BZWB;~z~RZ?2g@BvaU^@tJ({n%GRgFMUZ=R5}=STCCx4r3elO_>u(B zGSJ;K1qFE*pzdE$=2ln4Oi9B=XXg_k0hJN>9So^%6_il@ zKx_Den4mwKwQy41o^{PEwO6L7`)sZJ@{TD#*g;MN{=R)0yJEzb{MqHBZc6cGJmYW~ z330|dlZVMUqOB>oXu{*@mNo!F820`(dRWGH#EL^gJg>O#xPsR9YW!`*JUBfuI8-Nu zus8>|H~X2UfMGl7ODV6s=lb#Q-~U<(!;A;S>Td?p&oAv~j(+m1Ih5cXE-Zp|DHMY; zJuoFA6>ZT^O~LQqaPySSm#=JLhG|f)ND*jlkn87;5cppJ{}2M%-gpslWPyZ22HEsk z^I+zt>r>O+J}EkOUBz__N*G#N8&HsS6Q+&&nYFVM1f)~=z~jz|toW_cI;&t)$*Wkq z`$2e8QefKKVhuyU)HyWWjGtX#5JGa(^Zd;Rn|hGluAd<68BId_OPvDPsSuK{Dg-f8 zJ_XfzS2qVS-B~%ps42z3K_i9Sy#kNia*bI0>$^y=h9;yrs{kV%OCMtEkZWlYs`_K(HO*4z0T(cj* zuC2FCy=3NV+mw{%8eH5jPfR`V1u8bIAl*oe^maRBh7N((4ua^rBmlgf(}!gC_7iuW zpHfEU_(6GcUu7+7g1Vgk_x17z0NCSK)H_(Xq+(yH-=$vk(CRiO1hN2NA6S!ld?w*dsnDCltdS9>0Mx3&q|2e3w6%-RHaOceIZ5XQiB@sLFXnk`WFU%b=7{ zA_2qTh88oMz{sXp*jS;(_*a9j?y;-v=R3G(WE!26nI+!dRW0Z3+#&y^31mgtR2mKg z2lu!1P?@sPpO%tK?6r;f)RYj*exdTdxO~!cpoD>(1o!A55F8dYFMo6`$|}EvLv?qJ z41!jti}r(Lp|oCo#m&=}AJ!v2S#UjbG*z>TK!|5~&HKEn`kU>y_i@Jk^~ z=5nhoQlQGvIfNOXNeFu%jU{ekW+P&HyTwvuSDskkhCHmlgbE=Ty6)LeQ@BB zA_+~Z16qn7a$?`86!*;{Z;l$lJ{eV{%zEWTUR847wE=0=bhq-~M9TxH__zXr@&Ke} z*+o=^!QoWkPI1ERcEIUWpehtZ0%piSYk3Qim48nVk&)h}PF5uzfq~ zKlv19Wi^=33xf*?DPRf-Q&`tg!9yAsQ}a~E4h4XsK+G&Jm;W*Z0su?4O`w_~Xyv|8 zj;_n?ZjU3KG6IJ}K@|qd2oy#^8G~Vl&@25SoIC1%KngqZh^?fYK$Wc{yyCMM6&v?F zgAIEh0V9sXW_T&$r&CzlBn_QI5)AsybtR>b{r3=M@MlDx|M_nIa-V)9Qxv5*MNus4 zEaJo=VVWj-|MD&jzUc-?)3icmQ`(6oNg?bl*9<$KeIDfx{vMPum{P*z9EKFog@DEd zAo=8557n%DBQKv`Q+-hUOA!bFJpIWicFU|{{@}}lrwb`pIqf4r2mubCpFpi^5CLvV z%su;W$Vnd#E({P@VXhKwAj$fMwZh6liGoAT#dv?+%^=i(l*}fY_@3F0<4jCbz%clo z_gq)<@Z&EIQ?F|B^K~yYQzNV^x}@dlPG?VQM~PvCf>8pQk&X%Pz6Gb>531M%OmJj; z5PO;=g|&q=8VKOC3uc42v_gY~!8vpxpmPpQ$_9^={e7w<=9i|JT~jUor3mDSWy8qO zF&=WTgwvXeU=gKcwacZZfLJF40M|slzd*;3njEpOz$YI=G62Ky~9r zY~1?<8Uw|)l1mddOIt)?b(pjR;Yh?{#!kcF(_KzAnAt#i(PspsL?7`)@s4@9F4r3h zrC^lW1VUhHF^qcWEo6@xX>kZjj~h59k(<PNkrlRt+6UaYwx&QWycS-%9iq~x^fBBy0FcV^#DM4;Y@+#cyIcg*{uA2)Gh-|R`| zfF2W|GS%upfljAe$-|3x3Mf=tu{6NB6{Uy~Cnyw)uHwgThz@svj

-Fvnq^4hhOw zUoMcr1&ETRKywrH8{A(;1g|h8hbaV1!7as-04x+j)#sl93QL$R;RHB{1Z51h>o=gL zvtgi38fI2>O?LfA1jL?=HGI|hfXcy_#(R-7N%!AUw@+gyqoc&pto!kRD<yW#WX=uQc!aDuhF=DJA`RMa&GAu@ya9; zg)Le*=a5pMX2VAO{n`a!X&w8Wg^=huGz*N<8Z{dGFw^gpmk;druQiJ~7JRbqdNOn3 zAgtV8&V~%jmMcFgR#IH9^G$=_mzmaMOm;>dbgrQ(Sc$gwI>gK{3{!^?9j<+pQmBdx zDs#i@&VovO2uC9bhFTEQ!w|xN1i+XBib4RY!7#%xg=xiL6aulR`MZ0rFS+mG$A&ok zUvRnTol@hOg8svZ5IYn?A)+P}LZMI!r<1|S0Ht4lOn&+q_;T~WH4R9b#Xw3hrxU@d zYApG;>ruCDJE+pJb5C%A+~M7!hxK5rCE9mHLHE|0#t^Rhdbjw2K)QhUHY^}lOn4bz z?758^rcTZuvDgHF=a*m5EzsULz@d7Es!Z*zswq7brets-r4+(6M65j;4V6il`#IP4 zj6bVr|Fr%uY5?%k$LBIl=j7%~S07%pzyF0ny`_-n6M`ElBWF1r43rY7>-_iKbJTmn zC0y;fo$!`TQRX6!o-v)TQr$|QaAOok;zI#X1rE&@UXTv^?bn%^Jpj7)$~L>n8? zT3(7!T|EG19rmd6PP+A&Ylfogn?su#cQwq)9hMzDKRb=5zq{s)SqVO)z1kOldNuJ& z0X5Bwv&LkQ^70lmx9Fr-KOgoKH&Vmq3PK1lMlrB3U2xNsllx4NCE;Dp6om;mvfTVpH99 zcT`loyz0C$%JkvAIQh%_XOy}9Uw&WApI;b2uDm`M8@7e07Bt9pQ@5M{^GZRkuFKVw z;^(xUe&}tZba<@`dX1#BJ}WlfpFQr{NJx9hk)pDugKdbk#ZE|5We$d{eyMmSlamV+>xYrR3SVfn67aV@zBAMfWAyoS$=y{7~wXpO9ZPf1)ek)xFMp70~ZWQ z_pYrD8r1Jnc&!Y{>%Q9ezkW5hFMzWEi~#TitY{YB2c+2LOaM>|;H7^Qq8@%`1o`>R z+Yfi-`g11G=4goRKhVT|J<~?2CO$Nz%n7tcA-J$-t^_F_2V5#`=Y(9bXm{D?FAXbD z6;+CBx0ao5Kh;4t9!J0my$}EZ|G-hR+slfVd-{*~10`rZ6$Ek+)|p|j3mJ?P3%l}d z;VyK9RROH%MgM&|F)Zg@OJ3f-iMolT^Y)Y)i}U-wM+m*5Ev7+A37`$=4zPlx^#(B1{{0>uhjLQ8{5}9C!HTT1_9)yn6V}m*V__Y9R}Wwl>}XTutyhiL z3x|n9N##ccLmbu7;5?t|ehI2$z6k**Wos55ET8sH-vUP_++yOkZ6cxkVXz{&JZ85y z-5$~L0k#^QBVZj(0%XHFPj3XQKqs4EMWG7f$b(3`!HOx8*zYk|M_9&V5S5@KV$NZ> z5*;yrj`ce$;hVX~N&9Y68NWtHWT<2PYV1ZQ!hz#_lb?{*YZFZT-NB^1rlBL^Rq|5-SH4Dgdy2@UWMc4K92a0NyVc%;c1_Ns_)6K-e5zbZwF-_1mJeIsqT+yC6JJX+=yw&>no!>s0&z5azld zUwx4%GLvyr0pPa@_gieDiMQ92l>Sn54r5gZE7a7*2?V6ueFIphAm3+;aU_V6Z@t{| z6Pr*B8zEh>pohEQKF#QS?D5eG9MMI7noaGor02iw;``qxrJ4UdagaE~!}{q-BRcVS z#4*k9j6QC>)jmlhxIF3oyd-XVXVUvyl0=fQ(;w@Xct~;or1Fc8RoTSOd>lY`n{t^= ziKA?J9fzCIahUJ7nL1|!_@E0`?z9!-nMviepUmW<3oe(~P7_B)-0RYYW^*`){k_{( zcpDPZJd&iOSvzb6j2$sSN~Xte8itlzHhS{Suie9RU#@7oGmk~w>vSh zGT$WJN74CI`!rY)0=wICG0rC2x|q$}WOu+w0RJb6_1(}#U6VtVFM<^!aafXm6t)%J zICO_~`1^%6t6hrDM~jb1%6EdzLE8YlZsTLPEqdqL)5JKeKu6HfIMGX6M<}(g=bmB$ z*=%!>#P(If3J^Tm7D2zYIaACgRwVUV;vgPki>RJ)r8^lew`Uyn$Ixzf9iyS$?P*mq z8*Z}|rbJkE6m}i6weso&?fvpD%KCpv3S|8ERuY#Wu!1E=yGUCMEA(W%oDXcJGd=~s z0>H;Mr|1e70#*dqd0o^mFX_7&jyw`Q-=1Z~V{;~pz-#R9;+*cTqgn244%T>-dbR?1 sGr>lc2!oF@GiPx^Ye_^wRA}DqS$nWuWp)3p^?iHq^SI}n`^>$0kw6|G2}v+0kl<9UR>9XeW8xzy zNFA`!#@ec#KBlG0)M-0|kI~v&iz2={QCb}^YNeu(p+F2lBoN3Y50abYCiijP=j^?| zZ>|1u4!Hyqh|W~fnXWT?=FIHJx7PaB`mNtuAMk%%=%rY6!({-h{#kd=O?iJYLng-dA#IV#8hx1Qjp5{?=`LRvNHr>mFt+cDxY} zOx2SwvdF$gBl$xHJr%F+V5OaWp^~-+^7(?f;v0|hSrtORcl%Mw_Z+tqGmVu?hKfJv z%|*ktMBt%-D!eG17nGZEb*9;RcQJ^5TsNtI@aoItB{yKhmM!GX#awCD`-&Me)|=0i zlo*BqW`e3Bb&Aw`v=WDzM!QmPq?fVfvFX;7AKQG@X>-D!i2|deYbjh_KpsEk;Mrasul3;$$0#F=|Qy61GL|~$l zQ+G?q;oD15AOLwEHQ-)zmO~lNGh!m10+85>3b1YOT$>@(?r*RtS z=Bs{i@`A2KWLy{p(RHZ;Sq7Tz7=N{HAWKgVOwO4W6^)jj9PHQb(FL(MYBs3gmk7`QE-|iy-!m z&gmD9mnZIE@tX^Qnfdb8SGhWl=zaCS!=b4*JUCNp#UKKl^9W1{L;!(60EmE0K=3k~ zvxc;W7pVv*88CY1S~7t%HiWgl^o}`;Mn+?u%vIyD&WBZ@A`k^s6fHl4Mmz%%fe1`7 z*Sj(Gxi`&B9sL6vm@S6;TwnHXnYJ5|w1a)^Sbe<}8vvMU^g&d?-2fL=9B(EkBMi#{ zc)^YvE;+3k=Gi~DY`L7W!`2job~uz4N_@AW%hjqfuJ47Xa~j=fGQBX z22$4ygCO(PYP}W{`3G%$Tqj%SYC9ZC0tD5rue#_W~~hp9<2{qft$6w3+B%56oQPALaLPEy=Cw&1N2&Y$hC8Mn13@%mwhO zI8u+%PCZ0{LS$PlC$AJoyQg!p-~ayCyf6wih5`ySG7$~mqPBKfJE?SRQ*;zp1tS9a z9;g-(_$&-%P)qhhs0`&8Ab^NK+Q~N}LJ;z&T(kPa!OWh6gR);dt=g4{{4f`otD31t z>=IPs^n_EGfZ?79Gp+QmL&8(dBrE%GT=#-mU_ZBYDX9;5vWEHREzs+mX}ObBP-w>n zkn2H?F2O5ab{z`2IUwpNsj3)1wi6GJeGN154p_q-gF7DpGZ#JV7cDp5wlMvfOk9kH!b6=u{IOf@7O3gcQ(p9 zO0;SQmoL8=tCws*CMtr-g2;f#fXSekpNHiOUyoX~g`<^Uz#4{hX@PeF=X6P$_(wRX zJymX;E3qA(YB^m?M9UPwyg~-&^k!y`*5kiH%YPsWX;*BGTaeG`-Pf#nQ3E(IEm9UH zn_RB&9i-9Dd+nyf%NKtX^9ELf$%4s%h)=%QfH}Ywt8c`LdDlX`Kow9yH!nP(@>c7b zJdim6=VR|xx2Y|odAb{lEgpzz&Q*oiDYKCrM5y#1BsI_ zXEpiC!ty@9{>g1Pw|0PY>Nv_+vX-f-3BtB$+>FKee!1(4i-Zd;eZC>AUO1ZzUZW~q zSnMQclCUlse#IFm-!-9IRp$<_Mv|mxHQmV%c)c*=tCTl0sss(G`R8lK?w7Ydd>79f z+Zolyj=nb)za{DmpDxVLRkL$)lbogP&3gKoiM{1D24Uc9CG(?ItLS+l1VCk}cm;E3 z1DF9rArbSh$GC}*iHc~{l3%$cN{CQL4~=VIZPD$&`^dkymrw37t*7^1F!$vPepFhT z8E%)`nAtIj!<9DJkj?gIR}PdiD+fn04D zdXb9&1{0u45KVr4;;)LpWWh|G*njR;8}eRKU2*6^4E^+>*4);Fb?xTImR>mTrsPn| zjL*z~yETM~pia>^+CcS)KnT>+pSgyLg*Qx=D_3UK?z(+=Sl>4>p;ppF+p)XfJ9!&S zM|oI)j3P-J$b>-`R9|=}6rG~C@5ucKBMXskWp>>=D&DAI?yhGrIK@0ut-fmh-2P8g z$EsvhVTfTvMvx7l++hGdP0?;TIOotj-hxvZv5EOMlJ>=MVC5!2xJ@J~vZK{Z;Zonp z15pH)vHhvfL)D*v)fe-=s$kEdtq4K`8yEzEK^QXF5S0Bd?6iY9*x+ipobAnJzve43 zu_~B5&+Eus3}5>JtiJu3QhNB=voh7Thc;!ch!5E@=uH^EJY$jt5QBb(N}MnU$` zRwEUFI1q(+0~08onf{3;ZZkze0kg#SSADOl5cL?Jd>B*p$6=UeA(k0l^{K!IM{{L| ze3>{l{K?Ss2ou8?0uy0)(m3O2eNw>FT&8pYq0E^_u~E!ehBWd$3fH~dWPvE z&4g}~T>e3LR4QS?d)@`C0r~j9ai?KZ(PL2nn2s~$!t&fF;D_#1~EX~Q6#h( z^cR+6!QgrnGIP+1D`+ND*njLNsI|ud0i@d)oS@lWkvfm0*5v{u*9?W3 z?I9Zk#=vJYc-^*p!BN;z{uH?--s8xF58~cU*P!ZBG`)vHcLKD|0ziJMrOlC&?;-wF zDZl7FmH5DXsOv%t0R*J3jfwIvajg8ySwQMU(}{)#UFuEf6vR%50G@&r0LTeQu|!27 z+-169ct)irEcT-19h%;En|Yc`Y&w*7^X4%vpx}FYhw4+6iR+gPuTOh&16>CQRG#g? zWVV6ndRZae&P==d6P{ZFm>HJR#U@gc65wP1WU2xu9$p1nsX^idT?%k&coxO6hkuTW zo2~AdVl-|-o}EhExbdeNu=T_J!*}o6bMF=B46K=4I{%fO&Oo)pE}yrCD9~w@XDLY6 z)DtZyKwuMYOl@Eq{UIXi+1K)367fi!2dl@Ex7`NyUATVk0^J^5y~AU7e0P>UL4#S&?c{-V7rX^47p;diVW)GFjxj2;YY_;!Xb}DR zb5Y7IMlKu#lRaSyTYh&Eq`k>cn?Wa z{PG*$#NqARPw3gdu!!bl<5p`)P8ogQ+jborZ8ON)C-&~Vw6`>T&BBoj-ewH-dlje( zymt^4Byob&xpJ*m-cfEG{(0i#@xVkE20`>%GHyALKom$5x!G3e=G^z%s=L#5*-~^* zJl#e>2Dw~-Y$=EH-v2=?f6u#NqX>YaIXQ&~{_!91)SY)CZKr?&VNZa07Y>b8Ch8YO z&L^i$pRe3=EtR~GGc6XdF#zv5_}EJFet{5rL?}nBNl4K{gM;(;s(N)Ukybl~s3W1+ zG#kw~8>YXop6ew=AHA#S&G?k%g|; z!~GAO|7b039P}pFc3}%<3z*(CeYkeg*sXUcuRfMPM#Q7Yrmj@a$;Mr~^tXP*^yxo2 zq`Q4aE0u=i3eEexucaHmy-Sm{>SHlUrk%c%Vt;S85S@6ZSj@mzlD`D>UnGrPYs#FY z{7ZI9`Fy#3)i9-T&bBLX4~$8k@m_A)zh6%~+zysczj&XieuK(NzGcd4nFkBrw20`Er!A2d^UQ> z7%%Uen9#H4ocMIId2CGkqDZ2ie5F4OCk^qoC}1C0t7p|g_X~*-fmJ02b~nY}kphxB zr)PXZ^HNLTz1Eri@mBL&2+a3`B$fA{B5}{!9k^<2Oxu-;B$jW>0j*?UK=J=_mdpPD X({850X Date: Thu, 23 Sep 2010 12:48:15 -0700 Subject: [PATCH 165/310] Add Netbeans project metadata dir to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 217622c84d..d84e5e7424 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ good-config.php lac08.log php.log .DS_Store +nbproject From 5183997e3585d9201e08e5934307b90921ae92a1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 12:52:58 -0700 Subject: [PATCH 166/310] A little more cleanup... --- plugins/YammerImport/YammerImportPlugin.php | 10 +- .../classes/Yammer_notice_stub.php | 4 +- plugins/YammerImport/classes/Yammer_state.php | 155 ++++++++++++++---- plugins/YammerImport/scripts/yamdump.php | 6 +- 4 files changed, 141 insertions(+), 34 deletions(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index f55169a55b..58fc8b772a 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -64,7 +64,7 @@ class YammerImportPlugin extends Plugin 'Yammer_notice', 'Yammer_notice_stub'); foreach ($tables as $table) { - $schema->ensureTable($table, $table::schemaDef()); + $schema->ensureTable(strtolower($table), $table::schemaDef()); } return true; @@ -121,6 +121,14 @@ class YammerImportPlugin extends Plugin case 'yammeradminpanelaction': require_once "$base/actions/yammeradminpanel.php"; return false; + case 'yammer_state': + case 'yammer_notice_stub': + case 'yammer_common': + case 'yammer_user': + case 'yammer_group': + case 'yammer_notice': + require_once "$base/classes/$cls.php"; + return false; default: return true; } diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php index 98a5e2cf77..cc52554dea 100644 --- a/plugins/YammerImport/classes/Yammer_notice_stub.php +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -51,7 +51,7 @@ class Yammer_notice_stub extends Memcached_DataObject /** * Return schema definition to set this table up in onCheckSchema */ - static function schemaDef($field) + static function schemaDef() { return array(new ColumnDef('id', 'bigint', null, false, 'PRI'), @@ -73,7 +73,7 @@ class Yammer_notice_stub extends Memcached_DataObject function table() { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, - 'json_data' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'json_data' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index a476fd3bec..98a656bfc5 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -1,37 +1,136 @@ + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} -yammer_state - id - state - request_token - oauth_token - users_page - groups_page - messages_oldest - created - modified +class Yammer_state extends Memcached_DataObject +{ + public $__table = 'yammer_state'; // table name + public $id; // int primary_key not_null + public $state; // import state key + public $request_token; // oauth request token; clear when auth is complete. + public $oauth_token; // actual oauth token! clear when import is done? + public $users_page; // last page of users we've fetched + public $groups_page; // last page of groups we've fetched + public $messages_oldest; // oldest message ID we've fetched + public $messages_newest; // newest message ID we've imported + public $created; // datetime + public $modified; // datetime -yammer_user - id - user_id - created + /** + * Return schema definition to set this table up in onCheckSchema + */ + static function schemaDef() + { + return array(new ColumnDef('id', 'int', null, + false, 'PRI'), + new ColumnDef('state', 'text'), + new ColumnDef('request_token', 'text'), + new ColumnDef('oauth_token', 'text'), + new ColumnDef('users_page', 'int'), + new ColumnDef('groups_page', 'int'), + new ColumnDef('messages_oldest', 'bigint'), + new ColumnDef('messages_newest', 'bigint'), + new ColumnDef('created', 'datetime'), + new ColumnDef('modified', 'datetime')); + } -yammer_group - id - group_id - created + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ -yammer_notice - id - notice_id - created + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'state' => DB_DATAOBJECT_STR, + 'request_token' => DB_DATAOBJECT_STR, + 'oauth_token' => DB_DATAOBJECT_STR, + 'users_page' => DB_DATAOBJECT_INT, + 'groups_page' => DB_DATAOBJECT_INT, + 'messages_oldest' => DB_DATAOBJECT_INT, + 'messages_newest' => DB_DATAOBJECT_INT, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } -yammer_notice_stub - id - json_data - created + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ -*/ + function keys() + { + return array_keys($this->keyTypes()); + } + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } +} diff --git a/plugins/YammerImport/scripts/yamdump.php b/plugins/YammerImport/scripts/yamdump.php index a358777ad1..944ee2e499 100644 --- a/plugins/YammerImport/scripts/yamdump.php +++ b/plugins/YammerImport/scripts/yamdump.php @@ -13,6 +13,7 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); +/* $data = $yam->users(); var_dump($data); // @fixme follow paging @@ -20,9 +21,9 @@ foreach ($data as $item) { $user = $imp->prepUser($item); var_dump($user); } +*/ -/* -$data = $yam->messages(); +$data = $yam->messages(array('newer_than' => 1)); var_dump($data); // @fixme follow paging $messages = $data['messages']; @@ -31,4 +32,3 @@ foreach ($messages as $message) { $notice = $imp->prepNotice($message); var_dump($notice); } -*/ From eb8be9988eed03b285fa2095a1d99010f928b117 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 15:23:56 -0700 Subject: [PATCH 167/310] Work in progress: YammerRunner state machine wrapper for running the Yammer import in chunks. --- plugins/YammerImport/YammerImportPlugin.php | 1 + .../YammerImport/actions/yammeradminpanel.php | 2 +- plugins/YammerImport/classes/Yammer_state.php | 3 + plugins/YammerImport/lib/yammerrunner.php | 198 ++++++++++++++++++ 4 files changed, 203 insertions(+), 1 deletion(-) create mode 100644 plugins/YammerImport/lib/yammerrunner.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 58fc8b772a..85eab74c04 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -116,6 +116,7 @@ class YammerImportPlugin extends Plugin switch ($lower) { case 'sn_yammerclient': case 'yammerimporter': + case 'yammerrunner': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 875debac92..9f935bbefb 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -133,7 +133,7 @@ class YammerAdminPanelForm extends AdminForm break; case 'import-users': case 'import-groups': - case 'import-messages': + case 'fetch-messages': case 'save-messages': $this->showImportState(); break; diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 98a656bfc5..0174ead15d 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -38,6 +38,7 @@ class Yammer_state extends Memcached_DataObject public $state; // import state key public $request_token; // oauth request token; clear when auth is complete. public $oauth_token; // actual oauth token! clear when import is done? + public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched public $groups_page; // last page of groups we've fetched public $messages_oldest; // oldest message ID we've fetched @@ -55,6 +56,7 @@ class Yammer_state extends Memcached_DataObject new ColumnDef('state', 'text'), new ColumnDef('request_token', 'text'), new ColumnDef('oauth_token', 'text'), + new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), new ColumnDef('groups_page', 'int'), new ColumnDef('messages_oldest', 'bigint'), @@ -78,6 +80,7 @@ class Yammer_state extends Memcached_DataObject 'state' => DB_DATAOBJECT_STR, 'request_token' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, + 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, 'groups_page' => DB_DATAOBJECT_INT, 'messages_oldest' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php new file mode 100644 index 0000000000..e229b2acbe --- /dev/null +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -0,0 +1,198 @@ +. + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * State machine for running through Yammer import. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerRunner +{ + private $state; + private $client; + private $importer; + + function __construct() + { + $state = Yammer_state::staticGet('id', 1); + if (!$state) { + common_log(LOG_ERR, "No YammerImport state during import run. Should not happen!"); + throw new ServerException('No YammerImport state during import run.'); + } + + $this->state = $state; + $this->client = new SN_YammerClient( + common_config('yammer', 'consumer_key'), + common_config('yammer', 'consumer_secret'), + $this->state->oauth_token, + $this->state->oauth_secret); + $this->importer = new YammerImporter($client); + } + + public function iterate() + { + + switch($state->state) + { + case null: + case 'requesting-auth': + // Neither of these should reach our background state! + common_log(LOG_ERR, "Non-background YammerImport state '$state->state' during import run!"); + return false; + case 'import-users': + return $this->iterateUsers(); + case 'import-groups': + return $this->iterateGroups(); + case 'fetch-messages': + return $this->iterateFetchMessages(); + case 'save-messages': + return $this->iterateSaveMessages(); + default: + common_log(LOG_ERR, "Invalid YammerImport state '$state->state' during import run!"); + return false; + } + } + + /** + * Trundle through one 'page' return of up to 50 user accounts retrieved + * from the Yammer API, importing them as we go. + * + * When we run out of users, move on to groups. + * + * @return boolean success + */ + private function iterateUsers() + { + $old = clone($this->state); + + $page = intval($this->state->users_page) + 1; + $data = $this->client->users(array('page' => $page)); + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished importing Yammer users; moving on to groups."); + $this->state->state = 'import-groups'; + } else { + foreach ($data as $item) { + $user = $imp->importUser($item); + common_log(LOG_INFO, "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)"); + } + $this->state->users_page = $page; + } + $this->state->update($old); + return true; + } + + /** + * Trundle through one 'page' return of up to 20 user groups retrieved + * from the Yammer API, importing them as we go. + * + * When we run out of groups, move on to messages. + * + * @return boolean success + */ + private function iterateGroups() + { + $old = clone($this->state); + + $page = intval($this->state->groups_page) + 1; + $data = $this->client->groups(array('page' => $page)); + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished importing Yammer groups; moving on to messages."); + $this->state->state = 'import-messages'; + } else { + foreach ($data as $item) { + $group = $imp->importGroup($item); + common_log(LOG_INFO, "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)"); + } + $this->state->groups_page = $page; + } + $this->state->update($old); + return true; + } + + /** + * Trundle through one 'page' return of up to 20 public messages retrieved + * from the Yammer API, saving them to our stub table for future import in + * correct chronological order. + * + * When we run out of messages to fetch, move on to saving the messages. + * + * @return boolean success + */ + private function iterateFetchMessages() + { + $old = clone($this->state); + + $oldest = intval($this->state->messages_oldest); + if ($oldest) { + $params = array('older_than' => $oldest); + } else { + $params = array(); + } + $data = $this->client->messages($params); + $messages = $data['messages']; + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished fetching Yammer messages; moving on to save messages."); + $this->state->state = 'save-messages'; + } else { + foreach ($data as $item) { + Yammer_notice_stub::record($item['id'], $item); + $oldest = $item['id']; + } + $this->state->messages_oldest = $oldest; + } + $this->state->update($old); + return true; + } + + private function iterateSaveMessages() + { + $old = clone($this->state); + + $newest = intval($this->state->messages_newest); + if ($newest) { + $stub->addWhere('id > ' . $newest); + } + $stub->limit(20); + $stub->find(); + + if ($stub->N == 0) { + common_log(LOG_INFO, "Finished saving Yammer messages; import complete!"); + $this->state->state = 'done'; + } else { + while ($stub->fetch()) { + $item = json_decode($stub->json_data); + $notice = $this->importer->importNotice($item); + common_log(LOG_INFO, "Imported Yammer notice " . $item['id'] . " as $notice->id"); + $newest = $item['id']; + } + $this->state->messages_newest = $newest; + } + $this->state->update($old); + return true; + } + +} From 62f7d6c74dcfca5f073c04aa3ba68b9d6a4ac77d Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 23 Sep 2010 15:46:01 -0700 Subject: [PATCH 168/310] Fix strings in Disqus plugin for i18n --- plugins/Disqus/DisqusPlugin.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index 3901562f98..96bfb4e09f 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -108,14 +108,14 @@ ENDOFSCRIPT; $action->elementStart('div', $attrs); $action->elementStart('noscript'); - // @todo FIXME: No i18n yet, because of bad implementation. Should be one string. - $action->raw('Please enable JavaScript to view the '); - $noscriptUrl = 'http://disqus.com/?ref_noscript=' . $this->shortname; - $action->element('a', array('href' => $noscriptUrl), 'comments powered by Disqus.'); + $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname); + $output = common_markup_to_html($noScriptMsg); + $action->raw($output); + $action->elementEnd('noscript'); $action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink')); - $action->raw('blog comments powered by '); + $action->raw(_m('Comments powered by ')); $action->element('span', array('class' => 'logo-disqus'), 'Disqus'); $action->elementEnd('a'); $action->elementEnd('div'); From da048589021b59e9165529567b9b018290432c72 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 23 Sep 2010 16:16:32 -0700 Subject: [PATCH 169/310] Update OAuth actions in show application page so it will display the right endpoint URLs --- actions/showapplication.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/showapplication.php b/actions/showapplication.php index fa44844816..10aaff538f 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -271,17 +271,17 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_request_token_url'); $this->element('dt', null, _('Request token URL')); - $this->element('dd', null, common_local_url('apioauthrequesttoken')); + $this->element('dd', null, common_local_url('ApiOauthRequestToken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_access_token_url'); $this->element('dt', null, _('Access token URL')); - $this->element('dd', null, common_local_url('apioauthaccesstoken')); + $this->element('dd', null, common_local_url('ApiOauthAccessToken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_authorize_url'); $this->element('dt', null, _('Authorize URL')); - $this->element('dd', null, common_local_url('apioauthauthorize')); + $this->element('dd', null, common_local_url('ApiOauthAuthorize')); $this->elementEnd('dl'); $this->element('p', 'note', From c75bd62a4c4f25287beb4e1ca43bb4f94b4ffcd9 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 23 Sep 2010 16:16:32 -0700 Subject: [PATCH 170/310] Update OAuth actions in show application page so it will display the right endpoint URLs --- actions/showapplication.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/showapplication.php b/actions/showapplication.php index fa44844816..10aaff538f 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -271,17 +271,17 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_request_token_url'); $this->element('dt', null, _('Request token URL')); - $this->element('dd', null, common_local_url('apioauthrequesttoken')); + $this->element('dd', null, common_local_url('ApiOauthRequestToken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_access_token_url'); $this->element('dt', null, _('Access token URL')); - $this->element('dd', null, common_local_url('apioauthaccesstoken')); + $this->element('dd', null, common_local_url('ApiOauthAccessToken')); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_authorize_url'); $this->element('dt', null, _('Authorize URL')); - $this->element('dd', null, common_local_url('apioauthauthorize')); + $this->element('dd', null, common_local_url('ApiOauthAuthorize')); $this->elementEnd('dl'); $this->element('p', 'note', From dd414db9ea71ca7b2d0fca901d51931557bde6bd Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 16:40:22 -0700 Subject: [PATCH 171/310] Work in progress: most of the infrastructure for running import via BG queues or CLI script is now in place (untested, no UI, needs tweaks & fixes) --- plugins/YammerImport/README | 42 ++++++++ .../YammerImport/lib/yammerqueuehandler.php | 18 +++- plugins/YammerImport/lib/yammerrunner.php | 102 +++++++++++++++++- .../YammerImport/scripts/yammer-import.php | 59 +++++----- 4 files changed, 186 insertions(+), 35 deletions(-) diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README index 5ab080647a..1bac69a243 100644 --- a/plugins/YammerImport/README +++ b/plugins/YammerImport/README @@ -73,3 +73,45 @@ they do on Yammer; they will be linked instead. File type and size limitations on attachments will be applied, so beware some attachments may not make it through. + + + +Code structure +============== + +Standalone classes +------------------ + +YammerRunner: encapsulates the iterative process of retrieving the various users, + groups, and messages via SN_YammerClient and saving them locally + via YammerImporter. + +SN_YammerClient: encapsulates HTTP+OAuth interface to Yammer API, returns data + as straight decoded JSON object trees. + +YammerImporter: encapsulates logic to pull information from the returned API data + and convert them to native StatusNet users, groups, and messages. + +Web UI actions +------------- + +YammeradminpanelAction: web panel for site administrator to initiate and monitor + the import process. + +Command-line scripts +-------------------- + +yammer-import.php: CLI script to start a Yammer import run in one go. + +Database objects +---------------- + +Yammer_state: data object storing YammerRunner's state between iterations. + +Yammer_notice_stub: data object for temporary storage of fetched Yammer messages + between fetching them (reverse chron order) and saving them + to local messages (forward chron order). +Yammer_user, +Yammer_group, +Yammer_notice: data objects mapping original Yammer item IDs to their local copies. + diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index ca81cbb344..5fc3777835 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -36,11 +36,23 @@ class YammerQueueHandler extends QueueHandler function handle($notice) { - $importer = new YammerImporter(); - if ($importer->hasWork()) { - return $importer->iterate(); + $runner = YammerRunner::init(); + if ($runner->hasWork()) { + if ($runner->iterate()) { + if ($runner->hasWork()) { + // More to do? Shove us back on the queue... + $qm = QueueManager::get(); + $qm->enqueue('YammerImport', 'yammer'); + } + return true; + } else { + // Something failed? + // @fixme should we be trying again here, or should we give warning? + return false; + } } else { // We're done! + common_log(LOG_INFO, "Yammer import has no work to do at this time; discarding."); return true; } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e229b2acbe..95ff783714 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -33,29 +33,123 @@ class YammerRunner private $client; private $importer; - function __construct() + public static function init() { $state = Yammer_state::staticGet('id', 1); if (!$state) { - common_log(LOG_ERR, "No YammerImport state during import run. Should not happen!"); - throw new ServerException('No YammerImport state during import run.'); + $state = new Yammer_state(); + $state->id = 1; + $state->state = 'init'; + $state->insert(); } + return new YammerRunner($state); + } + private function __construct($state) + { $this->state = $state; + $this->client = new SN_YammerClient( common_config('yammer', 'consumer_key'), common_config('yammer', 'consumer_secret'), $this->state->oauth_token, $this->state->oauth_secret); + $this->importer = new YammerImporter($client); } + /** + * Check which state we're in + * + * @return string + */ + public function state() + { + return $this->state->state; + } + + /** + * Is the import done, finished, complete, finito? + * + * @return boolean + */ + public function isDone() + { + $workStates = array('import-users', 'import-groups', 'fetch-messages', 'save-messages'); + return ($this->state() == 'done'); + } + + /** + * Check if we have work to do in iterate(). + */ + public function hasWork() + { + $workStates = array('import-users', 'import-groups', 'fetch-messages', 'save-messages'); + return in_array($this->state(), $workStates); + } + + /** + * Start the authentication process! If all goes well, we'll get back a URL. + * Have the user visit that URL, log in on Yammer and verify the importer's + * permissions. They'll get back a verification code, which needs to be passed + * on to saveAuthToken(). + * + * @return string URL + */ + public function requestAuth() + { + if ($this->state->state != 'init') { + throw ServerError("Cannot request Yammer auth; already there!"); + } + + $old = clone($this->state); + $this->state->state = 'requesting-auth'; + $this->state->request_token = $client->requestToken(); + $this->state->update($old); + + return $this->client->authorizeUrl($this->state->request_token); + } + + /** + * Now that the user's given us this verification code from Yammer, we can + * request a final OAuth token/secret pair which we can use to access the + * API. + * + * After success here, we'll be ready to move on and run through iterate() + * until the import is complete. + * + * @param string $verifier + * @return boolean success + */ + public function saveAuthToken($verifier) + { + if ($this->state->state != 'requesting-auth') { + throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); + } + + $old = clone($this->state); + list($token, $secret) = $this->client->getAuthToken($verifier); + $this->state->verifier = ''; + $this->state->oauth_token = $token; + $this->state->oauth_secret = $secret; + + $this->state->update($old); + + return true; + } + + /** + * Once authentication is complete, we need to call iterate() a bunch of times + * until state() returns 'done'. + * + * @return boolean success + */ public function iterate() { switch($state->state) { - case null: + case 'init': case 'requesting-auth': // Neither of these should reach our background state! common_log(LOG_ERR, "Non-background YammerImport state '$state->state' during import run!"); diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index ac258e1c7d..24307d6cd4 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -8,34 +8,37 @@ define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; -// temp stuff -require 'yam-config.php'; -$yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter($yam); +$runner = YammerRunner::init(); -// First, import all the users! -// @fixme follow paging -- we only get 50 at a time -$data = $yam->users(); -foreach ($data as $item) { - $user = $imp->importUser($item); - echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; -} +switch ($runner->state()) +{ + case 'init': + $url = $runner->requestAuth(); + echo "Log in to Yammer at the following URL and confirm permissions:\n"; + echo "\n"; + echo " $url\n"; + echo "\n"; + echo "Pass the resulting code back by running:\n" + echo "\n" + echo " php yammer-import.php --auth=####\n"; + echo "\n"; + break; -// Groups! -// @fixme follow paging -- we only get 20 at a time -$data = $yam->groups(); -foreach ($data as $item) { - $group = $imp->importGroup($item); - echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; -} + case 'requesting-auth': + if (empty($options['auth'])) { + echo "Please finish authenticating!\n"; + break; + } + $runner->saveAuthToken($options['auth']); + // Fall through... -// Messages! -// Process in reverse chron order... -// @fixme follow paging -- we only get 20 at a time, and start at the most recent! -$data = $yam->messages(); -$messages = $data['messages']; -$messages = array_reverse($messages); -foreach ($messages as $item) { - $notice = $imp->importNotice($item); - echo "Imported Yammer notice " . $item['id'] . " as $notice->id\n"; -} + default: + while (true) { + echo "... {$runner->state->state}\n"; + if (!$runner->iterate()) { + echo "... done.\n"; + break; + } + } + break; +} \ No newline at end of file From bdd8a587e7b9f64fb0d3a39b851dde3f9cb562ab Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 17:55:13 -0700 Subject: [PATCH 172/310] Ok, command-line workflow for YammerImportPlugin seems to mostly work, at least on tiny test site :D --- .../YammerImport/classes/Yammer_common.php | 4 +- .../classes/Yammer_notice_stub.php | 45 ++++++----- plugins/YammerImport/classes/Yammer_state.php | 20 ++++- plugins/YammerImport/lib/sn_yammerclient.php | 7 +- plugins/YammerImport/lib/yammerimporter.php | 11 ++- plugins/YammerImport/lib/yammerrunner.php | 77 ++++++++++++++----- .../YammerImport/scripts/yammer-import.php | 43 ++++++++--- 7 files changed, 144 insertions(+), 63 deletions(-) diff --git a/plugins/YammerImport/classes/Yammer_common.php b/plugins/YammerImport/classes/Yammer_common.php index 81e302ab29..6ec6fc9041 100644 --- a/plugins/YammerImport/classes/Yammer_common.php +++ b/plugins/YammerImport/classes/Yammer_common.php @@ -138,13 +138,13 @@ class Yammer_common extends Memcached_DataObject protected static function doRecord($class, $field, $orig_id, $local_id) { - $map = self::staticGet('id', $orig_id); + $map = parent::staticGet($class, 'id', $orig_id); if (!empty($map)) { return $map; } - $map = self::staticGet($field, $local_id); + $map = parent::staticGet($class, $field, $local_id); if (!empty($map)) { return $map; diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php index cc52554dea..e10300c4c7 100644 --- a/plugins/YammerImport/classes/Yammer_notice_stub.php +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -48,6 +48,23 @@ class Yammer_notice_stub extends Memcached_DataObject public $json_data; // 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 Yammer_notice_stub object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_notice_stub', $k, $v); + } + /** * Return schema definition to set this table up in onCheckSchema */ @@ -126,6 +143,16 @@ class Yammer_notice_stub extends Memcached_DataObject return array(false, false, false); } + /** + * Decode the stored data structure. + * + * @return mixed + */ + public function getData() + { + return json_decode($this->json_data, true); + } + /** * Save the native Yammer API representation of a message for the pending * import. Since they come in in reverse chronological order, we need to @@ -153,22 +180,4 @@ class Yammer_notice_stub extends Memcached_DataObject return $stub; } - - /** - * Save a mapping between a remote Yammer and local imported user. - * - * @param integer $user_id ID of the status in StatusNet - * - * @return Yammer_notice_stub new object for this value - */ - - static function retrieve($orig_id) - { - $stub = self::staticGet('id', $orig_id); - if ($stub) { - return json_decode($stub->json_data, true); - } else { - return false; - } - } } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 0174ead15d..2f1fd7780b 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -36,7 +36,6 @@ class Yammer_state extends Memcached_DataObject public $__table = 'yammer_state'; // table name public $id; // int primary_key not_null public $state; // import state key - public $request_token; // oauth request token; clear when auth is complete. public $oauth_token; // actual oauth token! clear when import is done? public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched @@ -46,6 +45,23 @@ class Yammer_state extends Memcached_DataObject public $created; // datetime public $modified; // 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 Yammer_state object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_state', $k, $v); + } + /** * Return schema definition to set this table up in onCheckSchema */ @@ -54,7 +70,6 @@ class Yammer_state extends Memcached_DataObject return array(new ColumnDef('id', 'int', null, false, 'PRI'), new ColumnDef('state', 'text'), - new ColumnDef('request_token', 'text'), new ColumnDef('oauth_token', 'text'), new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), @@ -78,7 +93,6 @@ class Yammer_state extends Memcached_DataObject { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, 'state' => DB_DATAOBJECT_STR, - 'request_token' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/lib/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php index 830f9dabb8..5da1cc5e7e 100644 --- a/plugins/YammerImport/lib/sn_yammerclient.php +++ b/plugins/YammerImport/lib/sn_yammerclient.php @@ -104,7 +104,8 @@ class SN_YammerClient { $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); - if (!$data) { + if ($data === null) { + common_log(LOG_ERR, "Invalid JSON response from Yammer API: " . $body); throw new Exception("Invalid JSON response from Yammer API"); } return $data; @@ -161,7 +162,7 @@ class SN_YammerClient if ($this->token || $this->tokenSecret) { throw new Exception("Requesting a token, but already set up with a token"); } - $data = $this->fetch('oauth/request_token'); + $data = $this->fetchApi('oauth/request_token'); $arr = array(); parse_str($data, $arr); return $arr; @@ -176,7 +177,7 @@ class SN_YammerClient public function accessToken($verifier) { $this->verifier = $verifier; - $data = $this->fetch('oauth/access_token'); + $data = $this->fetchApi('oauth/access_token'); $this->verifier = null; $arr = array(); parse_str($data, $arr); diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index b1d2815b9e..0425b8b04e 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -327,17 +327,20 @@ class YammerImporter private function findImportedUser($origId) { - return Yammer_user::staticGet('id', $origId); + $map = Yammer_user::staticGet('id', $origId); + return $map ? $map->user_id : null; } private function findImportedGroup($origId) { - return Yammer_group::staticGet('id', $origId); + $map = Yammer_group::staticGet('id', $origId); + return $map ? $map->group_id : null; } private function findImportedNotice($origId) { - return Yammer_notice::staticGet('id', $origId); + $map = Yammer_notice::staticGet('id', $origId); + return $map ? $map->notice_id : null; } private function recordImportedUser($origId, $userId) @@ -370,7 +373,7 @@ class YammerImporter // Blaaaaaarf! $known = array('Pacific Time (US & Canada)' => 'America/Los_Angeles', 'Eastern Time (US & Canada)' => 'America/New_York'); - if (array_key_exists($known, $tz)) { + if (array_key_exists($tz, $known)) { return $known[$tz]; } else { return false; diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index 95ff783714..c4db48399c 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -33,18 +33,31 @@ class YammerRunner private $client; private $importer; + /** + * Normalize our singleton state and give us a YammerRunner object to play with! + * + * @return YammerRunner + */ public static function init() { $state = Yammer_state::staticGet('id', 1); if (!$state) { - $state = new Yammer_state(); - $state->id = 1; - $state->state = 'init'; - $state->insert(); + $state = self::initState(); } return new YammerRunner($state); } + private static function initState() + { + $state = new Yammer_state(); + $state->id = 1; + $state->state = 'init'; + $state->created = common_sql_now(); + $state->modified = common_sql_now(); + $state->insert(); + return $state; + } + private function __construct($state) { $this->state = $state; @@ -55,7 +68,7 @@ class YammerRunner $this->state->oauth_token, $this->state->oauth_secret); - $this->importer = new YammerImporter($client); + $this->importer = new YammerImporter($this->client); } /** @@ -81,6 +94,8 @@ class YammerRunner /** * Check if we have work to do in iterate(). + * + * @return boolean */ public function hasWork() { @@ -88,6 +103,15 @@ class YammerRunner return in_array($this->state(), $workStates); } + /** + * Blow away any current state! + */ + public function reset() + { + $this->state->delete(); + $this->state = self::initState(); + } + /** * Start the authentication process! If all goes well, we'll get back a URL. * Have the user visit that URL, log in on Yammer and verify the importer's @@ -102,12 +126,16 @@ class YammerRunner throw ServerError("Cannot request Yammer auth; already there!"); } + $data = $this->client->requestToken(); + $old = clone($this->state); $this->state->state = 'requesting-auth'; - $this->state->request_token = $client->requestToken(); + $this->state->oauth_token = $data['oauth_token']; + $this->state->oauth_secret = $data['oauth_token_secret']; + $this->state->modified = common_sql_now(); $this->state->update($old); - return $this->client->authorizeUrl($this->state->request_token); + return $this->client->authorizeUrl($this->state->oauth_token); } /** @@ -127,12 +155,13 @@ class YammerRunner throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); } - $old = clone($this->state); - list($token, $secret) = $this->client->getAuthToken($verifier); - $this->state->verifier = ''; - $this->state->oauth_token = $token; - $this->state->oauth_secret = $secret; + $data = $this->client->accessToken($verifier); + $old = clone($this->state); + $this->state->state = 'import-users'; + $this->state->oauth_token = $data['oauth_token']; + $this->state->oauth_secret = $data['oauth_token_secret']; + $this->state->modified = common_sql_now(); $this->state->update($old); return true; @@ -146,8 +175,7 @@ class YammerRunner */ public function iterate() { - - switch($state->state) + switch($this->state()) { case 'init': case 'requesting-auth': @@ -188,11 +216,12 @@ class YammerRunner $this->state->state = 'import-groups'; } else { foreach ($data as $item) { - $user = $imp->importUser($item); + $user = $this->importer->importUser($item); common_log(LOG_INFO, "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)"); } $this->state->users_page = $page; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -214,14 +243,15 @@ class YammerRunner if (count($data) == 0) { common_log(LOG_INFO, "Finished importing Yammer groups; moving on to messages."); - $this->state->state = 'import-messages'; + $this->state->state = 'fetch-messages'; } else { foreach ($data as $item) { - $group = $imp->importGroup($item); + $group = $this->importer->importGroup($item); common_log(LOG_INFO, "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)"); } $this->state->groups_page = $page; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -248,16 +278,17 @@ class YammerRunner $data = $this->client->messages($params); $messages = $data['messages']; - if (count($data) == 0) { + if (count($messages) == 0) { common_log(LOG_INFO, "Finished fetching Yammer messages; moving on to save messages."); $this->state->state = 'save-messages'; } else { - foreach ($data as $item) { + foreach ($messages as $item) { Yammer_notice_stub::record($item['id'], $item); $oldest = $item['id']; } $this->state->messages_oldest = $oldest; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -267,10 +298,13 @@ class YammerRunner $old = clone($this->state); $newest = intval($this->state->messages_newest); + + $stub = new Yammer_notice_stub(); if ($newest) { - $stub->addWhere('id > ' . $newest); + $stub->whereAdd('id > ' . $newest); } $stub->limit(20); + $stub->orderBy('id'); $stub->find(); if ($stub->N == 0) { @@ -278,13 +312,14 @@ class YammerRunner $this->state->state = 'done'; } else { while ($stub->fetch()) { - $item = json_decode($stub->json_data); + $item = $stub->getData(); $notice = $this->importer->importNotice($item); common_log(LOG_INFO, "Imported Yammer notice " . $item['id'] . " as $notice->id"); $newest = $item['id']; } $this->state->messages_newest = $newest; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index 24307d6cd4..1491cfd308 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -4,41 +4,60 @@ if (php_sapi_name() != 'cli') { die('no'); } + define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); +$longoptions = array('verify=', 'reset'); require INSTALLDIR . "/scripts/commandline.inc"; +echo "Checking current state...\n"; $runner = YammerRunner::init(); +if (have_option('reset')) { + echo "Resetting Yammer import state...\n"; + $runner->reset(); +} + switch ($runner->state()) { case 'init': + echo "Requesting authentication to Yammer API...\n"; $url = $runner->requestAuth(); echo "Log in to Yammer at the following URL and confirm permissions:\n"; echo "\n"; echo " $url\n"; echo "\n"; - echo "Pass the resulting code back by running:\n" - echo "\n" - echo " php yammer-import.php --auth=####\n"; + echo "Pass the resulting code back by running:\n"; + echo "\n"; + echo " php yammer-import.php --verify=####\n"; echo "\n"; break; case 'requesting-auth': - if (empty($options['auth'])) { - echo "Please finish authenticating!\n"; - break; + if (!have_option('verify')) { + echo "Awaiting authentication...\n"; + echo "\n"; + echo "If you need to start over, reset the state:\n"; + echo "\n"; + echo " php yammer-import.php --reset\n"; + echo "\n"; + exit(1); } - $runner->saveAuthToken($options['auth']); + echo "Saving final authentication token for Yammer API...\n"; + $runner->saveAuthToken(get_option_value('verify')); // Fall through... default: - while (true) { - echo "... {$runner->state->state}\n"; + while ($runner->hasWork()) { + echo "... {$runner->state()}\n"; if (!$runner->iterate()) { - echo "... done.\n"; - break; + echo "FAIL??!?!?!\n"; } } + if ($runner->isDone()) { + echo "... done.\n"; + } else { + echo "... no more import work scheduled.\n"; + } break; -} \ No newline at end of file +} From 210e486d805bf5e06144728c6e7bc74e4bd30d44 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 24 Sep 2010 16:50:03 -0400 Subject: [PATCH 173/310] remove unnecesssary fieldset from sitemap admin panel --- plugins/Sitemap/sitemapadminpanel.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/Sitemap/sitemapadminpanel.php b/plugins/Sitemap/sitemapadminpanel.php index 3c295b08e0..3372723b02 100644 --- a/plugins/Sitemap/sitemapadminpanel.php +++ b/plugins/Sitemap/sitemapadminpanel.php @@ -169,7 +169,6 @@ class SitemapAdminPanelForm extends AdminForm function formData() { - $this->out->elementStart('fieldset', array('id' => 'sitemap_admin')); $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('googlekey', From d962f7092f42566602c4f3a9f37f39b13b2437a3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 14:52:51 -0700 Subject: [PATCH 174/310] Initial progress display of Yammer import state in admin panel --- .../YammerImport/actions/yammeradminpanel.php | 123 +++++++++++++----- plugins/YammerImport/css/admin.css | 11 ++ plugins/YammerImport/lib/yammerrunner.php | 47 +++++++ 3 files changed, 151 insertions(+), 30 deletions(-) create mode 100644 plugins/YammerImport/css/admin.css diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 9f935bbefb..2c9f412a24 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -64,6 +64,12 @@ class YammeradminpanelAction extends AdminPanelAction $form->show(); return; } + + function showStylesheets() + { + parent::showStylesheets(); + $this->cssLink('plugins/YammerImport/css/admin.css', null, 'screen, projection, tv'); + } } class YammerAdminPanelForm extends AdminForm @@ -105,40 +111,97 @@ class YammerAdminPanelForm extends AdminForm */ function formData() { - $this->out->element('p', array(), 'yammer import IN DA HOUSE'); - - /* - Possible states of the yammer import process: - - null (not doing any sort of import) - - requesting-auth - - authenticated - - import-users - - import-groups - - fetch-messages - - import-messages - - done - */ - $yammerState = Yammer_state::staticGet('id', 1); - $state = $yammerState ? $yammerState->state || null; - - switch($state) + $runner = YammerRunner::init(); + + switch($runner->state()) { - case null: - $this->out->element('p', array(), 'Time to start auth:'); - $this->showAuthForm(); - break; + case 'init': case 'requesting-auth': - $this->out->element('p', array(), 'Need to finish auth!'); $this->showAuthForm(); - break; - case 'import-users': - case 'import-groups': - case 'fetch-messages': - case 'save-messages': - $this->showImportState(); - break; - + default: } + $this->showImportState($runner); + } + + private function showAuthForm() + { + $this->out->element('p', array(), 'show an auth form'); + } + + private function showImportState(YammerRunner $runner) + { + $userCount = $runner->countUsers(); + $groupCount = $runner->countGroups(); + $fetchedCount = $runner->countFetchedNotices(); + $savedCount = $runner->countSavedNotices(); + + $labels = array( + 'init' => array( + 'label' => _m("Initialize"), + 'progress' => _m('No import running'), + 'complete' => _m('Initiated Yammer server connection...'), + ), + 'requesting-auth' => array( + 'label' => _m('Connect to Yammer'), + 'progress' => _m('Awaiting authorization...'), + 'complete' => _m('Connected.'), + ), + 'import-users' => array( + 'label' => _m('Import user accounts'), + 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), + 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), + ), + 'import-groups' => array( + 'label' => _m('Import user groups'), + 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), + 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), + ), + 'fetch-messages' => array( + 'label' => _m('Prepare public notices for import'), + 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), + 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), + ), + 'save-messages' => array( + 'label' => _m('Import public notices'), + 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), + 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), + ), + 'done' => array( + 'label' => _m('Done'), + 'progress' => sprintf(_m("Import is complete!")), + 'complete' => sprintf(_m("Import is complete!")), + ) + ); + $steps = array_keys($labels); + $currentStep = array_search($runner->state(), $steps); + + foreach ($steps as $step => $state) { + if ($step < $currentStep) { + // This step is done + $this->progressBar($labels[$state]['label'], + $labels[$state]['complete'], + 'complete'); + } else if ($step == $currentStep) { + // This step is in progress + $this->progressBar($labels[$state]['label'], + $labels[$state]['progress'], + 'progress'); + } else { + // This step has not yet been done. + $this->progressBar($labels[$state]['label'], + _m("Waiting..."), + 'waiting'); + } + } + } + + private function progressBar($label, $status, $class) + { + // @fixme prettify ;) + $this->out->elementStart('div', array('class' => $class)); + $this->out->element('p', array(), $label); + $this->out->element('p', array(), $status); + $this->out->elementEnd('div'); } /** diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css new file mode 100644 index 0000000000..c1462237a5 --- /dev/null +++ b/plugins/YammerImport/css/admin.css @@ -0,0 +1,11 @@ +.waiting { + color: #888; +} + +.progress { + color: blue; +} + +.done { + color: black; +} diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index c4db48399c..e0aadff2c3 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -324,4 +324,51 @@ class YammerRunner return true; } + /** + * Count the number of Yammer users we've mapped into our system! + * + * @return int + */ + public function countUsers() + { + $map = new Yammer_user(); + return $map->count(); + } + + + /** + * Count the number of Yammer groups we've mapped into our system! + * + * @return int + */ + public function countGroups() + { + $map = new Yammer_group(); + return $map->count(); + } + + + /** + * Count the number of Yammer notices we've pulled down for pending import... + * + * @return int + */ + public function countFetchedNotices() + { + $map = new Yammer_notice_stub(); + return $map->count(); + } + + + /** + * Count the number of Yammer notices we've mapped into our system! + * + * @return int + */ + public function countSavedNotices() + { + $map = new Yammer_notice(); + return $map->count(); + } + } From 35119f4072f93911e1cc2a8f99e36c757ae25e3d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 16:15:45 -0700 Subject: [PATCH 175/310] Pretty up the Yammer import status display a bit --- .../YammerImport/actions/yammeradminpanel.php | 31 ++++++----- plugins/YammerImport/css/admin.css | 49 +++++++++++++++++- plugins/YammerImport/css/done.png | Bin 0 -> 991 bytes plugins/YammerImport/css/icon_processing.gif | Bin 0 -> 673 bytes 4 files changed, 66 insertions(+), 14 deletions(-) create mode 100644 plugins/YammerImport/css/done.png create mode 100644 plugins/YammerImport/css/icon_processing.gif diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 2c9f412a24..12df3c2022 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -175,32 +175,37 @@ class YammerAdminPanelForm extends AdminForm $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); + $this->out->elementStart('div', array('class' => 'yammer-import')); foreach ($steps as $step => $state) { if ($step < $currentStep) { // This step is done - $this->progressBar($labels[$state]['label'], - $labels[$state]['complete'], - 'complete'); + $this->progressBar($state, + 'complete', + $labels[$state]['label'], + $labels[$state]['complete']); } else if ($step == $currentStep) { // This step is in progress - $this->progressBar($labels[$state]['label'], - $labels[$state]['progress'], - 'progress'); + $this->progressBar($state, + 'progress', + $labels[$state]['label'], + $labels[$state]['progress']); } else { // This step has not yet been done. - $this->progressBar($labels[$state]['label'], - _m("Waiting..."), - 'waiting'); + $this->progressBar($state, + 'waiting', + $labels[$state]['label'], + _m("Waiting...")); } } + $this->out->elementEnd('div'); } - private function progressBar($label, $status, $class) + private function progressBar($state, $class, $label, $status) { // @fixme prettify ;) - $this->out->elementStart('div', array('class' => $class)); - $this->out->element('p', array(), $label); - $this->out->element('p', array(), $status); + $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); + $this->out->element('div', array('class' => 'import-label'), $label); + $this->out->element('div', array('class' => 'import-status'), $status); $this->out->elementEnd('div'); } diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index c1462237a5..28d52d07c6 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -1,11 +1,58 @@ +.yammer-import { + background-color: #eee; + + border: solid 1px; + border-radius: 8px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + -opera-border-radius: 8px; + + padding: 16px; +} + +.import-step { + padding: 8px; +} +.import-label { + font-weight: bold; +} +.import-status { + margin-left: 20px; + padding-left: 20px; +} + + .waiting { color: #888; } .progress { + background-color: #fff; + border-radius: 8px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + -opera-border-radius: 8px; +} + +.progress .import-label { color: blue; } -.done { +.progress .import-status { + background-image: url(icon_processing.gif); + background-repeat: no-repeat; +} + +.complete { color: black; } + +.complete .import-status { + background-image: url(done.png); + background-repeat: no-repeat; +} + +.import-step-done .import-status { + /* override */ + background: none !important; +} diff --git a/plugins/YammerImport/css/done.png b/plugins/YammerImport/css/done.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3f4115014653df14a79c51bfaa86340bbe2e03 GIT binary patch literal 991 zcmV<510ei~P)ma9mi6K=}4q%MH*rRO%S0%qN!987bXUXNm5K>%x*)bti$qbxQsm#HQYf{pojXVOj=;2xg`66+g6X-tY=34?vtNI^>FN)E^#V!& zv~F;_1A8Xp%QA)lVHyYvOxwVYiz>T?xNY0)?dYN7u^sGq`RzB-tIX8^LYP>q*XMT? zrmpMR>Ziqh0x2cF?-K+8XRm$3WTnsmU@1u;r9?@Hq{h*4UR}GNxShl>3>p#{ zx;Gs`YfThIl*?sGr6R}A_t5vtQC#t`1cV4Zt}7L(NNS=`<5fHke7=oKg>xvS&|0IE zA`C-{#UfMFcRAeu4*i#o;+P4h?-a)XWy*OfxwXlz$n=&=xgb|RoM&+KEAs9d>YNAg zJdaYT#GjKlIrQyYT)K6RDAZ)!CN2+7d{UfH7fitL{Bqd#Z1$C6aSkOH8Xkl`L!&3j z)U2e|bQv4J$e~kjQkc9-B*978Bt-4h&%M)oR6u9~x;&+RYg}n>P3IC>-}jM$Mo9?6 zkdZ%5Q}N0i8~Tu$;uMAf@uWp_QymX zsL*Ob)WTd)c|2*+Soa_oPELF}db-k$W*$&xb>5uFCo23@8i*y$M_bw&bG6HC>>6-V zCN=dIDK}0!vkbgMW$?4{k8XVL_W(W+0>&aE0mOkCAd_5fbmZ67bUyTWvMo_>x++4> zP6XpOFZ?}x`(pTo^tcSn0rP-dER7{QNdOiQtGZQnRRsh~!Bva`_y_%#tFU>{Dfj>Y N002ovPDHLkV1mlL*&P4? literal 0 HcmV?d00001 diff --git a/plugins/YammerImport/css/icon_processing.gif b/plugins/YammerImport/css/icon_processing.gif new file mode 100644 index 0000000000000000000000000000000000000000..d0bce1542342e912da81a2c260562df172f30d73 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nnmm28Kh24mmkF0U1e2Nli^nlO|14{Lk&@8WQa67~pE8 zXTZz|lvDgC+Z`3#dv5h=E26FfcG1 zbL_hF&)}42ws10s6^G;;cE1^EoUR)U5A70}d2pLv!jVIT7j&Z~EblI3x0K*v_sV|m z0kj3v921Z^em#l`(k(o@H$3ZdDRc@9NidXDNbqrumReCGv$gd8+e8WW28HVqkJ_9i zH>s*<31KtHjANIPvi2#*6BEu%3Dak5O_t&NBI)H?V$TxT}#l{vOTn5naXTfF^&~Hhq+NX@#Ccc>y7T?;vjI&jdhsDsPJyAw*m0Qz>i}K7# zL9w50Ng{fT}A5JUe8lRK1h7_Y2;BWJDd=c6f&i?Wv5(5q?6|P zQw{>maxZP<537OA37Uk}7@%_$4o$EWe_Zl>&#id|lE-BpDC#+Fn|msJ%_2h{Hg1vP z#N8WAzfWasG}yq|xqE)DrWaOofX=z|?*pgc%{ig5vl!pqDlC|q&~Z0$&Rvsft&VO- z4MZj+%-+Vx%W}v;V76hyp=;+R;x+~t^Q%*xuFTQAF2})fSfTHDAs>sO!OBw`)&)o$ c0!CNZt))x~rAZP^^P&YOFfdqy5)K#u0POD40{{R3 literal 0 HcmV?d00001 From 19adb7c8d3aadcc71a24b9d30ad0742b43ecb328 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 16:27:33 -0700 Subject: [PATCH 176/310] Pretty it up a bit more --- plugins/YammerImport/actions/yammeradminpanel.php | 5 +++-- plugins/YammerImport/css/admin.css | 11 ++--------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 12df3c2022..13c95e37f7 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -175,7 +175,8 @@ class YammerAdminPanelForm extends AdminForm $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); - $this->out->elementStart('div', array('class' => 'yammer-import')); + $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $this->out->element('legend', array(), _m('Import status')); foreach ($steps as $step => $state) { if ($step < $currentStep) { // This step is done @@ -197,7 +198,7 @@ class YammerAdminPanelForm extends AdminForm _m("Waiting...")); } } - $this->out->elementEnd('div'); + $this->out->elementEnd('fieldset'); } private function progressBar($state, $class, $label, $status) diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 28d52d07c6..4c1aaacd64 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -1,12 +1,4 @@ .yammer-import { - background-color: #eee; - - border: solid 1px; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; - -opera-border-radius: 8px; - padding: 16px; } @@ -27,7 +19,8 @@ } .progress { - background-color: #fff; + background-color: white; + border: solid 1px blue; border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px; From ebbbaba378bbe174ceb5e76477db89ef647304e5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 17:22:44 -0700 Subject: [PATCH 177/310] Work in progress on getting the frontend Yammer import form going.... --- plugins/YammerImport/YammerImportPlugin.php | 8 +- .../YammerImport/actions/yammeradminpanel.php | 205 +++++------------- plugins/YammerImport/actions/yammerauth.php | 88 ++++++-- .../YammerImport/lib/yammerauthinitform.php | 71 ++++++ .../YammerImport/lib/yammerauthverifyform.php | 82 +++++++ .../YammerImport/lib/yammerprogressform.php | 128 +++++++++++ 6 files changed, 420 insertions(+), 162 deletions(-) create mode 100644 plugins/YammerImport/lib/yammerauthinitform.php create mode 100644 plugins/YammerImport/lib/yammerauthverifyform.php create mode 100644 plugins/YammerImport/lib/yammerprogressform.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 85eab74c04..bb1e976186 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -36,6 +36,8 @@ class YammerImportPlugin extends Plugin { $m->connect('admin/yammer', array('action' => 'yammeradminpanel')); + $m->connect('admin/yammer/auth', + array('action' => 'yammerauth')); return true; } @@ -117,10 +119,14 @@ class YammerImportPlugin extends Plugin case 'sn_yammerclient': case 'yammerimporter': case 'yammerrunner': + case 'yammerauthinitform': + case 'yammerauthverifyform': + case 'yammerprogressform': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': - require_once "$base/actions/yammeradminpanel.php"; + $crop = substr($lower, 0, strlen($lower) - strlen('action')); + require_once "$base/actions/$crop.php"; return false; case 'yammer_state': case 'yammer_notice_stub': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 13c95e37f7..56e721d03c 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -53,6 +53,43 @@ class YammeradminpanelAction extends AdminPanelAction return _m('Yammer import tool'); } + function prepare($args) + { + $ok = parent::prepare($args); + + $this->init_auth = $this->trimmed('init_auth'); + $this->verify_token = $this->trimmed('verify_token'); + + return $ok; + } + + function handle($args) + { + if ($this->init_auth) { + $url = $runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $url); + return $this->showAjaxForm($form); + } else if ($this->verify_token) { + $runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + return $this->showAjaxForm($form); + } + + return parent::handle($args); + } + + function showAjaxForm($form) + { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Yammer import')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } + /** * Show the Yammer admin panel form * @@ -60,9 +97,24 @@ class YammeradminpanelAction extends AdminPanelAction */ function showForm() { - $form = new YammerAdminPanelForm($this); + $this->elementStart('fieldset'); + + $runner = YammerRunner::init(); + + switch($runner->state()) + { + case 'init': + $form = new YammerAuthInitForm($this); + break; + case 'requesting-auth': + $form = new YammerAuthVerifyForm($this, $runner); + break; + default: + $form = new YammerProgressForm($this, $runner); + } $form->show(); - return; + + $this->elementEnd('fieldset'); } function showStylesheets() @@ -70,153 +122,10 @@ class YammeradminpanelAction extends AdminPanelAction parent::showStylesheets(); $this->cssLink('plugins/YammerImport/css/admin.css', null, 'screen, projection, tv'); } -} -class YammerAdminPanelForm extends AdminForm -{ - /** - * ID of the form - * - * @return string ID of the form - */ - function id() + function showScripts() { - return 'yammeradminpanel'; - } - - /** - * class of the form - * - * @return string class of the form - */ - function formClass() - { - return 'form_settings'; - } - - /** - * Action of the form - * - * @return string URL of the action - */ - function action() - { - return common_local_url('yammeradminpanel'); - } - - /** - * Data elements of the form - * - * @return void - */ - function formData() - { - $runner = YammerRunner::init(); - - switch($runner->state()) - { - case 'init': - case 'requesting-auth': - $this->showAuthForm(); - default: - } - $this->showImportState($runner); - } - - private function showAuthForm() - { - $this->out->element('p', array(), 'show an auth form'); - } - - private function showImportState(YammerRunner $runner) - { - $userCount = $runner->countUsers(); - $groupCount = $runner->countGroups(); - $fetchedCount = $runner->countFetchedNotices(); - $savedCount = $runner->countSavedNotices(); - - $labels = array( - 'init' => array( - 'label' => _m("Initialize"), - 'progress' => _m('No import running'), - 'complete' => _m('Initiated Yammer server connection...'), - ), - 'requesting-auth' => array( - 'label' => _m('Connect to Yammer'), - 'progress' => _m('Awaiting authorization...'), - 'complete' => _m('Connected.'), - ), - 'import-users' => array( - 'label' => _m('Import user accounts'), - 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), - 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), - ), - 'import-groups' => array( - 'label' => _m('Import user groups'), - 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), - 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), - ), - 'fetch-messages' => array( - 'label' => _m('Prepare public notices for import'), - 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), - 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), - ), - 'save-messages' => array( - 'label' => _m('Import public notices'), - 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), - 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), - ), - 'done' => array( - 'label' => _m('Done'), - 'progress' => sprintf(_m("Import is complete!")), - 'complete' => sprintf(_m("Import is complete!")), - ) - ); - $steps = array_keys($labels); - $currentStep = array_search($runner->state(), $steps); - - $this->out->elementStart('fieldset', array('class' => 'yammer-import')); - $this->out->element('legend', array(), _m('Import status')); - foreach ($steps as $step => $state) { - if ($step < $currentStep) { - // This step is done - $this->progressBar($state, - 'complete', - $labels[$state]['label'], - $labels[$state]['complete']); - } else if ($step == $currentStep) { - // This step is in progress - $this->progressBar($state, - 'progress', - $labels[$state]['label'], - $labels[$state]['progress']); - } else { - // This step has not yet been done. - $this->progressBar($state, - 'waiting', - $labels[$state]['label'], - _m("Waiting...")); - } - } - $this->out->elementEnd('fieldset'); - } - - private function progressBar($state, $class, $label, $status) - { - // @fixme prettify ;) - $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); - $this->out->element('div', array('class' => 'import-label'), $label); - $this->out->element('div', array('class' => 'import-status'), $status); - $this->out->elementEnd('div'); - } - - /** - * Action elements - * - * @return void - */ - function formActions() - { - // No submit buttons needed at bottom + parent::showScripts(); + $this->script('plugins/YammerImport/js/yammer-admin.js'); } } diff --git a/plugins/YammerImport/actions/yammerauth.php b/plugins/YammerImport/actions/yammerauth.php index 7e6e7204ae..d0d4b40c71 100644 --- a/plugins/YammerImport/actions/yammerauth.php +++ b/plugins/YammerImport/actions/yammerauth.php @@ -1,17 +1,79 @@ . + * + * @category Settings + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ - -function showYammerAuth() -{ - $token = $yam->requestToken(); - $url = $yam->authorizeUrl($token); - - // We're going to try doing this in an iframe; if that's not happy - // we can redirect but there doesn't seem to be a way to get Yammer's - // oauth to call us back instead of the manual copy. :( - - //common_redirect($url, 303); - $this->element('iframe', array('id' => 'yammer-oauth', - 'src' => $url)); +if (!defined('STATUSNET')) { + exit(1); +} + +class YammerauthAction extends AdminPanelAction +{ + + /** + * Show the Yammer admin panel form + * + * @return void + */ + function prepare($args) + { + parent::prepare($args); + + $this->verify_token = $this->trim('verify_token'); + } + + /** + * Handle request + * + * Does the subscription and returns results. + * + * @param Array $args unused. + * + * @return void + */ + + function handle($args) + { + if ($this->verify_token) { + $runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + } else { + $url = $runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $url); + } + + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Connect to Yammer')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } } diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php new file mode 100644 index 0000000000..559ec4e7cc --- /dev/null +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -0,0 +1,71 @@ +out->element('legend', null, _m('Connect to Yammer')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->submit('submit', _m('Connect to Yammer'), 'submit', null, _m('Request authorization to connect to Yammer account')); + } +} diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php new file mode 100644 index 0000000000..488b5b8d1f --- /dev/null +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -0,0 +1,82 @@ +verify_url = $auth_url; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + + function id() + { + return 'yammer-auth-verify-form'; + } + + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_yammer_auth_verify'; + } + + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('yammeradminpanel'); + } + + + /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _m('Connect to Yammer')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->input('verify-code', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); + $this->element('iframe', array('id' => 'yammer-oauth', + 'src' => $this->auth_url)); + } +} diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php new file mode 100644 index 0000000000..776efa100f --- /dev/null +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -0,0 +1,128 @@ +countUsers(); + $groupCount = $runner->countGroups(); + $fetchedCount = $runner->countFetchedNotices(); + $savedCount = $runner->countSavedNotices(); + + $labels = array( + 'init' => array( + 'label' => _m("Initialize"), + 'progress' => _m('No import running'), + 'complete' => _m('Initiated Yammer server connection...'), + ), + 'requesting-auth' => array( + 'label' => _m('Connect to Yammer'), + 'progress' => _m('Awaiting authorization...'), + 'complete' => _m('Connected.'), + ), + 'import-users' => array( + 'label' => _m('Import user accounts'), + 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), + 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), + ), + 'import-groups' => array( + 'label' => _m('Import user groups'), + 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), + 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), + ), + 'fetch-messages' => array( + 'label' => _m('Prepare public notices for import'), + 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), + 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), + ), + 'save-messages' => array( + 'label' => _m('Import public notices'), + 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), + 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), + ), + 'done' => array( + 'label' => _m('Done'), + 'progress' => sprintf(_m("Import is complete!")), + 'complete' => sprintf(_m("Import is complete!")), + ) + ); + $steps = array_keys($labels); + $currentStep = array_search($runner->state(), $steps); + + $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $this->out->element('legend', array(), _m('Import status')); + foreach ($steps as $step => $state) { + if ($state == 'init') { + // Don't show 'init', it's boring. + continue; + } + if ($step < $currentStep) { + // This step is done + $this->progressBar($state, + 'complete', + $labels[$state]['label'], + $labels[$state]['complete']); + } else if ($step == $currentStep) { + // This step is in progress + $this->progressBar($state, + 'progress', + $labels[$state]['label'], + $labels[$state]['progress']); + } else { + // This step has not yet been done. + $this->progressBar($state, + 'waiting', + $labels[$state]['label'], + _m("Waiting...")); + } + } + $this->out->elementEnd('fieldset'); + } + + private function progressBar($state, $class, $label, $status) + { + // @fixme prettify ;) + $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); + $this->out->element('div', array('class' => 'import-label'), $label); + $this->out->element('div', array('class' => 'import-status'), $status); + $this->out->elementEnd('div'); + } + +} From dc63626641b06bfd41ae3407048e0e574e68560b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 24 Sep 2010 18:29:02 -0700 Subject: [PATCH 178/310] Optionally restrict Disqus comments to specific users' notices --- plugins/Disqus/DisqusPlugin.php | 182 +++++++++++++++++++++++--------- 1 file changed, 131 insertions(+), 51 deletions(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index 96bfb4e09f..ec5857dd74 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -45,13 +45,25 @@ if (!defined('STATUSNET')) { * To enable the plugin, put the following in you config.php: * * addPlugin( - * 'Disqus', array( - * 'shortname' => 'YOURSHORTNAME', - * 'div_style' => 'width:675px; padding-top:10px; position:relative; float:left;' - * ) + * 'Disqus', array( + * 'shortname' => 'YOURSHORTNAME', + * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;' + * ) * ); * - * NOTE: the 'div_style' in an optional parameter that passes in some + * If you only want to allow commenting on a specific user's notices or + * a specific set of user's notices, use the "nicknames" array, e.g.: + * + * addPlugin( + * 'Disqus', array( + * 'shortname' => 'YOURSHORTNAME', + * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;', + * 'nicknames' => array('spock', 'kirk', 'bones') + * ) + * ); + * + * + * NOTE: the 'divStyle' in an optional parameter that passes in some * inline CSS when creating the Disqus widget. It's a shortcut to make * the widget look OK with the default StatusNet theme. If you leave * it out you'll have to edit your theme CSS files to make the widget @@ -60,6 +72,7 @@ if (!defined('STATUSNET')) { * * See: http://help.disqus.com/entries/100878-css-customization * + * * @category Plugin * @package StatusNet * @author Zach Copley @@ -70,58 +83,76 @@ if (!defined('STATUSNET')) { */ class DisqusPlugin extends Plugin { - public $shortname; // Required 'shortname' for actually triggering Disqus. - public $div_style; // Optional CSS chunk for the main

+ public $shortname; // Required 'shortname' for actually triggering Disqus + public $divStyle; // Optional CSS chunk for the main
+ public $nicknames; // Optional array of nicks to restrict commenting to (default on for all users) + /** + * Add a Disqus commenting section to the end of an individual + * notice page's content block + * + * @param Action $action The current action + */ function onEndShowContentBlock($action) { if (get_class($action) == 'ShownoticeAction') { - $attrs = array(); - $attrs['id'] = 'disqus_thread'; + $profile = Profile::staticGet('id', $action->notice->profile_id); - if ($this->div_style) { - $attrs['style'] = $this->div_style; - } + if ($this->hasCommenting($profile)) { - $action->element('div', $attrs, null); + $attrs = array(); + $attrs['id'] = 'disqus_thread'; - $script = <<divStyle) { + $attrs['style'] = $this->divStyle; + } + + $action->element('div', $attrs, null); + + $script = <<inlineScript(sprintf($script, $action->notice->id, $this->shortname)); + $action->inlineScript(sprintf($script, $action->notice->id, $this->shortname)); - $attrs = array(); + $attrs = array(); - $attrs['id'] = 'disqus_thread_footer'; + $attrs['id'] = 'disqus_thread_footer'; - if ($this->div_style) { - $attrs['style'] = $this->div_style; + if ($this->divStyle) { + $attrs['style'] = $this->divStyle; + } + + $action->elementStart('div', $attrs); + $action->elementStart('noscript'); + + $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname); + $output = common_markup_to_html($noScriptMsg); + $action->raw($output); + + $action->elementEnd('noscript'); + + $action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink')); + $action->raw(_m('Comments powered by ')); + $action->element('span', array('class' => 'logo-disqus'), 'Disqus'); + $action->elementEnd('a'); + $action->elementEnd('div'); } - - $action->elementStart('div', $attrs); - $action->elementStart('noscript'); - - $noScriptMsg = sprintf(_m("Please enable JavaScript to view the [comments powered by Disqus](http://disqus.com/?ref_noscript=%s)."), $this->shortname); - $output = common_markup_to_html($noScriptMsg); - $action->raw($output); - - $action->elementEnd('noscript'); - - $action->elementStart('a', array('href' => 'http://disqus.com', 'class' => 'dsq-brlink')); - $action->raw(_m('Comments powered by ')); - $action->element('span', array('class' => 'logo-disqus'), 'Disqus'); - $action->elementEnd('a'); - $action->elementEnd('div'); } } + /** + * Add Disqus comment count script to the end of the scripts section + * + * @param Action $action the current action + * + */ function onEndShowScripts($action) { // fugly @@ -135,31 +166,80 @@ var disqus_shortname = '%s'; ENDOFSCRIPT; $action->inlineScript(sprintf($script, $this->shortname, $this->shortname)); - return true; } + /** + * Override the default Notice display to add Disqus comments link + * (the link displays the total number of comments for each notice) + * + * @param NoticeListItem $noticeListItem + * + * @return boolean override + */ function onStartShowNoticeItem($noticeListItem) { + // Don't enable commenting for remote notices if (empty($noticeListItem->notice->is_local)) { return true; } - $noticeListItem->showNotice(); - $noticeListItem->showNoticeInfo(); + $profile = Profile::staticGet('id', $noticeListItem->notice->profile_id); - $noticeUrl = $noticeListItem->notice->bestUrl(); - $noticeUrl .= '#disqus_thread'; + if ($this->hasCommenting($profile)) { - $noticeListItem->out->element( - 'a', array('href' => $noticeUrl, 'class' => 'disqus_count'), 'Comments' - ); + // @todo Refactor individual notice display to have it's own event hooks - $noticeListItem->showNoticeOptions(); - Event::handle('EndShowNoticeItem', array($noticeListItem)); + $noticeListItem->showNotice(); + $noticeListItem->showNoticeInfo(); - return false; + $noticeUrl = $noticeListItem->notice->bestUrl(); + $noticeUrl .= '#disqus_thread'; + + $noticeListItem->out->element( + 'a', array('href' => $noticeUrl, 'class' => 'disqus_count'), 'Comments' + ); + + $noticeListItem->showNoticeOptions(); + Event::handle('EndShowNoticeItem', array($noticeListItem)); + + return false; + } else { + return true; + } } + /** + * Helper to check whether commenting should be enabled + * for a given notice + * + * Assumes commenting should be enabled, unless the + * nicknames array is populated + * + * @param Profile $profile the profile to check + * + * @return boolean true if yes + */ + private function hasCommenting($profile) + { + if (!empty($this->nicknames)) { + foreach ($this->nicknames as $nickname) { + if ($profile->nickname == $nickname) { + return true; + } + } + return false; + } + + return true; + } + + /** + * Plugin details + * + * @param &$versions Array of current plugins + * + * @return boolean true + */ function onPluginVersion(&$versions) { $versions[] = array('name' => 'Disqus', From a6469aeed88a400d5d38d75a210417de4af4eea7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 25 Sep 2010 12:10:36 -0700 Subject: [PATCH 179/310] Fix PHP syntax errors introduced during localization fixups in a few files. --- actions/groupmembers.php | 2 +- plugins/CasAuthentication/CasAuthenticationPlugin.php | 6 +++--- plugins/Imap/ImapPlugin.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/actions/groupmembers.php b/actions/groupmembers.php index 038d1db68a..d03d0b5a3a 100644 --- a/actions/groupmembers.php +++ b/actions/groupmembers.php @@ -400,7 +400,7 @@ class GroupBlockForm extends Form 'submit', null, // TRANS: Submit button title. - _m('TOOLTIP',_('Block this user')); + _m('TOOLTIP', 'Block this user')); } } diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 6b751a0aa4..71e54d41f9 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -125,13 +125,13 @@ class CasAuthenticationPlugin extends AuthenticationPlugin function onInitializePlugin(){ parent::onInitializePlugin(); if(!isset($this->server)){ - throw new Exception(_m("Specifying a server is required."); + throw new Exception(_m("Specifying a server is required.")); } if(!isset($this->port)){ - throw new Exception(_m("Specifying a port is required."); + throw new Exception(_m("Specifying a port is required.")); } if(!isset($this->path)){ - throw new Exception(_m("Specifying a path is required."); + throw new Exception(_m("Specifying a path is required.")); } //These values need to be accessible to a action object //I can't think of any other way than global variables diff --git a/plugins/Imap/ImapPlugin.php b/plugins/Imap/ImapPlugin.php index 1661ed86ea..8d8dbf223f 100644 --- a/plugins/Imap/ImapPlugin.php +++ b/plugins/Imap/ImapPlugin.php @@ -54,7 +54,7 @@ class ImapPlugin extends Plugin throw new Exception(_m("A mailbox must be specified.")); } if(!isset($this->user)){ - throw new Exception(_m("A user must be specified."); + throw new Exception(_m("A user must be specified.")); } if(!isset($this->password)){ throw new Exception(_m("A password must be specified.")); From 617b6f4f7d3496ad5d8b36d59f7afd761c7650b0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 11:29:54 -0700 Subject: [PATCH 180/310] User user_group.uri to look up local groups for OStatus addressing checks when available. Will still fall back to the URL-scheme-checking code if there's no matching user_group record. Should help with keeping remote groups working when renaming sites -- as long as user_group.uri has been filled out on the site changing its domain and other issues with POST handling are resolved. --- plugins/OStatus/OStatusPlugin.php | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 6cd935c9e5..dcf1b36078 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -956,7 +956,7 @@ class OStatusPlugin extends Plugin } /** - * Utility function to check if the given URL is a canonical group profile + * Utility function to check if the given URI is a canonical group profile * page, and if so return the ID number. * * @param string $url @@ -964,11 +964,22 @@ class OStatusPlugin extends Plugin */ public static function localGroupFromUrl($url) { - $template = common_local_url('groupbyid', array('id' => '31337')); - $template = preg_quote($template, '/'); - $template = str_replace('31337', '(\d+)', $template); - if (preg_match("/$template/", $url, $matches)) { - return intval($matches[1]); + $group = User_group::staticGet('uri', $url); + if ($group) { + $local = Local_group::staticGet('id', $group->id); + if ($local) { + return $group->id; + } + } else { + // To find local groups which haven't had their uri fields filled out... + // If the domain has changed since a subscriber got the URI, it'll + // be broken. + $template = common_local_url('groupbyid', array('id' => '31337')); + $template = preg_quote($template, '/'); + $template = str_replace('31337', '(\d+)', $template); + if (preg_match("/$template/", $url, $matches)) { + return intval($matches[1]); + } } return false; } From 80e0e60c3722cd542911187d2644866df3867138 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 11:38:26 -0700 Subject: [PATCH 181/310] Add a comment in UserxrdAction warning future maintainers not to break domain migrations if adding domain checking to the webfinger lookup in future. --- plugins/OStatus/actions/userxrd.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/OStatus/actions/userxrd.php b/plugins/OStatus/actions/userxrd.php index 9aa7c0306d..8179505a55 100644 --- a/plugins/OStatus/actions/userxrd.php +++ b/plugins/OStatus/actions/userxrd.php @@ -37,6 +37,8 @@ class UserxrdAction extends XrdAction if (count($parts) == 2) { list($nick, $domain) = $parts; // @fixme confirm the domain too + // @fixme if domain checking is added, ensure that it will not + // cause problems with sites that have changed domains! $nick = common_canonical_nickname($nick); $this->user = User::staticGet('nickname', $nick); } From eeaab2bc0072a7f836000c1d817d59c663423998 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 12:24:10 -0700 Subject: [PATCH 182/310] Work in progress on fixing auth... looks like the iframe doesn't work though. Sigh. --- .../YammerImport/actions/yammeradminpanel.php | 38 +++++++++++-------- .../YammerImport/lib/yammerauthinitform.php | 1 + .../YammerImport/lib/yammerauthverifyform.php | 12 +++--- plugins/YammerImport/lib/yammerrunner.php | 21 ++++++++-- .../YammerImport/scripts/yammer-import.php | 2 + 5 files changed, 49 insertions(+), 25 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 56e721d03c..71651cdf56 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -33,6 +33,8 @@ if (!defined('STATUSNET')) { class YammeradminpanelAction extends AdminPanelAction { + private $runner; + /** * Returns the page title * @@ -59,23 +61,29 @@ class YammeradminpanelAction extends AdminPanelAction $this->init_auth = $this->trimmed('init_auth'); $this->verify_token = $this->trimmed('verify_token'); + $this->runner = YammerRunner::init(); return $ok; } function handle($args) { - if ($this->init_auth) { - $url = $runner->requestAuth(); - $form = new YammerAuthVerifyForm($this, $url); - return $this->showAjaxForm($form); - } else if ($this->verify_token) { - $runner->saveAuthToken($this->verify_token); - $form = new YammerAuthProgressForm(); - return $this->showAjaxForm($form); + if ($_SERVER['REQUEST_METHOD'] == 'POST') { + $this->checkSessionToken(); + if ($this->init_auth) { + $url = $this->runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $this->runner); + return $this->showAjaxForm($form); + } else if ($this->verify_token) { + $this->runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + return $this->showAjaxForm($form); + } else { + throw new ClientException('Invalid POST'); + } + } else { + return parent::handle($args); } - - return parent::handle($args); } function showAjaxForm($form) @@ -99,18 +107,16 @@ class YammeradminpanelAction extends AdminPanelAction { $this->elementStart('fieldset'); - $runner = YammerRunner::init(); - - switch($runner->state()) + switch($this->runner->state()) { case 'init': - $form = new YammerAuthInitForm($this); + $form = new YammerAuthInitForm($this, $this->runner); break; case 'requesting-auth': - $form = new YammerAuthVerifyForm($this, $runner); + $form = new YammerAuthVerifyForm($this, $this->runner); break; default: - $form = new YammerProgressForm($this, $runner); + $form = new YammerProgressForm($this, $this->runner); } $form->show(); diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php index 559ec4e7cc..5a83a06c21 100644 --- a/plugins/YammerImport/lib/yammerauthinitform.php +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -56,6 +56,7 @@ class YammerAuthInitForm extends Form function formData() { + $this->out->hidden('init_auth', '1'); } /** diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 488b5b8d1f..dc9d2ce1b2 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -2,12 +2,12 @@ class YammerAuthVerifyForm extends Form { - private $verify_url; + private $runner; - function __construct($out, $auth_url) + function __construct($out, YammerRunner $runner) { parent::__construct($out); - $this->verify_url = $auth_url; + $this->runner = $runner; } /** @@ -64,6 +64,9 @@ class YammerAuthVerifyForm extends Form function formData() { + $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->element('iframe', array('id' => 'yammer-oauth', + 'src' => $this->runner->getAuthUrl())); } /** @@ -74,9 +77,6 @@ class YammerAuthVerifyForm extends Form function formActions() { - $this->out->input('verify-code', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); - $this->element('iframe', array('id' => 'yammer-oauth', - 'src' => $this->auth_url)); } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e0aadff2c3..aee6b17e15 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -123,7 +123,7 @@ class YammerRunner public function requestAuth() { if ($this->state->state != 'init') { - throw ServerError("Cannot request Yammer auth; already there!"); + throw new ServerException("Cannot request Yammer auth; already there!"); } $data = $this->client->requestToken(); @@ -135,7 +135,22 @@ class YammerRunner $this->state->modified = common_sql_now(); $this->state->update($old); - return $this->client->authorizeUrl($this->state->oauth_token); + return $this->getAuthUrl(); + } + + /** + * When already in requesting-auth state, grab the URL to send the user to + * to complete OAuth setup. + * + * @return string URL + */ + function getAuthUrl() + { + if ($this->state() == 'requesting-auth') { + return $this->client->authorizeUrl($this->state->oauth_token); + } else { + throw new ServerException('Cannot get Yammer auth URL when not in requesting-auth state!'); + } } /** @@ -152,7 +167,7 @@ class YammerRunner public function saveAuthToken($verifier) { if ($this->state->state != 'requesting-auth') { - throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); + throw new ServerException("Cannot save auth token in Yammer import state {$this->state->state}"); } $data = $this->client->accessToken($verifier); diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index 1491cfd308..b4aa921e50 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -16,6 +16,8 @@ $runner = YammerRunner::init(); if (have_option('reset')) { echo "Resetting Yammer import state...\n"; $runner->reset(); + echo "done.\n"; + exit(0); } switch ($runner->state()) From 05c12c58bb99332c8117160e85a724319333d1f1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 12:34:01 -0700 Subject: [PATCH 183/310] Ok, got the AJAX clicky-throughs working for yammer auth (if app is already registered), but needs prettification. Yammer ignores callback URLs unless they're pre-registered with the app, and this apparently requires manual intervention to become a 'trusted' app, you don't get it on those you register yourself. Sigh. Also can't use an iframe since it breaks out of the frame (fair 'nuff) --- plugins/YammerImport/actions/yammeradminpanel.php | 2 +- plugins/YammerImport/lib/yammerauthverifyform.php | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 71651cdf56..fdf7a084f4 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -76,7 +76,7 @@ class YammeradminpanelAction extends AdminPanelAction return $this->showAjaxForm($form); } else if ($this->verify_token) { $this->runner->saveAuthToken($this->verify_token); - $form = new YammerAuthProgressForm(); + $form = new YammerProgressForm($this, $this->runner); return $this->showAjaxForm($form); } else { throw new ClientException('Invalid POST'); diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index dc9d2ce1b2..96decea102 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -65,8 +65,17 @@ class YammerAuthVerifyForm extends Form function formData() { $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + + // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O + /* $this->out->element('iframe', array('id' => 'yammer-oauth', 'src' => $this->runner->getAuthUrl())); + */ + // yeah, it ignores the callback_url + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + 'clicky click'); } /** From 585c7f35ca5141d85a8d2f20e9b62a99cbf03f4e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 13:34:35 -0700 Subject: [PATCH 184/310] Yammer import (work run via background queues) now can be started from the admin panel! :DDDD Still requires that the app be registered on your network manually first. --- plugins/YammerImport/YammerImportPlugin.php | 3 ++- .../YammerImport/actions/yammeradminpanel.php | 4 ++++ .../YammerImport/lib/yammerauthverifyform.php | 19 ++++++++++++++----- .../YammerImport/lib/yammerqueuehandler.php | 3 +-- plugins/YammerImport/lib/yammerrunner.php | 9 +++++++++ 5 files changed, 30 insertions(+), 8 deletions(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index bb1e976186..547870936b 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -48,7 +48,7 @@ class YammerImportPlugin extends Plugin */ function onEndInitializeQueueManager(QueueManager $qm) { - $qm->connect('importym', 'ImportYmQueueHandler'); + $qm->connect('yammer', 'YammerQueueHandler'); return true; } @@ -122,6 +122,7 @@ class YammerImportPlugin extends Plugin case 'yammerauthinitform': case 'yammerauthverifyform': case 'yammerprogressform': + case 'yammerqueuehandler': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index fdf7a084f4..04ef26d512 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -76,6 +76,10 @@ class YammeradminpanelAction extends AdminPanelAction return $this->showAjaxForm($form); } else if ($this->verify_token) { $this->runner->saveAuthToken($this->verify_token); + + // Haho! Now we can make THE FUN HAPPEN + $this->runner->startBackgroundImport(); + $form = new YammerProgressForm($this, $this->runner); return $this->showAjaxForm($form); } else { diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 96decea102..2b3efbcb1a 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -64,7 +64,20 @@ class YammerAuthVerifyForm extends Form function formData() { - $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->elementStart('p'); + $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:')); + $this->out->elementEnd('p'); + + $this->out->elementStart('blockquote'); + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + _m('Open Yammer authentication window')); + $this->out->elementEnd('blockquote'); + + $this->out->element('p', array(), _m('Copy the verification code you are given into the form below:')); + + $this->out->input('verify_token', _m('Verification code:')); // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O /* @@ -72,10 +85,6 @@ class YammerAuthVerifyForm extends Form 'src' => $this->runner->getAuthUrl())); */ // yeah, it ignores the callback_url - $this->out->element('a', - array('href' => $this->runner->getAuthUrl(), - 'target' => '_blank'), - 'clicky click'); } /** diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index 5fc3777835..acc8073115 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -41,8 +41,7 @@ class YammerQueueHandler extends QueueHandler if ($runner->iterate()) { if ($runner->hasWork()) { // More to do? Shove us back on the queue... - $qm = QueueManager::get(); - $qm->enqueue('YammerImport', 'yammer'); + $runner->startBackgroundImport(); } return true; } else { diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index aee6b17e15..e0aec0d166 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -386,4 +386,13 @@ class YammerRunner return $map->count(); } + /** + * Start running import work in the background queues... + */ + public function startBackgroundImport() + { + $qm = QueueManager::get(); + $qm->enqueue('YammerImport', 'yammer'); + } + } From 7c4fcefd314a8f651b2f3fa21bdac869107c81e5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 14:23:10 -0700 Subject: [PATCH 185/310] Enhanced OStatus fixup-shadow.php cleanup script to check for direct matches against user.uri and user_group.uri (for local groups). This should catch cases that were missed before because we were only doing pattern-matching checks, and the pattern didn't match because the site has been renamed and the old URI no longer matches the current domain / path structure. Could use some more thorough testing in practice! --- plugins/OStatus/scripts/fixup-shadow.php | 56 +++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/plugins/OStatus/scripts/fixup-shadow.php b/plugins/OStatus/scripts/fixup-shadow.php index 4b6ad08a31..3e2c18e02f 100644 --- a/plugins/OStatus/scripts/fixup-shadow.php +++ b/plugins/OStatus/scripts/fixup-shadow.php @@ -35,6 +35,58 @@ require_once INSTALLDIR.'/scripts/commandline.inc'; $dry = have_option('dry-run'); +// Look for user.uri matches... These may not match up with the current +// URL schema if the site has changed names. +echo "Checking for bogus ostatus_profile entries matching user.uri...\n"; + +$user = new User(); +$oprofile = new Ostatus_profile(); +$user->joinAdd($oprofile, 'INNER', 'oprofile', 'uri'); +$user->find(); +$count = $user->N; +echo "Found $count...\n"; + +while ($user->fetch()) { + $uri = $user->uri; + echo "user $user->id ($user->nickname) hidden by $uri"; + if ($dry) { + echo " - skipping\n"; + } else { + echo " - removing bogus ostatus_profile entry..."; + $evil = Ostatus_profile::staticGet('uri', $uri); + $evil->delete(); + echo " ok\n"; + } +} +echo "\n"; + +// Also try user_group.uri matches for local groups. +// Not all group entries will have this filled out, though, as it's new! +echo "Checking for bogus ostatus_profile entries matching local user_group.uri...\n"; +$group = new User_group(); +$group->joinAdd(array('uri', 'ostatus_profile:uri')); +$group->joinAdd(array('id', 'local_group:group_id')); +$group->find(); +$count = $group->N; +echo "Found $count...\n"; + +while ($group->fetch()) { + $uri = $group->uri; + echo "group $group->id ($group->nickname) hidden by $uri"; + if ($dry) { + echo " - skipping\n"; + } else { + echo " - removing bogus ostatus_profile entry..."; + $evil = Ostatus_profile::staticGet('uri', $uri); + $evil->delete(); + echo " ok\n"; + } +} +echo "\n"; + + +// Fallback? +echo "Checking for bogus profiles blocking local users/groups by URI pattern match...\n"; $oprofile = new Ostatus_profile(); $marker = mt_rand(31337, 31337000); @@ -42,16 +94,18 @@ $marker = mt_rand(31337, 31337000); $profileTemplate = common_local_url('userbyid', array('id' => $marker)); $encProfile = $oprofile->escape($profileTemplate, true); $encProfile = str_replace($marker, '%', $encProfile); +echo " LIKE '$encProfile'\n"; $groupTemplate = common_local_url('groupbyid', array('id' => $marker)); $encGroup = $oprofile->escape($groupTemplate, true); $encGroup = str_replace($marker, '%', $encGroup); +echo " LIKE '$encGroup'\n"; $sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'"; $oprofile->query(sprintf($sql, $encProfile, $encGroup)); $count = $oprofile->N; -echo "Found $count bogus ostatus_profile entries shadowing local users and groups:\n"; +echo "Found $count...\n"; while ($oprofile->fetch()) { $uri = $oprofile->uri; From d684a07fd93fe46c6195b0aeb56fcf01812ef60d Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 27 Sep 2010 15:01:03 -0700 Subject: [PATCH 186/310] Move hasFave() to Profile --- classes/Profile.php | 35 +++++++++++++++++++++++++++++++++++ classes/User.php | 33 ++------------------------------- 2 files changed, 37 insertions(+), 31 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 8f86795504..1a54489ed8 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -474,6 +474,41 @@ class Profile extends Memcached_DataObject return $cnt; } + function hasFave($notice) + { + $cache = common_memcache(); + + // XXX: Kind of a hack. + + if (!empty($cache)) { + // This is the stream of favorite notices, in rev chron + // order. This forces it into cache. + + $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW); + + // If it's in the list, then it's a fave + + if (in_array($notice->id, $ids)) { + return true; + } + + // If we're not past the end of the cache window, + // then the cache has all available faves, so this one + // is not a fave. + + if (count($ids) < NOTICE_CACHE_WINDOW) { + return false; + } + + // Otherwise, cache doesn't have all faves; + // fall through to the default + } + + $fave = Fave::pkeyGet(array('user_id' => $this->id, + 'notice_id' => $notice->id)); + return ((is_null($fave)) ? false : true); + } + function faveCount() { $c = common_memcache(); diff --git a/classes/User.php b/classes/User.php index b85192b29c..27299e62e0 100644 --- a/classes/User.php +++ b/classes/User.php @@ -412,37 +412,8 @@ class User extends Memcached_DataObject function hasFave($notice) { - $cache = common_memcache(); - - // XXX: Kind of a hack. - - if ($cache) { - // This is the stream of favorite notices, in rev chron - // order. This forces it into cache. - - $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW); - - // If it's in the list, then it's a fave - - if (in_array($notice->id, $ids)) { - return true; - } - - // If we're not past the end of the cache window, - // then the cache has all available faves, so this one - // is not a fave. - - if (count($ids) < NOTICE_CACHE_WINDOW) { - return false; - } - - // Otherwise, cache doesn't have all faves; - // fall through to the default - } - - $fave = Fave::pkeyGet(array('user_id' => $this->id, - 'notice_id' => $notice->id)); - return ((is_null($fave)) ? false : true); + $profile = $this->getProfile(); + return $profile->hasFave($notice); } function mutuallySubscribed($other) From 430d1da976bc9f51304f0a2352a6ea32d01d2097 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 00:03:06 +0200 Subject: [PATCH 187/310] Update POT files. --- plugins/BlankAd/locale/BlankAd.pot | 21 ++++++++++++++ plugins/BlogspamNet/locale/BlogspamNet.pot | 21 ++++++++++++++ plugins/Comet/locale/Comet.pot | 21 ++++++++++++++ plugins/DiskCache/locale/DiskCache.pot | 21 ++++++++++++++ plugins/Disqus/locale/Disqus.pot | 15 ++++++++-- plugins/Meteor/locale/Meteor.pot | 33 ++++++++++++++++++++++ plugins/OStatus/locale/OStatus.pot | 4 +-- 7 files changed, 132 insertions(+), 4 deletions(-) create mode 100644 plugins/BlankAd/locale/BlankAd.pot create mode 100644 plugins/BlogspamNet/locale/BlogspamNet.pot create mode 100644 plugins/Comet/locale/Comet.pot create mode 100644 plugins/DiskCache/locale/DiskCache.pot create mode 100644 plugins/Meteor/locale/Meteor.pot diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot new file mode 100644 index 0000000000..55a0f9656b --- /dev/null +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 21:40+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" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot new file mode 100644 index 0000000000..1e187badd8 --- /dev/null +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 21:40+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" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot new file mode 100644 index 0000000000..476fbfc58c --- /dev/null +++ b/plugins/Comet/locale/Comet.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 21:40+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" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot new file mode 100644 index 0000000000..8b96fc773e --- /dev/null +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 21:40+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" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index f3c3fa9226..c1bbf1cb64 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-09-27 21:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DisqusPlugin.php:170 +#: DisqusPlugin.php:135 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#: DisqusPlugin.php:142 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:250 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot new file mode 100644 index 0000000000..fd0c16799f --- /dev/null +++ b/plugins/Meteor/locale/Meteor.pot @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 21:40+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: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "" + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 86c1e0acad..f684a138bf 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-09-27 21:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -401,7 +401,7 @@ msgstr "" msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "" -#: actions/userxrd.php:47 actions/ownerxrd.php:37 actions/usersalmon.php:43 +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 msgid "No such user." msgstr "" From def37ee796fb4f29cc62598e933477b2c239cf1e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 00:59:34 +0200 Subject: [PATCH 188/310] Update core POT file. --- locale/statusnet.pot | 355 +++++++++++++++++++++++++++++++------------ 1 file changed, 255 insertions(+), 100 deletions(-) diff --git a/locale/statusnet.pot b/locale/statusnet.pot index c4dfe75f9b..4775cc8f57 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,7 +75,7 @@ msgstr "" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -666,7 +666,7 @@ msgstr "" msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "" @@ -858,9 +858,8 @@ msgid "Yes" msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "" @@ -996,7 +995,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -1090,56 +1089,56 @@ msgid "Design" msgstr "" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "" -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1147,75 +1146,76 @@ msgid "" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1293,7 +1293,7 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "" @@ -1837,6 +1837,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -2229,6 +2235,110 @@ msgstr "" msgid "%1$s left group %2$s" msgstr "" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "" @@ -2452,7 +2562,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2476,7 +2586,7 @@ msgstr "" msgid "Notice has no profile." msgstr "" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "" @@ -2640,7 +2750,7 @@ msgid "Paths" msgstr "" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:157 @@ -3436,7 +3546,7 @@ msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:175 @@ -3456,7 +3566,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -4315,74 +4424,78 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -4394,7 +4507,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "" @@ -4573,6 +4688,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4627,6 +4751,17 @@ msgstr "" msgid "Group leave failed." msgstr "" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4707,18 +4842,18 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4743,7 +4878,7 @@ msgid "Missing profile." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "" @@ -4782,9 +4917,18 @@ msgstr "" msgid "Could not delete subscription." msgstr "" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" @@ -5098,19 +5242,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "" @@ -5218,6 +5362,11 @@ msgstr "" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5301,37 +5450,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "" @@ -5780,10 +5929,6 @@ msgstr "" msgid "Favor this notice" msgstr "" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -5801,7 +5946,7 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" +msgid "Feeds" msgstr "" #: lib/galleryaction.php:121 @@ -5994,10 +6139,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "" - #: lib/leaveform.php:114 msgid "Leave" msgstr "" @@ -6580,7 +6721,7 @@ msgstr "" msgid "Revoke the \"%s\" role from this user" msgstr "" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6804,17 +6945,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6822,12 +6963,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6835,12 +6976,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6848,12 +6989,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6861,7 +7002,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "" @@ -6874,3 +7015,17 @@ msgstr "" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" From 2d08750c47aecf2fa679b30c289c6711d8d4aa14 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 01:02:08 +0200 Subject: [PATCH 189/310] Localisation updates from http://translatewiki.net * add support for Hungarian (hu) --- lib/language.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/language.php b/lib/language.php index 12b56be9ae..86896cff9d 100644 --- a/lib/language.php +++ b/lib/language.php @@ -322,6 +322,7 @@ function get_all_languages() { 'gl' => array('q' => 0.8, 'lang' => 'gl', 'name' => 'Galician', 'direction' => 'ltr'), 'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'), 'hsb' => array('q' => 0.8, 'lang' => 'hsb', 'name' => 'Upper Sorbian', 'direction' => 'ltr'), + 'hu' => array('q' => 0.8, 'lang' => 'hu', 'name' => 'Hungarian', 'direction' => 'ltr'), 'ia' => array('q' => 0.8, 'lang' => 'ia', 'name' => 'Interlingua', 'direction' => 'ltr'), 'is' => array('q' => 0.1, 'lang' => 'is', 'name' => 'Icelandic', 'direction' => 'ltr'), 'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'), From d17f0bf0253efbd9bdc895b7a5a1c61d1cb3ac7e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 01:03:14 +0200 Subject: [PATCH 190/310] Localisation updates from http://translatewiki.net * StatusNet core updates. --- locale/af/LC_MESSAGES/statusnet.po | 332 +++++-- locale/ar/LC_MESSAGES/statusnet.po | 361 +++++--- locale/arz/LC_MESSAGES/statusnet.po | 347 ++++++-- locale/bg/LC_MESSAGES/statusnet.po | 341 ++++++-- locale/br/LC_MESSAGES/statusnet.po | 367 +++++--- locale/ca/LC_MESSAGES/statusnet.po | 373 +++++--- locale/cs/LC_MESSAGES/statusnet.po | 373 +++++--- locale/da/LC_MESSAGES/statusnet.po | 352 ++++++-- locale/de/LC_MESSAGES/statusnet.po | 373 +++++--- locale/en_GB/LC_MESSAGES/statusnet.po | 363 +++++--- locale/eo/LC_MESSAGES/statusnet.po | 1032 +++++++++++++++++----- locale/es/LC_MESSAGES/statusnet.po | 612 ++++++++----- locale/fa/LC_MESSAGES/statusnet.po | 371 +++++--- locale/fi/LC_MESSAGES/statusnet.po | 322 +++++-- locale/fr/LC_MESSAGES/statusnet.po | 449 ++++++---- locale/ga/LC_MESSAGES/statusnet.po | 302 +++++-- locale/gl/LC_MESSAGES/statusnet.po | 406 ++++++--- locale/hsb/LC_MESSAGES/statusnet.po | 351 +++++--- locale/ia/LC_MESSAGES/statusnet.po | 383 +++++--- locale/is/LC_MESSAGES/statusnet.po | 314 +++++-- locale/it/LC_MESSAGES/statusnet.po | 371 +++++--- locale/ja/LC_MESSAGES/statusnet.po | 365 +++++--- locale/ka/LC_MESSAGES/statusnet.po | 373 +++++--- locale/ko/LC_MESSAGES/statusnet.po | 357 ++++++-- locale/mk/LC_MESSAGES/statusnet.po | 398 ++++++--- locale/nb/LC_MESSAGES/statusnet.po | 368 +++++--- locale/nl/LC_MESSAGES/statusnet.po | 381 +++++--- locale/nn/LC_MESSAGES/statusnet.po | 318 +++++-- locale/pl/LC_MESSAGES/statusnet.po | 437 +++++++--- locale/pt/LC_MESSAGES/statusnet.po | 377 +++++--- locale/pt_BR/LC_MESSAGES/statusnet.po | 431 ++++++--- locale/ru/LC_MESSAGES/statusnet.po | 415 ++++++--- locale/sv/LC_MESSAGES/statusnet.po | 427 ++++++--- locale/te/LC_MESSAGES/statusnet.po | 379 +++++--- locale/tr/LC_MESSAGES/statusnet.po | 1161 +++++++++++++++++++++---- locale/uk/LC_MESSAGES/statusnet.po | 412 ++++++--- locale/zh_CN/LC_MESSAGES/statusnet.po | 387 ++++++--- 37 files changed, 11205 insertions(+), 4276 deletions(-) diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 982de63ddd..0c745cd0c9 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:13+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:11+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Stoor toegangsinstellings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -643,7 +643,7 @@ msgstr "Nie gevind nie." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Nie-ondersteunde formaat." @@ -800,9 +800,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -911,7 +910,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -1005,52 +1004,52 @@ msgid "Design" msgstr "Ontwerp" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Die logo-URL is ongeldig." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "IM is nie beskikbaar nie." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Verander logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Webwerf-logo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Verander tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Werf se tema" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema vir die werf." -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Verander die agtergrond-prent" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Agtergrond" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1058,63 +1057,64 @@ msgid "" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Aan" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Af" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Verander kleure" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Inhoud" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Kantstrook" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Skakels" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Gevorderd" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Gebruik verstekwaardes" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Stel terug na standaard" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Stoor ontwerp" @@ -1192,7 +1192,7 @@ msgstr "Die \"callback\" is te lank." msgid "Callback URL is not valid." msgstr "Die \"callback\"-URL is nie geldig nie." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Dit was nie moontlik om die applikasie by te werk nie." @@ -1283,7 +1283,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Kanselleer" @@ -1625,6 +1625,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1972,6 +1978,110 @@ msgstr "U is nie 'n lid van daardie groep nie." msgid "%1$s left group %2$s" msgstr "%1$s het die groep %2$s verlaat" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "U is reeds aangeteken." @@ -2132,7 +2242,7 @@ msgid "Applications you have registered" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -2148,7 +2258,7 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Status van %1$s op %2$s" @@ -2264,7 +2374,7 @@ msgid "Paths" msgstr "Paaie" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:157 @@ -2839,7 +2949,7 @@ msgid "Sessions" msgstr "Sessies" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:177 @@ -3433,54 +3543,58 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Gebruiker" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Profiellimiet" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nuwe gebruikers" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Uitnodigings" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -3488,7 +3602,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisensie" @@ -3635,6 +3751,11 @@ msgstr "Weergawe" msgid "Author(s)" msgstr "Outeur(s)" +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3674,6 +3795,17 @@ msgstr "" msgid "Not part of group." msgstr "Nie lid van die groep nie." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Aansluit" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3722,18 +3854,18 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -3767,9 +3899,18 @@ msgstr "" msgid "Not subscribed!" msgstr "" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom by %1$s, @%2$s!" @@ -4032,13 +4173,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Na" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Voor" @@ -4090,6 +4231,11 @@ msgstr "Ontwerp" msgid "User" msgstr "Gebruiker" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4143,37 +4289,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Webblaaier" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Lees-alleen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lees-skryf" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Kanselleer" @@ -4556,8 +4702,8 @@ msgid "FOAF" msgstr "Vriende van vriende (FOAF)" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Eksporteer data" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -4723,10 +4869,6 @@ msgstr "kB" msgid "[%s]" msgstr "[%s]" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Aansluit" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Verlaat" @@ -5212,7 +5354,7 @@ msgstr "Gewild" msgid "Yes" msgstr "Ja" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5382,17 +5524,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "'n paar sekondes gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "ongeveer 'n minuut gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5400,12 +5542,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "ongeveer 'n uur gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5413,12 +5555,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "ongeveer een dag gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5426,12 +5568,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "ongeveer een maand gelede" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5439,7 +5581,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "ongeveer een jaar gelede" @@ -5453,3 +5595,17 @@ msgstr "%s is nie 'n geldige kleur nie!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s is nie 'n geldige kleur nie. Gebruik drie of ses heksadesimale karakters." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 5ab941eab8..19a7da540b 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:19+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:12+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -576,7 +576,7 @@ msgstr "لم يوجد." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "نسق غير مدعوم." @@ -740,9 +740,8 @@ msgid "Yes" msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -864,7 +863,7 @@ msgstr "أنت لست مالك هذا التطبيق." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -957,53 +956,57 @@ msgstr "احذف هذا المستخدم" msgid "Design" msgstr "التصميم" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:74 +msgid "Design settings for this StatusNet site" +msgstr "" + +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "السمة غير متوفرة: %s" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "غيّر الشعار" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "شعار الموقع" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "غيّر السمة" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "سمة الموقع" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "سمة الموقع." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "سمة مخصصة" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "تغيير صورة الخلفية" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "الخلفية" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1011,71 +1014,72 @@ msgid "" msgstr "بإمكانك رفع صورة خلفية للموقع. أقصى حجم للملف هو %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "مكّن" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "عطّل" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "مكّن صورة الخلفية أو عطّلها." -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "المحتوى" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "الشريط الجانبي" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "النص" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "وصلات" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "متقدم" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS مخصصة" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "استخدم المبدئيات" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "استعد التصميمات المبدئية" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "ارجع إلى المبدئي" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1141,7 +1145,7 @@ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." msgid "Organization homepage is required." msgstr "صفحة المنظمة الرئيسية مطلوبة." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "لم يمكن تحديث التطبيق." @@ -1227,7 +1231,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" @@ -1639,6 +1643,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "اجعل المستخدم إداريًا في المجموعة" @@ -1987,6 +1997,110 @@ msgstr "لست عضوا في تلك المجموعة." msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "والج بالفعل." @@ -2186,7 +2300,7 @@ msgid "Applications you have registered" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2206,7 +2320,7 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "حالة %1$s في يوم %2$s" @@ -2359,6 +2473,10 @@ msgstr "حُفظت كلمة السر." msgid "Paths" msgstr "المسارات" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s." @@ -3094,8 +3212,8 @@ msgid "Sessions" msgstr "الجلسات" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "إعدادات جلسة موقع StatusNet هذا." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." @@ -3110,7 +3228,6 @@ msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسة." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3846,70 +3963,78 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "المستخدم" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -3917,7 +4042,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "الرخصة" @@ -4078,6 +4205,15 @@ msgstr "النسخة" msgid "Author(s)" msgstr "المؤلف(ون)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "فضّل" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4127,6 +4263,17 @@ msgstr "ليس جزءا من المجموعة." msgid "Group leave failed." msgstr "ترك المجموعة فشل." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "انضم" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4197,13 +4344,13 @@ msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4257,9 +4404,18 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" @@ -4556,13 +4712,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "قبل" @@ -4655,6 +4811,11 @@ msgstr "ضبط الجلسات" msgid "Edit site notice" msgstr "عدّل إشعار الموقع" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4722,37 +4883,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "متصفح" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "ألغِ" @@ -5187,10 +5348,6 @@ msgstr "ألغِ تفضيل هذا الإشعار" msgid "Favor this notice" msgstr "فضّل هذا الإشعار" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "فضّل" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "آرإس​إس 1.0" @@ -5208,8 +5365,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "تصدير البيانات" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5375,10 +5532,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "مصدر صندوق وارد غير معروف %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "انضم" - #: lib/leaveform.php:114 msgid "Leave" msgstr "غادر" @@ -5962,7 +6115,7 @@ msgstr "نعم" msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6171,17 +6324,17 @@ msgid "Moderator" msgstr "مراقب" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6193,12 +6346,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6210,12 +6363,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6227,12 +6380,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6244,7 +6397,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "قبل سنة تقريبًا" @@ -6252,3 +6405,17 @@ msgstr "قبل سنة تقريبًا" #, php-format msgid "%s is not a valid color!" msgstr "%s ليس لونًا صحيحًا!" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index c4c8f4a3bc..349e99b91f 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: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:21+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:14+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -515,7 +515,7 @@ msgstr "لم يوجد." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "نسق غير مدعوم." @@ -668,9 +668,8 @@ msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -782,7 +781,7 @@ msgstr "انت مش بتملك الapplication دى." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -866,117 +865,118 @@ msgid "Design" msgstr "التصميم" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "مسار شعار غير صالح." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "المراسله الفوريه غير متوفره." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "غيّر الشعار" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "شعار الموقع" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "غيّر السمة" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "سمه الموقع" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "سمه الموقع." -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "تغيير صوره الخلفية" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "الخلفية" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "مكّن" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "عطّل" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "مكّن صوره الخلفيه أو عطّلها." -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "المحتوى" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "الشريط الجانبي" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "النص" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "وصلات" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "استخدم المبدئيات" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "استعد التصميمات المبدئية" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "ارجع إلى المبدئي" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "احفظ التصميم" @@ -1038,7 +1038,7 @@ msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." msgid "Callback is too long." msgstr "" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "ما نفعش تحديث الapplication." @@ -1454,6 +1454,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1777,6 +1783,110 @@ msgstr "لست عضوا فى تلك المجموعه." msgid "%1$s left group %2$s" msgstr "%1$s ساب جروپ %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "والج بالفعل." @@ -1973,7 +2083,7 @@ msgid "Applications you have registered" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2133,7 +2243,7 @@ msgid "Paths" msgstr "المسارات" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:157 @@ -2834,6 +2944,10 @@ msgstr "StatusNet" msgid "Sessions" msgstr "الجلسات" +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." msgstr "" @@ -2847,7 +2961,6 @@ msgid "Turn on debugging output for sessions." msgstr "مكّن تنقيح مُخرجات الجلسه." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذف إعدادت الموقع" @@ -3468,69 +3581,73 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "حد السيرة" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "مستخدمون جدد" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "الاشتراك المبدئي" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "الدعوات" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "الدعوات مُفعلة" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -3538,7 +3655,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "الرخصة" @@ -3688,6 +3807,15 @@ msgstr "النسخه" msgid "Author(s)" msgstr "المؤلف/ين" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "فضّل" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3737,6 +3865,17 @@ msgstr "مش جزء من الجروپ." msgid "Group leave failed." msgstr "الخروج من الجروپ فشل." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "انضم" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -3802,13 +3941,13 @@ msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -3828,7 +3967,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "تعذّر حفظ الوسوم." @@ -3867,9 +4006,18 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" @@ -4082,13 +4230,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "قبل" @@ -4148,6 +4296,11 @@ msgstr "المستخدم" msgid "Paths configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4205,37 +4358,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "ألغِ" @@ -4616,10 +4769,6 @@ msgstr "ألغِ تفضيل هذا الإشعار" msgid "Favor this notice" msgstr "فضّل هذا الإشعار" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "فضّل" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "آرإس​إس 1.0" @@ -4637,8 +4786,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "تصدير البيانات" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -4809,10 +4958,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "مصدر الـinbox مش معروف %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "انضم" - #: lib/leaveform.php:114 msgid "Leave" msgstr "غادر" @@ -5341,7 +5486,7 @@ msgstr "نعم" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5542,17 +5687,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "قبل لحظات قليلة" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5564,12 +5709,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5581,12 +5726,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "قبل يوم تقريبا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5598,12 +5743,12 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "قبل شهر تقريبًا" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5615,7 +5760,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "قبل سنه تقريبًا" @@ -5623,3 +5768,17 @@ msgstr "قبل سنه تقريبًا" #, php-format msgid "%s is not a valid color!" msgstr "%s ليس لونًا صحيحًا!" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index b3e0e2950d..8fa3289820 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:23+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:15+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -633,7 +633,7 @@ msgstr "Не е открито." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Неподдържан формат." @@ -821,9 +821,8 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -949,7 +948,7 @@ msgstr "Не сте собственик на това приложение." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1036,32 +1035,36 @@ msgstr "" msgid "Delete this user" msgstr "Изтриване на този потребител" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:74 +msgid "Design settings for this StatusNet site" +msgstr "" + +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Смяна на логото" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Лого на сайта" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Път до сайта" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Смяна на изображението за фон" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1071,63 +1074,64 @@ msgstr "" "2MB." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Вкл." #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Изкл." -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Смяна на цветовете" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Съдържание" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Страничен панел" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Лиценз" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1261,7 +1265,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Отказ" @@ -1655,6 +1659,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -2044,6 +2054,110 @@ msgstr "Не членувате в тази група." msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Вече сте влезли." @@ -2208,7 +2322,7 @@ msgid "Applications you have registered" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2232,7 +2346,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Потребителят няма профил." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" @@ -2378,8 +2492,8 @@ msgid "Paths" msgstr "Пътища" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Пътища и сървърни настройки за тази инсталация на StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:163 #, php-format @@ -3124,8 +3238,8 @@ msgid "Sessions" msgstr "Сесии" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Пътища и сървърни настройки за тази инсталация на StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3144,7 +3258,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Запазване настройките на сайта" @@ -3923,59 +4036,69 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Потребител" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Нови потребители" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Поканите са включени" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобряване на абонамента" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Лиценз" @@ -4122,6 +4245,15 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(и)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Любимо" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4156,6 +4288,17 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Присъединяване" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -4209,13 +4352,13 @@ msgid "Problem saving notice." msgstr "Проблем при записване на бележката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4235,7 +4378,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Грешка при запазване на етикетите." @@ -4259,9 +4402,18 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Could not delete subscription." msgstr "Грешка при добавяне на нов абонамент." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" @@ -4527,19 +4679,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Страниране" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Преди" @@ -4599,6 +4751,11 @@ msgstr "Настройка на пътищата" msgid "Edit site notice" msgstr "Изтриване на бележката" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4651,37 +4808,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Отказ" @@ -5039,10 +5196,6 @@ msgstr "Отбелязване като любимо" msgid "Favor this notice" msgstr "Отбелязване като любимо" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Любимо" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5060,8 +5213,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Изнасяне на данните" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5249,10 +5402,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Непознат език \"%s\"." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Присъединяване" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Напускане" @@ -5811,7 +5960,7 @@ msgstr "Да" msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6009,17 +6158,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "преди няколко секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "преди около минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6027,12 +6176,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "преди около час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6040,12 +6189,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "преди около ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6053,12 +6202,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "преди около месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6066,7 +6215,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "преди около година" @@ -6079,3 +6228,17 @@ msgstr "%s не е допустим цвят!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е допустим цвят! Използвайте 3 или 6 шестнадесетични знака." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index cacb78fb44..ca605d1a5c 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:25+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:16+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -656,7 +656,7 @@ msgstr "N'eo ket bet kavet." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Diembreget eo ar furmad-se." @@ -843,9 +843,8 @@ msgid "Yes" msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -982,7 +981,7 @@ msgstr "N'oc'h ket perc'henn ar poellad-se." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1076,56 +1075,56 @@ msgid "Design" msgstr "Design" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL fall evit al logo." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "N'eus ket eus ar gaoz-se : %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Cheñch al logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo al lec'hienn" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Lakaat un dodenn all" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Dodenn al lec'hienn" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Dodenn evit al lec'hienn." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Dodenn personelaet" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Kemmañ ar skeudenn foñs" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Background" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1133,75 +1132,76 @@ msgid "" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Gweredekaet" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Diweredekaet" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Adober gant ar skeudenn drekleur" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Kemmañ al livioù" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Endalc'h" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barenn kostez" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Testenn" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Liammoù" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Araokaet" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personelaet" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Adlakaat an neuz dre ziouer." -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Adlakaat an arventennoù dre ziouer" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Enrollañ an design" @@ -1279,7 +1279,7 @@ msgstr "Rez hir eo ar c'hounadur (Callback)." msgid "Callback URL is not valid." msgstr "N'eo ket mat an URL kounadur (Callback)." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Diposubl eo hizivaat ar poellad" @@ -1370,7 +1370,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Nullañ" @@ -1735,6 +1735,12 @@ msgstr "Merañ" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Stankañ" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1745,7 +1751,7 @@ msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Lakaat ur merour" #. TRANS: Submit button title. #: actions/groupmembers.php:537 @@ -1946,7 +1952,7 @@ msgstr "N'eo ket ho ID Jabber." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:450 msgid "The IM address was removed." -msgstr "Ar chomlec'h IM zo bet dilamet." +msgstr "Dilamet eo bet ar chomlec'h IM." #: actions/inbox.php:59 #, php-format @@ -2099,6 +2105,110 @@ msgstr "N'oc'h ket un ezel eus ar strollad-mañ." msgid "%1$s left group %2$s" msgstr "%1$s en deus kuitaet ar strollad %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Kevreet oc'h dija." @@ -2308,7 +2418,7 @@ msgid "Connected applications" msgstr "Poeladoù kevreet." #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2323,7 +2433,7 @@ msgstr "" msgid "Notice has no profile." msgstr "N'en deus ket an ali a profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Statud %1$s war %2$s" @@ -2450,6 +2560,10 @@ msgstr "Ger-tremen enrollet." msgid "Paths" msgstr "Hentoù" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s." @@ -2985,7 +3099,7 @@ msgstr "N'eo ket aotreet krouiñ kontoù." #: actions/register.php:205 msgid "You can't register if you don't agree to the license." msgstr "" -"Rankout a reoc'h bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " +"Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." #: actions/register.php:219 @@ -3227,8 +3341,8 @@ msgid "Sessions" msgstr "Dalc'hoù" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Arventennoù evit al lec'hienn StatusNet-mañ." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3247,7 +3361,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Enrollañ arventennoù al lec'hienn" @@ -3993,58 +4106,66 @@ msgid "Unsubscribed" msgstr "Digoumanantet" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Implijer" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Bevenn ar bio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Implijerien nevez" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Degemer an implijerien nevez" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Koumanantoù dre ziouer" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Pedadennoù" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Pedadennoù gweredekaet" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Aotreañ ar c'houmanant" @@ -4056,7 +4177,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Aotre implijout" @@ -4235,6 +4358,15 @@ msgstr "Stumm" msgid "Author(s)" msgstr "Aozer(ien)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Pennrolloù" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4284,6 +4416,17 @@ msgstr "N'eo ezel eus strollad ebet." msgid "Group leave failed." msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Stagañ" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -4336,18 +4479,18 @@ msgid "Problem saving notice." msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4372,7 +4515,7 @@ msgid "Missing profile." msgstr "Mankout a ra ar profil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Dibosupl eo enrollañ an tikedenn." @@ -4411,9 +4554,18 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Could not delete subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Deuet mat da %1$s, @%2$s !" @@ -4710,19 +4862,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Pajennadur" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "War-lerc'h" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Kent" @@ -4825,6 +4977,11 @@ msgstr "Kemmañ ali al lec'hienn" msgid "Snapshots configuration" msgstr "Kefluniadur ar primoù" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4908,37 +5065,37 @@ msgid "URL to redirect to after authentication" msgstr "URL davet pehini e o ret adkas goude bezañ kevreet" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Merdeer" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Burev" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Seurt ar poellad, merdeer pe burev" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Lenn hepken" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lenn-skrivañ" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Nullañ" @@ -5331,10 +5488,6 @@ msgstr "Tennañ eus ar pennrolloù" msgid "Favor this notice" msgstr "Ouzhpennañ d'ar pennrolloù" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Pennrolloù" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5352,7 +5505,7 @@ msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" #: lib/feedlist.php:64 -msgid "Export data" +msgid "Feeds" msgstr "" #: lib/galleryaction.php:121 @@ -5501,10 +5654,6 @@ msgstr "Ko" msgid "[%s]" msgstr "[%s]" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Stagañ" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Kuitaat" @@ -6009,7 +6158,7 @@ msgstr "Ya" msgid "Repeat this notice" msgstr "Adkregiñ gant an ali-mañ" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6184,17 +6333,17 @@ msgid "Moderator" msgstr "Habasker" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "un nebeud eilennoù zo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "1 vunutenn zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6202,12 +6351,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "1 eurvezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6215,12 +6364,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "1 devezh zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6228,12 +6377,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "miz zo well-wazh" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6241,7 +6390,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "bloaz zo well-wazh" @@ -6254,3 +6403,17 @@ msgstr "n'eo ket %s ul liv reizh !" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "N'eo ket %s ul liv reizh ! Implijit 3 pe 6 arouezenn heksdekvedennel." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index cf1c347757..a2f4b163df 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:26+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -698,7 +698,7 @@ msgstr "No s'ha trobat." msgid "Max notice size is %d chars, including attachment URL." msgstr "La mida màxima de l'avís és %d caràcters, incloent l'URL de l'adjunt." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "El format no està implementat." @@ -896,9 +896,8 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloca aquest usuari" @@ -1034,7 +1033,7 @@ msgstr "No sou el propietari d'aquesta aplicació." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1135,56 +1134,56 @@ msgid "Design" msgstr "Disseny" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Paràmetres de disseny d'aquest lloc StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "L'URL del logotip no és vàlid." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema no disponible: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Canvia el logotip" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logotip del lloc" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Canvia el tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema del lloc" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema del lloc." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Tema personalitzat" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Canvia la imatge de fons" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fons" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1193,75 +1192,76 @@ msgstr "" "Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Activada" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Desactivada" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activa o desactiva la imatge de fons." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Posa en mosaic la imatge de fons" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Canvia els colors" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contingut" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Enllaços" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avançat" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalitzat" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaura els dissenys per defecte" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Torna a restaurar al valor per defecte" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Desa" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Desa el disseny" @@ -1339,7 +1339,7 @@ msgstr "La crida de retorn és massa llarga." msgid "Callback URL is not valid." msgstr "L'URL de la crida de retorn no és vàlid." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "No s'ha pogut actualitzar l'aplicació." @@ -1432,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" @@ -1902,6 +1902,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Fes l'usuari un administrador del grup" @@ -2350,6 +2356,110 @@ msgstr "No ets membre d'aquest grup." msgid "%1$s left group %2$s" msgstr "%1$s ha abandonat el grup %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Ja hi heu iniciat una sessió." @@ -2590,8 +2700,8 @@ msgid "Connected applications" msgstr "Aplicacions connectades" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Heu permès les aplicacions següents accedir al vostre compte." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2616,7 +2726,7 @@ msgstr "" msgid "Notice has no profile." msgstr "L'avís no té cap perfil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "estat de %1$s a %2$s" @@ -2783,8 +2893,8 @@ msgid "Paths" msgstr "Camins" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Camí i paràmetres del servidor d'aquest lloc StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3645,8 +3755,8 @@ msgid "Sessions" msgstr "Sessions" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Paràmetres de sessió d'aquest lloc StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3665,7 +3775,6 @@ msgid "Turn on debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Desa els paràmetres del lloc" @@ -4589,75 +4698,79 @@ msgstr "" "llicència del lloc, «%2$s»." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Usuari" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Paràmetres d'usuari d'aquest lloc StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "El límit de la biografia no és vàlid. Cal que sigui numèric." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "El text de benvinguda no és vàlid. La longitud màxima és de 255 caràcters." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Límit de la biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Límit màxim de la biografia d'un perfil (en caràcters)." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Usuaris nous" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Benvinguda als usuaris nous" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Text de benvinguda per a nous usuaris (màx. 255 caràcters)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Subscripció per defecte" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Subscriviu automàticament els usuaris nous a aquest usuari." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitacions" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "S'han habilitat les invitacions" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Si es permet als usuaris invitar-ne de nous." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoritza la subscripció" @@ -4672,7 +4785,9 @@ msgstr "" "us als avisos d'aquest usuari. Si no heu demanat subscriure-us als avisos de " "ningú, feu clic a «Rebutja»." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Llicència" @@ -4871,6 +4986,15 @@ msgstr "Versió" msgid "Author(s)" msgstr "Autoria" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Preferit" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4929,6 +5053,17 @@ msgstr "No s'és part del grup." msgid "Group leave failed." msgstr "La sortida del grup ha fallat." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Inici de sessió" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5014,18 +5149,18 @@ msgid "Problem saving notice." msgstr "S'ha produït un problema en desar l'avís." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "S'ha produït un problema en desar la safata d'entrada del grup." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5052,7 +5187,7 @@ msgid "Missing profile." msgstr "Manca el perfil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "No s'ha pogut desar l'etiqueta." @@ -5091,9 +5226,18 @@ 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ó." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" @@ -5417,19 +5561,19 @@ msgstr "" "llicència %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginació" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Posteriors" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Anteriors" @@ -5539,6 +5683,11 @@ msgstr "Edita l'avís del lloc" msgid "Snapshots configuration" msgstr "Configuració de les instantànies" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5624,38 +5773,38 @@ msgid "URL to redirect to after authentication" msgstr "URL on redirigir-hi després de l'autenticació." #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Escriptori" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipus d'aplicació, navegador o escriptori" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Només lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lectura i escriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancel·la" @@ -6152,10 +6301,6 @@ msgstr "Deixa de tenir com a preferit aquest avís" msgid "Favor this notice" msgstr "Fes preferit aquest avís" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Preferit" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6173,8 +6318,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportació de les dades" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6367,10 +6512,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Font %d de la safata d'entrada desconeguda." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Inici de sessió" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Deixa" @@ -7064,7 +7205,7 @@ msgstr "Repeteix l'avís" msgid "Revoke the \"%s\" role from this user" msgstr "Revoca el rol «%s» de l'usuari" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "No s'ha definit cap usuari únic per al mode d'usuari únic." @@ -7291,17 +7432,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "fa pocs segons" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "fa un minut" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7309,12 +7450,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "fa una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7322,12 +7463,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "fa un dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7335,12 +7476,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "fa un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7348,7 +7489,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "fa un any" @@ -7361,3 +7502,17 @@ msgstr "%s no és un color vàlid!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s no és un color vàlid! Feu servir 3 o 6 caràcters hexadecimals." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 2c8d855c45..45201471e3 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:28+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:17+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Uložit" @@ -687,7 +687,7 @@ msgstr "Nebyl nalezen." msgid "Max notice size is %d chars, including attachment URL." msgstr "Maximální délka notice je %d znaků včetně přiložené URL." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Nepodporovaný formát." @@ -882,9 +882,8 @@ msgid "Yes" msgstr "Ano" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -1020,7 +1019,7 @@ msgstr "Nejste vlastníkem této aplikace." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1120,56 +1119,56 @@ msgid "Design" msgstr "Vzhled" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Nastavení vzhledu pro tuto stránku StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Neplatná URL loga." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Téma není k dispozici: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Změňte logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo stránek" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Změnit téma" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Téma stránek" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Téma stránek" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Vlastní téma" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Změnit obrázek na pozadí" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Pozadí" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1178,75 +1177,76 @@ msgstr "" "Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "zap." #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "vyp." -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Zapněte nebů vypněte obrázek na pozadí." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Dlaždicovat obrázek na pozadí" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Změnit barvy" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Obsah" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Boční panel" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Odkazy" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Rozšířené" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Vlastní CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Použít výchozí" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Obnovit výchozí vzhledy" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Reset zpět do výchozího" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Uložit vzhled" @@ -1324,7 +1324,7 @@ msgstr "Callback je příliš dlouhý." msgid "Callback URL is not valid." msgstr "Callback URL není platný." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Nelze aktualizovat aplikaci." @@ -1417,7 +1417,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Zrušit" @@ -1885,6 +1885,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uďelat uživatele adminem skupiny" @@ -2327,6 +2333,110 @@ msgstr "Nejste členem této skupiny." msgid "%1$s left group %2$s" msgstr "%1$s opustil(a) skupinu %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Již přihlášen" @@ -2563,8 +2673,8 @@ msgid "Connected applications" msgstr "Propojené aplikace" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Těmto aplikacím jste povolili přístup ke svému ůčtu." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2587,7 +2697,7 @@ msgstr "Vývojáři mohou upravovat nastavení registrace jejich aplikací " msgid "Notice has no profile." msgstr "Uživatel nemá profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "status %1 na %2" @@ -2753,8 +2863,8 @@ msgid "Paths" msgstr "Cesty" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Nastavení cest a serveru pro tuto stránku StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3600,8 +3710,8 @@ msgid "Sessions" msgstr "Sessions" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Nastavení sessions pro tuto stránku StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3620,7 +3730,6 @@ msgid "Turn on debugging output for sessions." msgstr "Zapnout výstup pro debugování sessions" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Uložit Nastavení webu" @@ -4532,74 +4641,78 @@ msgstr "" "Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Uživatel" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Nastavení uživatelů pro tuto stránku StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Neplatný bio limit. Musí být číslo." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Neplatné uvítací text. Max délka je 255 znaků." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limit Bia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Maximální počet znaků bia profilu." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Noví uživatelé" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Uvítání nového uživatele" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Uvítání nových uživatel (Max 255 znaků)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Výchozí odběr" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Automaticky přihlásit nové uživatele k tomuto uživateli." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Pozvánky" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Pozvánky povoleny" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Zda chcete uživatelům umožnit pozvat nové uživatele." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizujte přihlášení" @@ -4614,7 +4727,9 @@ msgstr "" "sdělení tohoto uživatele. Pokud jste právě nepožádali o přihlášení k tomuto " "uživteli, klikněte na \"Zrušit\"" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licence" @@ -4813,6 +4928,15 @@ msgstr "Verze" msgid "Author(s)" msgstr "Autoři" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Oblíbit" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4869,6 +4993,17 @@ msgstr "Není součástí skupiny." msgid "Group leave failed." msgstr "Nepodařilo se opustit skupinu." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Připojit se" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4953,18 +5088,18 @@ msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups obdrželo špatný typ." #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problém při ukládání skupinového inboxu" #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4989,7 +5124,7 @@ msgid "Missing profile." msgstr "Chybějící profil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Nelze uložit tag." @@ -5028,9 +5163,18 @@ msgstr "Nelze smazat OMB token přihlášení." msgid "Could not delete subscription." msgstr "Nelze smazat odebírání" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Vítejte na %1$s, @%2$s!" @@ -5349,19 +5493,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Stránkování" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Před" @@ -5469,6 +5613,11 @@ msgstr "Upravit oznámení stránky" msgid "Snapshots configuration" msgstr "Konfigurace snímků" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5554,37 +5703,37 @@ msgid "URL to redirect to after authentication" msgstr "URL pro přesměrování po autentikaci" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Prohlížeč" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Typ aplikace, prohlížeč nebo desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "pouze pro čtení" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "čtení a zápis" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Zrušit" @@ -6081,10 +6230,6 @@ msgstr "Odebrat toto oznámení z oblíbených" msgid "Favor this notice" msgstr "Přidat toto oznámení do oblíbených" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Oblíbit" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6102,8 +6247,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportovat data" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6297,10 +6442,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Neznámý zdroj inboxu %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Připojit se" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Opustit" @@ -6992,7 +7133,7 @@ msgstr "Opakovat toto oznámení" msgid "Revoke the \"%s\" role from this user" msgstr "Odebrat uživateli roli \"%s\"" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Nenastaven uživatel pro jednouživatelský mód" @@ -7219,17 +7360,17 @@ msgid "Moderator" msgstr "Moderátor" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "před pár sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "asi před minutou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7238,12 +7379,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "asi před hodinou" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7252,12 +7393,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "asi přede dnem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7266,12 +7407,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "asi před měsícem" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7280,7 +7421,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "asi před rokem" @@ -7293,3 +7434,17 @@ msgstr "%s není platná barva!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s není platná barva! Použijte 3 nebo 6 hex znaků." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/da/LC_MESSAGES/statusnet.po b/locale/da/LC_MESSAGES/statusnet.po index 488347944e..03a6417792 100644 --- a/locale/da/LC_MESSAGES/statusnet.po +++ b/locale/da/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:30+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:18+0000\n" "Language-Team: Danish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: da\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Gem adgangsindstillinger" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Gem" @@ -688,7 +688,7 @@ msgstr "Ikke fundet." msgid "Max notice size is %d chars, including attachment URL." msgstr "Max meddelelse størrelse er %d tegn, inklusiv vedlagt URL." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formatet understøttes ikke" @@ -884,9 +884,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloker denne bruger" @@ -1022,7 +1021,7 @@ msgstr "Du er ikke ejer af dette program." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Der var et problem med din session token." @@ -1122,56 +1121,56 @@ msgid "Design" msgstr "Design" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Design indstillinger for dette StatusNet site." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Ugyldig logo URL." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema ikke tilgængelige: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Skift logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Site logo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Skift tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Site tema" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema for webstedet." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Brugerdefineret tema" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Du kan uploade en brugerdefineret StatusNet tema som en. ZIP arkiv." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Skift baggrundsbillede" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Baggrund" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1181,75 +1180,76 @@ msgstr "" "er %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Til" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Fra" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Slå baggrundsbilledet til eller fra." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Tile baggrundsbillede" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Skift farver" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Indhold" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidebar" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Henvisninger" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avanceret" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Personlig CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Brug standardindstillinger" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Gendan standard indstillinger" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Nulstil til standard værdier" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gem" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Gem design" @@ -1327,7 +1327,7 @@ msgstr "Callback er for lang." msgid "Callback URL is not valid." msgstr "Tilbagekaldswebadresse er ikke gyldig." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Kunne ikke opdatere programmet." @@ -1420,7 +1420,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Afbryd" @@ -1890,6 +1890,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gør bruger til administrator af gruppen" @@ -2334,6 +2340,110 @@ msgstr "Du er ikke medlem af denne gruppe." msgid "%1$s left group %2$s" msgstr "%1$s forlod gruppe %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Allerede logget ind" @@ -2572,8 +2682,8 @@ msgid "Connected applications" msgstr "Tilsluttede programmer" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Du har tilladt følgende programmer at få adgang din konto." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2704,6 +2814,10 @@ msgstr "" msgid "Paths" msgstr "" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s." @@ -3196,6 +3310,10 @@ msgstr "" msgid "Sessions" msgstr "" +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" msgstr "" @@ -3663,58 +3781,66 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3838,6 +3964,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3877,6 +4012,17 @@ msgstr "" msgid "Group leave failed." msgstr "" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3924,18 +4070,18 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -3964,9 +4110,18 @@ msgstr "" msgid "Not subscribed!" msgstr "" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" @@ -4175,13 +4330,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "" @@ -4245,6 +4400,11 @@ msgstr "" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4298,32 +4458,32 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" @@ -4642,10 +4802,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -4663,7 +4819,7 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" +msgid "Feeds" msgstr "" #: lib/galleryaction.php:121 @@ -4831,10 +4987,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "" - #: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "" @@ -5276,7 +5428,7 @@ msgstr "" msgid "Recent tags" msgstr "" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5437,17 +5589,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5455,12 +5607,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5468,12 +5620,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5481,12 +5633,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5494,7 +5646,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "" @@ -5502,3 +5654,17 @@ msgstr "" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 5664d6cd51..7e289ca165 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:32+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -709,7 +709,7 @@ msgstr "" "Die maximale Größe von Nachrichten ist %d Zeichen, inklusive der URL der " "Anhänge" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Bildformat wird nicht unterstützt." @@ -906,9 +906,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -1044,7 +1043,7 @@ msgstr "Du bist Besitzer dieses Programms" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1144,56 +1143,56 @@ msgid "Design" msgstr "Design" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Design-Einstellungen für diese StatusNet-Website." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Ungültige URL für das Logo" -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Theme nicht verfügbar: %s" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Logo ändern" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Seitenlogo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Theme ändern" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Seitentheme" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Theme dieser Seite." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Angepasster Skin" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Hintergrundbild ändern" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Hintergrund" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1203,75 +1202,76 @@ msgstr "" "Dateigröße beträgt %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "An" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Aus" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Hintergrundbild ein- oder ausschalten." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Hintergrundbild kacheln" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Farben ändern" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Inhalt" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Seitenleiste" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Erweitert" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Eigene CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standardeinstellungen benutzen" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standard-Design wiederherstellen" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Standard wiederherstellen" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Design speichern" @@ -1350,7 +1350,7 @@ msgstr "Antwort ist zu lang" msgid "Callback URL is not valid." msgstr "Antwort-URL ist nicht gültig" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Konnte Programm nicht aktualisieren." @@ -1443,7 +1443,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" @@ -1916,6 +1916,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Blockieren" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" @@ -2368,6 +2374,110 @@ msgstr "Du bist kein Mitglied dieser Gruppe." msgid "%1$s left group %2$s" msgstr "%1$s hat die Gruppe %2$s verlassen" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Bereits angemeldet." @@ -2607,10 +2717,8 @@ msgid "Connected applications" msgstr "Verbundene Programme" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" -"Du hast das folgende Programm die Erlaubnis erteilt sich mit deinem Profil " -"zu verbinden." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2635,7 +2743,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Nachricht hat kein Profil" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Status von %1$s auf %2$s" @@ -2800,8 +2908,8 @@ msgid "Paths" msgstr "Pfad" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Pfad- und Serverangaben für diese StatusNet-Website." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3664,8 +3772,8 @@ msgid "Sessions" msgstr "Sitzung" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Sitzungs-Einstellungen für diese StatusNet-Website." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3684,7 +3792,6 @@ msgid "Turn on debugging output for sessions." msgstr "Fehleruntersuchung für Sitzungen aktivieren" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Site-Einstellungen speichern" @@ -4607,74 +4714,78 @@ msgstr "" "$s“." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Benutzer" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Nutzer-Einstellungen dieser StatusNet-Seite." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Das Zeichenlimit der Biografie muss numerisch sein!" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ungültiges Abonnement: „%1$s“ ist kein Benutzer" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Bio-Limit" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Maximale Länge in Zeichen der Profil-Bio." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Neue Nutzer" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Neue Benutzer empfangen" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Willkommens-Nachricht für neue Nutzer (maximal 255 Zeichen)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Standard-Abonnement" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Neue Nutzer abonnieren automatisch diesen Nutzer" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Einladungen" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Einladungen aktivieren" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonnement bestätigen" @@ -4689,7 +4800,9 @@ msgstr "" "dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "„Abbrechen“." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Lizenz" @@ -4889,6 +5002,15 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(en)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Zu Favoriten hinzufügen" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4947,6 +5069,17 @@ msgstr "Nicht Mitglied der Gruppe" msgid "Group leave failed." msgstr "Konnte Gruppe nicht verlassen" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Beitreten" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5032,19 +5165,19 @@ msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" "Der Methode saveKnownGroups wurde ein schlechter Wert zur Verfügung gestellt" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5073,7 +5206,7 @@ msgid "Missing profile." msgstr "Benutzer hat kein Profil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Konnte Seitenbenachrichtigung nicht speichern." @@ -5107,9 +5240,18 @@ msgstr "Konnte OMB-Abonnement-Token nicht löschen." msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" @@ -5432,19 +5574,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Seitenerstellung" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Später" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Vorher" @@ -5552,6 +5694,11 @@ msgstr "Seitennachricht bearbeiten" msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5635,39 +5782,39 @@ msgid "URL to redirect to after authentication" msgstr "aufzurufende Adresse nach der Authentifizierung" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Arbeitsfläche" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Schreibgeschützt" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Abbrechen" @@ -6163,10 +6310,6 @@ msgstr "Aus Favoriten entfernen" msgid "Favor this notice" msgstr "Zu den Favoriten hinzufügen" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Zu Favoriten hinzufügen" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6184,8 +6327,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Daten exportieren" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6379,10 +6522,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Unbekannte inbox-Quelle %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Beitreten" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Verlassen" @@ -7077,7 +7216,7 @@ msgstr "Diese Nachricht wiederholen" msgid "Revoke the \"%s\" role from this user" msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Kein einzelner Nutzer für den Ein-Benutzer-Modus ausgewählt." @@ -7303,17 +7442,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "vor einer Minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7321,12 +7460,12 @@ msgstr[0] "vor ca. einer Minute" msgstr[1] "vor ca. %d Minuten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "vor einer Stunde" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7334,12 +7473,12 @@ msgstr[0] "vor ca. einer Stunde" msgstr[1] "vor ca. %d Stunden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "vor einem Tag" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7347,12 +7486,12 @@ msgstr[0] "vor ca. einem Tag" msgstr[1] "vor ca. %d Tagen" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "vor einem Monat" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7360,7 +7499,7 @@ msgstr[0] "vor ca. einem Monat" msgstr[1] "vor ca. %d Monaten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "vor einem Jahr" @@ -7373,3 +7512,17 @@ msgstr "%s ist keine gültige Farbe!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s ist keine gültige Farbe! Verwenden Sie 3 oder 6 Hex-Zeichen." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index b0b3d94541..0bb8e5d235 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:38+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:19+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Save access settings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Save" @@ -677,7 +677,7 @@ msgstr "Not found." msgid "Max notice size is %d chars, including attachment URL." msgstr "Max notice size is %d chars, including attachment URL." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Unsupported format." @@ -872,9 +872,8 @@ msgid "Yes" msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Block this user" @@ -1010,7 +1009,7 @@ msgstr "You are not the owner of this application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1111,52 +1110,52 @@ msgid "Design" msgstr "Design" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Design settings for this StausNet site." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "nvalid logo URL." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Theme not available: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Change logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Site logo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Change theme" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Site theme" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Theme for the site." -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Change background image" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Background" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1166,75 +1165,76 @@ msgstr "" "$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "On" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Turn background image on or off." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Tile background image" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Change colours" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Content" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidebar" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Use defaults" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restore default designs" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Reset back to default" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Save" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Save design" @@ -1312,7 +1312,7 @@ msgstr "Callback is too long." msgid "Callback URL is not valid." msgstr "Callback URL is not valid." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Could not update application." @@ -1405,7 +1405,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel" @@ -1871,6 +1871,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Make user an admin of the group" @@ -2309,6 +2315,110 @@ msgstr "You are not a member of that group." msgid "%1$s left group %2$s" msgstr "%1$s left group %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Already logged in." @@ -2543,6 +2653,10 @@ msgstr "You have not registered any applications yet." msgid "Connected applications" msgstr "Connected applications" +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access your account." +msgstr "" + #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." msgstr "You are not a user of that application." @@ -2564,7 +2678,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Notice has no profile." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" @@ -2723,6 +2837,10 @@ msgstr "Password saved." msgid "Paths" msgstr "" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s." @@ -3495,8 +3613,8 @@ msgid "User is already sandboxed." msgstr "User is already sandboxed." #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3515,7 +3633,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Save site settings" @@ -4372,62 +4489,70 @@ msgstr "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "User" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "New users" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Default subscription" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Automatically subscribe new users to this user." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitations" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invitations enabled" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Authorise subscription" @@ -4442,7 +4567,9 @@ msgstr "" "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "License" @@ -4630,6 +4757,15 @@ msgstr "Version" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Favour" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4679,6 +4815,17 @@ msgstr "Not part of group." msgid "Group leave failed." msgstr "Group leave failed." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Join" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4762,18 +4909,18 @@ msgid "Problem saving notice." msgstr "Problem saving notice." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4817,9 +4964,18 @@ msgstr "Could not delete subscription OMB token." msgid "Could not delete subscription." msgstr "Could not delete subscription." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" @@ -5138,19 +5294,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "All %1$s content and data are available under the %2$s licence." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "After" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Before" @@ -5258,6 +5414,11 @@ msgstr "Edit site notice" msgid "Snapshots configuration" msgstr "Snapshots configuration" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5331,37 +5492,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancel" @@ -5773,10 +5934,6 @@ msgstr "Disfavour this notice" msgid "Favor this notice" msgstr "Favour this notice" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Favour" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -5794,8 +5951,8 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Export data" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5988,10 +6145,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Join" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Leave" @@ -6587,7 +6740,7 @@ msgstr "Repeat this notice" msgid "Revoke the \"%s\" role from this user" msgstr "Revoke the \"%s\" role from this user" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6793,17 +6946,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "a few seconds ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "about a minute ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6811,12 +6964,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "about an hour ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6824,12 +6977,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "about a day ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6837,12 +6990,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "about a month ago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6850,7 +7003,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "about a year ago" @@ -6863,3 +7016,17 @@ msgstr "%s is not a valid colour!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is not a valid colour! Use 3 or 6 hex chars." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 49aef778db..05e6ea6a97 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:36+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:20+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Konservu atingan agordon" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Konservu" @@ -692,7 +692,7 @@ msgstr "Ne troviĝas." msgid "Max notice size is %d chars, including attachment URL." msgstr "Longlimo por avizo estas %d signoj, enkalkulante ankaŭ la retadresojn." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato ne subtenata." @@ -886,9 +886,8 @@ msgid "Yes" msgstr "Jes" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloki la uzanton" @@ -1024,7 +1023,7 @@ msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1123,56 +1122,56 @@ msgid "Design" msgstr "Aspekto" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Aspektaj agordoj por ĉi tiu StatusNet-retejo." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL por la emblemo nevalida." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Desegno ne havebla: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Ŝanĝi emblemon" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Reteja emblemo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Ŝanĝi desegnon" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Reteja desegno" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Desegno por la retejo" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Propra desegno" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Vi povas alŝuti propran StatusNet-desegnon kiel .zip-dosiero" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Ŝanĝi fonbildon" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fono" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1180,75 +1179,76 @@ msgid "" msgstr "Vi povas alŝuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "En" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "For" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Aktivigi aŭ senaktivigi fonbildon" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Ripeti la fonbildon" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Ŝanĝi kolorojn" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Enhavo" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Flanka strio" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Teksto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Ligiloj" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Speciala" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Propra CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Uzu defaŭlton" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaŭri defaŭltajn desegnojn" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Redefaŭltiĝi" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Konservi" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Savi desegnon" @@ -1267,7 +1267,7 @@ msgstr "Ne estas tia dokumento \"%s\"" #: actions/editapplication.php:54 msgid "Edit Application" -msgstr "Redakti Aplikon" +msgstr "Redakti Aplikaĵon" #: actions/editapplication.php:66 msgid "You must be logged in to edit an application." @@ -1326,7 +1326,7 @@ msgstr "Revokfunkcio estas tro longa." msgid "Callback URL is not valid." msgstr "Revokfunkcia URL estas nevalida." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Malsukcesis ĝisdatigi la aplikaĵon." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Nuligi" @@ -1881,6 +1881,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Bloki" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Elekti uzanton grupestro." @@ -2321,6 +2327,110 @@ msgstr "Vi ne estas grupano." msgid "%1$s left group %2$s" msgstr "%1$s eksaniĝis de grupo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Vi jam ensalutis." @@ -2554,8 +2664,8 @@ msgid "Connected applications" msgstr "Konektita aplikaĵo" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Vi permesis al jenaj aplikaĵoj aliradon al via konto." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2578,7 +2688,7 @@ msgstr "Programisto povas redakti registradan agordon de sia aplikaĵo " msgid "Notice has no profile." msgstr "Avizo sen profilo" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Stato de %1$s ĉe %2$s" @@ -2743,8 +2853,8 @@ msgid "Paths" msgstr "Vojoj" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Vojo kaj servila agordo por ĉi tiu StatusNet-retejo." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3116,7 +3226,7 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" "Tie ĉi estas %%site.name%%, [mikrobloga](http://en.wikipedia.org/wiki/Micro-" -"blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet](http://status." +"blogging) servo surbaze de Libera Programaro [StatusNet](http://status." "net/). [Aniĝu](%%action.register%%) por konigi novaĵon pri vi mem al viaj " "amikoj, familianoj, kaj kolegoj! ([Pli](%%doc.help%%))" @@ -3575,11 +3685,11 @@ msgstr "StatusNet" #: actions/sandbox.php:65 actions/unsandbox.php:65 msgid "You cannot sandbox users on this site." -msgstr "" +msgstr "Vi ne rajtas provejigi uzantojn ĉe tiu ĉi retejo." #: actions/sandbox.php:72 msgid "User is already sandboxed." -msgstr "" +msgstr "La uzanto jam provejiĝis." #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 @@ -3588,8 +3698,8 @@ msgid "Sessions" msgstr "Seancoj" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Seancaj agordoj por tiu ĉi StatusNet-retejo" +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3608,7 +3718,6 @@ msgid "Turn on debugging output for sessions." msgstr "Ŝalti sencimigadan eligon por seanco." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Konservi retejan agordon" @@ -3829,10 +3938,10 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** estas uzanto-grupo ĉe %%site.name%%, [mikrobloga](http://en.wikipedia." -"org/wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" -"(http://status.net/). [Aniĝu](%%action.register%%) por fariĝi parto de tiu " -"ĉi grupo kaj multe pli! ([Pli](%%doc.help%%))" +"**%s** estas uzanto-grupo ĉe %%%%site.name%%%%, [mikrobloga](http://en." +"wikipedia.org/wiki/Micro-blogging) servo surbaze de Libera Programaro " +"[StatusNet](http://status.net/). [Aniĝu](%%action.register%%) por fariĝi " +"parto de tiu ĉi grupo kaj multe pli! ([Pli](%%doc.help%%))" #: actions/showgroup.php:461 #, php-format @@ -4433,6 +4542,10 @@ msgstr "Avizofluo pri etikedo %s (RSS 2.0)" msgid "Notice feed for tag %s (Atom)" msgstr "Avizofluo pri etikedo %s (Atom)" +#: actions/tagother.php:39 +msgid "No ID argument." +msgstr "Neniu ID-argumento" + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -4480,10 +4593,18 @@ msgstr "Ne estas tiu etikedo." msgid "You haven't blocked that user." msgstr "Vi ne jam blokis la uzanton." +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "La uzanto ne estas provejigita." + #: actions/unsilence.php:72 msgid "User is not silenced." msgstr "Uzanto ne estas silentigita." +#: actions/unsubscribe.php:77 +msgid "No profile ID in request." +msgstr "Neniu profila ID petiĝas." + #: actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Malabonita" @@ -4496,74 +4617,78 @@ msgstr "" "Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Uzanto" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Uzantaj agordoj por ĉi tiu StatusNet-retejo." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Nevalida biografia longlimo. Estu cifero." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Nevalida bonvena teksto. La longlimo estas 225 literoj." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Longlimo de biografio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Longlimo de profila biografio, je literoj" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Novuloj" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Bonveno al novuloj" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Bonvena teksto al novaj uzantoj (apenaŭ 255 literoj)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Defaŭlta abono" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Aŭtomate aboni novajn uzantojn al ĉi tiu uzanto." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitoj" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invito ebliĝis" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Ĉu permesi al uzantoj inviti novan uzantojn." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Rajtigi abonon" @@ -4577,7 +4702,9 @@ msgstr "" "Bonvolu kontroli la detalojn por certigi ĉu vi deziras aboni la avizoj de ĉi " "tiu uzanto. Se ne simple alklaku “Rifuzi\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenco" @@ -4771,6 +4898,15 @@ msgstr "Versio" msgid "Author(s)" msgstr "Aŭtoro(j)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Ŝati" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4827,6 +4963,17 @@ msgstr "Ne grupano." msgid "Group leave failed." msgstr "Malsukcesis foriri de grupo." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Aniĝi" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4864,23 +5011,30 @@ msgstr "Malsukcesis ĝisdatigi mesaĝon per nova URI" #: classes/Notice.php:98 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "Ne estas tia profilo(%1$d) rilate al avizo (%2$d)." + +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:193 +#, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Datumbaze eraris enmeti heketetikedo: %s" #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 msgid "Problem saving notice. Too long." -msgstr "" +msgstr "Malsukcesis konservi avizon. Ĝi tro longas." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." -msgstr "" +msgstr "Malsukcesis konservi avizon. Uzanto ne kontata." #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. #: classes/Notice.php:276 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"Tro da avizoj tro rapide; pace spiru kaj reafiŝu post kelke da minutoj." #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. #: classes/Notice.php:283 @@ -4888,31 +5042,32 @@ msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" +"Tro da refojado tro rapide; pace spiru kaj reafiŝu post kelke da minutoj." #. TRANS: Client exception thrown when a user tries to post while being banned. #: classes/Notice.php:291 msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "Vi estas blokita de afiŝi ĉe tiu ĉi retejo." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 msgid "Problem saving notice." -msgstr "" +msgstr "Malsukcesis konservi avizon." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" -msgstr "" +msgstr "Fuŝa tipo donita al saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." -msgstr "" +msgstr "Malsukcesis konservi grupan alvenkeston." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4922,41 +5077,120 @@ msgstr "RT @%1$s %2$s" #: classes/Profile.php:737 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." -msgstr "" +msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; ĝi ne ekzistas." #. 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:746 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." -msgstr "" +msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; datumbaza eraro." + +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +msgid "Missing profile." +msgstr "Mankas profilo." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +msgid "Unable to save tag." +msgstr "Malsukcesis konservi etikedon." + +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +msgid "You have been banned from subscribing." +msgstr "Vi esatas blokita de aboni." #. TRANS: Exception thrown when trying to subscribe while already subscribed. #: classes/Subscription.php:80 msgid "Already subscribed!" -msgstr "" +msgstr "Jam abonato!" + +#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. +#: classes/Subscription.php:85 +msgid "User has blocked you." +msgstr "La uzanto blokis vin." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. #: classes/Subscription.php:171 msgid "Not subscribed!" +msgstr "Ne abonato!" + +#. TRANS: Exception thrown when trying to unsubscribe a user from themselves. +#: classes/Subscription.php:178 +msgid "Could not delete self-subscription." +msgstr "Ne eblas forigi abonon al vi mem." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +#: classes/Subscription.php:206 +msgid "Could not delete subscription OMB token." +msgstr "Malsukcesis forigi abonan OMB-ĵetonon." + +#. TRANS: Exception thrown when a subscription could not be deleted on the server. +#: classes/Subscription.php:218 +msgid "Could not delete subscription." +msgstr "Malsukcesis forigi abonon." + +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bonvenon al %1$s, @%2$s!" +#. TRANS: Server exception thrown when creating a group failed. +#: classes/User_group.php:496 +msgid "Could not create group." +msgstr "Malsukcesis krei grupon." + +#. TRANS: Server exception thrown when updating a group URI failed. +#: classes/User_group.php:506 +msgid "Could not set group URI." +msgstr "Malsukcesis ĝisdatigi grupan URI." + +#. TRANS: Server exception thrown when setting group membership failed. +#: classes/User_group.php:529 +msgid "Could not set group membership." +msgstr "Malsukcesis ĝisdatigi grupan anecon." + +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +msgid "Could not save local group info." +msgstr "Malsukcesis lokan grupan informon." + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "Ŝanĝi vian profilan agordon." + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 +msgid "Upload an avatar" +msgstr "Alŝuti vizaĝbildon" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 +msgid "Change your password" +msgstr "Ŝanĝi vian pasvorton." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:130 msgid "Change email handling" -msgstr "" +msgstr "Ŝanĝi retpoŝtan disponadon." #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:137 msgid "Design your profile" -msgstr "" +msgstr "Desegni vian profilon" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 @@ -4979,6 +5213,11 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Sentitola paĝo" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +msgid "Primary site navigation" +msgstr "Unua reteja navigado" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -5095,17 +5334,22 @@ msgstr "Serĉi" #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" -msgstr "" +msgstr "Reteja anonco" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 msgid "Local views" msgstr "Loka vido" +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +msgid "Page notice" +msgstr "Paĝa anonco" + #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 msgid "Secondary site navigation" -msgstr "" +msgstr "Dua reteja navigado" #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 @@ -5161,12 +5405,14 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" +"**%%site.name%%** estas mikrobloga servo kreite de [%%site.broughtby%%](%%" +"site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "" +msgstr "**%%site.name%%** estas mikrobloga servo." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -5179,13 +5425,21 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Ĝi utiligas mikroblogilaron de [StatusNet](http://status.net/), versio %s, " +"havebla sub la [GNU Affero Ĝenerala Publika Permesilo](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." + +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +msgid "Site content license" +msgstr "Reteja enhava permesilo" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 #, php-format msgid "Content and data of %1$s are private and confidential." -msgstr "" +msgstr "Enhavo kaj datumo de %1$s estas privata kaj konfidenca." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. @@ -5193,33 +5447,36 @@ msgstr "" #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" +"Enhava kaj datuma aŭtorrajto apartenas al %1$s. Ĉiuj rajtoj rezervitaj." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. #: lib/action.php:890 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" +"Enhava kaj datuma aŭtorrajto apartenas al kontribuintoj. Ĉiuj rajtoj " +"rezervitaj." #. 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:904 #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "Ĉiuj enhavo kaj datumo ĉe %1$s estas havebla sub permesilo %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paĝado" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Poste" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Antaŭe" @@ -5231,32 +5488,48 @@ msgstr "" #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:203 msgid "Can't handle remote content yet." -msgstr "" +msgstr "Ankoraŭ ne eblas trakti foran enhavon." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. #: lib/activityutils.php:240 msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Ankoraŭ ne eblas trakti enigitan XML-aĵon." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. #: lib/activityutils.php:245 msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Ankoraŭ ne eblas trakti enigitan Base64-enhavon." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. #: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." -msgstr "" +msgstr "Vi ne rajtas ŝanĝi ĉe tiu ĉi retejo." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +msgid "Changes to that panel are not allowed." +msgstr "Malpermesas ŝanĝi agordon sur la panelon." #. TRANS: Client error message. #: lib/adminpanelaction.php:222 msgid "showForm() not implemented." -msgstr "" +msgstr "showForm() ne jam realigita." #. TRANS: Client error message #: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." -msgstr "" +msgstr "saveSettings() ne jam realigita." + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +msgid "Unable to delete design setting." +msgstr "Malsukcesas forigi desegnan agordon." + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +msgid "Basic site configuration" +msgstr "Baza reteja agordo" #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:339 @@ -5264,106 +5537,196 @@ msgctxt "MENU" msgid "Site" msgstr "Retejo" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +msgid "Design configuration" +msgstr "Desegna agordo" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +msgctxt "MENU" +msgid "Design" +msgstr "Desegno" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +msgid "User configuration" +msgstr "Uzanta agordo" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Uzanto" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +msgid "Access configuration" +msgstr "Alira agordo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +msgid "Paths configuration" +msgstr "Voja agordo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +msgid "Sessions configuration" +msgstr "Seanca agodo" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" +msgstr "Redakti retejan anoncon" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +msgid "Snapshots configuration" +msgstr "Momentfota Agordo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" msgstr "" #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." -msgstr "" +msgstr "API-fonto bezonas leg-skriba aliro, sed vi nur rajtas legi." #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Ne estas aplikaĵo kun la kosumanta ŝlosilo." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Fuŝa aliro-ĵetono." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Ne estas uzanto kun tiu ĵetono." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Malsukcesis aŭtentigi vin." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Provis revoki nekonatan ĵetonon." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Malsukcesis forigi revokitan ĵetonon." + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "Redakti aplikaĵon" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "Emblemo por tiu ĉi aplikaĵo" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, php-format +msgid "Describe your application in %d characters" +msgstr "Priskribu vian aplikaĵon per malpli ol %d literoj." + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:204 +msgid "Describe your application" +msgstr "Priskribu vian aplikaĵon" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +msgid "URL of the homepage of this application" +msgstr "URL al la hejmpaĝo de tiu ĉi aplikaĵo" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +msgid "Source URL" +msgstr "Fonta URL" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "Organizo, kiu prizorgi la aplikaĵon" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" -msgstr "" +msgstr "URL al la hejmpaĝo de la organizo" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" -msgstr "" +msgstr "URL por alidirekto post aŭtentigado" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" -msgstr "" +msgstr "Foliumilo" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" -msgstr "" +msgstr "Labortablo" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" -msgstr "" +msgstr "Tipo de aplikaĵo, foliumilo aŭ labortablo" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" -msgstr "" +msgstr "Nur-lege" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" -msgstr "" +msgstr "Leg-skribe" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" -msgstr "" +msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Nuligi" #. TRANS: Application access type #: lib/applicationlist.php:135 msgid "read-write" -msgstr "" +msgstr "leg-skribe" #. TRANS: Application access type #: lib/applicationlist.php:137 msgid "read-only" -msgstr "" +msgstr "nur-lege" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) +#: lib/applicationlist.php:143 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "Permesita %1$s - aliro \"%2$s\"." + +#. TRANS: Button label +#: lib/applicationlist.php:158 +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Revoki" #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:88 @@ -5438,7 +5801,7 @@ msgstr "Ne povas trovi uzanton kun kromnomo %s." #: lib/command.php:150 #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "Ne troviĝas loka uzanto kun alnomo %s." #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 @@ -5468,6 +5831,9 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Abonatoj: %1$s\n" +"Abonantoj: %2$s\n" +"Avizoj: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. #: lib/command.php:314 @@ -5529,7 +5895,7 @@ msgstr "" #: lib/command.php:491 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." -msgstr "" +msgstr "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 @@ -5577,27 +5943,27 @@ msgstr "Specifu nomon de la abonota uzanto." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. #: lib/command.php:664 msgid "Can't subscribe to OMB profiles by command." -msgstr "" +msgstr "Malsukcesis aboni OMB-profilon per komando." #. 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:672 #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "%s abonita" #. 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:694 lib/command.php:804 msgid "Specify the name of the user to unsubscribe from." -msgstr "" +msgstr "Specifu la nomon de uzanto malabonota." #. 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:705 #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "%s malabonita." #. 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. @@ -5628,14 +5994,14 @@ msgstr "Malsukcesis ŝalti sciigon." #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." -msgstr "" +msgstr "Ensaluta komando malebliĝas." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. #: lib/command.php:784 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." -msgstr "" +msgstr "Ĉi tiu ligilo estas uzebla nur unufoje kaj valida nur 2 minutojn: %s." #. 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. @@ -5769,17 +6135,21 @@ msgstr "" "tracks - ankoraŭ ne realigita.\n" "tracking -ankoraŭ ne realigita.\n" +#: lib/common.php:135 +msgid "No configuration file found. " +msgstr "Ne troviĝas agorda dosiero. " + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " -msgstr "" +msgstr "Mi serĉis agordan dosieron je jenaj lokoj: " #: lib/common.php:138 msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi." #: lib/common.php:139 msgid "Go to the installer." -msgstr "" +msgstr "Al la instalilo." #: lib/connectsettingsaction.php:110 msgid "IM" @@ -5827,10 +6197,6 @@ msgstr "Neŝati la avizon" msgid "Favor this notice" msgstr "Ŝati la avizon" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Ŝati" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5848,8 +6214,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Elporti datumon" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5878,7 +6244,7 @@ msgstr "Iri" #: lib/grantroleform.php:91 #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Donu al la uzanto rolon \"%s\"" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" @@ -5995,14 +6361,27 @@ msgstr "Etikedoj en avizoj de gruop %s" msgid "This page is not available in a media type you accept" msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas" +#: lib/imagefile.php:88 +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "La dosiero tro grandas. Dosiera grandlimo estas %s." + +#: lib/imagefile.php:93 +msgid "Partial upload." +msgstr "Parta alŝuto." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." -msgstr "" +msgstr "Sisteme eraris alŝuti dosieron." #: lib/imagefile.php:109 msgid "Not an image or corrupt file." -msgstr "" +msgstr "Ne bildo aŭ dosiero difektita." + +#: lib/imagefile.php:122 +msgid "Lost our file." +msgstr "Perdiĝis nian dosieron." #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" @@ -6026,10 +6405,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Nekonata alvenkesta fonto %d" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Aniĝi" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Forlasi" @@ -6064,6 +6439,18 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Saluton, %s.\n" +"\n" +"Iu ĵus entajpis tiun ĉi retpoŝtadreson ĉe %s.\n" +"\n" +"Se faris vi tion, kaj vi volas konfirmi vian eniron, uzu la URL sube:\n" +"\n" +"%s\n" +"\n" +"Se ne, simple ignoru ĉi mesaĝon.\n" +"\n" +"Dankon por via tempo,\n" +"%s\n" #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 @@ -6095,6 +6482,16 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" +"%1$s nun rigardas vian avizojn ĉe %2$s.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"fidele via,\n" +"%7$s.\n" +"\n" +"----\n" +"Ŝanĝu vian retpoŝtadreson aŭ la sciigan agordon ĉe %8$s\n" #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 @@ -6121,6 +6518,14 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" +"Vi havas novan afiŝan adreson ĉe %1$s.\n" +"\n" +"Sendu mesaĝon al %2$s por afiŝii novan avizon.\n" +"\n" +"Pli da retpoŝta gvido troviĝas ĉe %3$s.\n" +"\n" +"Fidele via,\n" +"%4$s" #. TRANS: Subject line for SMS-by-email notification messages #: lib/mail.php:433 @@ -6161,6 +6566,17 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" +"%1$s (%2$s) scivolas, kion faras vi lastatempe kaj invitas al vi afiŝi kelke " +"da novaĵoj.\n" +"\n" +"Do sciigu nin pri vi :)\n" +"\n" +"%3$s\n" +"\n" +"Ne respondu al tiu ĉi mesaĝo; ili ne ricevos ĝin.\n" +"\n" +"kun bona espero,\n" +"%4$s\n" #. TRANS: Subject for direct-message notification email #: lib/mail.php:536 @@ -6187,6 +6603,20 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" +"%1$s (%2$s) sendis al vi privatan mesaĝon:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Vi povas respondi al lia mesaĝon jene:\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" #. TRANS: Subject for favorite notification email #: lib/mail.php:589 @@ -6215,6 +6645,22 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" +"%1$s (@%7$s) ĵus aldoniss vian mesaĝon ĉe %2$s al sia ŝatolisto.\n" +"\n" +"La URL de via avizo estas:\n" +"\n" +"%3$s\n" +"\n" +"La enhavo de via avizo estas:\n" +"\n" +"%4$s\n" +"\n" +"Vi povas legi la ŝatoliston de %1$s jene:\n" +"\n" +"%5$s\n" +"\n" +"fidele via,\n" +"%6$s\n" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 @@ -6231,7 +6677,7 @@ msgstr "" #: lib/mail.php:657 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) afiŝis avizon al vi" #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 @@ -6260,6 +6706,28 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +"%1$s (@%9$s) ĵus afiŝis al vi (\"@-respondo\") ĉe %2$s.\n" +"\n" +"La avizo estas jene:\n" +"\n" +"\t%3$s\n" +"\n" +"Kaj enhavas:\n" +"\n" +"\t%4$s\n" +"\n" +"%5$sVi povas re-respondi jene:\n" +"\n" +"\t%6$s\n" +"\n" +"Listo de ĉiuj @-respondoj al vi estas jene:\n" +"\n" +"%7$s\n" +"\n" +"fidele via,\n" +"%2$s\n" +"\n" +"P.S. Vi rajtas malŝalti tian ĉi retpoŝtan sciigon ĉi tie: %8$s\n" #: lib/mailbox.php:89 msgid "Only the user can read their own mailboxes." @@ -6277,15 +6745,34 @@ msgstr "" msgid "from" msgstr "de" +#: lib/mailhandler.php:42 +msgid "Not a registered user." +msgstr "Ne registrita uzanto" + +#: lib/mailhandler.php:46 +msgid "Sorry, that is not your incoming email address." +msgstr "Pardonon, tiu ne estas via alvena retpoŝtadreso." + +#: lib/mailhandler.php:50 +msgid "Sorry, no incoming email allowed." +msgstr "Pardonon, neniu alvena mesaĝo permesiĝas." + +#: lib/mailhandler.php:228 +#, php-format +msgid "Unsupported message type: %s" +msgstr "Nesubtenata mesaĝo-tipo: %s" + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." -msgstr "" +msgstr "Databaze eraris konservi vian dosieron. Bonvole reprovu." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Alŝutata dosiero superas la dosierujon upload_max_filesize (alŝuta " +"grandlimo) en php.ini." #. TRANS: Client exception. #: lib/mediafile.php:151 @@ -6293,21 +6780,23 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Alŝutata dosiero superas la dosierujon MAX_FILE_SIZE (Alŝuta grandlimo) " +"difinitan per HTML formo." #. TRANS: Client exception. #: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Alŝutata dosiero venas nur parte." #. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. #: lib/mediafile.php:165 msgid "Missing a temporary folder." -msgstr "" +msgstr "Mankas labora dosierujo." #. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. #: lib/mediafile.php:169 msgid "Failed to write file to disk." -msgstr "" +msgstr "Malsukcesis skribi dosieron al disko." #. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. #: lib/mediafile.php:173 @@ -6317,13 +6806,19 @@ msgstr "" #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. #: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." -msgstr "" +msgstr "Dosiera grandeco superas uzantan kvoton." #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. #: lib/mediafile.php:209 lib/mediafile.php:251 msgid "File could not be moved to destination directory." -msgstr "" +msgstr "Dosiero ne povas translokiĝi al celata dosierujo." + +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +msgid "Could not determine file's MIME type." +msgstr "Malsukcesis decidi dosieran MIME-tipon." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of @@ -6334,17 +6829,19 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" ne estas subtenata tipo ĉe tiu ĉi servilo. Provu per plu da %2$s " +"formato." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" ne estas subtenata tipo ĉe tiu ĉi servilo." #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "" +msgstr "Sendi rektan avizon" #: lib/messageform.php:146 msgid "To" @@ -6359,6 +6856,10 @@ msgctxt "Send button for sending notice" msgid "Send" msgstr "Sendi" +#: lib/noticeform.php:160 +msgid "Send a notice" +msgstr "Sendi avizon" + #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -6419,12 +6920,16 @@ msgstr "al" #: lib/noticelist.php:502 msgid "web" -msgstr "reto" +msgstr "TTT" #: lib/noticelist.php:568 msgid "in context" msgstr "kuntekste" +#: lib/noticelist.php:603 +msgid "Repeated by" +msgstr "Ripetita de" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Respondi ĉi tiun avizon" @@ -6490,23 +6995,60 @@ msgstr "Alvenkesto" msgid "Your incoming messages" msgstr "Viaj alvenaj mesaĝoj" +#: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "Elirkesto" + +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "Viaj senditaj mesaĝoj" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "" +msgstr "Etikedoj en avizoj de %s" + +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +msgid "Unknown" +msgstr "Nekonata" + +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Abonatoj" #: lib/profileaction.php:126 msgid "All subscriptions" -msgstr "" +msgstr "Ĉiuj abonatoj" + +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Abonantoj" + +#: lib/profileaction.php:161 +msgid "All subscribers" +msgstr "Ĉiuj abonantoj" + +#: lib/profileaction.php:191 +msgid "User ID" +msgstr "Uzanta ID" + +#: lib/profileaction.php:196 +msgid "Member since" +msgstr "Ano ekde" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" -msgstr "" +msgstr "Taga meznombro" + +#: lib/profileaction.php:264 +msgid "All groups" +msgstr "Ĉiuj grupoj" #: lib/profileformaction.php:123 msgid "Unimplemented method." -msgstr "" +msgstr "Nerealiĝita metodo" #: lib/publicgroupnav.php:78 msgid "Public" @@ -6520,17 +7062,42 @@ msgstr "Uzantaj grupoj" msgid "Recent tags" msgstr "Freŝaj etikedoj" +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Elstara" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Populara" + +#: lib/repeatform.php:107 +msgid "Repeat this notice?" +msgstr "Ĉu ripeti la avizon?" + #: lib/repeatform.php:132 msgid "Yes" msgstr "Jes" -#: lib/router.php:709 +#: lib/repeatform.php:132 +msgid "Repeat this notice" +msgstr "Ripeti la avizon" + +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Revoki rolon %s de la uzanto" + +#: lib/router.php:711 msgid "No single user defined for single-user mode." -msgstr "" +msgstr "Neniu difinata uzanto por sol-uzanta reĝimo." #: lib/sandboxform.php:67 msgid "Sandbox" -msgstr "" +msgstr "Provejo" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "Provejigi la uzanton" #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 @@ -6571,7 +7138,7 @@ msgstr "Serĉi grupon ĉe la retejo" #: lib/section.php:89 msgid "Untitled section" -msgstr "" +msgstr "Sentitola sekcio" #: lib/section.php:106 msgid "More..." @@ -6621,43 +7188,55 @@ msgstr "" #: lib/tagcloudsection.php:56 msgid "None" -msgstr "" +msgstr "Nenio" #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." -msgstr "" +msgstr "Ĉi tiu servilo ne povas disponi desegnan alŝuton sen ZIP-a subteno." #: lib/themeuploader.php:58 lib/themeuploader.php:61 msgid "The theme file is missing or the upload failed." -msgstr "" +msgstr "La desegna dosiero mankas aŭ malsukcesis alŝuti." + +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +msgid "Failed saving theme." +msgstr "Malsukcesis konservi desegnon." #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." -msgstr "" +msgstr "Nevalida desegno: fuŝa dosieruja sturkturo." #: lib/themeuploader.php:166 #, php-format msgid "Uploaded theme is too large; must be less than %d bytes uncompressed." -msgstr "" +msgstr "Alŝutata desegno tro grandas; ĝi estu apenaŭ %d bitoj sen densigado." #: lib/themeuploader.php:178 msgid "Invalid theme archive: missing file css/display.css" -msgstr "" +msgstr "Nevalida desegna arkivo: mankas dosiero css/display.css" #: lib/themeuploader.php:218 msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +"Desegno enhavas nevalidan dosieran aŭ dosierujan nomon. Uzu nur ASCII-" +"literaron, ciferojn, substrekon kaj minussignon." #: lib/themeuploader.php:224 msgid "Theme contains unsafe file extension names; may be unsafe." -msgstr "" +msgstr "Desegno enhavas malsekuran dosiersufikson; eble malsukuras." #: lib/themeuploader.php:241 #, php-format msgid "Theme contains file of type '.%s', which is not allowed." -msgstr "" +msgstr "Desegno enhavas dosieron de tipo \".%s\", kiu malpermesiĝas." + +#: lib/themeuploader.php:259 +msgid "Error opening theme archive." +msgstr "Eraris malfermi desegnan arkivon." #: lib/topposterssection.php:74 msgid "Top posters" @@ -6665,7 +7244,11 @@ msgstr "Pintaj afiŝantoj" #: lib/unsandboxform.php:69 msgid "Unsandbox" -msgstr "" +msgstr "Malprovejigi" + +#: lib/unsandboxform.php:80 +msgid "Unsandbox this user" +msgstr "Malprovejigi la uzanton" #: lib/unsilenceform.php:67 msgid "Unsilence" @@ -6677,7 +7260,7 @@ msgstr "Nesilentigi la uzanton" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" -msgstr "" +msgstr "Malaboni la uzanton" #: lib/unsubscribeform.php:137 msgid "Unsubscribe" @@ -6693,12 +7276,20 @@ msgstr "Nekonata ago" #: lib/userprofile.php:237 msgid "User deletion in progress..." -msgstr "" +msgstr "Forigante uzanton..." + +#: lib/userprofile.php:263 +msgid "Edit profile settings" +msgstr "Redakti profilan agordon" #: lib/userprofile.php:264 msgid "Edit" msgstr "Redakti" +#: lib/userprofile.php:287 +msgid "Send a direct message to this user" +msgstr "Sendi rektan mesaĝon a ĉi tiu uzanto" + #: lib/userprofile.php:288 msgid "Message" msgstr "Mesaĝo" @@ -6707,6 +7298,10 @@ msgstr "Mesaĝo" msgid "Moderate" msgstr "Moderigi" +#: lib/userprofile.php:364 +msgid "User role" +msgstr "Uzanta rolo" + #: lib/userprofile.php:366 msgctxt "role" msgid "Administrator" @@ -6718,58 +7313,87 @@ msgid "Moderator" msgstr "Moderanto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "antaŭ kelkaj sekundoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "antaŭ ĉirkaŭ unu minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ ĉirkaŭ unu minuto" +msgstr[1] "antaŭ ĉirkaŭ %d minutoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "antaŭ ĉirkaŭ unu horo" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ ĉirkaŭ unu horo" +msgstr[1] "antaŭ ĉirkaŭ %d horoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "antaŭ ĉirkaŭ unu tago" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ ĉirkaŭ unu tago" +msgstr[1] "antaŭ ĉirkaŭ %d tagoj" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1150 +msgid "about a month ago" +msgstr "Antaŭ ĉrikaŭ unu monato" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ ĉirkaŭ unu monato" +msgstr[1] "antaŭ ĉirkaŭ %d monatoj" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1157 +msgid "about a year ago" +msgstr "antaŭ ĉirkaŭ unu jaro" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "%s ne estas valida koloro!" #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "%s ne estas valida koloro! Uzu 3 aŭ 6 deksesumaĵojn." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" msgstr "" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 22cd7512f0..41d7689b9c 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:40+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -181,8 +181,8 @@ msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Puedes intentar [zarandear a %1$s](../%2$s) desde su perfil o [publicar algo " -"a ellos](%%%%action.newnotice%%%%?status_textarea=%3$s)." +"Puedes intentar [dar un toque a %1$s](../%2$s) desde su perfil o [publicar " +"algo a ellos](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 #, php-format @@ -660,17 +660,17 @@ msgstr "No puedes borrar el estado de otro usuario." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." -msgstr "No existe ese aviso." +msgstr "No existe ese mensaje." #. TRANS: Error text shown when trying to repeat an own notice. #: actions/apistatusesretweet.php:84 lib/command.php:538 msgid "Cannot repeat your own notice." -msgstr "No puedes repetir tus propias notificaciones." +msgstr "No puedes repetir tus propios mensajes" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. #: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." -msgstr "Esta notificación ya se ha repetido." +msgstr "Este mensaje ya se ha repetido." #: actions/apistatusesshow.php:139 msgid "Status deleted." @@ -688,7 +688,7 @@ msgstr "El cliente debe proveer un parámetro de 'status' con un valor." #: lib/mailhandler.php:60 #, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres." +msgstr "El mensaje es muy largo. El tamaño máximo es de %d caracteres." #: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." @@ -698,10 +698,9 @@ msgstr "No encontrado." #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" -"El tamaño máximo de la notificación es %d caracteres, incluyendo el URL " -"adjunto." +"El tamaño máximo del mensaje es %d caracteres, incluyendo el URL adjunto." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato no soportado." @@ -748,7 +747,7 @@ msgstr "Repeticiones de %s" #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" -msgstr "Avisos etiquetados con %s" +msgstr "Mensajes etiquetados con %s" #: actions/apitimelinetag.php:107 actions/tagrss.php:65 #, php-format @@ -896,9 +895,8 @@ msgid "Yes" msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuario." @@ -1017,7 +1015,7 @@ msgstr "Conversación" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" -msgstr "Avisos" +msgstr "Mensajes" #: actions/deleteapplication.php:63 msgid "You must be logged in to delete an application." @@ -1035,7 +1033,7 @@ msgstr "No eres el propietario de esta aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1076,7 +1074,7 @@ msgstr "No conectado." #: actions/deletenotice.php:71 msgid "Can't delete this notice." -msgstr "No se puede eliminar este aviso." +msgstr "No se puede eliminar este mensaje." #: actions/deletenotice.php:103 msgid "" @@ -1088,7 +1086,7 @@ msgstr "" #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "Borrar aviso" +msgstr "Borrar mensaje" #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" @@ -1102,7 +1100,7 @@ msgstr "No eliminar este mensaje" #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" -msgstr "Borrar este aviso" +msgstr "Borrar este mensaje" #: actions/deleteuser.php:67 msgid "You cannot delete users." @@ -1136,56 +1134,56 @@ msgid "Design" msgstr "Diseño" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Configuración de diseño de este sitio StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL de logotipo inválido." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema no disponible: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Cambiar logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo del sitio" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Cambiar el tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema del sitio" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema para el sitio." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Personalizar tema" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar la imagen de fondo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fondo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1195,81 +1193,82 @@ msgstr "" "es %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Activar" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Desactivar" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar o desactivar la imagen de fondo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Imagen de fondo en mosaico" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar colores" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contenido" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Vínculos" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avanzado" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Personalizar CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utilizar los valores predeterminados" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar los diseños predeterminados" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Volver a los valores predeterminados" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Guardar el diseño" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "¡Este aviso no es un favorito!" +msgstr "Este mensaje no es un favorito!" #: actions/disfavor.php:94 msgid "Add to favorites" @@ -1341,7 +1340,7 @@ msgstr "La devolución de llamada es muy larga." msgid "Callback URL is not valid." msgstr "El URL de devolución de llamada es inválido." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "No fue posible actualizar la aplicación." @@ -1434,7 +1433,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1490,7 +1489,7 @@ msgstr "Preferencias de correo electrónico" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:184 msgid "Send me notices of new subscriptions through email." -msgstr "Enviarme avisos de suscripciones nuevas por correo." +msgstr "Enviarme mensajes de nuevas suscripciones por correo electrónico." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 @@ -1513,12 +1512,12 @@ msgstr "" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." -msgstr "Permitir que amigos me contacten y envién un correo." +msgstr "Permitir que amigos me den un toque y me envien un correo electrónico." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:216 msgid "I want to post notices by email." -msgstr "Deseo enviar estados por email" +msgstr "Quiero publicar mensajes por correo electrónico." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:223 @@ -1626,7 +1625,7 @@ msgstr "Nueva dirección de correo entrante agregada." #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "¡Este aviso ya está en favoritos!" +msgstr "¡Este mensaje ya está en favoritos!" #: actions/favor.php:92 lib/disfavorform.php:140 msgid "Disfavor favorite" @@ -1673,7 +1672,7 @@ msgstr "" #: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" -msgstr "Avisos favoritos de %s" +msgstr "Mensajes favoritos de %s" #: actions/favoritesrss.php:115 #, php-format @@ -1701,7 +1700,7 @@ msgstr "No hay ID de mensaje." #: actions/file.php:38 msgid "No notice." -msgstr "Sin aviso." +msgstr "Sin mensaje." #: actions/file.php:42 msgid "No attachments." @@ -1906,6 +1905,12 @@ msgstr "Admin" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Bloquear" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1916,13 +1921,13 @@ msgstr "Convertir al usuario en administrador del grupo" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Convertir en administrador" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Convertir a este usuario en administrador" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2083,18 +2088,18 @@ msgstr "Preferencias de mensajería instantánea" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:163 msgid "Send me notices through Jabber/GTalk." -msgstr "Enviarme avisos por Jabber/GTalk" +msgstr "Enviarme mensajes por Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." +msgstr "Publicar un mensaje cuando el estado de mi Jabber/GTalk cambie." #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:175 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." +"Enviarme respuestas por medio de Jabber/GTalk de gente a la cual no sigo." #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:182 @@ -2354,6 +2359,110 @@ msgstr "No eres miembro de este grupo." msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Ya estás conectado." @@ -2503,7 +2612,7 @@ msgstr "Error de Ajax" #: actions/newnotice.php:69 msgid "New notice" -msgstr "Nuevo aviso" +msgstr "Nuevo mensaje" #: actions/newnotice.php:227 msgid "Notice posted" @@ -2515,7 +2624,7 @@ msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -"Buscar avisos en %%site.name%% por contenido. Separa los términos de " +"Buscar mensajes en %%site.name%% por contenido. Separa los términos de " "búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." #: actions/noticesearch.php:78 @@ -2561,8 +2670,8 @@ msgstr "" msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" -"Este usuario no permite zarandeos o todavía no confirma o configura su " -"correo electrónico." +"Este usuario no permite que le den toques o todavía no ha confirmado o " +"configurado su correo electrónico." #: actions/nudge.php:94 msgid "Nudge sent" @@ -2594,8 +2703,8 @@ msgid "Connected applications" msgstr "Aplicaciones conectadas" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Has permitido a las siguientes aplicaciones acceder a tu cuenta." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2618,9 +2727,9 @@ msgstr "" #: actions/oembed.php:80 actions/shownotice.php:100 msgid "Notice has no profile." -msgstr "Aviso no tiene perfil." +msgstr "Mensaje sin perfil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" @@ -2629,19 +2738,19 @@ msgstr "estado de %1$s en %2$s" #: actions/oembed.php:159 #, php-format msgid "Content type %s not supported." -msgstr "Tipo de contenido %s no soportado." +msgstr "Tipo de contenido %s no compatible." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format msgid "Only %s URLs over plain HTTP please." -msgstr "Solamente %s URLs sobre HTTP simples por favor." +msgstr "Solamente %s URL sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 #: lib/apiaction.php:1233 lib/apiaction.php:1356 msgid "Not a supported data format." -msgstr "No es un formato de dato soportado" +msgstr "No es un formato de datos compatible." #: actions/opensearch.php:64 msgid "People Search" @@ -2649,7 +2758,7 @@ msgstr "Búsqueda de gente" #: actions/opensearch.php:67 msgid "Notice Search" -msgstr "Búsqueda de avisos" +msgstr "Búsqueda de mensajes" #: actions/othersettings.php:60 msgid "Other settings" @@ -2757,7 +2866,7 @@ msgstr "Cambiar" #: actions/passwordsettings.php:154 actions/register.php:237 msgid "Password must be 6 or more characters." -msgstr "Cotrnaseña debe tener 6 o más caracteres." +msgstr "La contraseña debe tener 6 o más caracteres." #: actions/passwordsettings.php:157 actions/register.php:240 msgid "Passwords don't match." @@ -2777,7 +2886,7 @@ msgstr "No se puede guardar la nueva contraseña." #: actions/passwordsettings.php:192 actions/recoverpassword.php:211 msgid "Password saved." -msgstr "Se guardó Contraseña." +msgstr "Se guardó la contraseña." #. TRANS: Menu item for site administration #: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 @@ -2785,9 +2894,8 @@ msgid "Paths" msgstr "Rutas" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" -"Configuración de la ruta de acceso y del servidor de este sitio StatusNet." #: actions/pathsadminpanel.php:157 #, php-format @@ -2847,7 +2955,7 @@ msgstr "URL agradables" #: actions/pathsadminpanel.php:252 msgid "Use fancy (more readable and memorable) URLs?" -msgstr "¿Usar URL agradables (más legibles y memorizables)?" +msgstr "¿Usar URL amigables (más legibles y memorizables)?" #: actions/pathsadminpanel.php:259 msgid "Theme" @@ -2958,13 +3066,14 @@ msgstr "Usuarios auto etiquetados con %1$s - página %2$d" #: actions/postnotice.php:95 msgid "Invalid notice content." -msgstr "Contenido de aviso inválido." +msgstr "Contenido de mensaje inválido." #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -"La licencia del aviso %1$s’ es incompatible con la licencia del sitio ‘%2$s’." +"La licencia del mensaje %1$s’ es incompatible con la licencia del sitio ‘%2" +"$s’." #: actions/profilesettings.php:60 msgid "Profile settings" @@ -3194,7 +3303,7 @@ msgstr "Estas son las etiquetas recientes más populares en %s " #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Aún nadie ha publicado un aviso con una [etiqueta clave] (%%doc.tags%%)" +"Aún nadie ha publicado un mensaje con una [etiqueta clave] (%%doc.tags%%)" #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -3620,8 +3729,8 @@ msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." "newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Puedes intentar [zarandear a %1$s](../%2$s) o [publicar algo a ellos](%%%%" -"action.newnotice%%%%?status_textarea=%3$s)." +"Puedes intentar [darle un toque a %1$s](../%2$s) o [publicar algo a su " +"atención](%%%%action.newnotice%%%%?status_textarea=%3$s)." #: actions/repliesrss.php:72 #, php-format @@ -3655,8 +3764,8 @@ msgid "Sessions" msgstr "Sesiones" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Configuración de sesión para este sitio StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3675,7 +3784,6 @@ msgid "Turn on debugging output for sessions." msgstr "Activar la salida de depuración para sesiones." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Guardar la configuración del sitio" @@ -3766,7 +3874,7 @@ msgstr "¿realmente deseas reiniciar tu clave y secreto de consumidor?" #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "Avisos favoritos de %1$s, página %2$d" +msgstr "Mensajes favoritos de %1$s, página %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." @@ -3854,17 +3962,17 @@ msgstr "Acciones del grupo" #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Canal de avisos del grupo %s (RSS 1.0)" +msgstr "Canal de mensajes del grupo %s (RSS 1.0)" #: actions/showgroup.php:344 #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Canal de avisos del grupo %s (RSS 2.0)" +msgstr "Canal de mensajes del grupo %s (RSS 2.0)" #: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "Canal de avisos del grupo %s (Atom)" +msgstr "Canal de mensajes del grupo %s (Atom)" #: actions/showgroup.php:355 #, php-format @@ -3942,7 +4050,7 @@ msgstr "Mensaje de %1$s en %2$s" #: actions/shownotice.php:90 msgid "Notice deleted." -msgstr "Aviso borrado" +msgstr "Mensaje borrado" #: actions/showstream.php:73 #, php-format @@ -3998,8 +4106,8 @@ msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" -"Puedes intentar zarandear a %1$s o [publicar algo a ellos](%%%%action." -"newnotice%%%%?status_textarea=%2$s)." +"Puedes intentar darle un toque a %1$s o [publicar algo a su atención](%%%%" +"action.newnotice%%%%?status_textarea=%2$s)." #: actions/showstream.php:243 #, php-format @@ -4140,7 +4248,7 @@ msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." #: actions/sitenoticeadminpanel.php:56 msgid "Site Notice" -msgstr "Aviso del sitio" +msgstr "Aviso del mensaje" #: actions/sitenoticeadminpanel.php:67 msgid "Edit site-wide message" @@ -4158,17 +4266,17 @@ msgstr "" #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" -msgstr "Texto del aviso del sitio" +msgstr "Texto del mensaje del sitio" #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -"Texto del aviso que va a lo ancho del sitio (máximo 255 caracteres; se " +"Texto del mensaje que va a lo ancho del sitio (máximo 255 caracteres; se " "acepta HTML)" #: actions/sitenoticeadminpanel.php:198 msgid "Save site notice" -msgstr "Guardar el aviso del sitio" +msgstr "Guardar el mensaje del sitio" #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 @@ -4240,8 +4348,8 @@ msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" -"Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por " -"mi operador móvil" +"Enviarme mensajes por SMS; Yo acepto que puede incurrir en grandes cobros " +"por mi operador móvil" #. TRANS: Confirmation message for successful SMS preferences save. #: actions/smssettings.php:315 @@ -4501,22 +4609,22 @@ msgstr "SMS" #: actions/tag.php:69 #, php-format msgid "Notices tagged with %1$s, page %2$d" -msgstr "Avisos etiquetados con %1$s, página %2$d" +msgstr "Mensajes etiquetados con %1$s, página %2$d" #: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Canal de avisos con etiqueta %s (RSS 1.0)" +msgstr "Canal de mensajes con etiqueta %s (RSS 1.0)" #: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Canal de avisos con etiqueta %s (RSS 2.0)" +msgstr "Canal de mensajes con etiqueta %s (RSS 2.0)" #: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "Canal de avisos con etiqueta %s (Atom)" +msgstr "Canal de mensajes con etiqueta %s (Atom)" #: actions/tagother.php:39 msgid "No ID argument." @@ -4598,74 +4706,78 @@ msgstr "" "sitio ‘%2$s’." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Usuario" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Configuración de usuarios en este sitio StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Límite para la bio inválido: Debe ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Límite de la bio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Longitud máxima de bio de perfil en caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nuevos usuarios" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Bienvenida a nuevos usuarios" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de bienvenida para nuevos usuarios (máx. 255 caracteres)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Suscripción predeterminada" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Suscribir automáticamente nuevos usuarios a este usuario." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitaciones" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invitaciones habilitadas" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Si permitir a los usuarios invitar nuevos usuarios." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar la suscripción" @@ -4680,7 +4792,9 @@ msgstr "" "avisos de este usuario. Si no pediste suscribirte a los avisos de alguien, " "haz clic en \"Cancelar\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licencia" @@ -4879,6 +4993,15 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autor(es)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Aceptar" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4936,6 +5059,17 @@ msgstr "No es parte del grupo." msgid "Group leave failed." msgstr "Ha fallado la acción de abandonar el grupo" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Unirse" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4996,7 +5130,7 @@ msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " +"Demasiados mensajes demasiado rápido; para y publicar nuevamente en unos " "minutos." #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. @@ -5017,21 +5151,21 @@ msgstr "Tienes prohibido publicar avisos en este sitio." #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 msgid "Problem saving notice." -msgstr "Hubo un problema al guardar el aviso." +msgstr "Hubo un problema al guardar el mensaje." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Mal tipo proveído a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5057,7 +5191,7 @@ msgid "Missing profile." msgstr "Perfil ausente." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Incapaz de grabar etiqueta." @@ -5091,9 +5225,18 @@ msgstr "No se pudo eliminar la ficha OMB de suscripción." msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" @@ -5285,7 +5428,7 @@ msgstr "Buscar" #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 msgid "Site notice" -msgstr "Aviso de sitio" +msgstr "Mensaje de sitio" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 @@ -5295,7 +5438,7 @@ msgstr "Vistas locales" #. TRANS: DT element for page notice. String is hidden in default CSS. #: lib/action.php:675 msgid "Page notice" -msgstr "Aviso de página" +msgstr "Mensaje de página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 @@ -5417,19 +5560,19 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Después" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Antes" @@ -5532,13 +5675,18 @@ msgstr "Configuración de sesiones" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" -msgstr "Editar el aviso del sitio" +msgstr "Editar el mensaje del sitio" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:393 msgid "Snapshots configuration" msgstr "Configuración de instantáneas" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5549,33 +5697,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "No hay ninguna aplicación para esa clave de consumidor." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Token de acceso erróneo." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "No hay ningún usuario para ese token." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "No ha sido posible autenticarte." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Se intentó revocar un token desconocido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "No se pudo eliminar el token revocado." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5624,38 +5772,38 @@ msgid "URL to redirect to after authentication" msgstr "URL al que se redirigirá después de la autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador o de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Solo lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Solo escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancelar" @@ -5734,20 +5882,20 @@ msgstr "Comando falló" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. #: lib/command.php:84 lib/command.php:108 msgid "Notice with that id does not exist." -msgstr "Ningún aviso con ese ID existe." +msgstr "No existe ningún mensaje con ese ID." #. 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:101 lib/command.php:630 msgid "User has no last notice." -msgstr "El/La usuario/a no tiene ningún último aviso" +msgstr "El/La usuario/a no tiene ningún último mensaje" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #: lib/command.php:130 #, php-format msgid "Could not find a user with nickname %s." -msgstr "No se pudo encontrar el usuario con el apodo %s." +msgstr "No se pudo encontrar el usuario con el nombre de usuario %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. @@ -5772,7 +5920,7 @@ msgstr "¡No tiene sentido darte un toque a ti mismo!" #: lib/command.php:240 #, php-format msgid "Nudge sent to %s." -msgstr "Zumbido enviado a %s." +msgstr "Toque enviado a %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -5792,7 +5940,7 @@ msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. #: lib/command.php:314 msgid "Notice marked as fave." -msgstr "Aviso marcado como favorito." +msgstr "Mensaje marcado como favorito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. @@ -5861,12 +6009,12 @@ msgstr "Error al enviar mensaje directo." #: lib/command.php:554 #, php-format msgid "Notice from %s repeated." -msgstr "Se ha repetido el aviso de %s." +msgstr "Se ha repetido el mensaje de %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." -msgstr "Ha habido un error al repetir el aviso." +msgstr "Ha habido un error al repetir el mensaje." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -5885,7 +6033,7 @@ msgstr "Se ha enviado la respuesta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." -msgstr "Error al guardar el aviso." +msgstr "Error al guardar el mensaje." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 @@ -6146,15 +6294,11 @@ msgstr "Diseño predeterminado restaurado." #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" -msgstr "Sacar este aviso" +msgstr "Excluir este mensaje de mis favoritos" #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" -msgstr "Incluir este aviso en tus favoritos" - -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Aceptar" +msgstr "Incluir este mensaje en tus favoritos" #: lib/feed.php:85 msgid "RSS 1.0" @@ -6173,8 +6317,8 @@ msgid "FOAF" msgstr "Amistad de amistad" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar datos" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6235,7 +6379,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grupo" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6243,13 +6387,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Grupo %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Miembros" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6257,13 +6401,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Miembros del grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloqueado" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6271,7 +6415,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s usuarios bloqueados" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6279,13 +6423,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Editar las propiedades del grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6293,7 +6437,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Añadir o modificar el logo %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6301,20 +6445,20 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Añadir o modificar el diseño %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "Grupos con más miembros" +msgstr "Grupos con mayor cantidad de miembros" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "Grupos con más publicaciones" +msgstr "Grupos con mayor cantidad de publicaciones" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "Etiquetas en avisos del grupo %s" +msgstr "Etiquetas en mensajes del grupo %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 @@ -6369,10 +6513,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Origen de bandeja de entrada %d desconocido." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Unirse" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Abandonar" @@ -6594,7 +6734,7 @@ msgstr "" #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) agregó tu aviso como un favorito" +msgstr "%s (@%s) agregó tu mensaje a los favoritos" #. TRANS: Body for favorite notification email #: lib/mail.php:592 @@ -6617,13 +6757,13 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s (@%7$s) acaba de añadir un aviso de %2$s a su listado de favoritos.\n" +"%1$s (@%7$s) acaba de añadir un mensaje de %2$s a su listado de favoritos.\n" "\n" -"El URL de tu aviso es:\n" +"El URL de tu mensaje es:\n" "\n" "%3$s\n" "\n" -"El texto de tu aviso es:\n" +"El texto de tu mensaje es:\n" "\n" "%4$s\n" "\n" @@ -6808,17 +6948,19 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" no es un tipo de archivo compatible en este servidor. Prueba a usar " +"otro formato de %2$s" #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" no es un tipo de archivo compatible en este servidor." #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "Enviar un aviso directo" +msgstr "Enviar un mensaje directo" #: lib/messageform.php:146 msgid "To" @@ -6835,7 +6977,7 @@ msgstr "Enviar" #: lib/noticeform.php:160 msgid "Send a notice" -msgstr "Enviar un aviso" +msgstr "Enviar un mensaje" #: lib/noticeform.php:174 #, php-format @@ -6909,7 +7051,7 @@ msgstr "Repetido por" #: lib/noticelist.php:630 msgid "Reply to this notice" -msgstr "Responder este aviso." +msgstr "Responder a este mensaje." #: lib/noticelist.php:631 msgid "Reply" @@ -6917,7 +7059,7 @@ msgstr "Responder" #: lib/noticelist.php:675 msgid "Notice repeated" -msgstr "Aviso repetido" +msgstr "Mensaje repetido" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -6933,20 +7075,20 @@ msgstr "Dar un toque a este usuario" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Error al insertar un nuevo perfil." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Error al insertar el avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Error al insertar el perfil remoto." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Mensaje duplicado." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -6983,7 +7125,7 @@ msgstr "Mensajes enviados" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "Etiquetas en avisos de %s" +msgstr "Etiquetas en mensajes de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. #: lib/plugin.php:116 @@ -7053,7 +7195,7 @@ msgstr "No hay respuesta a los argumentos." #: lib/repeatform.php:107 msgid "Repeat this notice?" -msgstr "Repetir este aviso?" +msgstr "Repetir este mensaje?" #: lib/repeatform.php:132 msgid "Yes" @@ -7061,14 +7203,14 @@ msgstr "Sí" #: lib/repeatform.php:132 msgid "Repeat this notice" -msgstr "Repetir este aviso." +msgstr "Repetir este mensaje." #: lib/revokeroleform.php:91 #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revocar el rol \"%s\" de este usuario" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Ningún usuario sólo definido para modo monousuario." @@ -7094,7 +7236,7 @@ msgstr "Palabra(s) clave" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Buscar" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7111,7 +7253,7 @@ msgstr "Encontrar gente en este sitio" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "Encontrar el contenido de avisos" +msgstr "Buscar en el contenido de mensajes" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" @@ -7297,64 +7439,64 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "hace unos segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "hace un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace aproximadamente un minuto" +msgstr[1] "hace aproximadamente %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "hace una hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace aproximadamente una hora" +msgstr[1] "hace aproximadamente %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "hace un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace aproximadamente un día" +msgstr[1] "hace aproximadamente %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "hace un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace aproximadamente un mes" +msgstr[1] "hace aproximadamente %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "hace un año" @@ -7367,3 +7509,17 @@ msgstr "¡%s no es un color válido!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s no es un color válido! Usar 3 o 6 caracteres hexagesimales" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 48982013ce..728701eff7 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:45+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:22+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -679,7 +679,7 @@ msgstr "یافت نشد." msgid "Max notice size is %d chars, including attachment URL." msgstr "بیشینهٔ طول پیام %d نویسه که شامل نشانی اینترنتی پیوست هم هست." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "قالب پشتیبانی نشده." @@ -877,9 +877,8 @@ msgid "Yes" msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -1015,7 +1014,7 @@ msgstr "شما مالک این برنامه نیستید." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1116,58 +1115,58 @@ msgid "Design" msgstr "طرح" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "تنظیمات ظاهری برای این وب‌گاه StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "نشانی اینترنتی نشان نامعتبر است." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "پوسته در دسترس نیست: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "تغییر نشان" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "نشان وب‌گاه" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "تغییر پوسته" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "پوستهٔ وب‌گاه" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "پوسته برای وب‌گاه" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "پوستهٔ اختصاصی" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "شما می‌توانید یک پوستهٔ اختصاصی StatusNet را به‌عنوان یک آرشیو .ZIP بارگذاری " "کنید." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "تغییر تصویر پیش‌زمینه" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "پیش‌زمینه" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1177,75 +1176,76 @@ msgstr "" "پرونده %1 $s است." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "روشن" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "خاموش" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "تصویر پیش‌زمینه را فعال یا غیرفعال کنید." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "تصویر پیش‌زمینهٔ موزاییکی" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "تغییر رنگ‌ها" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "محتوا" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "ستون کناری" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "متن" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "پیوندها" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "پیشرفته" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS اختصاصی" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "بازگرداندن طرح‌های پیش‌فرض" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "برگشت به حالت پیش گزیده" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "ذخیره‌کردن طرح" @@ -1315,7 +1315,7 @@ msgstr "نام سازمان خیلی طولانی است (حداکثر ۲۵۵ ن msgid "Organization homepage is required." msgstr "صفحهٔ‌خانگی سازمان مورد نیاز است." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "نمی‌توان برنامه را به‌هنگام‌سازی کرد." @@ -1408,7 +1408,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "انصراف" @@ -1875,6 +1875,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "کاربر یک مدیر گروه شود" @@ -2316,6 +2322,110 @@ msgstr "شما یک کاربر این گروه نیستید." msgid "%1$s left group %2$s" msgstr "%1$s گروه %2$s را ترک کرد" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "قبلا وارد شده" @@ -2550,8 +2660,8 @@ msgid "Connected applications" msgstr "برنامه‌های وصل‌شده" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "شما به برنامه‌های زیر اجازه داده‌اید که به حساب‌تان دسترسی پیدا کنند." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2575,7 +2685,7 @@ msgstr "" msgid "Notice has no profile." msgstr "این پیام نمایه‌ای ندارد." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "وضعیت %1$s در %2$s" @@ -2741,8 +2851,8 @@ msgid "Paths" msgstr "مسیر ها" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "تنظیمات و نشانی محلی این وب‌گاه StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3581,8 +3691,8 @@ msgid "Sessions" msgstr "نشست‌ها" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "تنظیمات نشست برای این وب‌گاه StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3597,7 +3707,6 @@ msgid "Turn on debugging output for sessions." msgstr "خروجی اشکال‌زدایی برای نشست‌ها روشن شود." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "ذخیرهٔ تنظیمات وب‌گاه" @@ -4488,74 +4597,78 @@ msgid "Unsubscribed" msgstr "لغو اشتراک شده" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "کاربر" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "تنظیمات کاربری برای این وب‌گاه StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "محدودیت شرح‌حال نادرست است. مقدار محدودیت باید عددی باشد." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول متن ۲۵۵ نویسه است." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "نمایه" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "محدودیت شرح‌حال" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "بیشینهٔ طول یک شرح‌حال نمایه بر اساس نویسه‌ها." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "کاربران تازه" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "خوشامدگویی کاربر جدید" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "متن خوشامدگویی برای کاربران جدید (حداکثر ۲۵۵ نویسه)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "اشتراک پیش‌فرض" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "به صورت خودکار کاربران تازه‌وارد را مشترک این کاربر کن." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "دعوت‌نامه‌ها" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "دعوت نامه ها فعال شدند" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "چنان‌که به کاربران اجازهٔ دعوت‌کردن کاربران تازه داده شود." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "تصدیق اشتراک" @@ -4570,7 +4683,9 @@ msgstr "" "شوید، بررسی کنید. اگر شما درخواست اشتراک پیام‌های کسی را نداده‌اید، روی «رد " "کردن» کلیک کنید." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "مجوز" @@ -4747,6 +4862,15 @@ msgstr "نسخه" msgid "Author(s)" msgstr "مؤلف(ها)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "برگزیده‌کردن" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4795,6 +4919,17 @@ msgstr "بخشی از گروه نیست." msgid "Group leave failed." msgstr "ترک کردن گروه شکست خورد." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "مشارکت کردن" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4874,18 +5009,18 @@ msgid "Problem saving notice." msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4945,9 +5080,18 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Could not delete subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s، به %1$s خوش آمدید!" @@ -5261,19 +5405,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "تمام محتویات و داده‌های %1$s زیر مجوز %2$s در دسترس هستند." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "صفحه بندى" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "قبل از" @@ -5382,6 +5526,11 @@ msgstr "ویرایش پیام وب‌گاه" msgid "Snapshots configuration" msgstr "پیکربندی تصاویر لحظه‌ای" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5467,37 +5616,37 @@ msgid "URL to redirect to after authentication" msgstr "نشانی اینترنتی برای دوباره‌هدایت‌کردن بعد از تصدیق" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "مرورگر" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "میزکار" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "نوع برنامه، مرورگر یا میزکار" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "تنها خواندنی" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "خواندن-نوشتن" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "انصراف" @@ -5983,10 +6132,6 @@ msgstr "خارج‌کردن این پیام از برگزیده‌ها" msgid "Favor this notice" msgstr "برگزیده‌کردن این پیام" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "برگزیده‌کردن" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -6000,8 +6145,8 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "صادر کردن داده" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6189,10 +6334,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "منبع صندوق ورودی نامعلوم است %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "مشارکت کردن" - #: lib/leaveform.php:114 msgid "Leave" msgstr "ترک کردن" @@ -6870,7 +7011,7 @@ msgstr "تکرار این پیام" msgid "Revoke the \"%s\" role from this user" msgstr "دسترسی کاربر به گروه مسدود شود" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است." @@ -7067,60 +7208,60 @@ msgid "Moderator" msgstr "مدیر" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "چند ثانیه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "حدود یک دقیقه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "حدود یک ساعت پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "حدود یک روز پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "حدود یک ماه پیش" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "حدود یک سال پیش" @@ -7133,3 +7274,17 @@ msgstr "%s یک رنگ صحیح نیست!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s یک رنگ صحیح نیست! از ۳ یا ۶ نویسه مبنای شانزده استفاده کنید" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index b67a82c9a9..aa39e244ae 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:42+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:22+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -52,7 +52,7 @@ msgstr "Suljettu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Tallenna" @@ -564,7 +564,7 @@ msgstr "Ei löytynyt." msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formaattia ei ole tuettu." @@ -726,9 +726,8 @@ msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -843,7 +842,7 @@ msgstr "Vahvistuskoodia ei löytynyt." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -925,76 +924,77 @@ msgid "Design" msgstr "Ulkoasu" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Vaihda väriä" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Palvelun ilmoitus" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Vaihda tautakuva" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Tausta" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "On" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Vaihda väriä" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Sisältö" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Teksti" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Linkit" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Käytä oletusasetuksia" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -1498,6 +1498,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tee tästä käyttäjästä ylläpitäjä" @@ -1902,6 +1908,110 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "%1$s left group %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Olet jo kirjautunut sisään." @@ -2061,7 +2171,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -2081,7 +2191,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Käyttäjällä ei ole profiilia." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" @@ -2218,8 +2328,8 @@ msgid "Paths" msgstr "Polut" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Polut ja palvelin asetukset tälle StatusNet palvelulle." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." @@ -2840,6 +2950,10 @@ msgstr "Päivityksesi tähän palveluun on estetty." msgid "Sessions" msgstr "" +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" msgstr "" @@ -3565,50 +3679,60 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Valtuuta tilaus" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisenssi" @@ -3745,6 +3869,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Lisää suosikiksi" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3779,6 +3912,17 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Liity" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3841,13 +3985,13 @@ msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -3867,7 +4011,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Tagien tallennus epäonnistui." @@ -3891,6 +4035,15 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Could not delete subscription." msgstr "Tilausta ei onnistuttu tallentamaan." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %s." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -4102,19 +4255,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Sivutus" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Myöhemmin" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Aiemmin" @@ -4143,6 +4296,11 @@ msgstr "" msgid "User" msgstr "Käyttäjä" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4211,37 +4369,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Peruuta" @@ -4527,10 +4685,6 @@ msgstr "Poista tämä päivitys suosikeista" msgid "Favor this notice" msgstr "Merkitse päivitys suosikkeihin" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Lisää suosikiksi" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -4548,8 +4702,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Vie tietoja" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -4730,10 +4884,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Liity" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Eroa" @@ -5263,7 +5413,7 @@ msgstr "Suosituimmat" msgid "Yes" msgstr "Kyllä" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5430,17 +5580,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "muutama sekunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "noin minuutti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5448,12 +5598,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "noin tunti sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5461,12 +5611,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "noin päivä sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5474,12 +5624,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "noin kuukausi sitten" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5487,7 +5637,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "noin vuosi sitten" @@ -5495,3 +5645,17 @@ msgstr "noin vuosi sitten" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index ccd133acdf..f4cb8829ca 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -11,6 +11,7 @@ # Author: Patcito # Author: Peter17 # Author: Sherbrooke +# Author: Verdy p # Author: Y-M D # -- # This file is distributed under the same license as the StatusNet package. @@ -19,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:50+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -89,7 +90,7 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -711,7 +712,7 @@ msgstr "" "La taille maximale de l’avis est de %d caractères, en incluant l’URL de la " "pièce jointe." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Format non supporté." @@ -908,9 +909,8 @@ msgid "Yes" msgstr "Oui" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -1046,7 +1046,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1147,57 +1147,57 @@ msgid "Design" msgstr "Conception" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Paramètres de conception pour ce site StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL du logo invalide." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Le thème n’est pas disponible : %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Modifier le logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo du site" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Modifier le thème" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Thème du site" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Thème pour le site." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Thème personnalisé" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "Vous pouvez importer un thème StatusNet personnalisé dans une archive .ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Changer l’image d’arrière plan" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Arrière plan" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1207,75 +1207,76 @@ msgstr "" "maximale du fichier est de %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Activé" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Désactivé" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activer ou désactiver l’image d’arrière plan." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Répéter l’image d’arrière plan" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Modifier les couleurs" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contenu" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barre latérale" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texte" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Liens" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avancé" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personnalisé" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurer les conceptions par défaut" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Revenir aux valeurs par défaut" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Sauvegarder la conception" @@ -1353,7 +1354,7 @@ msgstr "Le rappel (Callback) est trop long." msgid "Callback URL is not valid." msgstr "L’URL de rappel (Callback) est invalide." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Impossible de mettre à jour l’application." @@ -1446,7 +1447,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" @@ -1915,6 +1916,12 @@ msgstr "Administrer" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Bloquer" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1925,13 +1932,13 @@ msgstr "Faire de cet utilisateur un administrateur du groupe" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Rendre administrateur" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Faire de cet utilisateur un administrateur" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2372,6 +2379,110 @@ msgstr "Vous n’êtes pas membre de ce groupe." msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Déjà connecté." @@ -2616,9 +2727,8 @@ msgid "Connected applications" msgstr "Applications connectées." #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" -"Vous avez autorisé les applications suivantes à accéder à votre compte." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2643,7 +2753,7 @@ msgstr "" msgid "Notice has no profile." msgstr "L’avis n’a pas de profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Statut de %1$s sur %2$s" @@ -2808,8 +2918,8 @@ msgid "Paths" msgstr "Chemins" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Paramètres de chemin et serveur pour ce site StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3381,11 +3491,11 @@ msgstr "Créer un compte" #: actions/register.php:142 msgid "Registration not allowed." -msgstr "Création de compte non autorisée." +msgstr "Inscription non autorisée." #: actions/register.php:205 msgid "You can't register if you don't agree to the license." -msgstr "Vous devez accepter les termes de la licence pour créer un compte." +msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." #: actions/register.php:219 msgid "Email address already exists." @@ -3678,8 +3788,8 @@ msgid "Sessions" msgstr "Sessions" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Paramètres de session pour ce site StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3698,7 +3808,6 @@ msgid "Turn on debugging output for sessions." msgstr "Activer la sortie de déboguage pour les sessions." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sauvegarder les paramètres du site" @@ -4627,76 +4736,80 @@ msgstr "" "avec la licence du site « %2$s »." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Utilisateur" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Paramètres des utilisateurs pour ce site StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Limite de bio invalide : doit être numérique." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limite de bio" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Longueur maximale de la bio d’un profil en caractères." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nouveaux utilisateurs" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Accueil des nouveaux utilisateurs" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" "Texte de bienvenue pour les nouveaux utilisateurs (maximum 255 caractères)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Abonnements par défaut" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Abonner automatiquement les nouveaux utilisateurs à cet utilisateur." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitations" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invitations activées" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" "S’il faut autoriser les utilisateurs à inviter de nouveaux utilisateurs." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser l’abonnement" @@ -4711,7 +4824,9 @@ msgstr "" "abonner aux avis de cet utilisateur. Si vous n’avez pas demandé à vous " "abonner aux avis de quelqu’un, cliquez « Rejeter »." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licence" @@ -4913,6 +5028,15 @@ msgstr "Version" msgid "Author(s)" msgstr "Auteur(s)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Ajouter à mes favoris" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4969,6 +5093,17 @@ msgstr "N’appartient pas au groupe." msgid "Group leave failed." msgstr "La désinscription du groupe a échoué." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Rejoindre" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5053,18 +5188,18 @@ msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Le type renseigné pour saveKnownGroups n’est pas valable" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5093,7 +5228,7 @@ msgid "Missing profile." msgstr "Profil manquant." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Impossible d’enregistrer l’étiquette." @@ -5132,9 +5267,18 @@ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." msgid "Could not delete subscription." msgstr "Impossible de supprimer l’abonnement" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" @@ -5237,7 +5381,7 @@ msgstr "Se connecter aux services" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" -msgstr "Connecter" +msgstr "Connexion" #. TRANS: Tooltip for menu option "Admin" #: lib/action.php:471 @@ -5287,7 +5431,7 @@ msgstr "Créer un compte" #: lib/action.php:498 msgctxt "MENU" msgid "Register" -msgstr "S'inscrire" +msgstr "S’inscrire" #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 @@ -5458,19 +5602,19 @@ msgstr "" "Tous les contenus %1$s et les données sont disponibles sous la licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Après" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Avant" @@ -5578,6 +5722,11 @@ msgstr "Modifier l'avis du site" msgid "Snapshots configuration" msgstr "Configuration des instantanés" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5588,33 +5737,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Aucune demande trouvée pour cette clé de consommateur." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Jeton d’accès erroné." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Aucun utilisateur associé à ce jeton." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Impossible de vous authentifier." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Révocation essayée d’un jeton inconnu." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Impossible de supprimer un jeton révoqué." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5663,39 +5812,39 @@ msgid "URL to redirect to after authentication" msgstr "URL vers laquelle rediriger après l’authentification" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navigateur" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Bureau" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Type d’application, navigateur ou bureau" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Lecture seule" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lecture-écriture" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Annuler" @@ -6198,10 +6347,6 @@ msgstr "Retirer des favoris" msgid "Favor this notice" msgstr "Ajouter aux favoris" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Ajouter à mes favoris" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6219,8 +6364,8 @@ msgid "FOAF" msgstr "Ami d’un ami" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exporter les données" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6282,7 +6427,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Groupe" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6290,13 +6435,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Groupe « %s »" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membres" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6304,13 +6449,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membres du groupe « %s »" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloqué" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6318,7 +6463,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Utilisateurs bloqués du groupe « %s »" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6326,13 +6471,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Modifier les propriétés du groupe « %s »" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6340,7 +6485,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Ajouter ou modifier le logo du groupe « %s »" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6348,7 +6493,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Ajouter ou modifier l’apparence du groupe « %s »" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6417,10 +6562,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Source %d inconnue pour la boîte de réception." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Rejoindre" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Quitter" @@ -6855,13 +6996,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"Le type de fichier « %1$s » n’est pas pris en charge sur ce serveur. Essayez " +"d’utiliser un autre format %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6895,7 +7038,7 @@ msgstr "Attacher" #: lib/noticeform.php:197 msgid "Attach a file" -msgstr "Attacher un fichier" +msgstr "Joindre un fichier" #: lib/noticeform.php:213 msgid "Share my location" @@ -6980,20 +7123,20 @@ msgstr "Envoyer un clin d’œil à cet utilisateur" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Erreur lors de l’insertion du nouveau profil." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Erreur lors de l’insertion de l’avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Erreur lors de l’insertion du profil distant." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Avis en doublon." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7115,7 +7258,7 @@ msgstr "Reprendre cet avis" msgid "Revoke the \"%s\" role from this user" msgstr "Révoquer le rôle « %s » de cet utilisateur" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." @@ -7141,7 +7284,7 @@ msgstr "Mot(s) clef(s)" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Rechercher" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7347,64 +7490,64 @@ msgid "Moderator" msgstr "Modérateur" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "il y a quelques secondes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "il y a 1 minute" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "une minute" +msgstr[1] "%d minutes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "il y a 1 heure" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "une heure" +msgstr[1] "%d heures" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "il y a 1 jour" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "un jour" +msgstr[1] "%d jours" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "il y a 1 mois" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "un" +msgstr[1] "%d" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "il y a environ 1 an" @@ -7418,3 +7561,17 @@ msgstr "&s n’est pas une couleur valide !" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s n’est pas une couleur valide ! Utilisez 3 ou 6 caractères hexadécimaux." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index b306b5ef0f..48edc0c3a7 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:52+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:24+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page notice #: actions/accessadminpanel.php:67 @@ -718,88 +718,89 @@ msgid "Design" msgstr "" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Modificado" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Inicio de sesión" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1212,6 +1213,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -1580,6 +1587,110 @@ msgstr "" msgid "%1$s left group %2$s" msgstr "Estado de %1$s en %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Sesión xa iniciada" @@ -1739,7 +1850,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -1759,7 +1870,7 @@ msgstr "" msgid "Notice has no profile." msgstr "O usuario non ten perfil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" @@ -1889,7 +2000,7 @@ msgid "Paths" msgstr "" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:183 @@ -2493,7 +2604,7 @@ msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:175 @@ -2513,7 +2624,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Configuración de perfil" @@ -3150,54 +3260,60 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Subscrición de autorización." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "" @@ -3323,6 +3439,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Gostame" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3357,6 +3482,13 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3410,13 +3542,13 @@ msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -3436,7 +3568,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Non se poden gardar as etiquetas." @@ -3460,6 +3592,15 @@ msgstr "Non se pode gardar a subscrición." msgid "Could not delete subscription." msgstr "Non se pode gardar a subscrición." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %s." +msgstr "" + #. TRANS: Server exception thrown when updating a group URI failed. #: classes/User_group.php:506 msgid "Could not set group URI." @@ -3633,13 +3774,13 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Outros" @@ -3673,6 +3814,11 @@ msgstr "Usuario" msgid "Edit site notice" msgstr "Eliminar chío" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -3730,37 +3876,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancelar" @@ -4057,10 +4203,6 @@ msgstr "Chíos favoritos de %s" msgid "Favor this notice" msgstr "Chíos favoritos de %s" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Gostame" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -4078,7 +4220,7 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" +msgid "Feeds" msgstr "" #: lib/galleryaction.php:121 @@ -4707,7 +4849,7 @@ msgstr "Si" msgid "Revoke the \"%s\" role from this user" msgstr "" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -4840,17 +4982,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "fai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "fai un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -4861,12 +5003,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "fai unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -4877,12 +5019,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "fai un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -4893,12 +5035,12 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "fai un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -4909,7 +5051,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "fai un ano" @@ -4922,3 +5064,17 @@ msgstr "A páxina persoal semella que non é unha URL válida." #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index e2322622e0..0f299e6ac1 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Galician (Galego) # Expored from translatewiki.net # +# Author: Brion # Author: Gallaecio # Author: Toliño # -- @@ -10,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:54+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:25+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +81,7 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -696,7 +697,7 @@ msgstr "" "A lonxitude máxima das notas é de %d caracteres, incluído o URL do dato " "adxunto." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato non soportado." @@ -893,9 +894,8 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuario" @@ -1031,7 +1031,7 @@ msgstr "Non é o dono desa aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1132,57 +1132,57 @@ msgid "Design" msgstr "Deseño" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Configuración do deseño deste sitio StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL do logo incorrecto." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "O tema visual non está dispoñible: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Cambiar o logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo do sitio" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Cambar o tema visual" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema visual do sitio" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema visual para o sitio." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Tema visual personalizado" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar a imaxe de fondo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fondo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1192,75 +1192,76 @@ msgstr "" "ficheiro é de %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Activado" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Desactivado" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar ou desactivar a imaxe de fondo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Imaxe de fondo en mosaico" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar as cores" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contido" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Ligazóns" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avanzado" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalizado" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Utilizar os valores por defecto" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar o deseño por defecto" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Volver ao deseño por defecto" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Gardar o deseño" @@ -1338,7 +1339,7 @@ msgstr "O retorno de chamada é longo de máis." msgid "Callback URL is not valid." msgstr "O URL do retorno de chamada é incorrecto." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Non se puido actualizar a aplicación." @@ -1431,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1905,6 +1906,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Bloquear" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Converter ao usuario en administrador do grupo" @@ -2350,6 +2357,110 @@ msgstr "Non pertence a ese grupo." msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Xa se identificou." @@ -2590,8 +2701,8 @@ msgid "Connected applications" msgstr "Aplicacións conectadas" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2616,7 +2727,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Non hai perfil para a nota." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" @@ -2783,8 +2894,8 @@ msgid "Paths" msgstr "Rutas" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Configuración do servidor e das rutas para este sitio StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3653,8 +3764,8 @@ msgid "Sessions" msgstr "Sesións" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Configuración da sesión para este sitio StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3673,7 +3784,6 @@ msgid "Turn on debugging output for sessions." msgstr "Activar a saída de depuración para as sesións." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Gardar a configuración do sitio" @@ -4598,74 +4708,78 @@ msgstr "" "licenza deste sitio: \"%2$s\"." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Usuario" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Preferencias de usuario para este sitio StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Límite da biografía incorrecto. Debe ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Límite da biografía" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Extensión máxima da biografía dun perfil en caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Novos usuarios" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Nova benvida para os usuarios" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de benvida para os novos usuarios (255 caracteres como máximo)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Subscrición por defecto" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Subscribir automaticamente aos novos usuarios a este usuario." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitacións" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Activáronse as invitacións" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a subscrición" @@ -4680,7 +4794,9 @@ msgstr "" "deste usuario. Se non pediu a subscrición ás notas de alguén, prema en " "\"Rexeitar\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenza" @@ -4879,6 +4995,15 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autores" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Marcar como favorito" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4936,6 +5061,17 @@ msgstr "Non forma parte do grupo." msgid "Group leave failed." msgstr "Non se puido deixar o grupo." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Unirse" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5020,21 +5156,21 @@ msgid "Problem saving notice." msgstr "Houbo un problema ao gardar a nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo dado para saveKnownGroups era incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" -msgstr "♻ @%1$s %2$s" +msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). @@ -5058,7 +5194,7 @@ msgid "Missing profile." msgstr "Falta o perfil de usuario." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Non se puido gardar a nota do sitio." @@ -5097,9 +5233,18 @@ msgstr "Non se puido borrar o pase de subscrición OMB." msgid "Could not delete subscription." msgstr "Non se puido borrar a subscrición." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvido a %1$s, @%2$s!" @@ -5423,19 +5568,19 @@ msgstr "" "Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paxinación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Anteriores" @@ -5544,6 +5689,11 @@ msgstr "Modificar a nota do sitio" msgid "Snapshots configuration" msgstr "Configuración das instantáneas" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5554,33 +5704,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Non hai ningunha aplicación para esa clave." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Pase de acceso incorrecto." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Non hai ningún usuario para ese pase." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Non puidemos autenticalo." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Intentouse revogar un pase descoñecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Erro ao borrar o pase revogado." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5629,38 +5779,38 @@ msgid "URL to redirect to after authentication" msgstr "URL ao que ir tras a autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador ou de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lectura e escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancelar" @@ -6157,10 +6307,6 @@ msgstr "Desmarcar esta nota como favorita" msgid "Favor this notice" msgstr "Marcar esta nota como favorita" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Marcar como favorito" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6178,8 +6324,8 @@ msgid "FOAF" msgstr "Amigo dun amigo" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar os datos" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6375,10 +6521,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Non se coñece a fonte %d da caixa de entrada." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Unirse" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Deixar" @@ -6810,6 +6952,8 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" non é un tipo de ficheiro soportado neste servidor. Intente usar " +"outro formato de %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. @@ -7070,7 +7214,7 @@ msgstr "Repetir esta nota" msgid "Revoke the \"%s\" role from this user" msgstr "Revogarlle o rol \"%s\" a este usuario" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Non se estableceu ningún usuario único para o modo de usuario único." @@ -7300,64 +7444,64 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "hai uns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "hai como un minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hai un minuto" +msgstr[1] "hai %d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "hai como unha hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hai unha hora" +msgstr[1] "hai %d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "hai como un día" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hai un día" +msgstr[1] "hai %d días" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "hai como un mes" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hai un mes" +msgstr[1] "hai %d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "hai como un ano" @@ -7370,3 +7514,17 @@ msgstr "%s non é unha cor correcta!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 05bd870d63..019a639099 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:57+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:25+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -657,7 +657,7 @@ msgstr "Njenamakany." msgid "Max notice size is %d chars, including attachment URL." msgstr "" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Njepodpěrany format." @@ -831,9 +831,8 @@ msgid "Yes" msgstr "Haj" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -961,7 +960,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -1055,56 +1054,56 @@ msgid "Design" msgstr "Design" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Designowe nastajenja za tute sydło StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Njepłaćiwy logowy URL." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Šat njesteji k dispoziciji: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Logo změnić" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo sydła" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Šat změnić" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Šat sydła" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Šat za sydło." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Swójski šat" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Móžeš swójski šat StatusNet jako .ZIP-archiw nahrać." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Pozadkowy wobraz změnić" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Pozadk" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1113,67 +1112,68 @@ msgstr "" "Móžeš pozadkowy wobraz za sydło nahrać. Maksimalna datajowa wulkosć je %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Zapinjeny" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Wupinjeny" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Barby změnić" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Wobsah" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Bóčnica" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Wotkazy" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Rozšěrjeny" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Swójski CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standardne designy wobnowić" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Na standard wróćo stajić" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Składować" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Design składować" @@ -1243,7 +1243,7 @@ msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)." msgid "Organization homepage is required." msgstr "Startowa strona organizacije je trěbna." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Aplikacija njeda so aktualizować." @@ -1334,7 +1334,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Přetorhnyć" @@ -1756,6 +1756,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Wužiwarja k administratorej skupiny činić" @@ -2136,6 +2142,110 @@ msgstr "Njejsy čłon teje skupiny." msgid "%1$s left group %2$s" msgstr "%1$s je skupinu %2$s wopušćił" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Hižo přizjewjeny." @@ -2349,7 +2459,7 @@ msgid "Connected applications" msgstr "Zwjazane aplikacije" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 @@ -2512,8 +2622,8 @@ msgid "Paths" msgstr "Šćežki" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Šćežka a serwerowe nastajenja za tute sydło StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3218,8 +3328,8 @@ msgid "Sessions" msgstr "Posedźenja" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Nastajenja posedźenja za tute sydło StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3238,7 +3348,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sydłowe nastajenja składować" @@ -3930,66 +4039,70 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Wužiwar" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Wužiwarske nastajenja za sydło StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nowi wužiwarjo" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Powitanje noweho wužiwarja" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Powitanski tekst za nowych wužiwarjow (maks. 255 znamješkow)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Standardny abonement" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Přeprošenja" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Přeprošenja zmóžnjene" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonement awtorizować" @@ -4001,7 +4114,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenca" @@ -4156,6 +4271,11 @@ msgstr "Wersija" msgid "Author(s)" msgstr "Awtorojo" +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4210,6 +4330,17 @@ msgstr "Njeje dźěl skupiny." msgid "Group leave failed." msgstr "Wopušćenje skupiny je so njeporadźiło." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Zastupić" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4259,18 +4390,18 @@ msgid "" msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4295,7 +4426,7 @@ msgid "Missing profile." msgstr "Falowacy profil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Njeje móžno, tafličku składować." @@ -4329,9 +4460,18 @@ msgstr "Znamjo OMB-abonementa njeda so zhašeć." msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj do %1$s, @%2$s!" @@ -4610,13 +4750,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Před" @@ -4708,6 +4848,11 @@ msgstr "Sydłowu zdźělenku wobdźěłać" msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4786,37 +4931,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Wobhladowak" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Jenož čitajomny" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Popisujomny" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Přetorhnyć" @@ -5270,8 +5415,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Daty eksportować" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5458,10 +5603,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Njeznate žórło postoweho kašćika %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Zastupić" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Wopušćić" @@ -6021,7 +6162,7 @@ msgstr "Tutu zdźělenku wospjetować" msgid "Revoke the \"%s\" role from this user" msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany." @@ -6216,17 +6357,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "před něšto sekundami" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "před něhdźe jednej mjeńšinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6236,12 +6377,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "před něhdźe jednej hodźinu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6251,12 +6392,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "před něhdźe jednym dnjom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6266,12 +6407,12 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "před něhdźe jednym měsacom" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6281,7 +6422,7 @@ msgstr[2] "" msgstr[3] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "před něhdźe jednym lětom" @@ -6296,3 +6437,17 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s płaćiwa barba njeje! Wužij 3 heksadecimalne znamješka abo 6 " "heksadecimalnych znamješkow." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index aa3e0c055a..8b0a654192 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:07:58+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -113,7 +113,7 @@ msgstr "Pagina non existe." #: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." -msgstr "Usator non existe." +msgstr "Iste usator non existe." #. TRANS: Page title. %1$s is user nickname, %2$d is page number #: actions/all.php:90 @@ -693,7 +693,7 @@ msgstr "" "Le longitude maximal del notas es %d characteres, includente le URL " "adjungite." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato non supportate." @@ -890,9 +890,8 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blocar iste usator" @@ -1028,7 +1027,7 @@ msgstr "Tu non es le proprietario de iste application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1129,58 +1128,58 @@ msgid "Design" msgstr "Apparentia" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Configuration del apparentia de iste sito StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL de logotypo invalide." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Thema non disponibile: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Cambiar logotypo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logotypo del sito" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Cambiar thema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Thema del sito" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Le thema de apparentia pro le sito." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Apparentia personalisate" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "Es possibile incargar un apparentia personalisate de StatusNet in un " "archivo .ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Cambiar imagine de fundo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1190,75 +1189,76 @@ msgstr "" "file es %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Active" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Non active" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Activar o disactivar le imagine de fundo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Tegular le imagine de fundo" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Cambiar colores" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contento" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Ligamines" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avantiate" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalisate" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar predefinitiones" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaurar apparentias predefinite" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Revenir al predefinitiones" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Salveguardar apparentia" @@ -1330,13 +1330,13 @@ msgstr "Le sito web del organisation es requirite." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." -msgstr "Le reappello (callback) es troppo longe." +msgstr "Le appello de retorno es troppo longe." #: actions/editapplication.php:225 actions/newapplication.php:215 msgid "Callback URL is not valid." -msgstr "Le URL de reappello (callback) non es valide." +msgstr "Le URL de retorno non es valide." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Non poteva actualisar application." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" @@ -1898,6 +1898,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Blocar" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Facer le usator administrator del gruppo" @@ -2198,7 +2204,7 @@ msgstr "Invitar nove usatores" #: actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "Tu es a subscribite a iste usatores:" +msgstr "Tu es ja subscribite a iste usatores:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -2345,6 +2351,110 @@ msgstr "Tu non es membro de iste gruppo." msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Tu es jam authenticate." @@ -2585,8 +2695,8 @@ msgid "Connected applications" msgstr "Applicationes connectite" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Tu ha permittite al sequente applicationes de acceder a tu conto." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2611,7 +2721,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Le nota ha nulle profilo." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Le stato de %1$s in %2$s" @@ -2776,8 +2886,8 @@ msgid "Paths" msgstr "Camminos" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Configuration de cammino e servitor pro iste sito StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3342,7 +3452,7 @@ msgstr "Crear conto" #: actions/register.php:142 msgid "Registration not allowed." -msgstr "Registration non permittite." +msgstr "Creation de conto non permittite." #: actions/register.php:205 msgid "You can't register if you don't agree to the license." @@ -3633,8 +3743,8 @@ msgid "Sessions" msgstr "Sessiones" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Parametros de session pro iste sito StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3653,7 +3763,6 @@ msgid "Turn on debugging output for sessions." msgstr "Producer informationes technic pro cercar defectos in sessiones." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salveguardar configurationes del sito" @@ -4573,74 +4682,78 @@ msgstr "" "licentia del sito ‘%2$s’." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Usator" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Configurationes de usator pro iste sito de StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Limite de biographia invalide. Debe esser un numero." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de benvenita invalide. Longitude maximal es 255 characteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limite de biographia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Le longitude maximal del biographia de un profilo in characteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nove usatores" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Message de benvenita a nove usatores" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de benvenita pro nove usatores (max. 255 characteres)" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Subscription predefinite" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Subscriber automaticamente le nove usatores a iste usator." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitationes" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invitationes activate" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Si le usatores pote invitar nove usatores." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorisar subscription" @@ -4654,7 +4767,9 @@ msgstr "" "Per favor verifica iste detalios pro assecurar te que tu vole subscriber te " "al notas de iste usator. Si tu non ha requestate isto, clicca \"Rejectar\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licentia" @@ -4854,6 +4969,15 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(es)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Favorir" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4910,6 +5034,17 @@ msgstr "Non es membro del gruppo." msgid "Group leave failed." msgstr "Le cancellation del membrato del gruppo ha fallite." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Inscriber" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4994,18 +5129,18 @@ msgid "Problem saving notice." msgstr "Problema salveguardar nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Mal typo fornite a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5032,7 +5167,7 @@ msgid "Missing profile." msgstr "Profilo mancante." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Impossibile salveguardar le etiquetta." @@ -5071,9 +5206,18 @@ msgstr "Non poteva deler le indicio OMB del subscription." msgid "Could not delete subscription." msgstr "Non poteva deler subscription." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" @@ -5393,19 +5537,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Post" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Ante" @@ -5515,6 +5659,11 @@ msgstr "Modificar aviso del sito" msgid "Snapshots configuration" msgstr "Configuration del instantaneos" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5600,39 +5749,39 @@ msgid "URL to redirect to after authentication" msgstr "URL verso le qual rediriger post authentication" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navigator" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Scriptorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Typo de application, navigator o scriptorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Lectura solmente" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lectura e scriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancellar" @@ -6128,10 +6277,6 @@ msgstr "Disfavorir iste nota" msgid "Favor this notice" msgstr "Favorir iste nota" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Favorir" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6149,8 +6294,8 @@ msgid "FOAF" msgstr "Amico de un amico" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar datos" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6344,10 +6489,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Fonte de cassa de entrata \"%s\" incognite" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Inscriber" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Quitar" @@ -7041,7 +7182,7 @@ msgstr "Repeter iste nota" msgid "Revoke the \"%s\" role from this user" msgstr "Revocar le rolo \"%s\" de iste usator" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Nulle signule usator definite pro le modo de singule usator." @@ -7273,17 +7414,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "alcun secundas retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "circa un minuta retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7291,12 +7432,12 @@ msgstr[0] "un minuta" msgstr[1] "%d minutas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "circa un hora retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7304,12 +7445,12 @@ msgstr[0] "un hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "circa un die retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7317,12 +7458,12 @@ msgstr[0] "un die" msgstr[1] "%d dies" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "circa un mense retro" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7330,7 +7471,7 @@ msgstr[0] "un mense" msgstr[1] "%d menses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "circa un anno retro" @@ -7343,3 +7484,17 @@ msgstr "%s non es un color valide!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index d9819ca594..7bebb8e92d 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:00+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:27+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -610,9 +610,8 @@ msgid "No" msgstr "Athugasemd" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -716,7 +715,7 @@ msgstr "Staðfestingarlykill fannst ekki." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -779,80 +778,81 @@ msgid "Design" msgstr "" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Babl vefsíðunnar" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texti" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Vista" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1269,6 +1269,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "" @@ -1653,6 +1659,110 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." msgid "%1$s left group %2$s" msgstr "Staða %1$s á %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Þú hefur nú þegar skráð þig inn." @@ -1811,7 +1921,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -1831,7 +1941,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Notandi hefur enga persónulega síðu." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Staða %1$s á %2$s" @@ -1972,7 +2082,7 @@ msgid "Paths" msgstr "" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:183 @@ -2618,7 +2728,7 @@ msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:175 @@ -3320,54 +3430,60 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Heimila áskriftir" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "" @@ -3499,6 +3615,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Uppáhald" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3533,6 +3658,17 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Gerast meðlimur" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3586,13 +3722,13 @@ msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -3612,7 +3748,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Gat ekki vistað merki." @@ -3636,6 +3772,15 @@ msgstr "Gat ekki vistað áskrift." msgid "Could not delete subscription." msgstr "Gat ekki vistað áskrift." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %s." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -3835,19 +3980,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Uppröðun" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Eftir" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Áður" @@ -3882,6 +4027,11 @@ msgstr "" msgid "User" msgstr "Notandi" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -3944,37 +4094,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Hætta við" @@ -4298,10 +4448,6 @@ msgstr "Taka þetta babl út sem uppáhald" msgid "Favor this notice" msgstr "Setja þetta babl í uppáhald" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Uppáhald" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -4319,8 +4465,8 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Flytja út gögn" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -4495,10 +4641,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Gerast meðlimur" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Hætta sem meðlimur" @@ -5017,7 +5159,7 @@ msgstr "Já" msgid "Revoke the \"%s\" role from this user" msgstr "" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5189,17 +5331,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5207,12 +5349,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5220,12 +5362,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "fyrir um einum degi síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5233,12 +5375,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5246,7 +5388,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "fyrir um einu ári síðan" @@ -5254,3 +5396,17 @@ msgstr "fyrir um einu ári síðan" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 505f6abaf2..537d701351 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:01+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:28+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -685,7 +685,7 @@ msgid "Max notice size is %d chars, including attachment URL." msgstr "" "La dimensione massima di un messaggio è di %d caratteri, compreso l'URL." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato non supportato." @@ -881,9 +881,8 @@ msgid "Yes" msgstr "Sì" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blocca questo utente" @@ -1019,7 +1018,7 @@ msgstr "Questa applicazione non è di tua proprietà." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1119,56 +1118,56 @@ msgid "Design" msgstr "Aspetto" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Impostazioni dell'aspetto per questo sito di StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL del logo non valido." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema non disponibile: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Modifica logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo del sito" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Modifica tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema del sito" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema per questo sito." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Tema personalizzato" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Puoi caricare un tema per StatusNet personalizzato come un file ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Modifica l'immagine di sfondo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Sfondo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1178,75 +1177,76 @@ msgstr "" "file è di %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "On" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Off" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Abilita o disabilita l'immagine di sfondo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Affianca l'immagine di sfondo" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Modifica colori" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Contenuto" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra laterale" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Testo" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Collegamenti" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avanzate" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalizzato" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usa predefiniti" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Ripristina i valori predefiniti" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Reimposta i valori predefiniti" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salva" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Salva aspetto" @@ -1324,7 +1324,7 @@ msgstr "Il callback è troppo lungo." msgid "Callback URL is not valid." msgstr "L'URL di callback non è valido." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Impossibile aggiornare l'applicazione." @@ -1418,7 +1418,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Annulla" @@ -1890,6 +1890,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Rende l'utente amministratore del gruppo" @@ -2336,6 +2342,110 @@ msgstr "Non fai parte di quel gruppo." msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Accesso già effettuato." @@ -2564,8 +2674,8 @@ msgid "Connected applications" msgstr "Applicazioni collegate" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2590,7 +2700,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Il messaggio non ha un profilo." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Stato di %1$s su %2$s" @@ -2756,8 +2866,8 @@ msgid "Paths" msgstr "Percorsi" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Percorso e impostazioni server per questo sito StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3612,8 +3722,8 @@ msgid "Sessions" msgstr "Sessioni" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Impostazioni di sessione per questo sito di StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3632,7 +3742,6 @@ msgid "Turn on debugging output for sessions." msgstr "Abilita il debug per le sessioni" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salva impostazioni" @@ -4540,75 +4649,79 @@ msgstr "" "licenza \"%2$s\" di questo sito." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Utente" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Impostazioni utente per questo sito StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Limite per la biografia non valido. Deve essere numerico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Testo di benvenuto non valido. La lunghezza massima è di 255 caratteri." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limite biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Lunghezza massima in caratteri della biografia" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nuovi utenti" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Messaggio per nuovi utenti" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Messaggio di benvenuto per nuovi utenti (max 255 caratteri)" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Abbonamento predefinito" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Abbonare automaticamente i nuovi utenti a questo utente" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Inviti" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Inviti abilitati" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Indica se consentire agli utenti di invitarne di nuovi" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizza abbonamento" @@ -4622,7 +4735,9 @@ msgstr "" "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Rifiuta\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licenza" @@ -4821,6 +4936,15 @@ msgstr "Versione" msgid "Author(s)" msgstr "Autori" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Preferisci" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4863,6 +4987,17 @@ msgstr "Non si fa parte del gruppo." msgid "Group leave failed." msgstr "Uscita dal gruppo non riuscita." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Iscriviti" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4947,18 +5082,18 @@ msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5012,9 +5147,18 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Could not delete subscription." msgstr "Impossibile salvare l'abbonamento." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" @@ -5338,19 +5482,19 @@ msgstr "" "licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginazione" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Successivi" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Precedenti" @@ -5458,6 +5602,11 @@ msgstr "Modifica messaggio del sito" msgid "Snapshots configuration" msgstr "Configurazione snapshot" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5543,38 +5692,38 @@ msgid "URL to redirect to after authentication" msgstr "URL verso cui redirigere dopo l'autenticazione" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipo di applicazione, browser o desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Sola lettura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lettura-scrittura" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Annulla" @@ -6072,10 +6221,6 @@ msgstr "Togli questo messaggio dai preferiti" msgid "Favor this notice" msgstr "Rendi questo messaggio un preferito" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Preferisci" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6093,8 +6238,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Esporta dati" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6287,10 +6432,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Sorgente casella in arrivo %d sconosciuta." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Iscriviti" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Lascia" @@ -6984,7 +7125,7 @@ msgstr "Ripeti questo messaggio" msgid "Revoke the \"%s\" role from this user" msgstr "Revoca il ruolo \"%s\" a questo utente" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Nessun utente singolo definito per la modalità single-user." @@ -7212,17 +7353,17 @@ msgid "Moderator" msgstr "Moderatore" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "pochi secondi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "circa un minuto fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7230,12 +7371,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "circa un'ora fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7243,12 +7384,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "circa un giorno fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7256,12 +7397,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "circa un mese fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7269,7 +7410,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "circa un anno fa" @@ -7282,3 +7423,17 @@ msgstr "%s non è un colore valido." #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index c9d1ed3352..dff6dc5c2d 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:03+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:29+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -650,7 +650,7 @@ msgstr "見つかりません。" msgid "Max notice size is %d chars, including attachment URL." msgstr "つぶやきは URL を含めて最大 %d 字までです。" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "サポート外の形式です。" @@ -819,9 +819,8 @@ msgid "Do not block this user" msgstr "このユーザをアンブロックする" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "このユーザをブロックする" @@ -951,7 +950,7 @@ msgstr "このアプリケーションのオーナーではありません。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1042,52 +1041,52 @@ msgid "Design" msgstr "デザイン" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "この StatusNet サイトのデザイン設定。" +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "不正なロゴ URL" -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "IM が利用不可。" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "ロゴの変更" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "サイトロゴ" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "テーマ変更" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "サイトテーマ" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "サイトのテーマ" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "バックグラウンドイメージの変更" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "バックグラウンド" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1097,75 +1096,76 @@ msgstr "" "イズは %1$s。" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "オン" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "オフ" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "バックグラウンドイメージのオンまたはオフ。" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "タイルバックグラウンドイメージ" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "色の変更" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "内容" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "サイドバー" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "テキスト" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "リンク" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "デフォルトを使用" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "デフォルトデザインに戻す。" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "デフォルトへリセットする" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "保存" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "デザインの保存" @@ -1243,7 +1243,7 @@ msgstr "コールバックが長すぎます。" msgid "Callback URL is not valid." msgstr "コールバックURLが不正です。" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "アプリケーションを更新できません。" @@ -1756,6 +1756,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "ユーザをグループの管理者にする" @@ -2186,6 +2192,110 @@ msgstr "あなたはそのグループのメンバーではありません。" msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "既にログインしています。" @@ -2402,8 +2512,8 @@ msgid "Connected applications" msgstr "接続されたアプリケーション" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "あなたのアカウントにアクセスする以下のアプリケーションを許可しました。" +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2423,7 +2533,7 @@ msgstr "開発者は彼らのアプリケーションのために登録設定を msgid "Notice has no profile." msgstr "ユーザはプロフィールをもっていません。" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%2$s における %1$s のステータス" @@ -2583,8 +2693,8 @@ msgid "Paths" msgstr "パス" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "パスと StatusNet サイトのサーバー設定" +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3399,8 +3509,8 @@ msgid "Sessions" msgstr "セッション" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "この StatusNet サイトのセッション設定。" +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3419,7 +3529,6 @@ msgid "Turn on debugging output for sessions." msgstr "セッションのためのデバッグ出力をオン。" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "サイト設定の保存" @@ -4261,69 +4370,73 @@ msgstr "" "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" "りません。" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "この StatusNet サイトのユーザ設定。" +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "不正な自己紹介制限。数字である必要があります。" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "不正なウェルカムテキスト。最大長は255字です。" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "自己紹介制限" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "プロファイル自己紹介の最大文字長。" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "新しいユーザ" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "新しいユーザを歓迎" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "新しいユーザへのウェルカムテキスト (最大255字)。" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "デフォルトフォロー" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "自動的にこのユーザに新しいユーザをフォローしてください。" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "招待" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "招待が可能" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "ユーザが新しいユーザを招待するのを許容するかどうか。" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "フォローを承認" @@ -4337,7 +4450,9 @@ msgstr "" "ユーザのつぶやきをフォローするには詳細を確認して下さい。だれかのつぶやきを" "フォローするために尋ねない場合は、\"Reject\" をクリックして下さい。" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "ライセンス" @@ -4522,6 +4637,15 @@ msgstr "バージョン" msgid "Author(s)" msgstr "作者" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "お気に入り" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4564,6 +4688,17 @@ msgstr "グループの一部ではありません。" msgid "Group leave failed." msgstr "グループ脱退に失敗しました。" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "参加" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -4642,18 +4777,18 @@ msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4673,7 +4808,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "タグをを保存できません。" @@ -4712,9 +4847,18 @@ msgstr "フォローを保存できません。" msgid "Could not delete subscription." msgstr "フォローを保存できません。" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" @@ -4956,19 +5100,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "ページ化" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "前>>" @@ -5053,6 +5197,11 @@ msgstr "パス設定" msgid "Sessions configuration" msgstr "セッション設定" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5138,39 +5287,39 @@ msgid "URL to redirect to after authentication" msgstr "認証の後にリダイレクトするURL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "ブラウザ" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "デスクトップ" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "リードオンリー" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "リードライト" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "中止" @@ -5546,10 +5695,6 @@ msgstr "このつぶやきのお気に入りをやめる" msgid "Favor this notice" msgstr "このつぶやきをお気に入りにする" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "お気に入り" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5567,8 +5712,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "データのエクスポート" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5760,10 +5905,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "不明な受信箱のソース %d。" -#: lib/joinform.php:114 -msgid "Join" -msgstr "参加" - #: lib/leaveform.php:114 msgid "Leave" msgstr "離れる" @@ -6244,7 +6385,7 @@ msgstr "Yes" msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "single-user モードのためのシングルユーザが定義されていません。" @@ -6444,60 +6585,60 @@ msgid "Message" msgstr "メッセージ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "数秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "約 1 分前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "約 1 ヵ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "約 1 年前" @@ -6510,3 +6651,17 @@ msgstr "%sは有効な色ではありません!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s は有効な色ではありません! 3か6の16進数を使ってください。" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index a76101d6cd..12d99f62cc 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:04+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:30+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "შეინახე" @@ -680,7 +680,7 @@ msgstr "ვერ მოიძებნა." msgid "Max notice size is %d chars, including attachment URL." msgstr "შეყობინების დასაშვები ზომაა %d სიმბოლო მიმაგრებული URL-ის ჩათვლით." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "ფორმატი არ არის მხარდაჭერილი." @@ -873,9 +873,8 @@ msgid "Yes" msgstr "დიახ" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "დაბლოკე ეს მომხმარებელი" @@ -1011,7 +1010,7 @@ msgstr "თქვენ არ ხართ ამ აპლიკაციი #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -1109,57 +1108,57 @@ msgid "Design" msgstr "ამ მომხმარებლის წაშლა" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "ამ საიტის დიზაინის პარამეტრები" +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "ლოგოს არასწორი URL-ი" -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "იერსახე არ არის ხელმისაწვდომი %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "შეცვალე ლოგო" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "საიტის ლოგო" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "შეცვალე იერსახე" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "საიტის იერსახე" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "იერსახე ამ საიტისთვის" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "საკუთარი იერსახე" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "თქვენ შეგიძლიათ ატვირთოთ საკუთარი StatusNet–იერსახე .ZIP არქივის სახით." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "შეცვალე ფონური სურათი" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "ფონი" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1169,75 +1168,76 @@ msgstr "" "ზომაა %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "ჩართვა" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "გამორთვა" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "ჩართე ან გამორთე ფონური სურათის ფუნქცია." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "გაამრავლე ფონური სურათი" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "შეცვალე ფერები" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "შიგთავსი" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "გვერდითი პანელი" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "ტექსტი" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "ბმულები" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "მეტი პარამეტრები" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "საკუთარი CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "დააბრუნე პირვანდელი დიზაინი" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "პირვანდელის პარამეტრების დაბრუნება" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "შენახვა" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "შეინახე დიზაინი" @@ -1315,7 +1315,7 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "აპლიკაციის განახლება ვერ მოხერხდა." @@ -1408,7 +1408,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "გაუქმება" @@ -1877,6 +1877,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "მიანიჭე მომხმარებელს ჯგუფის ადმინობა" @@ -2324,6 +2330,110 @@ msgstr "თვენ არ ხართ ამ ჯგუფის წევრ msgid "%1$s left group %2$s" msgstr "%1$s-მა დატოვა ჯგუფი %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "უკვე ავტორიზირებული ხართ." @@ -2556,8 +2666,8 @@ msgid "Connected applications" msgstr "მიერთებული აპლიკაციები" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "თქვენ შემდეგ აპლიკაციებს მიეცით თქვენს ანგარიშზე წვდომის უფლება." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2582,7 +2692,7 @@ msgstr "" msgid "Notice has no profile." msgstr "შეტყობინებას პრფილი არ გააჩნია." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s–ის სტატუსი %2$s–ზე" @@ -2748,8 +2858,8 @@ msgid "Paths" msgstr "გზები" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "ამ საიტის გზა და სერვერის პარამეტრები." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3600,8 +3710,8 @@ msgid "Sessions" msgstr "სესიები" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "ამ საიტის სესიების პარამეტრები." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3620,7 +3730,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "საიტის პარამეტრების შენახვა" @@ -4515,74 +4624,78 @@ msgstr "" "ლიცენზიასთან ‘%2$s’." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "მომხმარებელი" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "მომხმარებლის პარამეტრები ამ საიტისათვის." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "ბიოგრაფიის არასწორი ლიმიტი. უნდა იყოს ციფრი." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "არასწორი მისასალმებელი ტექსტი. სიმბოლოების მაქს. რაოდენობაა 255." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "პროფილი" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "ბიოგრაფიის ლიმიტი" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "პროფილის ბიოგრაფიის მაქსიმალური ზომა სიმბოლოებში." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "ახალი მომხმარებლები" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "ახალი მომხმარებლის მისალმება" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "მისალმების ტექსტი ახალი მომხმარებლებისთვის (მაქს. 255 სიმბოლო)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "ავტომატურად გამოაწერინე ამ მომხმარებელს ახალი მომხმარებლები." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "მოსაწვევეი" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "მოსაწვევები გააქტიურებულია" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "მიეცეთ თუ არა მომხმარებლებს სხვების მოწვევის უფლება." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "გამოწერის ავტორიზაცია" @@ -4597,7 +4710,9 @@ msgstr "" "განახლებების გამოწერა. თუ თქვენ არ გინდოდათ გამოწერა, მაშინ გააჭირეთ ღილაკს " "\"უარყოფა\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "ლიცენზია" @@ -4796,6 +4911,15 @@ msgstr "ვერსია" msgid "Author(s)" msgstr "ავტორი(ები)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "რჩეული" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4855,6 +4979,17 @@ msgstr "ჯგუფის წევრი არ ხართ." msgid "Group leave failed." msgstr "ჯგუფის დატოვება ვერ მოხერხდა." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "გაერთიანება" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4939,18 +5074,18 @@ msgid "Problem saving notice." msgstr "პრობლემა შეტყობინების შენახვისას." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4978,7 +5113,7 @@ msgid "Missing profile." msgstr "პროფილი არ არსებობს." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "სანიშნეს დამახსოვრება ვერ ხერხდება." @@ -5017,9 +5152,18 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Could not delete subscription." msgstr "გამოწერის წაშლა ვერ მოხერხდა." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!" @@ -5339,19 +5483,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "გვერდებათ დაყოფა" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "წინა" @@ -5459,6 +5603,11 @@ msgstr "საიტის შეტყობინების რედაქ msgid "Snapshots configuration" msgstr "წინა ვერსიების კონფიგურაცია" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5544,39 +5693,39 @@ msgid "URL to redirect to after authentication" msgstr "ავტორიზაციის შემდეგ გადასამისამართებელი URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "ბროუზერი" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "ინსტალირებადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "აპლიკაციის ტიპი, ბროუზერისთვის ან ინსტალირებადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "მხოლოდ წაკითხვადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "კიტხვა-წერადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "შესვლის პირვანდელი მდგომარეობა ამ აპლიკაციისთვის: მხოლოდ წაკითხვადი, ან " "კითხვა-წერადი" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "გაუქმება" @@ -6033,10 +6182,6 @@ msgstr "ამოშალე რჩეულებიდან ეს შეტ msgid "Favor this notice" msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "რჩეული" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6054,8 +6199,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "მონაცემების გატანა" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6251,10 +6396,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "გაერთიანება" - #: lib/leaveform.php:114 msgid "Leave" msgstr "დატოვება" @@ -6927,7 +7068,7 @@ msgstr "შეტყობინების გამეორება" msgid "Revoke the \"%s\" role from this user" msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის." @@ -7154,60 +7295,60 @@ msgid "Moderator" msgstr "მოდერატორი" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "რამდენიმე წამის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "დაახლოებით 1 წუთის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "დაახლოებით 1 საათის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "დაახლოებით 1 დღის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "დაახლოებით 1 თვის წინ" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "დაახლოებით 1 წლის წინ" @@ -7221,3 +7362,17 @@ msgstr "%s არ არის სწორი ფერი!" msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s არ არის სწორი ფერი! გამოიყენეთ 3 ან 6 სიმბოლოიანი თექვსმეტობითი ციფრი." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 0a7d97343d..885bb28d1c 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:05+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:30+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "접근 설정을 저장" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -664,7 +664,7 @@ msgstr "찾을 수가 없습니다." msgid "Max notice size is %d chars, including attachment URL." msgstr "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "지원하지 않는 형식입니다." @@ -834,9 +834,8 @@ msgid "Yes" msgstr "예" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -962,7 +961,7 @@ msgstr "이 응용프로그램 삭제 않기" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1045,56 +1044,56 @@ msgid "Design" msgstr "디자인" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "이 StatusNet 사이트에 대한 디자인 설정" +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "잘못된 로고 URL 입니다." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "인스턴트 메신저를 사용할 수 없습니다." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "로고 변경" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "사이트 로고" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "테마 바꾸기" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "사이트 테마" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "사이트에 대한 테마" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "사용자 지정 테마" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "배경 이미지 바꾸기" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "배경" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1103,71 +1102,72 @@ msgstr "" "사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "켜기" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "끄기" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "배경 이미지를 켜거나 끈다." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "배경 이미지를 반복 나열" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "색상 변경" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "만족하는" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "가장자리 창" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "문자" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "링크" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "고급 검색" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "사용자 정의 CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1233,7 +1233,7 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "관심소식을 생성할 수 없습니다." @@ -1326,7 +1326,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "취소" @@ -1726,6 +1726,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -2138,6 +2144,110 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "%1$s left group %2$s" msgstr "%1$s의 상태 (%2$s에서)" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "이미 로그인 하셨습니다." @@ -2329,8 +2439,8 @@ msgid "Connected applications" msgstr "연결한 응용프로그램" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "다음 응용 프로그램이 계정에 접근하도록 허용되어 있습니다." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:186 #, php-format @@ -2345,7 +2455,7 @@ msgstr "" msgid "Notice has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" @@ -2490,6 +2600,10 @@ msgstr "비밀 번호 저장" msgid "Paths" msgstr "경로" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s." @@ -3144,6 +3258,10 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." msgid "User is already sandboxed." msgstr "이용자의 지속적인 게시글이 없습니다." +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" msgstr "" @@ -3161,7 +3279,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "접근 설정을 저장" @@ -3929,55 +4046,65 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "사용자" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "구독을 허가" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "라이센스" @@ -4115,6 +4242,15 @@ msgstr "플러그인" msgid "Version" msgstr "버전" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "좋아합니다" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4159,6 +4295,17 @@ msgstr "그룹에 가입하지 못했습니다." msgid "Group leave failed." msgstr "그룹에 가입하지 못했습니다." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "가입" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -4219,13 +4366,13 @@ msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4245,7 +4392,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "태그를 저장할 수 없습니다." @@ -4274,9 +4421,18 @@ msgstr "구독을 저장할 수 없습니다." msgid "Could not delete subscription." msgstr "구독을 저장할 수 없습니다." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%s에 답신" @@ -4559,19 +4715,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "페이지수" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "앞 페이지" @@ -4659,6 +4815,11 @@ msgstr "메일 주소 확인" msgid "Snapshots configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4722,37 +4883,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "브라우저" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "데스크톱" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "읽기 전용" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "읽기 쓰기" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "취소" @@ -5087,10 +5248,6 @@ msgstr "이 게시글 좋아하기 취소" msgid "Favor this notice" msgstr "이 게시글을 좋아합니다." -#: lib/favorform.php:140 -msgid "Favor" -msgstr "좋아합니다" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5108,8 +5265,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "데이터 내보내기" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5287,10 +5444,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "가입" - #: lib/leaveform.php:114 msgid "Leave" msgstr "떠나기" @@ -5822,7 +5975,7 @@ msgstr "예" msgid "Revoke the \"%s\" role from this user" msgstr "그룹 이용자는 차단해제" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6020,60 +6173,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "몇 초 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "1분 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "1시간 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "하루 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "1달 전" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "1년 전" @@ -6081,3 +6234,17 @@ msgstr "1년 전" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 75b672334d..4b867999eb 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:07+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -345,7 +345,7 @@ msgstr "Примачот не е пронајден." #: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Неможете да испраќате директни пораки на корисници што не ви се пријатели." +"Неможете да испраќате директни пораки на корисници што не Ви се пријатели." #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 @@ -695,7 +695,7 @@ msgstr "" "Максималната големина на забелешката е %d знаци, вклучувајќи ја URL-адресата " "на прилогот." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Неподдржан формат." @@ -893,9 +893,8 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Блокирај го корисников" @@ -1031,7 +1030,7 @@ msgstr "Не сте сопственик на овој програм." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1132,56 +1131,56 @@ msgid "Design" msgstr "Изглед" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Нагодувања на изгледот на ова StatusNet-мрежно место." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Погрешен URL на лого." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Темата е недостапна: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Промени лого" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Лого на мрежното место" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Промени изглед" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Изглед на мрежното место" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Изглед за мрежното место." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Прилагоден мотив" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Можете да подигнете свој изглед за StatusNet како .ZIP архив." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Промена на слика на позадина" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Позадина" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1191,75 +1190,76 @@ msgstr "" "големина на податотеката е %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Вкл." #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Искл." -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Вклучи или исклучи позадинска слика." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Позадината во квадрати" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Промена на бои" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Содржина" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Странична лента" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Врски" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Напредно" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Прилагодено CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Користи по основно" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Врати основно-зададени нагодувања" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Врати по основно" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Зачувај изглед" @@ -1337,7 +1337,7 @@ msgstr "Повикувањето е предолго." msgid "Callback URL is not valid." msgstr "URL-адресата за повикување е неважечка." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Не можев да го подновам програмот." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" @@ -1904,6 +1904,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Блокирај" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Направи го корисникот администратор на групата" @@ -2136,7 +2142,7 @@ msgid "" "s for sending messages to you." msgstr "" "Испративме потврден код на IM-адресата што ја додадовте. Ќе мора да му " -"одобрите на %S да ви испраќа пораки." +"одобрите на %s да Ви испраќа пораки." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. #: actions/imsettings.php:391 @@ -2265,7 +2271,7 @@ msgstr "Прати" #: actions/invite.php:228 #, 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 singular 3rd-person pronoun in English. #: actions/invite.php:231 @@ -2300,8 +2306,8 @@ msgid "" msgstr "" "%1$s Ве кани да се придружите на %2$s (%3$s).\n" "\n" -"%2$s е мрежно место за микроблогирање што ви овозможува да бидете во тек " -"луѓето што ги познавате и луѓето кои ве интересираат.\n" +"%2$s е мрежно место за микроблогирање што Ви овозможува да бидете во тек " +"луѓето што ги познавате и луѓето кои Ве интересираат.\n" "\n" "Можете да објавувате и новости за Вас, Ваши размисли, и настани од Вашиот " "живот за да ги информирате луѓето што Ве знаат. Ова е воедно и одлично место " @@ -2352,6 +2358,110 @@ msgstr "Не членувате во таа група." msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Веќе сте најавени." @@ -2590,8 +2700,8 @@ msgid "Connected applications" msgstr "Поврзани програми" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Им имате дозволено пристап до Вашата сметка на следните програми." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2615,7 +2725,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Забелешката нема профил." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" @@ -2781,8 +2891,8 @@ msgid "Paths" msgstr "Патеки" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Нагодувања за патеки и опслужувачи за оваа StatusNet мрежно место." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3453,7 +3563,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" @@ -3645,8 +3755,8 @@ msgid "Sessions" msgstr "Сесии" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Нагодувања на сесиите за оваа StatusNet-мрежно место." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3665,7 +3775,6 @@ msgid "Turn on debugging output for sessions." msgstr "Вклучи извод од поправка на грешки за сесии." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зачувај нагодувања на мреж. место" @@ -3752,8 +3861,7 @@ msgstr "" #: actions/showapplication.php:309 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" -"Дали сте сигурни дека сакате да го смените вашиот кориснички клуч и тајната " -"фраза?" +"Дали сте сигурни дека сакате да го смените Вашиот кориснички клуч и тајна?" #: actions/showfavorites.php:79 #, php-format @@ -4475,7 +4583,7 @@ msgid "" msgstr "" "Моментално не следите ничии забелешки. Претплатете се на луѓе кои ги " "познавате. Пробајте со [пребарување на луѓе](%%action.peoplesearch%%), " -"побарајте луѓе во група која ве интересира и меѓу нашите [избрани корисници]" +"побарајте луѓе во група која Ве интересира и меѓу нашите [избрани корисници]" "(%%action.featured%%). Ако сте [корисник на Twitter](%%action.twittersettings" "%%), тука можете автоматски да се претплатите на луѓе кои таму ги следите." @@ -4590,74 +4698,78 @@ msgstr "" "мрежното место „%2$s“." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Корисник" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Кориснички нагодувања за ова StatusNet-мрежно место." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Неважечко ограничување за биографијата. Мора да е бројчено." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Неважечки текст за добредојде. Дозволени се највеќе 255 знаци." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Ограничување за биографијата" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Максимална големина на профилната биографија во знаци." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Нови корисници" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Добредојде за нов корисник" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст за добредојде на нови корисници (највеќе до 255 знаци)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Основно-зададена претплата" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Автоматски претплатувај нови корисници на овој корисник." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Покани" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Поканите се овозможени" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Дали да им е дозволено на корисниците да канат други корисници." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" @@ -4672,7 +4784,9 @@ msgstr "" "за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно " "кликнете на „Одбиј“" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Лиценца" @@ -4873,6 +4987,15 @@ msgstr "Верзија" msgid "Author(s)" msgstr "Автор(и)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Омилено" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4930,6 +5053,17 @@ msgstr "Не е дел од групата." msgid "Group leave failed." msgstr "Напуштањето на групата не успеа." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Придружи се" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5014,18 +5148,18 @@ msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "На saveKnownGroups му е уакажан грешен тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5054,7 +5188,7 @@ msgid "Missing profile." msgstr "Недостасува профил." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Не можам да ја зачувам ознаката." @@ -5088,9 +5222,18 @@ msgstr "Не можам да го избришам OMB-жетонот за пр msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" @@ -5413,19 +5556,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Прелом на страници" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Претходно" @@ -5533,6 +5676,11 @@ msgstr "Уреди објава за мрежното место" msgid "Snapshots configuration" msgstr "Поставки за снимки" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5559,7 +5707,7 @@ msgstr "Нема корисник за тој жетон." #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "Не можевме да ве потврдиме." +msgstr "Не можевме да Ве потврдиме." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 @@ -5618,38 +5766,38 @@ msgid "URL to redirect to after authentication" msgstr "URL за пренасочување по заверката" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Прелистувач" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Работна површина" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Тип на програм, прелистувач или работна површина" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Само читање" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Читање-пишување" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Откажи" @@ -6051,7 +6199,7 @@ msgstr "" "follow - претплати се на корисник\n" "groups - список на групи кадешто членувате\n" "subscriptions - список на луѓе кои ги следите\n" -"subscribers - список на луѓе кои ве следат\n" +"subscribers - список на луѓе кои Ве следат\n" "leave - откажи претплата на корисник\n" "d - директна порака за корисник\n" "get - прикажи последна забелешка на корисник\n" @@ -6145,10 +6293,6 @@ msgstr "Отстрани ја белешкава од омилени" msgid "Favor this notice" msgstr "Означи ја забелешкава како омилена" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Омилено" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6166,8 +6310,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Извези податоци" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6356,10 +6500,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Непознат извор на приемна пошта %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Придружи се" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Напушти" @@ -6680,7 +6820,7 @@ msgstr "" "\n" "%6$s\n" "\n" -"Еве список на сите @-одговори за вас:\n" +"Еве список на сите @-одговори за Вас:\n" "\n" "%7$s\n" "\n" @@ -6699,7 +6839,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" "Немате приватни пораки. Можете да испратите приватна порака за да се " -"впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки " +"впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки " "што ќе можете да ги видите само Вие." #: lib/mailbox.php:228 lib/noticelist.php:506 @@ -7058,7 +7198,7 @@ msgstr "Повтори ја забелешкава" msgid "Revoke the \"%s\" role from this user" msgstr "Одземи му ја улогата „%s“ на корисников" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Не е зададен корисник за еднокорисничкиот режим." @@ -7286,17 +7426,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "пред неколку секунди" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "пред една минута" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7304,12 +7444,12 @@ msgstr[0] "пред околу една минута" msgstr[1] "пред околу %d минути" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "пред еден час" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7317,12 +7457,12 @@ msgstr[0] "пред околу еден час" msgstr[1] "пред околу %d часа" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "пред еден ден" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7330,12 +7470,12 @@ msgstr[0] "пред околу еден ден" msgstr[1] "пред околу %d дена" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "пред еден месец" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7343,7 +7483,7 @@ msgstr[0] "пред околу еден месец" msgstr[1] "пред околу %d месеци" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "пред една година" @@ -7356,3 +7496,17 @@ msgstr "%s не е важечка боја!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е важечка боја! Користете 3 или 6 шеснаесетни (hex) знаци." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 466cdba68e..ae59c731fd 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:10+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -644,7 +644,7 @@ msgstr "Ikke funnet." msgid "Max notice size is %d chars, including attachment URL." msgstr "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formatet støttes ikke." @@ -839,9 +839,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -1071,56 +1070,56 @@ msgid "Design" msgstr "Utseende" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Utseendeinnstillinger for dette StatusNet-nettstedet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Ugyldig logo-URL." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema ikke tilgjengelig: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Endre logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Nettstedslogo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Endre tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Nettstedstema" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema for nettstedet." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Egendefinert tema" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Endre bakgrunnsbilde" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Bakgrunn" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1129,75 +1128,76 @@ msgstr "" "Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "På" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Av" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Slå på eller av bakgrunnsbilde." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Gjenta bakgrunnsbildet" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Endre farger" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Innhold" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidelinje" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Lenker" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avansert" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Egendefinert CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Bruk standard" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Gjenopprett standardutseende" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Tilbakestill til standardverdier" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Lagre utseende" @@ -1275,7 +1275,7 @@ msgstr "Anrop er for langt." msgid "Callback URL is not valid." msgstr "Anrops-URL er ikke gyldig." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Kunne ikke oppdatere programmet." @@ -1368,7 +1368,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1834,6 +1834,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Gjør brukeren til en administrator for gruppen" @@ -2272,13 +2278,117 @@ msgstr "Du er ikke et medlem av den gruppen." msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Allerede innlogget." #: actions/login.php:148 msgid "Incorrect username or password." -msgstr "Feil brukernavn eller passord" +msgstr "Feil brukernavn eller passord." #: actions/login.php:154 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." @@ -2509,8 +2619,8 @@ msgid "Connected applications" msgstr "Tilkoblede program" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Du har tillatt følgende programmer å få tilgang til den konto." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2533,7 +2643,7 @@ msgstr "Utviklere kan redigere registreringsinnstillingene for sine program " msgid "Notice has no profile." msgstr "Notisen har ingen profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" @@ -2693,8 +2803,8 @@ msgid "Paths" msgstr "Stier" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Sti- og tjenerinnstillinger for dette StatusNet-nettstedet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -2889,7 +2999,7 @@ msgstr "Profilinformasjon" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" +msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" #: actions/profilesettings.php:111 actions/register.php:455 #: actions/showgroup.php:256 actions/tagother.php:104 @@ -3269,7 +3379,7 @@ msgstr "E-postadressen finnes allerede." #: actions/register.php:250 actions/register.php:272 msgid "Invalid username or password." -msgstr "Ugyldig brukernavn eller passord" +msgstr "Ugyldig brukernavn eller passord." #: actions/register.php:350 msgid "" @@ -3281,8 +3391,7 @@ msgstr "" #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." +msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom. Påkrevd." #: actions/register.php:437 msgid "6 or more characters. Required." @@ -3545,8 +3654,8 @@ msgid "Sessions" msgstr "Økter" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Øktinnstillinger for dette StatusNet-nettstedet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3565,7 +3674,6 @@ msgid "Turn on debugging output for sessions." msgstr "Slå på feilsøkingsutdata for økter." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Lagre nettstedsinnstillinger" @@ -4375,74 +4483,78 @@ msgid "You haven't blocked that user." msgstr "Du har ikke blokkert den brukeren." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Bruker" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Brukerinnstillinger for dette StatusNet-nettstedet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Ugyldig biografigrense. Må være numerisk." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Biografigrense" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Maks lengde på en profilbiografi i tegn." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nye brukere" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Velkomst av ny bruker" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Velkomsttekst for nye brukere (Maks 255 tegn)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Standardabonnement" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Legger automatisk til et abonnement på denne brukeren til nye brukere." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Invitasjoner" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Invitasjoner aktivert" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Hvorvidt brukere tillates å invitere nye brukere." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser abonnementet" @@ -4454,7 +4566,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Lisens" @@ -4621,6 +4735,11 @@ msgstr "Versjon" msgid "Author(s)" msgstr "Forfatter(e)" +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4675,6 +4794,17 @@ msgstr "Kunne ikke oppdatere gruppe." msgid "Group leave failed." msgstr "Gruppeprofil" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Bli med" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4739,18 +4869,18 @@ msgid "Problem saving notice." msgstr "Problem ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4794,9 +4924,18 @@ msgstr "Kunne ikke slette favoritt." msgid "Could not delete subscription." msgstr "Kunne ikke slette favoritt." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Velkommen til %1$s, @%2$s." @@ -5094,13 +5233,13 @@ msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Før" @@ -5177,6 +5316,11 @@ msgstr "Stikonfigurasjon" msgid "Edit site notice" msgstr "Rediger nettstedsnotis" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5255,39 +5399,39 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Nettleser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Skrivebord" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Type program, nettleser eller skrivebord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Skrivebeskyttet" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Les og skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Avbryt" @@ -5667,8 +5811,8 @@ msgid "FOAF" msgstr "Venn av en venn" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Eksporter data" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:131 msgid "All" @@ -5838,10 +5982,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Ukjent innbokskilde %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Bli med" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Forlat" @@ -6484,7 +6624,7 @@ msgstr "Ja" msgid "Repeat this notice" msgstr "Repeter denne notisen" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6655,17 +6795,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "noen få sekunder siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "omtrent ett minutt siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -6673,12 +6813,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "omtrent én time siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -6686,12 +6826,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "omtrent én dag siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -6699,12 +6839,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "omtrent én måned siden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -6712,7 +6852,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "omtrent ett år siden" @@ -6725,3 +6865,17 @@ msgstr "%s er ikke en gyldig farge." #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s er ikke en gyldig farge. Bruk 3 eller 6 heksadesimale tegn." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ff15376dfd..d27d97378a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:13+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -708,7 +708,7 @@ msgstr "" "De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " "bijlage." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Niet-ondersteund bestandsformaat." @@ -905,9 +905,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -1043,7 +1042,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1145,56 +1144,56 @@ msgid "Design" msgstr "Uiterlijk" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Instellingen voor de vormgeving van deze StatusNet-website." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "De logo-URL is ongeldig." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "De vormgeving is niet beschikbaar: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Logo wijzigen" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Websitelogo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Vormgeving wijzigen" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Vormgeving website" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Mogelijke vormgevingen voor deze website." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Aangepaste vormgeving" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Achtergrondafbeelding wijzigen" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Achtergrond" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1204,75 +1203,76 @@ msgstr "" "bestandsgrootte is %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Aan" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Uit" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Achtergrondafbeelding inschakelen of uitschakelen." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Achtergrondafbeelding naast elkaar" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Kleuren wijzigen" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Inhoud" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Menubalk" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Verwijzingen" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Uitgebreid" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Aangepaste CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Standaardontwerp toepassen" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Standaardinstellingen toepassen" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Ontwerp opslaan" @@ -1350,7 +1350,7 @@ msgstr "De callback is te lang." msgid "Callback URL is not valid." msgstr "De callback-URL is niet geldig." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Het was niet mogelijk de applicatie bij te werken." @@ -1443,7 +1443,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" @@ -1921,6 +1921,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Blokkeren" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Deze gebruiker groepsbeheerder maken" @@ -2223,7 +2229,7 @@ msgstr "Nieuwe gebruikers uitnodigen" #: actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "U bent als geabonneerd op deze gebruikers:" +msgstr "U bent al geabonneerd op deze gebruikers:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -2372,6 +2378,110 @@ msgstr "U bent geen lid van deze groep" msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "U bent al aangemeld." @@ -2610,9 +2720,8 @@ msgid "Connected applications" msgstr "Verbonden applicaties" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" -"U hebt de volgende applicaties toegang gegeven tot uw gebruikersgegevens." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2640,7 +2749,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Mededeling heeft geen profiel." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Status van %1$s op %2$s" @@ -2804,8 +2913,8 @@ msgid "Paths" msgstr "Paden" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Pad- en serverinstellingen voor de StatusNet-website." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3457,9 +3566,8 @@ 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, \n" -"behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer." +"Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende " +"privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #: actions/register.php:583 #, php-format @@ -3671,8 +3779,8 @@ msgid "Sessions" msgstr "Sessies" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Sessieinstellingen voor deze StatusNet-website." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3691,7 +3799,6 @@ msgid "Turn on debugging output for sessions." msgstr "Debuguitvoer voor sessies inschakelen." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Websiteinstellingen opslaan" @@ -4624,74 +4731,78 @@ msgstr "" "de sitelicentie \"%2$s\"." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Gebruiker" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Gebruikersinstellingen voor deze StatusNet-website." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Ongeldige beschrijvingslimiet. Het moet een getal zijn." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Profiellimiet" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "De maximale lengte van de profieltekst in tekens." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nieuwe gebruikers" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Welkom voor nieuwe gebruikers" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Welkomsttekst voor nieuwe gebruikers. Maximaal 255 tekens." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Standaardabonnement" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Nieuwe gebruikers automatisch op deze gebruiker abonneren" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Uitnodigingen" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Uitnodigingen ingeschakeld" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonneren" @@ -4707,7 +4818,9 @@ msgstr "" "aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " "klik dan op \"Afwijzen\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licentie" @@ -4718,7 +4831,7 @@ msgstr "Aanvaarden" #: actions/userauthorization.php:218 lib/subscribeform.php:115 #: lib/subscribeform.php:139 msgid "Subscribe to this user" -msgstr "Abonneer mij op deze gebruiker" +msgstr "Abonneren op deze gebruiker" #: actions/userauthorization.php:219 msgid "Reject" @@ -4907,6 +5020,15 @@ msgstr "Versie" msgid "Author(s)" msgstr "Auteur(s)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Aan favorieten toevoegen" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4965,6 +5087,17 @@ msgstr "Geen lid van groep." msgid "Group leave failed." msgstr "Groepslidmaatschap opzeggen is mislukt." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Toetreden" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5054,12 +5187,12 @@ msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Het gegevenstype dat is opgegeven aan saveKnownGroups is onjuist" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " @@ -5067,7 +5200,7 @@ 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5096,7 +5229,7 @@ msgid "Missing profile." msgstr "Ontbrekend profiel." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Het was niet mogelijk om het label op te slaan." @@ -5136,9 +5269,18 @@ msgstr "" msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" @@ -5462,19 +5604,19 @@ msgstr "" "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Later" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Eerder" @@ -5582,6 +5724,11 @@ msgstr "Websitebrede mededeling opslaan" msgid "Snapshots configuration" msgstr "Snapshotinstellingen" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5667,38 +5814,38 @@ msgid "URL to redirect to after authentication" msgstr "URL om naar door te verwijzen na authenticatie" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Type applicatie; browser of desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Alleen-lezen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Lezen en schrijven" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Annuleren" @@ -6202,10 +6349,6 @@ msgstr "Uit de favorietenlijst verwijderen" msgid "Favor this notice" msgstr "Op de favorietenlijst plaatsen" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Aan favorieten toevoegen" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6223,8 +6366,8 @@ msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Feeds" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6418,10 +6561,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Onbekende bron Postvak IN %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Toetreden" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Verlaten" @@ -7119,7 +7258,7 @@ msgstr "Deze mededeling herhalen" msgid "Revoke the \"%s\" role from this user" msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." @@ -7353,17 +7492,17 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "een paar seconden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7371,12 +7510,12 @@ msgstr[0] "ongeveer een minuut geleden" msgstr[1] "ongeveer %d minuten geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "ongeveer een uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7384,12 +7523,12 @@ msgstr[0] "ongeveer een uur geleden" msgstr[1] "ongeveer %d uur geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "ongeveer een dag geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7397,12 +7536,12 @@ msgstr[0] "ongeveer een dag geleden" msgstr[1] "ongeveer %d dagen geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "ongeveer een maand geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7410,7 +7549,7 @@ msgstr[0] "ongeveer een maand geleden" msgstr[1] "ongeveer %d maanden geleden" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "ongeveer een jaar geleden" @@ -7423,3 +7562,17 @@ msgstr "%s is geen geldige kleur." #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 2091d1431e..40b8d9b5ad 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:11+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:33+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 @@ -587,9 +587,8 @@ msgid "No" msgstr "Merknad" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -692,7 +691,7 @@ msgstr "Fann ikkje stadfestingskode." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -744,88 +743,89 @@ msgid "Design" msgstr "" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Endra" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Statusmelding" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Innhald" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "" @@ -1259,6 +1259,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1634,13 +1640,117 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "%1$s left group %2$s" msgstr "%1$s sin status på %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Allereie logga inn." #: actions/login.php:148 msgid "Incorrect username or password." -msgstr "Feil brukarnamn eller passord" +msgstr "Feil brukarnamn eller passord." #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" @@ -1789,7 +1899,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -1809,7 +1919,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Brukaren har inga profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" @@ -1942,7 +2052,7 @@ msgid "Paths" msgstr "" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:183 @@ -2550,7 +2660,7 @@ msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:175 @@ -3272,49 +3382,53 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser tinging" @@ -3443,6 +3557,15 @@ msgstr "" msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Tjeneste" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3482,6 +3605,17 @@ msgstr "" msgid "Invalid filename." msgstr "Ugyldig filnamn." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Bli med" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3534,13 +3668,13 @@ msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -3560,7 +3694,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Kunne ikkje lagra emneord." @@ -3584,6 +3718,15 @@ msgstr "Kunne ikkje lagra abonnement." msgid "Could not delete subscription." msgstr "Kunne ikkje lagra abonnement." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %s." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -3789,19 +3932,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "« Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Før »" @@ -3830,6 +3973,11 @@ msgstr "" msgid "User" msgstr "Brukar" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -3892,37 +4040,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Avbryt" @@ -4260,10 +4408,6 @@ msgstr "Fjern favoriseringsmerket" msgid "Favor this notice" msgstr "Favoriser denne notisen" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Tjeneste" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -4281,8 +4425,8 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Eksporter data" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -4456,10 +4600,6 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" -#: lib/joinform.php:114 -msgid "Join" -msgstr "Bli med" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Forlat" @@ -4963,7 +5103,7 @@ msgstr "Populære" msgid "Yes" msgstr "Jau" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5130,17 +5270,17 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "eit par sekund sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -5148,12 +5288,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "omtrent ein time sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -5161,12 +5301,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "omtrent ein dag sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -5174,12 +5314,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "omtrent ein månad sidan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -5187,7 +5327,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "omtrent eitt år sidan" @@ -5195,3 +5335,17 @@ msgstr "omtrent eitt år sidan" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 879e8e0622..3a49234bab 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:14+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:35+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -694,7 +694,7 @@ msgstr "Nie odnaleziono." msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Nieobsługiwany format." @@ -889,9 +889,8 @@ msgid "Yes" msgstr "Tak" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -1027,7 +1026,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1127,56 +1126,56 @@ msgid "Design" msgstr "Wygląd" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Ustawienia wyglądu tej witryny StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Nieprawidłowy adres URL logo." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Motyw nie jest dostępny: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Zmień logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo witryny" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Zmień motyw" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Motyw witryny" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Motyw witryny." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Własny motyw" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Można wysłać własny motyw witryny StatusNet jako archiwum zip." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Zmień obraz tła" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Tło" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1184,75 +1183,76 @@ msgid "" msgstr "Można wysłać obraz tła dla witryny. Maksymalny rozmiar pliku to %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Włączone" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Wyłączone" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Włącz lub wyłącz obraz tła." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Kafelkowy obraz tła" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Zmień kolory" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Treść" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Panel boczny" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Odnośniki" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Zaawansowane" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Własny plik CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Użycie domyślnych" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Przywróć domyślny wygląd" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Przywróć domyślne ustawienia" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Zapisz wygląd" @@ -1330,7 +1330,7 @@ msgstr "Adres zwrotny jest za długi." msgid "Callback URL is not valid." msgstr "Adres zwrotny URL jest nieprawidłowy." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Nie można zaktualizować aplikacji." @@ -1424,7 +1424,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" @@ -1889,6 +1889,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Zablokuj" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" @@ -1897,13 +1903,13 @@ msgstr "Uczyń użytkownika administratorem grupy" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Uczyń administratorem" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Nadaje temu użytkownikowi uprawnienia administratora" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2335,6 +2341,110 @@ msgstr "Nie jesteś członkiem tej grupy." msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Jesteś już zalogowany." @@ -2573,8 +2683,8 @@ msgid "Connected applications" msgstr "Połączone aplikacje" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Zezwolono następującym aplikacjom na dostęp do konta." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2597,7 +2707,7 @@ msgstr "Programiści mogą zmodyfikować ustawienia rejestracji swoich aplikacji msgid "Notice has no profile." msgstr "Wpis nie posiada profilu." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Stan użytkownika %1$s na %2$s" @@ -2761,8 +2871,8 @@ msgid "Paths" msgstr "Ścieżki" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3618,8 +3728,8 @@ msgid "Sessions" msgstr "Sesje" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Ustawienia sesji tej witryny StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3638,7 +3748,6 @@ msgid "Turn on debugging output for sessions." msgstr "Włącza wyjście debugowania dla sesji." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Zapisz ustawienia witryny" @@ -4561,74 +4670,78 @@ msgstr "" "witryny \"%2$s\"." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Użytkownik" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Ustawienia użytkownika dla tej witryny StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Nieprawidłowe ograniczenie informacji o sobie. Musi być liczbowa." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Ograniczenie informacji o sobie" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Maksymalna długość informacji o sobie jako liczba znaków." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nowi użytkownicy" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Powitanie nowego użytkownika" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Tekst powitania nowych użytkowników (maksymalnie 255 znaków)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Domyślna subskrypcja" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Automatyczne subskrybowanie nowych użytkowników do tego użytkownika." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Zaproszenia" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Zaproszenia są włączone" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" @@ -4643,7 +4756,9 @@ msgstr "" "wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " "naciśnij \"Odrzuć\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licencja" @@ -4841,6 +4956,15 @@ msgstr "Wersja" msgid "Author(s)" msgstr "Autorzy" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Dodaj do ulubionych" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4900,6 +5024,17 @@ msgstr "Nie jest częścią grupy." msgid "Group leave failed." msgstr "Opuszczenie grupy nie powiodło się." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Dołącz" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4984,18 +5119,18 @@ msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Podano błędne dane do saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5021,7 +5156,7 @@ msgid "Missing profile." msgstr "Brak profilu." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Nie można zapisać etykiety." @@ -5060,9 +5195,18 @@ msgstr "Nie można usunąć tokenu subskrypcji OMB." msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." @@ -5387,19 +5531,19 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginacja" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Później" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Wcześniej" @@ -5507,6 +5651,11 @@ msgstr "Zmodyfikuj wpis witryny" msgid "Snapshots configuration" msgstr "Konfiguracja migawek" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5517,33 +5666,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Brak aplikacji dla tego klucza klienta." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Błędny token dostępu." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Brak użytkownika dla tego tokenu." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Nie można uwierzytelnić." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Spróbowano unieważnić nieznany token." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Usunięcie unieważnionego tokenu nie powiodło się." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5592,38 +5741,38 @@ msgid "URL to redirect to after authentication" msgstr "Adres URL do przekierowania po uwierzytelnieniu" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Przeglądarka" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Pulpit" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Typ aplikacji, przeglądarka lub pulpit" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Tylko do odczytu" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Odczyt i zapis" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Anuluj" @@ -6121,10 +6270,6 @@ msgstr "Usuń ten wpis z ulubionych" msgid "Favor this notice" msgstr "Dodaj ten wpis do ulubionych" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Dodaj do ulubionych" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6142,8 +6287,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Wyeksportuj dane" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6219,7 +6364,7 @@ msgstr "Grupa %s" #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Członkowie" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6227,7 +6372,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Członkowie grupy %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 @@ -6241,7 +6386,7 @@ msgstr "Zablokowany" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s zablokowanych użytkowników" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6249,7 +6394,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Modyfikacja właściwości grupy %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 @@ -6263,7 +6408,7 @@ msgstr "Logo" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Dodanie lub modyfikacja loga grupy %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6271,7 +6416,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Dodanie lub modyfikacja wyglądu grupy %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6339,10 +6484,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Nieznane źródło skrzynki odbiorczej %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Dołącz" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Opuść" @@ -6773,13 +6914,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" nie jest obsługiwanym typem pliku na tym serwerze. Proszę spróbować " +"innego formatu %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" nie jest obsługiwanym typem pliku na tym serwerze." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6898,20 +7041,20 @@ msgstr "Wyślij szturchnięcie do tego użytkownika" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Błąd podczas wprowadzania nowego profilu." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Błąd podczas wprowadzania awatara." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Błąd podczas wprowadzania zdalnego profilu." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Podwójny wpis." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7033,7 +7176,7 @@ msgstr "Powtórz ten wpis" msgid "Revoke the \"%s\" role from this user" msgstr "Unieważnij rolę \"%s\" tego użytkownika" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" "Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika." @@ -7265,68 +7408,68 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "kilka sekund temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "około minutę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "około minuty temu" +msgstr[1] "około %d minut temu" +msgstr[2] "około %d minut temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "około godzinę temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "około godziny temu" +msgstr[1] "około %d godzin temu" +msgstr[2] "około %d godzin temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "blisko dzień temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "około jednego dnia temu" +msgstr[1] "około %d dni temu" +msgstr[2] "około %d dni temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "około miesiąc temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "około miesiąca temu" +msgstr[1] "około %d miesięcy temu" +msgstr[2] "około %d miesięcy temu" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "około rok temu" @@ -7341,3 +7484,17 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s nie jest prawidłowym kolorem. Użyj trzech lub sześciu znaków " "szesnastkowych." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 37a54142d3..e82660127c 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:16+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Gravar" @@ -689,7 +689,7 @@ msgstr "Não encontrado." msgid "Max notice size is %d chars, including attachment URL." msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato não suportado." @@ -884,9 +884,8 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -1022,7 +1021,7 @@ msgstr "Não é o proprietário desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1123,58 +1122,58 @@ msgid "Design" msgstr "Estilo" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Configurações do estilo deste site StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "URL do logotipo inválida." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema não está disponível: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Alterar logotipo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logotipo do site" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Alterar tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema do site" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "O tema para o site." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Tema personalizado" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "Pode fazer o upload de um tema personalizado para o StatusNet, na forma de " "um arquivo .ZIP." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Alterar imagem de fundo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1184,75 +1183,76 @@ msgstr "" "é %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Ligar" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Desligar" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Ligar ou desligar a imagem de fundo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Repetir imagem de fundo em mosaico" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Alterar cores" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Conteúdo" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avançado" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalizado" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar predefinições" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Repor estilos predefinidos" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Repor predefinição" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Gravar o estilo" @@ -1330,7 +1330,7 @@ msgstr "Callback é demasiado longo." msgid "Callback URL is not valid." msgstr "A URL de callback é inválida." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Não foi possível actualizar a aplicação." @@ -1423,7 +1423,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1896,6 +1896,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Bloquear" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar utilizador o gestor do grupo" @@ -2342,6 +2348,110 @@ msgstr "Não é um membro desse grupo." msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Sessão já foi iniciada." @@ -2577,8 +2687,8 @@ msgid "Connected applications" msgstr "Aplicações ligadas" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Permitiu que as seguintes aplicações acedam à sua conta." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2602,7 +2712,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Nota não tem perfil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Estado de %1$s em %2$s" @@ -2767,8 +2877,8 @@ msgid "Paths" msgstr "Localizações" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Configurações de localização e servidor deste site StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3629,8 +3739,8 @@ msgid "Sessions" msgstr "Sessões" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Configurações da sessão para este site StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3649,7 +3759,6 @@ msgid "Turn on debugging output for sessions." msgstr "Ligar a impressão de dados de depuração, para sessões." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Gravar configurações do site" @@ -4569,74 +4678,78 @@ msgstr "" "site." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Utilizador" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Configurações do utilizador para este site StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da biografia inválido. Tem de ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limite da Biografia" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Tamanho máximo de uma biografia em caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Utilizadores novos" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Boas-vindas a utilizadores novos" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas-vindas a utilizadores novos (máx. 255 caracteres)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Subscrição predefinida" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Novos utilizadores subscrevem automaticamente este utilizador." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar subscrição" @@ -4651,7 +4764,9 @@ msgstr "" "subscrever as notas deste utilizador. Se não fez um pedido para subscrever " "as notas de alguém, simplesmente clique \"Rejeitar\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licença" @@ -4849,6 +4964,15 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autores" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Eleger como favorita" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4906,6 +5030,17 @@ msgstr "Não faz parte do grupo." msgid "Group leave failed." msgstr "Saída do grupo falhou." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Juntar-me" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4990,18 +5125,18 @@ msgid "Problem saving notice." msgstr "Problema na gravação da nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problema na gravação da caixa de entrada do grupo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5029,7 +5164,7 @@ msgid "Missing profile." msgstr "Perfil não existe." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Não foi possível gravar a categoria." @@ -5068,9 +5203,18 @@ 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." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" @@ -5395,19 +5539,19 @@ msgstr "" "licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Anteriores" @@ -5517,6 +5661,11 @@ msgstr "Editar aviso do site" msgid "Snapshots configuration" msgstr "Configuração dos instântaneos" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5600,37 +5749,37 @@ msgid "URL to redirect to after authentication" msgstr "URL para onde reencaminhar após autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipo da aplicação, browser ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancelar" @@ -6124,10 +6273,6 @@ msgstr "Retirar esta nota das favoritas" msgid "Favor this notice" msgstr "Eleger esta nota como favorita" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Eleger como favorita" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6145,8 +6290,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar dados" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6255,7 +6400,7 @@ msgstr "Editar propriedades do grupo %s" #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "Logotipo" +msgstr "Logótipo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6263,7 +6408,7 @@ msgstr "Logotipo" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "Adicionar ou editar o logotipo de %s" +msgstr "Adicionar ou editar o logótipo de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6339,10 +6484,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Origem da caixa de entrada desconhecida \"%s\"." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Juntar-me" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Afastar-me" @@ -7037,7 +7178,7 @@ msgstr "Repetir esta nota" msgid "Revoke the \"%s\" role from this user" msgstr "Retirar a função \"%s\" a este utilizador" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Nenhum utilizador único definido para o modo de utilizador único." @@ -7266,17 +7407,17 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "há alguns segundos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "há cerca de um minuto" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7284,12 +7425,12 @@ msgstr[0] "um minuto" msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "há cerca de uma hora" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7297,12 +7438,12 @@ msgstr[0] "uma hora" msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "há cerca de um dia" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7310,12 +7451,12 @@ msgstr[0] "um dia" msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "há cerca de um mês" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7323,7 +7464,7 @@ msgstr[0] "um mês" msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "há cerca de um ano" @@ -7336,3 +7477,17 @@ msgstr "%s não é uma cor válida!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s não é uma cor válida! Use 3 ou 6 caracteres hexadecimais." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 4a286a4bc5..616c910c36 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:17+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:37+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -702,7 +702,7 @@ msgstr "Não encontrado." msgid "Max notice size is %d chars, including attachment URL." msgstr "O tamanho máximo da mensagem é de %d caracteres" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Formato não suportado." @@ -899,9 +899,8 @@ msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Bloquear este usuário" @@ -1037,7 +1036,7 @@ msgstr "Você não é o dono desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1138,58 +1137,58 @@ msgid "Design" msgstr "Aparência" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Configurações da aparência deste site StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "A URL da logo é inválida." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema não disponível: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Alterar a logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Logo do site" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Alterar o tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Tema do site" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema para o site." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Tema personalizado" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" "Você pode enviar um tema personalizado para o StatusNet, na forma de um " "arquivo .zip." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Alterar imagem do fundo" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Fundo" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1199,75 +1198,76 @@ msgstr "" "arquivo é de %1 $s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Ativado" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Desativado" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Ativar/desativar a imagem de fundo." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Ladrilhar a imagem de fundo" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Alterar a cor" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Conteúdo" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Barra lateral" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Links" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avançado" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "CSS personalizado" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Usar o padrão|" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Restaura a aparência padrão" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Restaura de volta ao padrão" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Salvar a aparência" @@ -1345,7 +1345,7 @@ msgstr "O retorno é muito extenso." msgid "Callback URL is not valid." msgstr "A URL de retorno não é válida." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Não foi possível atualizar a aplicação." @@ -1438,7 +1438,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1913,6 +1913,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Bloquear" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Tornar o usuário um administrador do grupo" @@ -2361,6 +2367,110 @@ msgstr "Você não é um membro desse grupo." msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Já está autenticado." @@ -2603,8 +2713,8 @@ msgid "Connected applications" msgstr "Aplicações conectadas" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Você permitiu que as seguintes aplicações acessem a sua conta." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2629,7 +2739,7 @@ msgstr "" msgid "Notice has no profile." msgstr "A mensagem não está associada a nenhum perfil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Mensagem de %1$s no %2$s" @@ -2795,8 +2905,8 @@ msgid "Paths" msgstr "Caminhos" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Configurações dos caminhos e do servidor para este site StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3657,8 +3767,8 @@ msgid "Sessions" msgstr "Sessões" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Configurações da sessão deste site StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3677,7 +3787,6 @@ msgid "Turn on debugging output for sessions." msgstr "Ativa a saída de depuração para as sessões." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salvar as configurações do site" @@ -4595,75 +4704,79 @@ msgstr "" "do site." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Usuário" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Configurações de usuário para este site StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Limite da descrição inválido. Seu valor deve ser numérico." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Mensagem de boas vindas inválida. O comprimento máximo é de 255 caracteres." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Limite da descrição" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Comprimento máximo da descrição do perfil, em caracteres." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Novos usuários" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Boas vindas aos novos usuários" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Texto de boas vindas para os novos usuários (máx. 255 caracteres)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Assinatura padrão" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Os novos usuários assinam esse usuário automaticamente." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Convites" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Convites habilitados" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Define se os usuários podem ou não convidar novos usuários." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a assinatura" @@ -4678,7 +4791,9 @@ msgstr "" "as mensagens deste usuário. Se você não solicitou assinar as mensagens de " "alguém, clique em \"Recusar\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licença" @@ -4879,6 +4994,15 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autor(es)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Tornar favorita" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4935,6 +5059,17 @@ msgstr "Não é parte de um grupo." msgid "Group leave failed." msgstr "Não foi possível deixar o grupo." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Entrar" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5019,18 +5154,18 @@ msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorreto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5057,7 +5192,7 @@ msgid "Missing profile." msgstr "Perfil não existe." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Não foi salvar gravar a categoria." @@ -5096,9 +5231,18 @@ msgstr "Não foi possível salvar a assinatura." msgid "Could not delete subscription." msgstr "Não foi possível salvar a assinatura." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" @@ -5419,19 +5563,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Próximo" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Anterior" @@ -5541,6 +5685,11 @@ msgstr "Editar os avisos do site" msgid "Snapshots configuration" msgstr "Configurações das estatísticas" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5561,23 +5710,23 @@ msgstr "Token de acesso incorreto." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Nenhum usuário para esse código." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Não foi possível autenticá-lo." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Tentou revogar um código desconhecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Falha ao eliminar código revogado." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5626,38 +5775,38 @@ msgid "URL to redirect to after authentication" msgstr "URL para o redirecionamento após a autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicação: navegador ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Somente leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Cancelar" @@ -6156,10 +6305,6 @@ msgstr "Excluir das favoritas" msgid "Favor this notice" msgstr "Acrescentar às favoritas" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Tornar favorita" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6177,8 +6322,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportar os dados" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6239,7 +6384,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grupo" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6247,13 +6392,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Grupo %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membros" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6261,13 +6406,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membros do grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloqueado" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6275,7 +6420,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Usuários bloqueados de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6283,13 +6428,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Editar propriedades do grupo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logotipo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6297,7 +6442,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Adicionar ou editar o logotipo de %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6305,7 +6450,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Adicionar ou editar a aparência de %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6373,10 +6518,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Fonte da caixa de entrada desconhecida %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Entrar" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Sair" @@ -6812,13 +6953,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" não é um tipo de arquivo suportado neste servidor. Tente usar outro " +"formato de %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" não é um tipo de arquivo suportado neste servidor." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6937,20 +7080,20 @@ msgstr "Chame a atenção deste usuário" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Erro ao inserir perfil novo." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Erro ao inserir avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Erro ao inserir perfil remoto." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Nota duplicada." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7072,7 +7215,7 @@ msgstr "Repetir esta mensagem" msgid "Revoke the \"%s\" role from this user" msgstr "Revoga o papel \"%s\" deste usuário" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Nenhum usuário definido para o modo de usuário único." @@ -7098,7 +7241,7 @@ msgstr "Palavra(s)-chave" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Pesquisar" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7300,64 +7443,64 @@ msgid "Moderator" msgstr "Moderador" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "alguns segundos atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "um minuto" +msgstr[1] "%d minutos" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "uma hora" +msgstr[1] "%d horas" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "cerca de 1 dia atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "um dia" +msgstr[1] "%d dias" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "cerca de 1 mês atrás" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "um mês" +msgstr[1] "%d meses" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "cerca de 1 ano atrás" @@ -7370,3 +7513,17 @@ msgstr "%s não é uma cor válida!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s não é uma cor válida! Utilize 3 ou 6 caracteres hexadecimais." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 67326b72fb..1a05b2b65f 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:19+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -557,7 +557,7 @@ msgstr "Неправильный токен" #: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз." #: actions/apioauthauthorize.php:135 msgid "Invalid nickname / password!" @@ -582,7 +582,7 @@ msgstr "" #: actions/apioauthauthorize.php:227 #, php-format msgid "The request token %s has been denied and revoked." -msgstr "Запрос токена %s был запрещен и аннулирован." +msgstr "Ключ запроса %s был запрещён и аннулирован." #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Message given submitting a form with an unknown action in IM settings. @@ -697,7 +697,7 @@ msgstr "Не найдено." msgid "Max notice size is %d chars, including attachment URL." msgstr "Максимальная длина записи — %d символов, включая URL вложения." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Неподдерживаемый формат." @@ -893,9 +893,8 @@ msgid "Yes" msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -1031,9 +1030,9 @@ msgstr "Вы не являетесь владельцем этого прило #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." -msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." +msgstr "Проблема с вашим ключом сессии." #: actions/deleteapplication.php:123 actions/deleteapplication.php:147 msgid "Delete application" @@ -1132,56 +1131,56 @@ msgid "Design" msgstr "Оформление" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Настройки оформления для этого сайта StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Неверный URL логотипа." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Тема не доступна: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Изменить логотип" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Логотип сайта" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Изменить тему" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Тема сайта" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Тема для сайта." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Особая тема" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Вы можете загрузить особую тему StatusNet в виде ZIP-архива." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Изменение фонового изображения" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1191,75 +1190,76 @@ msgstr "" "составляет %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Включить" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Отключить" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Включить или отключить показ фонового изображения." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Растянуть фоновое изображение" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Изменение цветовой гаммы" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Содержание" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Боковая панель" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Ссылки" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Расширенный" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Особый CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Использовать значения по умолчанию" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Восстановить оформление по умолчанию" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Восстановить значения по умолчанию" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Сохранить оформление" @@ -1337,7 +1337,7 @@ msgstr "Обратный вызов слишком длинный." msgid "Callback URL is not valid." msgstr "URL-адрес обратного вызова недействителен." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Не удаётся обновить приложение." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Отмена" @@ -1907,6 +1907,12 @@ msgstr "Настройки" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Заблокировать" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1917,13 +1923,13 @@ msgstr "Сделать пользователя администратором #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Сделать администратором" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Сделать этого пользователя администратором" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2357,6 +2363,110 @@ msgstr "Вы не являетесь членом этой группы." msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Вы уже авторизовались." @@ -2593,8 +2703,8 @@ msgid "Connected applications" msgstr "Подключённые приложения" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Вы разрешили доступ к учётной записи следующим приложениям." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2617,7 +2727,7 @@ msgstr "Разработчики могут изменять настройки msgid "Notice has no profile." msgstr "Уведомление не имеет профиля." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "Статус %1$s на %2$s" @@ -2783,8 +2893,8 @@ msgid "Paths" msgstr "Пути" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Настройки путей и серверов для этого сайта StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3637,8 +3747,8 @@ msgid "Sessions" msgstr "Сессии" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Настройки сессии для этого сайта StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3657,7 +3767,6 @@ msgid "Turn on debugging output for sessions." msgstr "Включить отладочный вывод для сессий." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Сохранить настройки сайта" @@ -4581,75 +4690,79 @@ msgstr "" "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Пользователь" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Настройки пользователя для этого сайта StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Неверное ограничение биографии. Должно быть числом." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" "Неверный текст приветствия. Максимальная длина составляет 255 символов." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Ограничение биографии" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Максимальная длина биографии профиля в символах." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Новые пользователи" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Приветствие новым пользователям" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст приветствия для новых пользователей (максимум 255 символов)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Подписка по умолчанию" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Автоматически подписывать новых пользователей на этого пользователя." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Приглашения" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Приглашения включены" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Разрешать ли пользователям приглашать новых пользователей." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизовать подписку" @@ -4664,7 +4777,9 @@ msgstr "" "подписаться на записи этого пользователя. Если Вы этого не хотите делать, " "нажмите «Отказ»." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Лицензия" @@ -4862,6 +4977,15 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(ы)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Пометить" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4918,6 +5042,17 @@ msgstr "Не является частью группы." msgid "Group leave failed." msgstr "Не удаётся покинуть группу." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Присоединиться" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -5002,18 +5137,18 @@ msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Для saveKnownGroups указан неверный тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5041,7 +5176,7 @@ msgid "Missing profile." msgstr "Отсутствующий профиль." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Не удаётся сохранить тег." @@ -5080,9 +5215,18 @@ msgstr "Не удаётся удалить подписочный жетон OMB msgid "Could not delete subscription." msgstr "Не удаётся удалить подписку." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" @@ -5405,19 +5549,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Разбиение на страницы" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Туда" @@ -5525,6 +5669,11 @@ msgstr "Изменить уведомление сайта" msgid "Snapshots configuration" msgstr "Конфигурация снимков" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5535,33 +5684,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Нет приложения для этого пользовательского ключа." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Неверный ключ доступа." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Нет пользователя для этого ключа." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Не удаётся произвести аутентификацию." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Попытка отменить неизвестный ключ." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Не удаётся удалить аннулированный ключ." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5610,38 +5759,38 @@ msgid "URL to redirect to after authentication" msgstr "URL для перенаправления после проверки подлинности" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Операционная система" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Среда выполнения приложения: браузер или операционная система" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Только чтение" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Чтение и запись" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Отменить" @@ -6141,10 +6290,6 @@ msgstr "Мне не нравится эта запись" msgid "Favor this notice" msgstr "Мне нравится эта запись" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Пометить" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6162,8 +6307,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Экспорт потока записей" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6223,7 +6368,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Группа" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6231,13 +6376,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Группа %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Участники" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6245,13 +6390,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Участники группы %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Заблокированные" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6259,7 +6404,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Заблокированные пользователи %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6267,13 +6412,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Редактировать свойства группы %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Логотип" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6281,7 +6426,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Добавить или изменить логотип группы %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6289,7 +6434,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Добавить или изменить оформление %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6357,10 +6502,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Неизвестный источник входящих сообщений %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Присоединиться" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Покинуть" @@ -7051,7 +7192,7 @@ msgstr "Повторить эту запись" msgid "Revoke the \"%s\" role from this user" msgstr "Отозвать у этого пользователя роль «%s»" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Ни задан пользователь для однопользовательского режима." @@ -7279,17 +7420,17 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "пару секунд назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "около минуты назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -7298,12 +7439,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "около часа назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -7312,12 +7453,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "около дня назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -7326,12 +7467,12 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "около месяца назад" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -7340,7 +7481,7 @@ msgstr[1] "" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "около года назад" @@ -7355,3 +7496,17 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s не является допустимым цветом! Используйте 3 или 6 шестнадцатеричных " "символов." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index fddbf065c2..c57c3f5e8b 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:24+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:38+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -685,7 +685,7 @@ msgstr "Hittades inte." msgid "Max notice size is %d chars, including attachment URL." msgstr "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Format som inte stödjs." @@ -881,9 +881,8 @@ msgid "Yes" msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Blockera denna användare" @@ -1020,7 +1019,7 @@ msgstr "Du är inte ägaren av denna applikation." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1121,56 +1120,56 @@ msgid "Design" msgstr "Utseende" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Utseendeinställningar för denna StatusNet-webbplats." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Ogiltig webbadress för logtyp." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Tema inte tillgängligt: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Byt logotyp" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Webbplatslogotyp" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Byt tema" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Webbplatstema" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Tema för webbplatsen." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Anpassat tema" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Ändra bakgrundsbild" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Bakgrund" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1180,75 +1179,76 @@ msgstr "" "filstorleken är %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "På" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Av" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Sätt på eller stäng av bakgrundsbild." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Upprepa bakgrundsbild" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Byt färger" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Innehåll" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Sidofält" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Text" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Länkar" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Avancerat" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Anpassad CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "Använd standardvärden" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Återställ standardutseende" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Återställ till standardvärde" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Spara" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Spara utseende" @@ -1326,7 +1326,7 @@ msgstr "Anrop är för lång." msgid "Callback URL is not valid." msgstr "Webbadress för anrop är inte giltig." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Kunde inte uppdatera applikation." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1886,6 +1886,12 @@ msgstr "Administratör" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Blockera" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1896,13 +1902,13 @@ msgstr "Gör användare till en administratör för gruppen" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Gör till administratör" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Gör denna användare till administratör" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2335,6 +2341,110 @@ msgstr "Du är inte en medlem i den gruppen." msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Redan inloggad." @@ -2572,8 +2682,8 @@ msgid "Connected applications" msgstr "Anslutna applikationer" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "Du har tillåtit följande applikationer att komma åt ditt konto." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2597,7 +2707,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Notisen har ingen profil." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$ss status den %2$s" @@ -2761,8 +2871,8 @@ msgid "Paths" msgstr "Sökvägar" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Sökvägs- och serverinställningar för denna StatusNet-webbplats." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3619,8 +3729,8 @@ msgid "Sessions" msgstr "Sessioner" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Sessionsinställningar för denna StatusNet-webbplats." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3639,7 +3749,6 @@ msgid "Turn on debugging output for sessions." msgstr "Sätt på felsökningsutdata för sessioner." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Spara webbplatsinställningar" @@ -4555,76 +4664,80 @@ msgstr "" "2$s'." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Användare" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Användarinställningar för denna StatusNet-webbplats" +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Ogiltig begränsning av biografi. Måste vara numerisk." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Begränsning av biografi" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Maximal teckenlängd av profilbiografi." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Nya användare" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Välkomnande av ny användare" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Välkomsttext för nya användare (max 255 tecken)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Standardprenumerationer" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "" "Lägg automatiskt till en prenumeration på denna användare för alla nya " "användare." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Inbjudningar" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Inbjudningar aktiverade" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "Hurvida användare skall tillåtas bjuda in nya användare." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Godkänn prenumeration" @@ -4639,7 +4752,9 @@ msgstr "" "prenumerera på den här användarens notiser. Om du inte bett att prenumerera " "på någons meddelanden, klicka på \"Avvisa\"." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Licens" @@ -4838,6 +4953,15 @@ msgstr "Version" msgid "Author(s)" msgstr "Författare" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Markera som favorit" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4894,6 +5018,17 @@ msgstr "Inte med i grupp." msgid "Group leave failed." msgstr "Grupputträde misslyckades." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Gå med" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4978,18 +5113,18 @@ msgid "Problem saving notice." msgstr "Problem med att spara notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Dålig typ tillhandahållen saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." #. 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5014,7 +5149,7 @@ msgid "Missing profile." msgstr "Saknar profil." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Kunde inte spara tagg." @@ -5053,9 +5188,18 @@ msgstr "Kunde inte spara prenumeration." msgid "Could not delete subscription." msgstr "Kunde inte spara prenumeration." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" @@ -5375,19 +5519,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Numrering av sidor" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 msgid "After" msgstr "Senare" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Tidigare" @@ -5495,6 +5639,11 @@ msgstr "Redigera webbplatsnotis" msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5579,38 +5728,38 @@ msgid "URL to redirect to after authentication" msgstr "URL att omdirigera till efter autentisering" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Webbläsare" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Skrivbord" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Typ av applikation, webbläsare eller skrivbord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Skrivskyddad" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Läs och skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Avbryt" @@ -6105,10 +6254,6 @@ msgstr "Avmarkera denna notis som favorit" msgid "Favor this notice" msgstr "Markera denna notis som favorit" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Markera som favorit" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6126,8 +6271,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Exportdata" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6185,7 +6330,7 @@ msgstr "Extra smeknamn för gruppen, komma- eller mellanslagsseparerade, max &d" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grupp" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6193,13 +6338,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "%s grupp" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Medlemmar" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6207,13 +6352,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "%s gruppmedlemmar" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Blockerade" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6221,7 +6366,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s blockerade användare" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6229,13 +6374,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Redigera %s gruppegenskaper" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logotyp" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6243,7 +6388,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Lägg till eller redigera %s logotyp" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6251,7 +6396,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Lägg till eller redigera %s utseende" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6319,10 +6464,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Okänd källa för inkorg %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Gå med" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Lämna" @@ -6753,13 +6894,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" är en filtyp som saknar stöd på denna server. Prova att använda ett " +"annat %2$s-format." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "%s är en filtyp som saknar stöd på denna server." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -6878,20 +7021,20 @@ msgstr "Skicka en knuff till denna användare" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Fel vid infogning av ny profil." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Fel vid infogning av avatar." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Fel vid infogning av fjärrprofil." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Duplicera notis." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7013,7 +7156,7 @@ msgstr "Upprepa denna notis" msgid "Revoke the \"%s\" role from this user" msgstr "Återkalla rollen \"%s\" från denna användare" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Ingen enskild användare definierad för enanvändarläge." @@ -7039,7 +7182,7 @@ msgstr "Nyckelord" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Sök" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7240,64 +7383,64 @@ msgid "Moderator" msgstr "Moderator" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "ett par sekunder sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "för nån minut sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "för ungefär en minut sedan" +msgstr[1] "för ungefär %d minuter sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "för en timma sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "för ungefär en timma sedan" +msgstr[1] "för ungefär %d timmar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "för en dag sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "för ungefär en dag sedan" +msgstr[1] "för ungefär %d dagar sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "för en månad sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "för ungefär en månad sedan" +msgstr[1] "för ungefär %d månader sedan" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "för ett år sedan" @@ -7310,3 +7453,17 @@ msgstr "%s är inte en giltig färg!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s är inte en giltig färg! Använd 3 eller 6 hexadecimala tecken." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f35ee97fa7..8c79de054f 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:25+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:39+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -610,7 +610,7 @@ msgstr "కనబడలేదు." msgid "Max notice size is %d chars, including attachment URL." msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "" @@ -779,9 +779,8 @@ msgid "Yes" msgstr "అవును" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -917,7 +916,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" @@ -1015,52 +1014,52 @@ msgid "Design" msgstr "రూపురేఖలు" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "ఈ స్టేటస్‌నెట్ సైటుకి రూపురేఖల అమరికలు." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "చిహ్నపు URL చెల్లదు." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "అలంకారం అందుబాటులో లేదు: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "చిహ్నాన్ని మార్చు" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "సైటు చిహ్నం" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "అలంకారాన్ని మార్చు" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "సైటు అలంకారం" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "సైటుకి అలంకారం." -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "నేపథ్య చిత్రాన్ని మార్చు" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "నేపథ్యం" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1068,59 +1067,60 @@ msgid "" msgstr "సైటుకి మీరు నేపథ్యపు చిత్రాన్ని ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "ఆన్" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "ఆఫ్" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "రంగులను మార్చు" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "విషయం" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "పక్కపట్టీ" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "పాఠ్యం" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "లంకెలు" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "ఉన్నత" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "ప్రత్యేక CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "రూపురేఖలని భద్రపరచు" @@ -1190,7 +1190,7 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "ఉపకరణాన్ని తాజాకరించలేకున్నాం." @@ -1283,7 +1283,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" @@ -1650,6 +1650,12 @@ msgstr "నిర్వాహకులు" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "నిరోధించు" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -2054,6 +2060,110 @@ msgstr "మీరు ఆ గుంపులో సభ్యులు కాద msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." @@ -2271,8 +2381,8 @@ msgid "Connected applications" msgstr "సంధానిత ఉపకరణాలు" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "మీ ఖాతాని ప్రాపించడానికి మీరు ఈ క్రింది ఉపకరణాలకి అనుమతినిచ్చారు." +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2295,7 +2405,7 @@ msgstr "" msgid "Notice has no profile." msgstr "నోటీసుకి ప్రొఫైలు లేదు." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%2$sలో %1$s యొక్క స్థితి" @@ -2426,6 +2536,10 @@ msgstr "సంకేతపదం భద్రమయ్యింది." msgid "Paths" msgstr "త్రోవలు" +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + #: actions/pathsadminpanel.php:157 #, php-format msgid "Theme directory not readable: %s." @@ -3126,6 +3240,10 @@ msgstr "స్టేటస్‌నెట్" msgid "You cannot sandbox users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" msgstr "" @@ -3139,7 +3257,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "సైటు అమరికలను భద్రపరచు" @@ -3839,70 +3956,74 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "వాడుకరి" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "ఈ స్టేటస్‌నెట్ సైటుకి వాడుకరి అమరికలు." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "స్వపరిచయ పరిమితి" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "స్వపరిచయం యొక్క గరిష్ఠ పొడవు, అక్షరాలలో." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "కొత్త వాడుకరులు" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "కొత్త వాడుకరి స్వాగతం" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "కొత్త వాడుకరులకై స్వాగత సందేశం (255 అక్షరాలు గరిష్ఠం)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "అప్రమేయ చందా" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "ఆహ్వానాలు" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "ఆహ్వానాలని చేతనంచేసాం" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "వాడుకరులను కొత్త వారిని ఆహ్వానించడానికి అనుమతించాలా వద్దా." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "చందాని అధీకరించండి" @@ -3914,7 +4035,9 @@ msgid "" "click “Reject”." msgstr "" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "లైసెన్సు" @@ -4062,6 +4185,15 @@ msgstr "సంచిక" msgid "Author(s)" msgstr "రచయిత(లు)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "ఇష్టపడు" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4116,6 +4248,17 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "చేరు" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4166,13 +4309,13 @@ msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4192,7 +4335,7 @@ msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." @@ -4226,9 +4369,18 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Could not delete subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" @@ -4536,19 +4688,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "పేజీకరణ" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "ఇంతక్రితం" @@ -4640,6 +4792,11 @@ msgstr "సైటు గమనికని భద్రపరచు" msgid "Snapshots configuration" msgstr "వాడుకరి స్వరూపణం" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -4718,37 +4875,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "విహారిణి" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "మేజోపరి" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "ఉపకరణ రకం, విహారిణి లేదా మేజోపరి" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "చదవడం-మాత్రమే" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "రద్దుచేయి" @@ -5112,10 +5269,6 @@ msgstr "" msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "ఇష్టపడు" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "" @@ -5133,8 +5286,8 @@ msgid "FOAF" msgstr "" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "భోగట్టా ఎగుమతి" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -5238,7 +5391,7 @@ msgstr "" #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "చిహ్నం" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -5312,10 +5465,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "గుర్తు తెలియని భాష \"%s\"." -#: lib/joinform.php:114 -msgid "Join" -msgstr "చేరు" - #: lib/leaveform.php:114 msgid "Leave" msgstr "వైదొలగు" @@ -5945,7 +6094,7 @@ msgstr "అవును" msgid "Repeat this notice" msgstr "ఈ నోటీసుని పునరావృతించు" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5967,7 +6116,7 @@ msgstr "కీపదము(లు)" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "వెతుకు" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -6155,64 +6304,64 @@ msgid "Moderator" msgstr "సమన్వయకర్త" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "సుమారు ఒక నిమిషం క్రితం" +msgstr[1] "సుమారు %d నిమిషాల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ఒక గంట" +msgstr[1] "%d గంటల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ఒక రోజు" +msgstr[1] "%d రోజుల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "ఓ నెల క్రితం" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ఒక నెల" +msgstr[1] "%d నెలల" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" @@ -6225,3 +6374,17 @@ msgstr "%s అనేది సరైన రంగు కాదు!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s అనేది సరైన రంగు కాదు! 3 లేదా 6 హెక్స్ అక్షరాలను వాడండి." + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 1664f062d0..f371305328 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Joseph +# Author: Maidis # Author: McDutchie # -- # This file is distributed under the same license as the StatusNet package. @@ -10,42 +11,81 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:27+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:40+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +msgid "Access" +msgstr "Erişim" #. TRANS: Page notice #: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Profil ayarları" +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +msgid "Registration" +msgstr "Kayıt" + #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +"Anonim kullanıcıların (giriş yapmayanların) siteyi görmesi engellensin mi?" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +msgctxt "LABEL" +msgid "Private" +msgstr "Özel" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." -msgstr "" +msgstr "Sadece kayıt daveti yap." #. TRANS: Checkbox label for configuring site as invite only. #: actions/accessadminpanel.php:176 msgid "Invite only" -msgstr "" +msgstr "Sadece davet" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." -msgstr "" +msgstr "Yeni kayıtları devre dışı bırak." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Kapalı" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +msgid "Save access settings" +msgstr "Erişim ayarlarını kaydet" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +msgctxt "BUTTON" +msgid "Save" +msgstr "Kaydet" #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 @@ -78,6 +118,12 @@ msgstr "Böyle bir kullanıcı yok." msgid "No such user." msgstr "Böyle bir kullanıcı yok." +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:90 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s ve arkadaşları, sayfa %2$d" + #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname #. TRANS: Message is used as link title. %s is a user nickname. @@ -88,12 +134,32 @@ msgstr "Böyle bir kullanıcı yok." msgid "%s and friends" msgstr "%s ve arkadaşları" +#. TRANS: %1$s is user nickname +#: actions/all.php:107 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s ve arkadaşları için besleme (RSS 1.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:116 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s ve arkadaşları için besleme (RSS 2.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s ve arkadaşları için besleme (Atom)" + #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" +"Bu, %s ve arkadaşlarının zaman çizelgesi ama henüz hiç kimse bir şey " +"göndermemiş." #: actions/all.php:143 #, php-format @@ -117,6 +183,11 @@ msgid "" "post a notice to them." msgstr "" +#. TRANS: H1 text +#: actions/all.php:182 +msgid "You and friends" +msgstr "Sen ve arkadaşların" + #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. #: actions/allrss.php:121 actions/apitimelinefriends.php:216 @@ -177,52 +248,78 @@ msgstr "" #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 msgid "Unable to save your design settings." -msgstr "" +msgstr "Dizayn ayarlarınız kaydedilemedi." + +#: actions/apiblockcreate.php:106 +msgid "You cannot block yourself!" +msgstr "Kendinizi engelleyemezsiniz!" #: actions/apiblockcreate.php:127 msgid "Block user failed." -msgstr "" +msgstr "Kullanıcıyı engelleme başarısız oldu." #: actions/apiblockdestroy.php:115 msgid "Unblock user failed." -msgstr "" +msgstr "Kullanıcının engellemesini kaldırma başarısız oldu." #: actions/apidirectmessage.php:89 #, php-format msgid "Direct messages from %s" -msgstr "" +msgstr "%s kullanıcısından özel mesajlar" #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "" +msgstr "%s tarafından gönderilmiş tüm özel mesajlar" #: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" -msgstr "" +msgstr "%s kullanıcısına özel mesaj" #: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" -msgstr "" +msgstr "%s kullanıcısına gönderilmiş tüm özel mesajlar" #: actions/apidirectmessagenew.php:119 msgid "No message text!" -msgstr "" +msgstr "Mesaj metni yok!" + +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Bu çok uzun. Maksimum mesaj boyutu %d karakterdir." + +#: actions/apidirectmessagenew.php:139 +msgid "Recipient user not found." +msgstr "Alıcı kullanıcı bulunamadı." #: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +msgstr "Arkadaşınız olmayan kullanıcılara özel mesaj gönderemezsiniz." #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." -msgstr "" +msgstr "Bu ID'ye sahip durum mesajı bulunamadı." + +#: actions/apifavoritecreate.php:121 +msgid "This status is already a favorite." +msgstr "Bu durum mesajı zaten bir favori." + +#. TRANS: Error message text shown when a favorite could not be set. +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +msgid "Could not create favorite." +msgstr "Favori oluşturulamadı." #: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." -msgstr "" +msgstr "Bu durum mesajı bir favori değil." + +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Favori silinemedi." #: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." @@ -231,11 +328,27 @@ msgstr "Profil kaydedilemedi." #: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" +msgstr "Kullanıcı izlenemiyor: %s zaten listenizde." + +#: actions/apifriendshipsdestroy.php:110 +msgid "Could not unfollow user: User not found." +msgstr "Kullanıcı izlemesi bırakılamıyor: Kullanıcı bulunamadı." + +#: actions/apifriendshipsdestroy.php:121 +msgid "You cannot unfollow yourself." +msgstr "Kendinizi izlemeyi bırakamazsınız." #: actions/apifriendshipsexists.php:91 msgid "Two valid IDs or screen_names must be supplied." -msgstr "" +msgstr "İki geçerli ID ya da screen_names verilmelidir." + +#: actions/apifriendshipsshow.php:134 +msgid "Could not determine source user." +msgstr "Kaynak kullanıcı belirlenemedi." + +#: actions/apifriendshipsshow.php:142 +msgid "Could not find target user." +msgstr "Hedef kullanıcı bulunamadı." #: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 @@ -312,19 +425,41 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. #: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." -msgstr "" +msgstr "Bu gruptan yönetici tarafından engellendiniz." + +#: actions/apigroupleave.php:116 +msgid "You are not a member of this group." +msgstr "Bu grubun bir üyesi değilsiniz." + +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 +#: lib/command.php:401 +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "%1$s kullanıcısı, %2$s grubundan silinemedi." + +#. TRANS: %s is a user name +#: actions/apigrouplist.php:98 +#, php-format +msgid "%s's groups" +msgstr "%s kullanıcısının grupları" #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 #, php-format msgid "%s groups" -msgstr "" +msgstr "%s grupları" #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" -msgstr "" +msgstr "%s üzerindeki gruplar" + +#: actions/apimediaupload.php:100 +msgid "Upload failed." +msgstr "Yükleme başarısız." #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." @@ -348,6 +483,10 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Geçersiz kullanıcı adı / parola!" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -388,6 +527,11 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:463 +msgid "Account" +msgstr "Hesap" + #: actions/apioauthauthorize.php:313 actions/login.php:252 #: actions/profilesettings.php:106 actions/register.php:431 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -404,11 +548,11 @@ msgstr "Parola" #: actions/apioauthauthorize.php:328 msgid "Deny" -msgstr "" +msgstr "Reddet" #: actions/apioauthauthorize.php:334 msgid "Allow" -msgstr "" +msgstr "İzin Ver" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." @@ -420,31 +564,65 @@ msgstr "" #: actions/apistatusesdestroy.php:135 msgid "You may not delete another user's status." -msgstr "" +msgstr "Başka bir kullanıcının durum mesajını silemezsiniz." #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +msgid "Cannot repeat your own notice." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. +#: actions/apistatusesretweet.php:92 lib/command.php:544 +msgid "Already repeated that notice." +msgstr "Bu durum mesajı zaten tekrarlanmış." + +#: actions/apistatusesshow.php:139 +msgid "Status deleted." +msgstr "Durum silindi." + #: actions/apistatusesshow.php:145 msgid "No status with that ID found." -msgstr "" +msgstr "Bu ID'li bir durum mesajı bulunamadı." #: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." -msgstr "" +msgstr "İstemci, bir değere sahip 'status' parametresi sağlamalı." + +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Bu çok uzun. Maksimum durum mesajı boyutu %d karakterdir." + +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Bulunamadı." #: actions/apistatusesupdate.php:307 actions/newnotice.php:181 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" +"Maksimum durum mesajı boyutu, eklenti bağlantıları dahil %d karakterdir." + +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +msgid "Unsupported format." +msgstr "Desteklenmeyen biçim." #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" +#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s genel zaman çizelgesi" + #: actions/apitimelinepublic.php:202 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" @@ -455,6 +633,10 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" +#: actions/apitrends.php:87 +msgid "API method under construction." +msgstr "UPA metodu yapım aşamasında." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "Böyle bir durum mesajı yok." @@ -466,6 +648,10 @@ msgstr "Böyle bir durum mesajı yok." msgid "No nickname." msgstr "Takma ad yok" +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Boyut yok." + #: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "Geçersiz büyüklük." @@ -476,6 +662,12 @@ msgstr "Geçersiz büyüklük." msgid "Avatar" msgstr "Avatar" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" +"Kişisel kullanıcı resminizi yükleyebilirsiniz. Maksimum dosya boyutu %s'dir." + #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 msgid "Avatar settings" @@ -484,17 +676,17 @@ msgstr "Profil ayarları" #: actions/avatarsettings.php:127 actions/avatarsettings.php:205 #: actions/grouplogo.php:202 actions/grouplogo.php:262 msgid "Original" -msgstr "" +msgstr "Orijinal" #: actions/avatarsettings.php:142 actions/avatarsettings.php:217 #: actions/grouplogo.php:213 actions/grouplogo.php:274 msgid "Preview" -msgstr "" +msgstr "Önizleme" #: actions/avatarsettings.php:149 actions/showapplication.php:252 #: lib/deleteuserform.php:66 lib/noticelist.php:657 msgid "Delete" -msgstr "" +msgstr "Sil" #: actions/avatarsettings.php:166 actions/grouplogo.php:236 msgid "Upload" @@ -502,11 +694,15 @@ msgstr "Yükle" #: actions/avatarsettings.php:231 actions/grouplogo.php:289 msgid "Crop" -msgstr "" +msgstr "Kırp" + +#: actions/avatarsettings.php:305 +msgid "No file uploaded." +msgstr "Hiçbir dosya yüklenmedi." #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" -msgstr "" +msgstr "Resimden kullanıcı resminiz olacak bir kare alanı seçin" #: actions/avatarsettings.php:347 actions/grouplogo.php:380 msgid "Lost our file data." @@ -520,16 +716,46 @@ msgstr "Avatar güncellendi." msgid "Failed updating avatar." msgstr "Avatar güncellemede hata." +#: actions/avatarsettings.php:397 +msgid "Avatar deleted." +msgstr "Kullanıcı resmi silindi." + #: actions/block.php:69 msgid "You already blocked that user." msgstr "Jabber ID başka bir kullanıcıya ait." +#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +msgid "Block user" +msgstr "Kullanıcıyı engelle" + #: actions/block.php:138 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" +"Bu kullanıcıyı engellemek istediğinizden emin misiniz? Daha sonra, bu " +"kullanıcıların size olan abonelikleri sonlandırılacak ve gelecekte de size " +"bir daha abone olamayacaklar, ayrıca siz de onlardan gelen hiçbir @-" +"cevaplama'dan haberdar edilmeyeceksiniz." + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +msgctxt "BUTTON" +msgid "No" +msgstr "Hayır" + +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:157 actions/deleteuser.php:156 +msgid "Do not block this user" +msgstr "Bu kullanıcıyı engelleme" #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -541,11 +767,17 @@ msgstr "" #: actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" -msgstr "" +msgstr "Evet" + +#. TRANS: Submit button title for 'Yes' when blocking a user. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 lib/blockform.php:82 +msgid "Block this user" +msgstr "Bu kullanıcıyı engelle" #: actions/block.php:187 msgid "Failed to save block information." -msgstr "" +msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı." #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. @@ -563,14 +795,28 @@ msgstr "" msgid "No such group." msgstr "Böyle bir kullanıcı yok." +#: actions/blockedfromgroup.php:97 +#, php-format +msgid "%s blocked profiles" +msgstr "%s engellenmiş profil" + #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." -msgstr "" +msgstr "Bu gruba katılması engellenmiş kullanıcıların bir listesi." + +#: actions/blockedfromgroup.php:288 +msgid "Unblock user from group" +msgstr "Kullanıcının gruba üye olma engellemesini kaldır" #. TRANS: Title for the form to unblock a user. #: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" -msgstr "" +msgstr "Engellemeyi Kaldır" + +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +msgid "Unblock this user" +msgstr "Bu kullanıcının engellemesini kaldır" #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -584,6 +830,12 @@ msgstr "Onay kodu bulunamadı." msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format +msgid "Unrecognized address type %s." +msgstr "Tanınmayan adres türü %s." + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -619,28 +871,58 @@ msgstr "Onayla" msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" adresi hesabınız için onaylandı." +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Konuşma" + #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Durum mesajları" +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Bir uygulamayı silmek için giriş yapmış olmanız gerekir." + #: actions/deleteapplication.php:71 msgid "Application not found." msgstr "Onay kodu bulunamadı." +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "Bu uygulamanın sahibi değilsiniz." + #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "" +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Uygulamayı sil" + #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " "about the application from the database, including all existing user " "connections." msgstr "" +"Bu uygulamayı silmek istediğinizden emin misiniz? Bu, veritabanından varolan " +"kullanıcı bağlantıları dahil olmak üzere uygulamaya ait tüm verileri " +"temizleyecektir." + +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +msgid "Do not delete this application" +msgstr "Bu uygulamayı silme" + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +msgid "Delete this application" +msgstr "Bu uygulamayı sil" #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 @@ -653,143 +935,241 @@ msgstr "" msgid "Not logged in." msgstr "Giriş yapılmadı." +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Bu durum mesajı silinemiyor." + #: actions/deletenotice.php:103 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" +"Bir durum mesajını kalıcı olarak silmek üzeresiniz. Bu bir kez yapıldığında, " +"geri alınamaz." + +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Durum mesajını sil" #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "" +msgstr "Bu durum mesajını silmek istediğinizden emin misiniz?" + +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +msgid "Do not delete this notice" +msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" -msgstr "" +msgstr "Bu durum mesajını sil" + +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "Kullanıcıları silemezsiniz." + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "Sadece yerel kullanıcıları silebilirsiniz." #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" -msgstr "" +msgstr "Kullanıcıyı sil" #: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +"Bu kullanıcıyı silmek istediğinizden emin misiniz? Bu, veritabanından " +"kullanıcıya ait tüm verileri herhangi bir yedek olmaksızın temizleyecektir." + +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "Bu kullanıcıyı sil" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 msgid "Design" -msgstr "" +msgstr "Dizayn" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." +msgid "Design settings for this StatusNet site" msgstr "" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:331 +msgid "Invalid logo URL." +msgstr "Geçersiz logo bağlantısı." + +#: actions/designadminpanel.php:335 +#, php-format +msgid "Theme not available: %s." +msgstr "Tema mevcut değil: %s" + +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Değiştir" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:444 +msgid "Site logo" +msgstr "Site logosu" + +#: actions/designadminpanel.php:456 +msgid "Change theme" +msgstr "Temayı değiştir" + +#: actions/designadminpanel.php:473 +msgid "Site theme" +msgstr "Site teması" + +#: actions/designadminpanel.php:474 msgid "Theme for the site." -msgstr "" +msgstr "Site için tema." -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:480 +msgid "Custom theme" +msgstr "Özel tema" + +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" +msgstr "Özel bir StatusNet temasını .ZIP arşivi olarak yükleyebilirsiniz." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" -msgstr "" +msgstr "Arkaplan resmini değiştir" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" +msgstr "Arkaplan" + +#: actions/designadminpanel.php:509 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." msgstr "" +"Bu site için arkaplan resmi yükleyebilirsiniz. Maksimum dosya boyutu %1" +"$s'dir." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" -msgstr "" +msgstr "Açık" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" -msgstr "" +msgstr "Kapalı" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." -msgstr "" +msgstr "Arkaplan resmini açın ya da kapatın." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" -msgstr "" +msgstr "Arkaplan resmini döşe" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Renkleri değiştir" + +#: actions/designadminpanel.php:600 lib/designsettings.php:191 +msgid "Content" +msgstr "İçerik" + +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Kenar Çubuğu" + +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" -msgstr "" +msgstr "Metin" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 +msgid "Links" +msgstr "Bağlantılar" + +#: actions/designadminpanel.php:664 msgid "Advanced" -msgstr "" +msgstr "Gelişmiş" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" -msgstr "" +msgstr "Özel CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "Öntanımlıları kullan" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" -msgstr "" +msgstr "Öntanımlıya geri dön" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" -msgstr "" +msgstr "Dizaynı kaydet" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "" +msgstr "Bu durum mesajı bir favori değil!" #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "" +msgstr "Favorilere ekle" #: actions/doc.php:158 #, php-format msgid "No such document \"%s\"" msgstr "Böyle bir durum mesajı yok." +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Uygulamayı Düzenle" + #: actions/editapplication.php:66 msgid "You must be logged in to edit an application." -msgstr "" +msgstr "Bir uygulamayı düzenlemek için giriş yapmış olmanız gerekir." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Böyle bir uygulama yok." #: actions/editapplication.php:161 msgid "Use this form to edit your application." -msgstr "" +msgstr "Uygulamayı düzenlemek için bu biçimi kullan." #: actions/editapplication.php:177 actions/newapplication.php:159 msgid "Name is required." -msgstr "" +msgstr "İsim gereklidir." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "İsim çok uzun (maksimum: 255 karakter)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "İsim halihazırda kullanımda. Başka bir tane deneyin." #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." @@ -797,15 +1177,23 @@ msgstr "Abonelik reddedildi." #: actions/editapplication.php:194 msgid "Source URL is too long." -msgstr "" +msgstr "Kaynak bağlantı çok uzun." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "Kaynak bağlantı geçerli değil." #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." -msgstr "" +msgstr "Organizasyon gereklidir." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Organizasyon çok uzun (maksimum 255 karakter)." #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." -msgstr "" +msgstr "Organizasyon anasayfası gereklidir." #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." @@ -815,40 +1203,68 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +msgid "Could not update application." +msgstr "Uygulama güncellenemedi." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "" +msgstr "%s grubunu düzenle" #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "" +msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir." #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." -msgstr "" +msgstr "Bir grubu düzenlemek için bir yönetici olmalısınız." #: actions/editgroup.php:158 msgid "Use this form to edit the group." -msgstr "" +msgstr "Grubu düzenlemek için bu biçimi kullan." #: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." +#: actions/editgroup.php:258 +msgid "Could not update group." +msgstr "Grup güncellenemedi." + #. TRANS: Server exception thrown when creating group aliases failed. #: actions/editgroup.php:264 classes/User_group.php:514 msgid "Could not create aliases." msgstr "Kullanıcı güncellenemedi." +#: actions/editgroup.php:280 +msgid "Options saved." +msgstr "Seçenekler kaydedildi." + +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 +msgid "Email settings" +msgstr "E-posta ayarları" + #. TRANS: E-mail settings page instructions. #. TRANS: %%site.name%% is the name of the site. #: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "" +msgstr "%%site.name%%'dan nasıl e-posta alacağınızı yönetin." + +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "E-posta adresi" + +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 +msgid "Current confirmed email address." +msgstr "Mevcut doğrulanmış e-posta adresi." #. TRANS: Button label to remove a confirmed e-mail address. #. TRANS: Button label for removing a set sender e-mail address to post notices from. @@ -862,6 +1278,24 @@ msgctxt "BUTTON" msgid "Remove" msgstr "Geri al" +#: actions/emailsettings.php:122 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Bu adresten onay bekleniyor. Ayrıntılı bilgi içeren mesaj için gelen " +"kutunuzu (ve gereksiz e-postalar bölümünü) kontrol edin." + +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +msgctxt "BUTTON" +msgid "Cancel" +msgstr "İptal" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -869,42 +1303,59 @@ msgstr "Geri al" #. TRANS: organization. #: actions/emailsettings.php:139 msgid "Email address, like \"UserName@example.org\"" -msgstr "" +msgstr "\"kullanıcıadı@örnek.org\" benzeri bir e-posta adresi." + +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +msgctxt "BUTTON" +msgid "Add" +msgstr "Ekle" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 msgid "Incoming email" -msgstr "" +msgstr "Gelen e-posta" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. #: actions/emailsettings.php:159 actions/smssettings.php:178 msgid "Send email to this address to post new notices." -msgstr "" +msgstr "Yeni durum mesajları göndermek için bu adrese e-posta atın." #. TRANS: Instructions for incoming e-mail address input form. #. TRANS: Instructions for incoming SMS e-mail address input form. #: actions/emailsettings.php:168 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" +"Gönderim yapmak için yeni bir e-posta adresi oluşturun; eskisi iptal " +"olacaktır." #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:172 actions/smssettings.php:189 msgctxt "BUTTON" msgid "New" -msgstr "" +msgstr "Yeni" + +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:178 +msgid "Email preferences" +msgstr "E-posta tercihleri" #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." msgstr "" +"Biri benim durum mesajımı favori olarak eklediğinde bana e-posta gönder." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." -msgstr "" +msgstr "Birisi bana özel mesaj attığında bana e-posta gönder." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:203 @@ -943,6 +1394,11 @@ msgstr "Onay kodu eklenemedi." msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +msgid "That is the wrong email address." +msgstr "Bu yanlış e-posta adresi." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -956,23 +1412,40 @@ msgstr "Eposta adresi zaten var." #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." -msgstr "" +msgstr "Gelen e-posta adresi silindi." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +msgid "New incoming email address added." +msgstr "Yeni gelen e-posta adresi eklendi." #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "" +msgstr "Bu durum mesajı zaten bir favori!" #: actions/favor.php:92 lib/disfavorform.php:140 msgid "Disfavor favorite" -msgstr "" +msgstr "Favoriliğini kaldır" + +#: actions/favorited.php:65 lib/popularnoticesection.php:91 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Popüler durum mesajları" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Popüler durum mesajları, sayfa %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." -msgstr "" +msgstr "Şu an sitedeki en popüler durum mesajları." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" +"Favori durum mesajları bu sayfada görüntülenir ama daha hiç kimse favorilere " +"eklememiş." #: actions/favorited.php:153 msgid "" @@ -991,22 +1464,22 @@ msgstr "" #: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" -msgstr "" +msgstr "%s kullanıcısının favori durum mesajları" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" -msgstr "" +msgstr "Öne çıkan kullanıcılar" #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" -msgstr "" +msgstr "Öne çıkan kullanıcılar, sayfa %d" #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" -msgstr "" +msgstr "%s üzerindeki harika kullanıcılardan bazılarının bir seçkisi" #: actions/file.php:34 msgid "No notice ID." @@ -1016,9 +1489,17 @@ msgstr "Böyle bir durum mesajı yok." msgid "No notice." msgstr "Böyle bir durum mesajı yok." +#: actions/file.php:42 +msgid "No attachments." +msgstr "Ek yok." + +#: actions/file.php:51 +msgid "No uploaded attachments." +msgstr "Yüklenmiş ek yok." + #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" -msgstr "" +msgstr "Bu yanıt beklenmiyordu!" #: actions/finishremotesubscribe.php:80 msgid "User being listened to does not exist." @@ -1052,7 +1533,7 @@ msgstr "" #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 msgid "No profile specified." -msgstr "" +msgstr "Hiçbir profil belirtilmedi." #: actions/groupblock.php:76 actions/groupunblock.php:76 #: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 @@ -1087,7 +1568,7 @@ msgstr "JabberID yok." #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." -msgstr "" +msgstr "Bir grubu düzenlemek için giriş yapmış olmanız gerekir." #: actions/groupdesignsettings.php:144 msgid "Group design" @@ -1105,7 +1586,7 @@ msgstr "" #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." -msgstr "" +msgstr "Resimden logo olacak bir kare alanı seçin." #. TRANS: Title of the page showing group members. #. TRANS: %s is the name of the group. @@ -1127,12 +1608,18 @@ msgstr "" #: actions/groupmembers.php:186 msgid "Admin" -msgstr "" +msgstr "Yönetici" #. TRANS: Button text for the form that will block a user from a group. #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" +msgstr "Engelle" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" msgstr "" #: actions/groupmembers.php:498 @@ -1154,7 +1641,7 @@ msgstr "" #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" -msgstr "" +msgstr "Gruplar" #: actions/groups.php:64 #, php-format @@ -1414,6 +1901,110 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Zaten giriş yapılmış." @@ -1585,7 +2176,7 @@ msgid "Connected applications" msgstr "" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:186 @@ -1605,7 +2196,7 @@ msgstr "" msgid "Notice has no profile." msgstr "Kullanıcının profili yok." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " @@ -1713,7 +2304,7 @@ msgid "Paths" msgstr "" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." +msgid "Path and server settings for this StatusNet site" msgstr "" #: actions/pathsadminpanel.php:183 @@ -2310,7 +2901,7 @@ msgid "Sessions" msgstr "" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." +msgid "Session settings for this StatusNet site" msgstr "" #: actions/sessionsadminpanel.php:175 @@ -2330,7 +2921,6 @@ msgid "Turn on debugging output for sessions." msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Profil ayarları" @@ -2826,6 +3416,10 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:208 +msgid "Jabber" +msgstr "Jabber" + #: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" @@ -2838,11 +3432,11 @@ msgstr "" #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" -msgstr "" +msgstr "Fotoğraf" #: actions/tagother.php:141 msgid "Tag user" -msgstr "" +msgstr "Kullanıcıyı etiketle" #: actions/tagother.php:151 msgid "" @@ -2863,6 +3457,10 @@ msgstr "Profil kaydedilemedi." msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Böyle bir etiket yok." + #: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" @@ -2870,69 +3468,75 @@ msgid "" msgstr "" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" -msgstr "" - -#: actions/useradminpanel.php:235 -msgid "New user welcome" -msgstr "" +msgstr "Yeni kullanıcılar" #: actions/useradminpanel.php:236 -msgid "Welcome text for new users (Max 255 chars)." -msgstr "" +msgid "New user welcome" +msgstr "Yeni kullanıcı karşılaması" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:237 +msgid "Welcome text for new users (Max 255 chars)." +msgstr "Yeni kullanıcılar için hoşgeldiniz metni (En fazla 255 karakter)." + +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Takip isteğini onayla" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" -msgstr "" +msgstr "Lisans" #: actions/userauthorization.php:217 msgid "Accept" @@ -3032,6 +3636,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "" +#: actions/version.php:75 +#, php-format +msgid "StatusNet %s" +msgstr "StatusNet %s" + #: actions/version.php:155 #, php-format msgid "" @@ -3068,12 +3677,26 @@ msgstr "" #: actions/version.php:191 msgid "Plugins" -msgstr "" +msgstr "Eklentiler" + +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +msgid "Version" +msgstr "Sürüm" #: actions/version.php:199 msgid "Author(s)" msgstr "" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -3108,6 +3731,18 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +msgid "Invalid filename." +msgstr "Geçersiz dosya ismi." + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3156,13 +3791,13 @@ msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" 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:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -3201,9 +3836,18 @@ msgstr "Yeni abonelik eklenemedi." msgid "Could not delete subscription." msgstr "Yeni abonelik eklenemedi." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" @@ -3259,11 +3903,23 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Bağlan" +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "Site yapılandırmasını değiştir" + #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/action.php:474 lib/groupnav.php:117 @@ -3278,23 +3934,62 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +msgctxt "MENU" +msgid "Invite" +msgstr "Davet et" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:495 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "Bir hesap oluştur" + +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +msgctxt "MENU" +msgid "Register" +msgstr "Kayıt" + #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "" +msgstr "Siteye giriş" + +#: lib/action.php:504 +msgctxt "MENU" +msgid "Login" +msgstr "Giriş" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:507 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Bana yardım et!" + +#: lib/action.php:510 +msgctxt "MENU" +msgid "Help" +msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:513 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "" +msgstr "Kişi ya da yazılar için arama yap" + +#: lib/action.php:516 +msgctxt "MENU" +msgid "Search" +msgstr "Ara" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 @@ -3343,7 +4038,7 @@ msgstr "" #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" -msgstr "" +msgstr "StatusNet yazılım lisansı" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 @@ -3366,6 +4061,11 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +msgid "Site content license" +msgstr "Site içeriği lisansı" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -3393,10 +4093,22 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "" +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1259 +msgid "After" +msgstr "Sonra" + +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1269 +msgid "Before" +msgstr "Önce" + #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." @@ -3430,18 +4142,41 @@ msgstr "" #. TRANS: Client error message. #: lib/adminpanelaction.php:222 msgid "showForm() not implemented." -msgstr "" +msgstr "showForm() gerçeklenmemiş." #. TRANS: Client error message #: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." -msgstr "" +msgstr "saveSettings() gerçeklenmemiş." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." -msgstr "" +msgstr "Dizayn ayarı silinemedi." + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +msgid "Basic site configuration" +msgstr "Temel site yapılandırması" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +msgctxt "MENU" +msgid "Site" +msgstr "Site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +msgid "Design configuration" +msgstr "Dizayn yapılandırması" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +msgctxt "MENU" +msgid "Design" +msgstr "Dizayn" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:353 @@ -3451,6 +4186,26 @@ msgstr "Onay kodu yok." #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" +msgstr "Kullanıcı" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +msgid "Access configuration" +msgstr "Erişim yapılandırması" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +msgid "Paths configuration" +msgstr "Yol yapılandırması" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +msgid "Edit site notice" +msgstr "Site durum mesajını düzenle" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" msgstr "" #. TRANS: Client error 401. @@ -3492,12 +4247,12 @@ msgstr "" #. TRANS: Form legend. #: lib/applicationeditform.php:129 msgid "Edit application" -msgstr "" +msgstr "Uygulamayı düzenle" #. TRANS: Form guide. #: lib/applicationeditform.php:178 msgid "Icon for this application" -msgstr "" +msgstr "Bu uygulama için simge" #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 @@ -3510,37 +4265,37 @@ msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" -msgstr "" +msgstr "Tarayıcı" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "İptal et" @@ -3576,6 +4331,11 @@ msgstr "" msgid "Author" msgstr "" +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 +msgid "Provider" +msgstr "Sağlayıcı" + #. TRANS: Title. #: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" @@ -3589,7 +4349,7 @@ msgstr "" #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" -msgstr "" +msgstr "Engelle" #: lib/channel.php:157 lib/channel.php:177 msgid "Command results" @@ -3663,6 +4423,25 @@ msgstr "" msgid "%1$s left group %2$s." msgstr "" +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:434 +#, php-format +msgid "Fullname: %s" +msgstr "Tam İsim: %s" + +#. TRANS: Whois output. %s is the location of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:438 lib/mail.php:268 +#, php-format +msgid "Location: %s" +msgstr "Yer: %s" + +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:446 +#, php-format +msgid "About: %s" +msgstr "Hakkında: %s" + #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #: lib/command.php:474 #, php-format @@ -3857,28 +4636,24 @@ msgstr "" msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "" - #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" +msgid "Feeds" msgstr "" #: lib/galleryaction.php:121 @@ -4028,11 +4803,11 @@ msgstr "" #: lib/imagefile.php:244 msgid "MB" -msgstr "" +msgstr "MB" #: lib/imagefile.php:246 msgid "kB" -msgstr "" +msgstr "kB" #: lib/jabber.php:387 #, php-format @@ -4332,22 +5107,22 @@ msgstr "" #. TRANS: Used in coordinates as abbreviation of north #: lib/noticelist.php:436 msgid "N" -msgstr "" +msgstr "K" #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" -msgstr "" +msgstr "G" #. TRANS: Used in coordinates as abbreviation of east #: lib/noticelist.php:440 msgid "E" -msgstr "" +msgstr "D" #. TRANS: Used in coordinates as abbreviation of west #: lib/noticelist.php:442 msgid "W" -msgstr "" +msgstr "B" #: lib/noticelist.php:444 #, php-format @@ -4494,7 +5269,7 @@ msgstr "" msgid "Yes" msgstr "" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -4648,60 +5423,60 @@ msgid "Moderator" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "birkaç saniye önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "yaklaşık bir gün önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "yaklaşık bir ay önce" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" @@ -4709,3 +5484,17 @@ msgstr "yaklaşık bir yıl önce" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 180a64e64f..d5d0de4081 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:28+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -57,7 +57,7 @@ msgstr "Приватно" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." -msgstr "Зробити регістрацію лише за запрошеннями." +msgstr "Зробити реєстрацію лише за запрошеннями." #. TRANS: Checkbox label for configuring site as invite only. #: actions/accessadminpanel.php:176 @@ -67,7 +67,7 @@ msgstr "Лише за запрошеннями" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." -msgstr "Скасувати подальшу регістрацію." +msgstr "Скасувати подальшу реєстрацію." #. TRANS: Checkbox label for disabling new user registrations. #: actions/accessadminpanel.php:185 @@ -85,7 +85,7 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -697,7 +697,7 @@ msgstr "" "Максимальна довжина допису становить %d знаків, включно з URL-адресою " "вкладення." -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "Формат не підтримується." @@ -892,9 +892,8 @@ msgid "Yes" msgstr "Так" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "Блокувати користувача" @@ -1030,7 +1029,7 @@ msgstr "Ви не є власником цього додатку." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1129,56 +1128,56 @@ msgid "Design" msgstr "Дизайн" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "Налаштування дизайну для цього сайту StatusNet." +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "Помилкова URL-адреса логотипу." -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "Тема недоступна: %s." -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Змінити логотип" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Логотип сайту" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "Змінити тему" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Тема сайту" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "Тема для цього сайту." -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "Своя тема" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "Ви можете завантажити свою тему для сайту StatusNet як .ZIP архів." -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "Змінити фонове зображення" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "Фон" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1188,75 +1187,76 @@ msgstr "" "%1$s." #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "Увімк." #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "Вимк." -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "Увімкнути або вимкнути фонове зображення." -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "Замостити фон" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Змінити кольори" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Зміст" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "Бічна панель" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Текст" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "Посилання" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "Додатково" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "Свій CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "За замовч." -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "Оновити налаштування за замовчуванням" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Повернутись до початкових налаштувань" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "Зберегти дизайн" @@ -1334,7 +1334,7 @@ msgstr "Форма зворотнього дзвінка надто довга." msgid "Callback URL is not valid." msgstr "URL-адреса для зворотнього дзвінка не є дійсною." -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "Не вдалося оновити додаток." @@ -1427,7 +1427,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" @@ -1894,6 +1894,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "Блок" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "Надати користувачеві права адміністратора" @@ -2343,6 +2349,110 @@ msgstr "Ви не є учасником цієї групи." msgid "%1$s left group %2$s" msgstr "%1$s залишив групу %2$s" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "Тепер Ви увійшли." @@ -2582,9 +2692,8 @@ msgid "Connected applications" msgstr "Під’єднані додатки" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." +msgid "You have allowed the following applications to access your account." msgstr "" -"Ви маєте дозволити наступним додаткам доступ до Вашого облікового запису." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2607,7 +2716,7 @@ msgstr "Розробники можуть змінити налаштуванн msgid "Notice has no profile." msgstr "Допис не має профілю." -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s має статус на %2$s" @@ -2773,8 +2882,8 @@ msgid "Paths" msgstr "Шлях" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "Шлях та налаштування серверу для цього сайту StatusNet." +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -3418,7 +3527,7 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -"Мої тексти і файли доступні під %s, окрім цих приватних даних: пароль, " +"Мої дописи і файли доступні на умовах %s, окрім цих приватних даних: пароль, " "електронна адреса, адреса IM, телефонний номер." #: actions/register.php:583 @@ -3487,7 +3596,7 @@ msgstr "Ім’я користувача" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Ім’я користувача за яким Ви бажаєте слідувати" +msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -3628,8 +3737,8 @@ msgid "Sessions" msgstr "Сесії" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "Налаштування сесії для цього сайту StatusNet." +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3648,7 +3757,6 @@ msgid "Turn on debugging output for sessions." msgstr "Виводити дані сесії наладки." #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зберегти налаштування сайту" @@ -4567,75 +4675,79 @@ msgid "" msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "Користувач" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "Власні налаштування користувача для цього сайту StatusNet." +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "Помилкове обмеження біо. Це мають бути цифри." -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." -msgstr "Помилковий текст привітання. Максимальна довжина 255 знаків." +msgstr "Помилковий текст привітання. Максимальна довжина — 255 символів." -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "Обмеження біо" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "Максимальна довжина біо користувача в знаках." -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "Нові користувачі" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "Привітання нового користувача" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "Текст привітання нових користувачів (255 знаків)." -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Підписка за замовчуванням" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "Автоматично підписувати нових користувачів до цього користувача." -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Запрошення" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "Запрошення скасовано" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" "В той чи інший спосіб дозволити користувачам вітати нових користувачів." +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизувати підписку" @@ -4650,7 +4762,9 @@ msgstr "" "підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись " "ні на чиї дописи, просто натисніть «Відмінити»." +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "Ліцензія" @@ -4850,6 +4964,15 @@ msgstr "Версія" msgid "Author(s)" msgstr "Автор(и)" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Обрати" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4906,6 +5029,17 @@ msgstr "Не є частиною групи." msgid "Group leave failed." msgstr "Не вдалося залишити групу." +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Приєднатись" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4990,18 +5124,18 @@ msgid "Problem saving notice." msgstr "Проблема при збереженні допису." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "Задається невірний тип для saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів для групи." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -5027,7 +5161,7 @@ msgid "Missing profile." msgstr "Загублений профіль." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Не вдається зберегти теґ." @@ -5066,9 +5200,18 @@ msgstr "Не вдається видалити токен підписки OMB." msgid "Could not delete subscription." msgstr "Не вдалося видалити підписку." +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" @@ -5388,19 +5531,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "Нумерація сторінок" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "Назад" @@ -5509,6 +5652,11 @@ msgstr "Редагувати повідомлення сайту" msgid "Snapshots configuration" msgstr "Конфігурація знімків" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5594,38 +5742,38 @@ msgid "URL to redirect to after authentication" msgstr "URL-адреса, на яку перенаправляти після автентифікації" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "Десктоп" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "Тип додатку, браузер або десктоп" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "Лише читання" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "Читати-писати" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "Скасувати" @@ -6121,10 +6269,6 @@ msgstr "Видалити з обраних" msgid "Favor this notice" msgstr "Позначити як обране" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "Обрати" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -6142,8 +6286,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "Експорт даних" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6336,10 +6480,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "Невідоме джерело вхідного повідомлення %d." -#: lib/joinform.php:114 -msgid "Join" -msgstr "Приєднатись" - #: lib/leaveform.php:114 msgid "Leave" msgstr "Залишити" @@ -6683,7 +6823,7 @@ msgstr "" #: lib/mailbox.php:228 lib/noticelist.php:506 msgid "from" -msgstr "через" +msgstr "з" #: lib/mailhandler.php:37 msgid "Could not parse message." @@ -6863,7 +7003,7 @@ msgstr "в" #: lib/noticelist.php:502 msgid "web" -msgstr "веб" +msgstr "веб-сторінки" #: lib/noticelist.php:568 msgid "in context" @@ -7034,7 +7174,7 @@ msgstr "Повторити цей допис" msgid "Revoke the \"%s\" role from this user" msgstr "Відкликати роль «%s» для цього користувача" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "Користувача для однокористувацького режиму не визначено." @@ -7264,70 +7404,70 @@ msgid "Moderator" msgstr "Модератор" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" -msgstr "хвилину тому" +msgstr "близько хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "хвилину тому" -msgstr[1] "%d хвилин тому" +msgstr[0] "близько хвилини тому" +msgstr[1] "близько %d хвилин тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" -msgstr "годину тому" +msgstr "близько години тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "годину тому" -msgstr[1] "%d годин тому" +msgstr[0] "близько години тому" +msgstr[1] "близько %d годин тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" -msgstr "день тому" +msgstr "близько доби тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "день тому" -msgstr[1] "%d днів тому" +msgstr[0] "близько доби тому" +msgstr[1] "близько %d днів тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" -msgstr "місяць тому" +msgstr "близько місяця тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "місяць тому" -msgstr[1] "%d місяців тому" +msgstr[0] "близько місяця тому" +msgstr[1] "близько %d місяців тому" msgstr[2] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" -msgstr "рік тому" +msgstr "близько року тому" #: lib/webcolor.php:82 #, php-format @@ -7338,3 +7478,17 @@ msgstr "%s є неприпустимим кольором!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s неприпустимий колір! Використайте 3 або 6 знаків (HEX-формат)" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index e2257f3319..e843713e83 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-18 22:06+0000\n" -"PO-Revision-Date: 2010-09-18 22:08:31+0000\n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-74-75 38::+0000\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "保存访问设置" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:351 +#: lib/applicationeditform.php:354 msgctxt "BUTTON" msgid "Save" msgstr "保存" @@ -682,7 +682,7 @@ msgstr "未找到。" msgid "Max notice size is %d chars, including attachment URL." msgstr "每条消息最长%d字符,包括附件的链接 URL。" -#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262 +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 msgid "Unsupported format." msgstr "不支持的格式。" @@ -876,9 +876,8 @@ msgid "Yes" msgstr "是" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Submit button title. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 actions/groupmembers.php:403 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:82 msgid "Block this user" msgstr "屏蔽这个用户" @@ -1014,7 +1013,7 @@ msgstr "你不是该应用的拥有者。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1315 +#: lib/action.php:1320 msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1111,56 +1110,56 @@ msgid "Design" msgstr "外观" #: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site." -msgstr "这个 StatusNet 网站的外观设置" +msgid "Design settings for this StatusNet site" +msgstr "" -#: actions/designadminpanel.php:318 +#: actions/designadminpanel.php:331 msgid "Invalid logo URL." msgstr "无效的 logo URL。" -#: actions/designadminpanel.php:322 +#: actions/designadminpanel.php:335 #, php-format msgid "Theme not available: %s." msgstr "主题不可用:%s。" -#: actions/designadminpanel.php:426 +#: actions/designadminpanel.php:439 msgid "Change logo" msgstr "更换 logo" -#: actions/designadminpanel.php:431 +#: actions/designadminpanel.php:444 msgid "Site logo" msgstr "网站 logo" -#: actions/designadminpanel.php:443 +#: actions/designadminpanel.php:456 msgid "Change theme" msgstr "更换主题" -#: actions/designadminpanel.php:460 +#: actions/designadminpanel.php:473 msgid "Site theme" msgstr "网站主题" -#: actions/designadminpanel.php:461 +#: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "这个网站的主题。" -#: actions/designadminpanel.php:467 +#: actions/designadminpanel.php:480 msgid "Custom theme" msgstr "自定义主题" -#: actions/designadminpanel.php:471 +#: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "你可以上传一个 .ZIP 压缩文件作为一个自定义的 StatusNet 主题" -#: actions/designadminpanel.php:486 lib/designsettings.php:101 +#: actions/designadminpanel.php:499 lib/designsettings.php:101 msgid "Change background image" msgstr "更换背景图像" -#: actions/designadminpanel.php:491 actions/designadminpanel.php:574 +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 #: lib/designsettings.php:178 msgid "Background" msgstr "背景" -#: actions/designadminpanel.php:496 +#: actions/designadminpanel.php:509 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1168,75 +1167,76 @@ msgid "" msgstr "你可以为网站上传一个背景图像。文件大小限制在%1$s以下。" #. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:527 lib/designsettings.php:139 +#: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" msgstr "打开" #. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:544 lib/designsettings.php:155 +#: actions/designadminpanel.php:557 lib/designsettings.php:155 msgid "Off" msgstr "关闭" -#: actions/designadminpanel.php:545 lib/designsettings.php:156 +#: actions/designadminpanel.php:558 lib/designsettings.php:156 msgid "Turn background image on or off." msgstr "打开或关闭背景图片" -#: actions/designadminpanel.php:550 lib/designsettings.php:161 +#: actions/designadminpanel.php:563 lib/designsettings.php:161 msgid "Tile background image" msgstr "平铺背景图片" -#: actions/designadminpanel.php:564 lib/designsettings.php:170 +#: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "改变颜色" -#: actions/designadminpanel.php:587 lib/designsettings.php:191 +#: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "内容" -#: actions/designadminpanel.php:600 lib/designsettings.php:204 +#: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" msgstr "边栏" -#: actions/designadminpanel.php:613 lib/designsettings.php:217 +#: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "文字" -#: actions/designadminpanel.php:626 lib/designsettings.php:230 +#: actions/designadminpanel.php:639 lib/designsettings.php:230 msgid "Links" msgstr "链接" -#: actions/designadminpanel.php:651 +#: actions/designadminpanel.php:664 msgid "Advanced" msgstr "高级" -#: actions/designadminpanel.php:655 +#: actions/designadminpanel.php:668 msgid "Custom CSS" msgstr "自定义CSS" -#: actions/designadminpanel.php:676 lib/designsettings.php:247 +#: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" msgstr "使用默认值" -#: actions/designadminpanel.php:677 lib/designsettings.php:248 +#: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" msgstr "恢复默认外观" -#: actions/designadminpanel.php:683 lib/designsettings.php:254 +#: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "重置到默认" #. TRANS: Submit button title. -#: actions/designadminpanel.php:685 actions/othersettings.php:126 -#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245 -#: actions/subscriptions.php:226 actions/tagother.php:154 -#: actions/useradminpanel.php:294 lib/applicationeditform.php:353 -#: lib/designsettings.php:256 lib/groupeditform.php:202 +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 msgid "Save" msgstr "保存" -#: actions/designadminpanel.php:686 lib/designsettings.php:257 +#: actions/designadminpanel.php:699 lib/designsettings.php:257 msgid "Save design" msgstr "保存外观" @@ -1314,7 +1314,7 @@ msgstr "调回地址(callback)过长。" msgid "Callback URL is not valid." msgstr "调回地址(Callback URL)无效。" -#: actions/editapplication.php:258 +#: actions/editapplication.php:261 msgid "Could not update application." msgstr "无法更新应用。" @@ -1407,7 +1407,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:347 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 msgctxt "BUTTON" msgid "Cancel" msgstr "取消" @@ -1641,7 +1641,7 @@ msgstr "%s收藏的消息" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "" +msgstr "%2$s 上被 %1$s 收藏的消息!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -1864,6 +1864,12 @@ msgctxt "BUTTON" msgid "Block" msgstr "屏蔽" +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + #: actions/groupmembers.php:498 msgid "Make user an admin of the group" msgstr "使用户成为小组的管理员" @@ -2292,6 +2298,110 @@ msgstr "你不是该群小组成员。" msgid "%1$s left group %2$s" msgstr "%1$s离开了%2$s小组。" +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." msgstr "已登录。" @@ -2521,8 +2631,8 @@ msgid "Connected applications" msgstr "关联的应用" #: actions/oauthconnectionssettings.php:83 -msgid "You have allowed the following applications to access you account." -msgstr "你已允许以下程序访问你的账户。" +msgid "You have allowed the following applications to access your account." +msgstr "" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2545,7 +2655,7 @@ msgstr "开发者可以修改他们程序的登记设置 " msgid "Notice has no profile." msgstr "消息没有对应用户。" -#: actions/oembed.php:87 actions/shownotice.php:175 +#: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s在%2$s时发的消息" @@ -2709,8 +2819,8 @@ msgid "Paths" msgstr "路径" #: actions/pathsadminpanel.php:70 -msgid "Path and server settings for this StatusNet site." -msgstr "这个 StatusNet 网站的路径和服务器设置" +msgid "Path and server settings for this StatusNet site" +msgstr "" #: actions/pathsadminpanel.php:157 #, php-format @@ -2903,7 +3013,7 @@ msgstr "个人信息" #: actions/profilesettings.php:108 lib/groupeditform.php:154 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 到 64 个小写字母或数字,不包含标点及空白" +msgstr "1 到 64 个小写字母或数字,不包含标点或空格" #: actions/profilesettings.php:111 actions/register.php:455 #: actions/showgroup.php:256 actions/tagother.php:104 @@ -3333,8 +3443,8 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -"我的文字和文件在%s下提供,除了隐私内容:密码、电子邮件地址、IM 地址和电话号" -"码。" +"我的文字和文件在%s下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话" +"号码。" #: actions/register.php:583 #, php-format @@ -3534,8 +3644,8 @@ msgid "Sessions" msgstr "Sessions" #: actions/sessionsadminpanel.php:65 -msgid "Session settings for this StatusNet site." -msgstr "这个 StatusNet 网站的外观设置" +msgid "Session settings for this StatusNet site" +msgstr "" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3554,7 +3664,6 @@ msgid "Turn on debugging output for sessions." msgstr "打开 sessions 的调试输出。" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "保存访问设置" @@ -4445,74 +4554,78 @@ msgid "" msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" #. TRANS: User admin panel title -#: actions/useradminpanel.php:59 +#: actions/useradminpanel.php:60 msgctxt "TITLE" msgid "User" msgstr "用户" -#: actions/useradminpanel.php:70 -msgid "User settings for this StatusNet site." -msgstr "这个 StatusNet 网站的用户设置" +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" -#: actions/useradminpanel.php:149 +#: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." msgstr "无效的自述限制,必须为数字。" -#: actions/useradminpanel.php:155 +#: actions/useradminpanel.php:156 msgid "Invalid welcome text. Max length is 255 characters." msgstr "无效的欢迎文字。最大长度255个字符。" -#: actions/useradminpanel.php:165 +#: actions/useradminpanel.php:166 #, php-format msgid "Invalid default subscripton: '%1$s' is not user." msgstr "无效的默认关注:“%1$s”不是一个用户。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:223 msgid "Bio Limit" msgstr "自述限制" -#: actions/useradminpanel.php:223 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "个人资料自述最长的字符数。" -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:232 msgid "New users" msgstr "新用户" -#: actions/useradminpanel.php:235 +#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "新用户欢迎" -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "给新用户的欢迎文字(不能超过255个字符)。" -#: actions/useradminpanel.php:241 +#: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "默认关注" -#: actions/useradminpanel.php:242 +#: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." msgstr "自动关注所有关注我的人 (这个选项适合机器人)" -#: actions/useradminpanel.php:251 +#: actions/useradminpanel.php:252 msgid "Invitations" msgstr "邀请" -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "邀请已启用" -#: actions/useradminpanel.php:258 +#: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "是否允许用户发送注册邀请。" +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "授权关注" @@ -4526,7 +4639,9 @@ msgstr "" "请检查这些详细信息,确认希望关注此用户的消息。如果你不想关注,请点击\\\"拒绝" "\\\"。" +#. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 msgid "License" msgstr "许可协议" @@ -4712,6 +4827,15 @@ msgstr "版本" msgid "Author(s)" msgstr "作者" +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "收藏" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 #, php-format @@ -4767,6 +4891,17 @@ msgstr "不是小组成员。" msgid "Group leave failed." msgstr "离开小组失败。" +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "加入" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." @@ -4847,18 +4982,18 @@ msgid "Problem saving notice." msgstr "保存消息时出错。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:899 +#: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" msgstr "对 saveKnownGroups 提供的类型无效" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:998 +#: classes/Notice.php:1005 msgid "Problem saving group inbox." msgstr "保存小组收件箱时出错。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1759 +#: classes/Notice.php:1824 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4883,7 +5018,7 @@ msgid "Missing profile." msgstr "丢失的个人信息。" #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:339 +#: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "无法保存标签。" @@ -4922,9 +5057,18 @@ msgstr "无法删除关注 OMB token。" msgid "Could not delete subscription." msgstr "无法取消关注。" +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:365 +#: classes/User.php:384 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "欢迎来到 %1$s,@%2$s!" @@ -5242,19 +5386,19 @@ msgid "All %1$s content and data are available under the %2$s license." msgstr "所有%1$s的内容和数据在%2$s许可下有效。" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1243 +#: lib/action.php:1248 msgid "Pagination" msgstr "分页" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1254 +#: lib/action.php:1259 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:1264 +#: lib/action.php:1269 msgid "Before" msgstr "之前" @@ -5362,6 +5506,11 @@ msgstr "编辑网站消息" msgid "Snapshots configuration" msgstr "更改站点配置" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -5391,12 +5540,12 @@ msgstr "无法验证你。" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "尝试了取消未知的 token。" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:182 msgid "Failed to delete revoked token." -msgstr "" +msgstr "删除取消的 token 失败。" #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5445,37 +5594,37 @@ msgid "URL to redirect to after authentication" msgstr "通过授权后转向的 URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:269 +#: lib/applicationeditform.php:270 msgid "Browser" msgstr "浏览器" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:286 +#: lib/applicationeditform.php:287 msgid "Desktop" msgstr "桌面" #. TRANS: Form guide. -#: lib/applicationeditform.php:288 +#: lib/applicationeditform.php:289 msgid "Type of application, browser or desktop" msgstr "应用的类型,浏览器或桌面" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:311 +#: lib/applicationeditform.php:313 msgid "Read-only" msgstr "只读" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:330 +#: lib/applicationeditform.php:333 msgid "Read-write" msgstr "读写" #. TRANS: Form guide. -#: lib/applicationeditform.php:332 +#: lib/applicationeditform.php:335 msgid "Default access for this application: read-only, or read-write" msgstr "该应用默认的访问权限:只读或读写" #. TRANS: Submit button title. -#: lib/applicationeditform.php:349 +#: lib/applicationeditform.php:352 msgid "Cancel" msgstr "取消" @@ -5962,10 +6111,6 @@ msgstr "取消收藏这个消息" msgid "Favor this notice" msgstr "收藏" -#: lib/favorform.php:140 -msgid "Favor" -msgstr "收藏" - #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5983,8 +6128,8 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedlist.php:64 -msgid "Export data" -msgstr "RSS 订阅" +msgid "Feeds" +msgstr "" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6176,10 +6321,6 @@ msgstr "[%s]" msgid "Unknown inbox source %d." msgstr "未知的收件箱来源%d。" -#: lib/joinform.php:114 -msgid "Join" -msgstr "加入" - #: lib/leaveform.php:114 msgid "Leave" msgstr "离开" @@ -6631,7 +6772,7 @@ msgstr "发布" #: lib/noticeform.php:160 msgid "Send a notice" -msgstr "发送一个消息" +msgstr "发送一个通知" #: lib/noticeform.php:174 #, php-format @@ -6862,7 +7003,7 @@ msgstr "转发" msgid "Revoke the \"%s\" role from this user" msgstr "取消这个用户的\"%s\"权限" -#: lib/router.php:709 +#: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "没有单独的用户被定义为单用户模式。" @@ -7087,60 +7228,60 @@ msgid "Moderator" msgstr "审核员" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1103 +#: lib/util.php:1126 msgid "a few seconds ago" msgstr "几秒前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1106 +#: lib/util.php:1129 msgid "about a minute ago" msgstr "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1110 +#: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" msgstr[0] "约1分钟前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1113 +#: lib/util.php:1136 msgid "about an hour ago" msgstr "约1小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1117 +#: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "约一小时前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1120 +#: lib/util.php:1143 msgid "about a day ago" msgstr "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1124 +#: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" msgstr[0] "约1天前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1127 +#: lib/util.php:1150 msgid "about a month ago" msgstr "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1131 +#: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" msgstr[0] "约1个月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1134 +#: lib/util.php:1157 msgid "about a year ago" msgstr "约1年前" @@ -7153,3 +7294,17 @@ msgstr "%s不是有效的颜色!" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" From ec7ab3af4dc4d16e2e09205ce88671d7d48b1084 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 01:09:29 +0200 Subject: [PATCH 191/310] Localisation updates from http://translatewiki.net * first export of L10n for languages other than English. Could use some testing/QA. --- plugins/APC/locale/es/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/fr/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/ia/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/mk/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/nb/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/nl/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/pt/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 31 + plugins/APC/locale/ru/LC_MESSAGES/APC.po | 31 + plugins/APC/locale/tl/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/uk/LC_MESSAGES/APC.po | 31 + plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 31 + .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 102 +++ .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 103 +++ .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 101 +++ .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 102 +++ .../locale/zh_CN/LC_MESSAGES/Adsense.po | 103 +++ .../locale/es/LC_MESSAGES/AutoSandbox.po | 46 + .../locale/fr/LC_MESSAGES/AutoSandbox.po | 46 + .../locale/ia/LC_MESSAGES/AutoSandbox.po | 45 + .../locale/mk/LC_MESSAGES/AutoSandbox.po | 46 + .../locale/nl/LC_MESSAGES/AutoSandbox.po | 47 ++ .../locale/tl/LC_MESSAGES/AutoSandbox.po | 45 + .../locale/uk/LC_MESSAGES/AutoSandbox.po | 46 + .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 43 + .../locale/es/LC_MESSAGES/Autocomplete.po | 33 + .../locale/fr/LC_MESSAGES/Autocomplete.po | 33 + .../locale/ia/LC_MESSAGES/Autocomplete.po | 33 + .../locale/ja/LC_MESSAGES/Autocomplete.po | 32 + .../locale/mk/LC_MESSAGES/Autocomplete.po | 33 + .../locale/nl/LC_MESSAGES/Autocomplete.po | 33 + .../locale/ru/LC_MESSAGES/Autocomplete.po | 33 + .../locale/tl/LC_MESSAGES/Autocomplete.po | 34 + .../locale/uk/LC_MESSAGES/Autocomplete.po | 34 + .../locale/zh_CN/LC_MESSAGES/Autocomplete.po | 32 + .../locale/es/LC_MESSAGES/BitlyUrl.po | 32 + .../locale/fr/LC_MESSAGES/BitlyUrl.po | 33 + .../locale/ia/LC_MESSAGES/BitlyUrl.po | 31 + .../locale/mk/LC_MESSAGES/BitlyUrl.po | 33 + .../locale/nb/LC_MESSAGES/BitlyUrl.po | 31 + .../locale/nl/LC_MESSAGES/BitlyUrl.po | 33 + .../locale/pt_BR/LC_MESSAGES/BitlyUrl.po | 32 + .../locale/ru/LC_MESSAGES/BitlyUrl.po | 32 + .../locale/tl/LC_MESSAGES/BitlyUrl.po | 33 + .../locale/uk/LC_MESSAGES/BitlyUrl.po | 33 + .../locale/zh_CN/LC_MESSAGES/BitlyUrl.po | 32 + .../locale/es/LC_MESSAGES/Blacklist.po | 96 +++ .../locale/fr/LC_MESSAGES/Blacklist.po | 96 +++ .../locale/gl/LC_MESSAGES/Blacklist.po | 95 +++ .../locale/ia/LC_MESSAGES/Blacklist.po | 96 +++ .../locale/mk/LC_MESSAGES/Blacklist.po | 95 +++ .../locale/nl/LC_MESSAGES/Blacklist.po | 95 +++ .../locale/uk/LC_MESSAGES/Blacklist.po | 96 +++ .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 96 +++ .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 26 + .../locale/ia/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/nl/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/es/LC_MESSAGES/CacheLog.po | 26 + .../locale/fr/LC_MESSAGES/CacheLog.po | 26 + .../locale/ia/LC_MESSAGES/CacheLog.po | 26 + .../locale/mk/LC_MESSAGES/CacheLog.po | 26 + .../locale/nl/LC_MESSAGES/CacheLog.po | 26 + .../locale/pt/LC_MESSAGES/CacheLog.po | 26 + .../locale/ru/LC_MESSAGES/CacheLog.po | 27 + .../locale/tl/LC_MESSAGES/CacheLog.po | 26 + .../locale/uk/LC_MESSAGES/CacheLog.po | 27 + .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 27 + .../fr/LC_MESSAGES/CasAuthentication.po | 77 ++ .../ia/LC_MESSAGES/CasAuthentication.po | 77 ++ .../mk/LC_MESSAGES/CasAuthentication.po | 76 ++ .../nl/LC_MESSAGES/CasAuthentication.po | 76 ++ .../pt_BR/LC_MESSAGES/CasAuthentication.po | 73 ++ .../uk/LC_MESSAGES/CasAuthentication.po | 74 ++ .../zh_CN/LC_MESSAGES/CasAuthentication.po | 73 ++ .../fr/LC_MESSAGES/ClientSideShorten.po | 36 + .../ia/LC_MESSAGES/ClientSideShorten.po | 34 + .../mk/LC_MESSAGES/ClientSideShorten.po | 35 + .../nb/LC_MESSAGES/ClientSideShorten.po | 34 + .../nl/LC_MESSAGES/ClientSideShorten.po | 35 + .../tl/LC_MESSAGES/ClientSideShorten.po | 35 + .../uk/LC_MESSAGES/ClientSideShorten.po | 36 + .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 36 + plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 26 + plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 26 + .../es/LC_MESSAGES/DirectionDetector.po | 28 + .../fr/LC_MESSAGES/DirectionDetector.po | 28 + .../ia/LC_MESSAGES/DirectionDetector.po | 27 + .../ja/LC_MESSAGES/DirectionDetector.po | 26 + .../lb/LC_MESSAGES/DirectionDetector.po | 28 + .../mk/LC_MESSAGES/DirectionDetector.po | 28 + .../nb/LC_MESSAGES/DirectionDetector.po | 26 + .../nl/LC_MESSAGES/DirectionDetector.po | 24 +- .../ru/LC_MESSAGES/DirectionDetector.po | 27 + .../tl/LC_MESSAGES/DirectionDetector.po | 28 + .../uk/LC_MESSAGES/DirectionDetector.po | 27 + .../zh_CN/LC_MESSAGES/DirectionDetector.po | 27 + .../locale/ia/LC_MESSAGES/DiskCache.po | 26 + .../locale/nl/LC_MESSAGES/DiskCache.po | 26 + .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 43 + plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 31 + plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 31 + plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 29 + .../fr/LC_MESSAGES/EmailAuthentication.po | 30 + .../ia/LC_MESSAGES/EmailAuthentication.po | 30 + .../ja/LC_MESSAGES/EmailAuthentication.po | 30 + .../mk/LC_MESSAGES/EmailAuthentication.po | 30 + .../nb/LC_MESSAGES/EmailAuthentication.po | 30 + .../nl/LC_MESSAGES/EmailAuthentication.po | 30 + .../pt/LC_MESSAGES/EmailAuthentication.po | 30 + .../ru/LC_MESSAGES/EmailAuthentication.po | 31 + .../tl/LC_MESSAGES/EmailAuthentication.po | 30 + .../uk/LC_MESSAGES/EmailAuthentication.po | 31 + .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 29 + .../locale/fr/LC_MESSAGES/Facebook.po | 576 +++++++++++++ .../locale/ia/LC_MESSAGES/Facebook.po | 565 +++++++++++++ .../locale/mk/LC_MESSAGES/Facebook.po | 562 +++++++++++++ .../locale/nb/LC_MESSAGES/Facebook.po | 533 ++++++++++++ .../locale/nl/LC_MESSAGES/Facebook.po | 571 +++++++++++++ .../locale/pt_BR/LC_MESSAGES/Facebook.po | 536 ++++++++++++ .../locale/tl/LC_MESSAGES/Facebook.po | 578 +++++++++++++ .../locale/uk/LC_MESSAGES/Facebook.po | 568 +++++++++++++ .../locale/zh_CN/LC_MESSAGES/Facebook.po | 548 ++++++++++++ .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 26 + .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 26 + .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 28 + .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 26 + .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 26 + .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 28 + .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 27 + .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 31 + .../locale/fr/LC_MESSAGES/Geonames.po | 32 + .../locale/ia/LC_MESSAGES/Geonames.po | 31 + .../locale/mk/LC_MESSAGES/Geonames.po | 31 + .../locale/nb/LC_MESSAGES/Geonames.po | 30 + .../locale/nl/LC_MESSAGES/Geonames.po | 31 + .../locale/ru/LC_MESSAGES/Geonames.po | 32 + .../locale/tl/LC_MESSAGES/Geonames.po | 31 + .../locale/uk/LC_MESSAGES/Geonames.po | 32 + .../locale/zh_CN/LC_MESSAGES/Geonames.po | 31 + .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 31 + .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 31 + .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 31 + .../locale/de/LC_MESSAGES/Gravatar.po | 77 ++ .../locale/fr/LC_MESSAGES/Gravatar.po | 77 ++ .../locale/ia/LC_MESSAGES/Gravatar.po | 74 ++ .../locale/mk/LC_MESSAGES/Gravatar.po | 76 ++ .../locale/nl/LC_MESSAGES/Gravatar.po | 75 ++ .../locale/tl/LC_MESSAGES/Gravatar.po | 78 ++ .../locale/uk/LC_MESSAGES/Gravatar.po | 76 ++ .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 75 ++ plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 59 ++ plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 58 ++ plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 58 ++ plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 58 ++ plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 58 ++ plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 60 ++ plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 57 ++ plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 59 ++ .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 36 + .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 35 + .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 34 + .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 35 + .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 34 + .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 36 + .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 36 + .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 35 + .../fr/LC_MESSAGES/LdapAuthentication.po | 30 + .../ia/LC_MESSAGES/LdapAuthentication.po | 30 + .../ja/LC_MESSAGES/LdapAuthentication.po | 29 + .../mk/LC_MESSAGES/LdapAuthentication.po | 30 + .../nb/LC_MESSAGES/LdapAuthentication.po | 30 + .../nl/LC_MESSAGES/LdapAuthentication.po | 30 + .../ru/LC_MESSAGES/LdapAuthentication.po | 31 + .../tl/LC_MESSAGES/LdapAuthentication.po | 30 + .../uk/LC_MESSAGES/LdapAuthentication.po | 31 + .../fr/LC_MESSAGES/LdapAuthorization.po | 30 + .../ia/LC_MESSAGES/LdapAuthorization.po | 30 + .../mk/LC_MESSAGES/LdapAuthorization.po | 30 + .../nb/LC_MESSAGES/LdapAuthorization.po | 30 + .../nl/LC_MESSAGES/LdapAuthorization.po | 30 + .../ru/LC_MESSAGES/LdapAuthorization.po | 31 + .../tl/LC_MESSAGES/LdapAuthorization.po | 30 + .../uk/LC_MESSAGES/LdapAuthorization.po | 31 + .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 34 + .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 32 + .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 31 + .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 33 + .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 31 + .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 33 + .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 33 + .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 33 + .../locale/fr/LC_MESSAGES/Linkback.po | 34 + .../locale/ia/LC_MESSAGES/Linkback.po | 34 + .../locale/mk/LC_MESSAGES/Linkback.po | 34 + .../locale/nb/LC_MESSAGES/Linkback.po | 34 + .../locale/nl/LC_MESSAGES/Linkback.po | 34 + .../locale/tl/LC_MESSAGES/Linkback.po | 34 + .../locale/uk/LC_MESSAGES/Linkback.po | 35 + .../locale/de/LC_MESSAGES/Mapstraction.po | 57 ++ .../locale/fi/LC_MESSAGES/Mapstraction.po | 57 ++ .../locale/fr/LC_MESSAGES/Mapstraction.po | 59 ++ .../locale/gl/LC_MESSAGES/Mapstraction.po | 57 ++ .../locale/ia/LC_MESSAGES/Mapstraction.po | 59 ++ .../locale/mk/LC_MESSAGES/Mapstraction.po | 59 ++ .../locale/nl/LC_MESSAGES/Mapstraction.po | 60 ++ .../locale/tl/LC_MESSAGES/Mapstraction.po | 59 ++ .../locale/uk/LC_MESSAGES/Mapstraction.po | 60 ++ .../locale/fr/LC_MESSAGES/Memcache.po | 29 + .../locale/ia/LC_MESSAGES/Memcache.po | 29 + .../locale/mk/LC_MESSAGES/Memcache.po | 29 + .../locale/nb/LC_MESSAGES/Memcache.po | 29 + .../locale/nl/LC_MESSAGES/Memcache.po | 29 + .../locale/ru/LC_MESSAGES/Memcache.po | 30 + .../locale/tl/LC_MESSAGES/Memcache.po | 29 + .../locale/uk/LC_MESSAGES/Memcache.po | 30 + .../locale/fr/LC_MESSAGES/Memcached.po | 29 + .../locale/ia/LC_MESSAGES/Memcached.po | 29 + .../locale/mk/LC_MESSAGES/Memcached.po | 29 + .../locale/nb/LC_MESSAGES/Memcached.po | 29 + .../locale/nl/LC_MESSAGES/Memcached.po | 29 + .../locale/ru/LC_MESSAGES/Memcached.po | 30 + .../locale/tl/LC_MESSAGES/Memcached.po | 29 + .../locale/uk/LC_MESSAGES/Memcached.po | 30 + .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 38 + .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 38 + .../Minify/locale/fr/LC_MESSAGES/Minify.po | 42 + .../Minify/locale/ia/LC_MESSAGES/Minify.po | 42 + .../Minify/locale/mk/LC_MESSAGES/Minify.po | 42 + .../Minify/locale/nl/LC_MESSAGES/Minify.po | 42 + .../Minify/locale/tl/LC_MESSAGES/Minify.po | 42 + .../Minify/locale/uk/LC_MESSAGES/Minify.po | 43 + .../locale/br/LC_MESSAGES/MobileProfile.po | 78 ++ .../locale/fr/LC_MESSAGES/MobileProfile.po | 80 ++ .../locale/ia/LC_MESSAGES/MobileProfile.po | 80 ++ .../locale/mk/LC_MESSAGES/MobileProfile.po | 78 ++ .../locale/nl/LC_MESSAGES/MobileProfile.po | 81 ++ .../locale/ru/LC_MESSAGES/MobileProfile.po | 79 ++ .../locale/uk/LC_MESSAGES/MobileProfile.po | 80 ++ .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 79 ++ .../locale/br/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/fr/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/ia/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/mk/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/nb/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/nl/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/te/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/tl/LC_MESSAGES/NoticeTitle.po | 32 + .../locale/uk/LC_MESSAGES/NoticeTitle.po | 33 + .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 796 ++++++++++++++++++ .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 768 +++++++++++++++++ .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 771 +++++++++++++++++ .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 781 +++++++++++++++++ .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 781 +++++++++++++++++ .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 27 + .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 29 + .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 27 + .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 587 +++++++++++++ .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 631 ++++++++++++++ .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 619 ++++++++++++++ .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 614 ++++++++++++++ .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 494 ++++++++--- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 633 ++++++++++++++ .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 622 ++++++++++++++ .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 31 + .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 31 + .../locale/fr/LC_MESSAGES/PostDebug.po | 26 + .../locale/ia/LC_MESSAGES/PostDebug.po | 28 + .../locale/ja/LC_MESSAGES/PostDebug.po | 26 + .../locale/mk/LC_MESSAGES/PostDebug.po | 26 + .../locale/nl/LC_MESSAGES/PostDebug.po | 26 + .../locale/ru/LC_MESSAGES/PostDebug.po | 27 + .../locale/tl/LC_MESSAGES/PostDebug.po | 28 + .../locale/uk/LC_MESSAGES/PostDebug.po | 27 + .../br/LC_MESSAGES/PoweredByStatusNet.po | 38 + .../fr/LC_MESSAGES/PoweredByStatusNet.po | 41 + .../gl/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../ia/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../mk/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../nl/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../pt/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../tl/LC_MESSAGES/PoweredByStatusNet.po | 40 + .../uk/LC_MESSAGES/PoweredByStatusNet.po | 41 + .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 29 + .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 28 + .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 27 + .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 29 + .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 27 + .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 29 + .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 28 + .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 29 + .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 29 + .../locale/fr/LC_MESSAGES/RSSCloud.po | 85 ++ .../locale/ia/LC_MESSAGES/RSSCloud.po | 81 ++ .../locale/mk/LC_MESSAGES/RSSCloud.po | 81 ++ .../locale/nl/LC_MESSAGES/RSSCloud.po | 81 ++ .../locale/tl/LC_MESSAGES/RSSCloud.po | 82 ++ .../locale/uk/LC_MESSAGES/RSSCloud.po | 81 ++ .../locale/fr/LC_MESSAGES/Recaptcha.po | 39 + .../locale/ia/LC_MESSAGES/Recaptcha.po | 38 + .../locale/mk/LC_MESSAGES/Recaptcha.po | 38 + .../locale/nb/LC_MESSAGES/Recaptcha.po | 38 + .../locale/nl/LC_MESSAGES/Recaptcha.po | 38 + .../locale/tl/LC_MESSAGES/Recaptcha.po | 38 + .../locale/uk/LC_MESSAGES/Recaptcha.po | 39 + .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 41 + .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 38 + .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 38 + .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 39 + .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 40 + .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 39 + .../fr/LC_MESSAGES/RequireValidatedEmail.po | 38 + .../ia/LC_MESSAGES/RequireValidatedEmail.po | 38 + .../mk/LC_MESSAGES/RequireValidatedEmail.po | 40 + .../nl/LC_MESSAGES/RequireValidatedEmail.po | 38 + .../tl/LC_MESSAGES/RequireValidatedEmail.po | 39 + .../uk/LC_MESSAGES/RequireValidatedEmail.po | 41 + .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 32 + .../ReverseUsernameAuthentication.po | 33 + .../ReverseUsernameAuthentication.po | 33 + .../Sample/locale/br/LC_MESSAGES/Sample.po | 69 ++ .../Sample/locale/fr/LC_MESSAGES/Sample.po | 72 ++ .../Sample/locale/ia/LC_MESSAGES/Sample.po | 71 ++ .../Sample/locale/mk/LC_MESSAGES/Sample.po | 70 ++ .../Sample/locale/nl/LC_MESSAGES/Sample.po | 70 ++ .../Sample/locale/tl/LC_MESSAGES/Sample.po | 71 ++ .../Sample/locale/uk/LC_MESSAGES/Sample.po | 71 ++ .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 69 ++ .../locale/fr/LC_MESSAGES/SimpleUrl.po | 29 + .../locale/ia/LC_MESSAGES/SimpleUrl.po | 28 + .../locale/ja/LC_MESSAGES/SimpleUrl.po | 27 + .../locale/mk/LC_MESSAGES/SimpleUrl.po | 29 + .../locale/nb/LC_MESSAGES/SimpleUrl.po | 27 + .../locale/nl/LC_MESSAGES/SimpleUrl.po | 29 + .../locale/ru/LC_MESSAGES/SimpleUrl.po | 28 + .../locale/tl/LC_MESSAGES/SimpleUrl.po | 29 + .../locale/uk/LC_MESSAGES/SimpleUrl.po | 29 + .../locale/fr/LC_MESSAGES/SubMirror.po | 141 ++++ .../locale/ia/LC_MESSAGES/SubMirror.po | 139 +++ .../locale/mk/LC_MESSAGES/SubMirror.po | 139 +++ .../locale/nl/LC_MESSAGES/SubMirror.po | 141 ++++ .../locale/tl/LC_MESSAGES/SubMirror.po | 139 +++ .../locale/uk/LC_MESSAGES/SubMirror.po | 140 +++ .../fr/LC_MESSAGES/SubscriptionThrottle.po | 26 + .../ia/LC_MESSAGES/SubscriptionThrottle.po | 26 + .../mk/LC_MESSAGES/SubscriptionThrottle.po | 26 + .../nb/LC_MESSAGES/SubscriptionThrottle.po | 26 + .../nl/LC_MESSAGES/SubscriptionThrottle.po | 26 + .../ru/LC_MESSAGES/SubscriptionThrottle.po | 27 + .../tl/LC_MESSAGES/SubscriptionThrottle.po | 28 + .../uk/LC_MESSAGES/SubscriptionThrottle.po | 27 + .../locale/fr/LC_MESSAGES/TabFocus.po | 32 + .../locale/ia/LC_MESSAGES/TabFocus.po | 32 + .../locale/mk/LC_MESSAGES/TabFocus.po | 32 + .../locale/nb/LC_MESSAGES/TabFocus.po | 32 + .../locale/nl/LC_MESSAGES/TabFocus.po | 32 + .../locale/ru/LC_MESSAGES/TabFocus.po | 33 + .../locale/tl/LC_MESSAGES/TabFocus.po | 32 + .../locale/uk/LC_MESSAGES/TabFocus.po | 33 + .../locale/fr/LC_MESSAGES/TightUrl.po | 29 + .../locale/ia/LC_MESSAGES/TightUrl.po | 28 + .../locale/ja/LC_MESSAGES/TightUrl.po | 27 + .../locale/mk/LC_MESSAGES/TightUrl.po | 29 + .../locale/nb/LC_MESSAGES/TightUrl.po | 27 + .../locale/nl/LC_MESSAGES/TightUrl.po | 29 + .../locale/ru/LC_MESSAGES/TightUrl.po | 28 + .../locale/tl/LC_MESSAGES/TightUrl.po | 29 + .../locale/uk/LC_MESSAGES/TightUrl.po | 29 + .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 27 + .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 26 + .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 29 + .../locale/fr/LC_MESSAGES/TwitterBridge.po | 410 +++++++++ .../locale/ia/LC_MESSAGES/TwitterBridge.po | 400 +++++++++ .../locale/mk/LC_MESSAGES/TwitterBridge.po | 403 +++++++++ .../locale/nl/LC_MESSAGES/TwitterBridge.po | 380 +++++++++ .../locale/tr/LC_MESSAGES/TwitterBridge.po | 384 +++++++++ .../locale/uk/LC_MESSAGES/TwitterBridge.po | 406 +++++++++ .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 388 +++++++++ .../locale/fr/LC_MESSAGES/UserLimit.po | 26 + .../locale/ia/LC_MESSAGES/UserLimit.po | 26 + .../locale/mk/LC_MESSAGES/UserLimit.po | 26 + .../locale/nb/LC_MESSAGES/UserLimit.po | 26 + .../locale/nl/LC_MESSAGES/UserLimit.po | 26 + .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 27 + .../locale/ru/LC_MESSAGES/UserLimit.po | 28 + .../locale/tl/LC_MESSAGES/UserLimit.po | 26 + .../locale/tr/LC_MESSAGES/UserLimit.po | 26 + .../locale/uk/LC_MESSAGES/UserLimit.po | 27 + .../locale/fr/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/ia/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/mk/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/nb/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/nl/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/pt_BR/LC_MESSAGES/WikiHashtags.po | 31 + .../locale/ru/LC_MESSAGES/WikiHashtags.po | 31 + .../locale/tl/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/tr/LC_MESSAGES/WikiHashtags.po | 30 + .../locale/uk/LC_MESSAGES/WikiHashtags.po | 31 + .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 41 + .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 40 + .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 41 + .../XCache/locale/es/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/fr/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/ia/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/mk/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/nb/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/nl/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/ru/LC_MESSAGES/XCache.po | 31 + .../XCache/locale/tl/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/tr/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/uk/LC_MESSAGES/XCache.po | 31 + 463 files changed, 33493 insertions(+), 141 deletions(-) create mode 100644 plugins/APC/locale/es/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/fr/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/ia/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/mk/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/nb/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/nl/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/pt/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/ru/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/tl/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/uk/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po create mode 100644 plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po create mode 100644 plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po create mode 100644 plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po create mode 100644 plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po create mode 100644 plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po create mode 100644 plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po create mode 100644 plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po create mode 100644 plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Comet/locale/ia/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/nl/LC_MESSAGES/Comet.po create mode 100644 plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po create mode 100644 plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po create mode 100644 plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po create mode 100644 plugins/Echo/locale/fr/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/ia/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/mk/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/nb/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/nl/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/ru/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/tl/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/uk/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po create mode 100644 plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po create mode 100644 plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po create mode 100644 plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po create mode 100644 plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po create mode 100644 plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po create mode 100644 plugins/Imap/locale/fr/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/ia/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/mk/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/nb/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/nl/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/ru/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/tl/LC_MESSAGES/Imap.po create mode 100644 plugins/Imap/locale/uk/LC_MESSAGES/Imap.po create mode 100644 plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po create mode 100644 plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po create mode 100644 plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po create mode 100644 plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po create mode 100644 plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po create mode 100644 plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po create mode 100644 plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po create mode 100644 plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po create mode 100644 plugins/Minify/locale/fr/LC_MESSAGES/Minify.po create mode 100644 plugins/Minify/locale/ia/LC_MESSAGES/Minify.po create mode 100644 plugins/Minify/locale/mk/LC_MESSAGES/Minify.po create mode 100644 plugins/Minify/locale/nl/LC_MESSAGES/Minify.po create mode 100644 plugins/Minify/locale/tl/LC_MESSAGES/Minify.po create mode 100644 plugins/Minify/locale/uk/LC_MESSAGES/Minify.po create mode 100644 plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po create mode 100644 plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po create mode 100644 plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po create mode 100644 plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po create mode 100644 plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po create mode 100644 plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po create mode 100644 plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po create mode 100644 plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po create mode 100644 plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po create mode 100644 plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po create mode 100644 plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po create mode 100644 plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po create mode 100644 plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po create mode 100644 plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po create mode 100644 plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po create mode 100644 plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po create mode 100644 plugins/Sample/locale/br/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/fr/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/ia/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/mk/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/nl/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/tl/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/uk/LC_MESSAGES/Sample.po create mode 100644 plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po create mode 100644 plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po create mode 100644 plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po create mode 100644 plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/XCache/locale/es/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/fr/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/ia/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/mk/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/nb/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/nl/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/ru/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/tl/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/tr/LC_MESSAGES/XCache.po create mode 100644 plugins/XCache/locale/uk/LC_MESSAGES/XCache.po diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..87b3d6d4e9 --- /dev/null +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Usa el caché de variable APC " +"para copiar en caché los resultados de consulta." diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..1a143d8541 --- /dev/null +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Utilisez le cache variable APC pour mettre en cache les résultats de requêtes." diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..54c93cfe67 --- /dev/null +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Usar le cache de variabiles APC pro immagazinar le resultatos de consultas." diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..b187afed72 --- /dev/null +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Користи променлив кеш APC за " +"кеширање на резултати од барања." diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..1b5e6fadd1 --- /dev/null +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Bruk APC-" +"variabelhurtiglagring til å hurtiglagre søkeresultat." diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..8f35461900 --- /dev/null +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"De variabelencache APC " +"gebruiken op resultaten van zoekopdrachten te cachen." diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..55c071e1c8 --- /dev/null +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Waldir +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Usar o APC para armazenar " +"resultados de consultas em cache." diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..f7c292a9dc --- /dev/null +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Usar o APC para armazenar " +"resultados de consultas em cache." diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..58d8ecec38 --- /dev/null +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"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" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Использование кеша переменных APC для хранения результатов запросов." diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..b6044f1ea6 --- /dev/null +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Gamitin ang pabagubagong taguan ng APC upang ikubli ang resulta ng pagtatanong." diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..5aa555972a --- /dev/null +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"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" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Використання APC для " +"різноманітних запитів до кешу." diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..50137acfbc --- /dev/null +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"使用 APC 变量缓存来缓存查询结" +"果。" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..b1ee5549ab --- /dev/null +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configuración de \"AdSense\"" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Extensión para añadir Google Adsense a sitios StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "configuración de AdSense para este sitio StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID de cliente" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID de cliente de Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL del script del anuncio" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL del script (avanzado)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Rectángulo mediano" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Código de espacio de rectángulo mediano" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rectángulo" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Código de espacio de rectángulo" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Clasificación" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Código de espacio de clasificación" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Banderola rascacielos" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Código de espacio de banderola rascacielos ancha" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Guardar" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Guardar la configuración de AdSense" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..1d5778a4fd --- /dev/null +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -0,0 +1,102 @@ +# Translation of StatusNet - Adsense to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configuration d’AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Greffon pour ajouter Google Adsense aux sites StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Paramètres Adsense pour ce site StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "Identifiant du client" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID client Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL du script d’annonce" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL du script (avancé)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Rectangle moyen" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Code placé dans un rectangle moyen" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rectangle" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Codé placé dans le rectangle" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Panneau de commande" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Code placé dans le panneau de commande" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Bannière verticale" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Code placé dans une bannière verticale large" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Sauvegarder" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Sauvegarder les paramètres AdSense" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..f3c0c35ce6 --- /dev/null +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configuración de AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Configuración de AdSense para este sitio StatusNet." + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "Identificación do cliente" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "Identificación do cliente de Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rectángulo" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Rañaceos" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Gardar" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Gardar a configuración de AdSense" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..3eb92f937e --- /dev/null +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configuration de AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plug-in pro adder Google Adsense a sitos StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Configuration de AdSense pro iste sito StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID de cliente" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID de cliente Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL del script de publicitate" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL del script (avantiate)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Rectangulo medie" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Codice pro interstitio a rectangulo medie" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rectangulo" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Codice pro interstitio a rectangulo" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Bandiera large" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Codice pro interstitio a bandiera large" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Grattacelo" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Codice pro interstitio a grattacelo large" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Salveguardar" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Salveguardar configurationes de AdSense" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..55c1da7ff9 --- /dev/null +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Georgian (ქართული) +# Expored from translatewiki.net +# +# Author: Zaal +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Georgian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ka\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "AdSense კონფიგურაცია" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "AdSense პარამეტრები ამ საიტისათვის." + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "კლიენტის ID" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "Google კლიენტის ID" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "სარეკლამო სკრიპტის URL" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "სკრიპტის URL (გაფართოებული)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "საშუალო მართკუთხედი" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "მართკუთხედი" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..7dc6fad7f3 --- /dev/null +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Нагодувања на AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Приклучок за додавање на Google AdSense во мреж. места со StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Поставки на AdSense за ова мрежно место со StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID на клиент" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID на Google-клиент" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL на рекламната скрипта" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL на скриптата (напредно)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Среден правоаголник" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Код на жлебот на средниот правоаголник" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Правоаголник" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Код на жлебот на правоаголникот" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Табла на предводници" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Код на жлебот на таблата на предводници" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Облакодер" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Код на жлебот на широкиот облакодер" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Зачувај" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Зачувај нагодувања на AdSense" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..23e1377697 --- /dev/null +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "AdSense-instellingen" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plug-in om Google AdSense toe te voegen aan Statusnetsites." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "AdSense-instellingen voor deze StatusNet-website" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "Client-ID" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "Google client-ID" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL voor advertentiescript" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL voor script (gevorderd)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Gemiddelde rechthoek" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Slotcode voor gemiddelde rechthoek" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rechthoek" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Slotcode voor rechthoek" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Breedbeeldbanner" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Slotcode voor breedbeeldbanner" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Skyscraper" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Slotcode voor brede skyscraper" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Opslaan" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "AdSense-instellingen opslaan" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..246ea8cf8f --- /dev/null +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - Adsense to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Lockal +# Author: Сrower +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Конфигурация AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Плагин для добавления Google Adsense на сайты StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Настройки AdSense для этого сайта StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID клиента" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID клиента Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL-адрес скрипта рекламы" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL-адрес скрипта (расширенная настройка)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Средний прямоугольник" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Слот-код среднего прямоугольника" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Прямоугольник" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Слот-код прямоугольника" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Доска лидеров" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Слот-код доски лидеров" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Небоскреб" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Слот-код широкого небоскреба" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Сохранить" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Сохранить настройки AdSense" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..dde8044735 --- /dev/null +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Swedish (Svenska) +# Expored from translatewiki.net +# +# Author: Jamminjohn +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Swedish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: sv\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Konfiguration av AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "AdSense-inställningar för denna StatusNet-webbplats" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "Klient-ID" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "Google klient-ID" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Medium rektangel" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Spara" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Spara inställningar för AdSense" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..5f48e074d3 --- /dev/null +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -0,0 +1,102 @@ +# Translation of StatusNet - Adsense to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Конфігурація AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Додаток для відображення Google Adsense на сторінці сайту StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Налаштування AdSense на даному сайті StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ІД клієнта" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ІД клієнта Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "Адреса скрипту AdSense" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "Адреса скрипту (розширена опція)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Середній прямокутник" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Слот-код середнього прямокутника" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Прямокутник" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Слот-код прямокутника" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Дошка лідерів" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Слот-код дошки лідерів" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Хмарочос" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Слот-код хмарочосу" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Зберегти" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Зберегти налаштування AdSense" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..0089ae40e4 --- /dev/null +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - Adsense to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "AdSense配置" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "添加 Google Adsense 到 StatusNet 网站的插件。" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "这个 StatusNet 网站的 AdSense 设置" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "客户ID" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "Google 发布商 ID(例如:pub-1234567890123456)" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "广告脚本地址" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "高级脚本地址" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "中等矩形" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "中等矩形广告代码(#ID)" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "小矩形" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "小矩形广告代码(#ID)" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "首页横幅" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "首页横幅广告代码(#ID)" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "宽幅摩天大楼" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "宽幅摩天大楼广告代码(#ID)" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "保存" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "保存AdSense设置" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..8925554f45 --- /dev/null +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - AutoSandbox to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "" +"Envía automáticamente a zona de pruebas a los usuarios recién registrados." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Ten en cuenta que inicialmente serás enviado a la zona de pruebas, así que " +"tus mensajes no aparecerán en la línea temporal pública." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Ten en cuenta que inicialmente serás enviado a la zona de pruebas, así que " +"tus mensajes no aparecerán en la línea temporal pública. Envía un mensaje a " +"$contactlink para acelerar el proceso de exclusión de la zona de pruebas." diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..4ded500573 --- /dev/null +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - AutoSandbox to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "Place automatiquement les nouveaux membres dans une boîte à sable." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Notez que vous serez initialement placé dans un « bac à sable », ce qui " +"signifie que vos messages n’apparaîtront pas dans le calendrier public." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Notez que vous serez initialement placé dans un « bac à sable », ce qui " +"signifie que vos messages n’apparaîtront pas dans le calendrier public. " +"Envoyez un message à $contactlink pour accélérer le processus de sortie du " +"bac à sable." diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..4f7cda6acf --- /dev/null +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - AutoSandbox to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "Automaticamente pone le membros novemente registrate in isolation." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Nota que tu essera initialmente ponite in isolation de sorta que tu messages " +"non apparera in le chronologia public." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Nota que tu essera initialmente ponite in isolation de sorta que tu messages " +"non apparera in le chronologia public. Invia un message a $contactlink pro " +"accelerar le processo de disisolation." diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..8c4c36bc97 --- /dev/null +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - AutoSandbox to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "Автоматски става новорегистрираните членови во песочник." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Напомена: во прво време ќе бидете ставени во песочникот, па така Вашите " +"објави нема да фигурираат во јавната хронологија." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Напомена: во прво време ќе бидете ставени во песочникот, па така Вашите " +"објави нема да фигурираат во јавната хронологија.\n" +"Испратете порака на $contactlink за да ја забрзате постапката за излегување " +"од песочникот." diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..9b23f16436 --- /dev/null +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - AutoSandbox to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "" +"Voegt nieuwe gebruikers automatisch toe aan een groep met beperkte " +"functionaliteit." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Let op: In eerste instantie worden uw mogelijkheden beperkt, dus uw " +"mededelingen worden niet zichtbaar in de publieke tijdlijn." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Let op: In eerste instantie worden uw mogelijkheden beperkt, dus uw " +"mededelingen worden niet zichtbaar in de publieke tijdlijn. Stuur een " +"bericht naar $contactlink om het proces te versnellen." diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..23a83fb634 --- /dev/null +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - AutoSandbox to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "Kusang ikinakahon ng buhangin ang bagong nagpatalang mga kasapi." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Taandan na \"ikakahon ng buhangin\" ka muna kaya't ang mga pagpapaskil mo ay " +"hindi lilitaw sa pangmadlang guhit ng panahon." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Taandan na \"ikakahon ng buhangin\" ka muna kaya't ang mga pagpapaskil mo ay " +"hindi lilitaw sa pangmadlang guhit ng panahon. Magpadala ng mensahe sa " +"$contactlink upang mapabilis ang proseso ng hindi pagkakahong pambuhangin." diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..2d6edeb52a --- /dev/null +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - AutoSandbox to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"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" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "Автоматично відсилати до «пісочниці» усіх нових користувачів." + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "" +"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"не з’являтимуться у загальній стрічці дописів." + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"не з’являтимуться у загальній стрічці дописів. Надішліть повідомлення до " +"$contactlink аби прискорити процес Вашого «виходу в люди»." diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po new file mode 100644 index 0000000000..9e48c45533 --- /dev/null +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - AutoSandbox to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AutoSandbox\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-autosandbox\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: AutoSandboxPlugin.php:66 +msgid "Automatically sandboxes newly registered members." +msgstr "自动将新注册用户添加至沙盒中。" + +#: AutoSandboxPlugin.php:72 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline." +msgstr "注意:最初你将被添加至“沙盒”中,你的消息将不会在公共的时间线上显示。" + +#. TRANS: $contactlink is a clickable e-mailaddress. +#: AutoSandboxPlugin.php:79 +msgid "" +"Note you will initially be \"sandboxed\" so your posts will not appear in " +"the public timeline. Send a message to $contactlink to speed up the " +"unsandboxing process." +msgstr "" +"注意:最初你将被添加至“沙盒”中,你的消息将不会在公共的时间线上显示。给" +"$contactlink发消息可以加快你被移出沙盒的速度。" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..d336353736 --- /dev/null +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"La extensión de autocompletado permite a los usuarios autocompletar en las " +"respuestas @ los nombres en pantalla. Cuando se escribe \"@\" en el area de " +"texto de mensaje, se muestra una caja de autocompletado que contiene los " +"nombres de pantalla de los amigos del usuario." diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..79ad4b2a90 --- /dev/null +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"L’extension d’autocomplétion permet à l’utilisateur de compléter " +"automatiquement les pseudonymes dans les réponses « @ ». Quand « @ » est saisi " +"dans la zone de texte de l’avis, une boîte d’autocomplétion est affichée et " +"remplie avec les pseudonymes des amis de l’utilisateur." diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..ece3747911 --- /dev/null +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Le plug-in \"autocomplete\" permitte que usatores autocompleta pseudonymos " +"in responsas @. Si un \"@\" es entrate in un area de texto pro un nota, un " +"quadro de autocompletion es monstrate, plenate con le pseudonymos del amicos " +"del usator." diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..5c375d341a --- /dev/null +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"自動入力プラグインは、ユーザーに、@返信でのスクリーンネームの自動入力を出来" +"るようにします。通知テキスト領域で「@」が入力されたとき、自動入力ボックスが表" +"示され、ユーザーの友達のスクリーンネームを入力します。" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..be5a386ee2 --- /dev/null +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Приклучокот за автодополнување овозможува автоматско довршување на " +"кориснички имиња во одговорите со @. Кога ќе внесете „@“ во полето за " +"пишување забелешки, се појавува кутијата за автодополнување каде се наведени " +"корисничките имиња на пријателите." diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..e7c0276828 --- /dev/null +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"De plug-in \"automatisch aanvullen\" (Autocomplete) vult gebruikersnamen " +"automatisch aan bij het maken van \"@\"-antwoorden. Als een \"@\" wordt " +"ingevoerd in het tekstveld voor een mededeling, wordt een extra venster " +"weergegeven met de gebruikersnamen van vrienden." diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..3f47811801 --- /dev/null +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"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" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Модуль автозаполнения обеспечивает пользователям автозаполнение имён экранов " +"в @-ответах. Если в текстовую область уведомления введён символ @, то " +"появляется блок автозаполнения с названиями экранов друзей." diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..115343780b --- /dev/null +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Autocomplete to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Ang pamasak na pangkusang pagkukumpleto ay nagpapahintulot sa mga tagagamit " +"na kusang makumpleto ang mga pangalang bansag sa mga tugong @. Kapag " +"iminakinilya ang \"@\" sa lugar ng teksto ng pabatid, isang kahong na " +"pangkusang pagkukumpleto ang ipapakita na nilagyan ng mga pangalang bansag " +"ng kaibigan ng tagagamit." diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..d2b4d3b4b9 --- /dev/null +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Autocomplete to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"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" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"Додаток автозавершення дозволяє користувачам автоматично завершувати " +"нікнейми у «@-відповідях». Якщо у вікні набору повідомлення з’являється " +"символ «@», то даний додаток автоматично пропонує обрати ім’я користувача із " +"списку тих, з ким Ви найчастіше листуєтесь." diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..d308a7c3ee --- /dev/null +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 31::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: AutocompletePlugin.php:80 +msgid "" +"The autocomplete plugin allows users to autocomplete screen names in @ " +"replies. When an \"@\" is typed into the notice text area, an autocomplete " +"box is displayed populated with the user's friend' screen names." +msgstr "" +"自动补全插件在用户使用@回复时自动补全用户名。当“@”在文本区域被键入时,一个自" +"动补全框会显示用户相关好友的用户名。" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..fcf460cee7 --- /dev/null +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - BitlyUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Debes especificar un serviceUrl." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza el servicio de acortamiento de URL %1$s." diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..24a9f3ddb6 --- /dev/null +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - BitlyUrl to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Vous devez spécifier un serviceUrl." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilise le service de raccourcissement d’URL %1$s." diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..df27635d9d --- /dev/null +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - BitlyUrl to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Tu debe specificar un serviceUrl." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Usa abbreviator de URL %1$s." diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..17743e76d9 --- /dev/null +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - BitlyUrl to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Мора да назначите serviceUrl." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Користи %1$s - служба за скратување на URL-" +"адреса." diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..fea2d5559c --- /dev/null +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - BitlyUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Du må oppgi en tjeneste-Url." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..457d4895e4 --- /dev/null +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - BitlyUrl to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "U moet een serviceURL opgeven." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gebruikt de dienst %1$s om URL's korter te " +"maken." diff --git a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..942bcd659e --- /dev/null +++ b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - BitlyUrl to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Você precisa especificar um serviceUrl." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..aa637d376d --- /dev/null +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - BitlyUrl to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:48+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\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" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Вы должны указать URL-адрес сервису." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Использование службы сокращения URL %1$s." diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..5f6b22c769 --- /dev/null +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - BitlyUrl to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Dapat kang tumukoy ng isang serbisyo ng URL." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gumagamit ng %1$s na serbisyong pampaiksi ng " +"URL." diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..1748170f18 --- /dev/null +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - BitlyUrl to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"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" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "Ви маєте вказати URL-адресу сервісу." + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po new file mode 100644 index 0000000000..6c771ca939 --- /dev/null +++ b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - BitlyUrl to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BitlyUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 33::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-bitlyurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BitlyUrlPlugin.php:43 +msgid "You must specify a serviceUrl." +msgstr "你必须指定一个服务网址" + +#: BitlyUrlPlugin.php:60 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "使用 %1$s短链接服务" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..e07e52eaf0 --- /dev/null +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blacklist to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "No puedes registrarte con la página principal '%s'." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "No puedes registrarte con el nombre de usuario '%s'." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "No puedes utilizar la página de inicio '%s'." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "No puedes utilizar el nombre de usuario '%s'." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "" + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "" + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URLs" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Guardar" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..36266917d6 --- /dev/null +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blacklist to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Vous ne pouvez pas vous inscrire avec la page d’accueil « %s »." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Vous ne pouvez pas vous inscrire avec le pseudonyme « %s »." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Vous ne pouvez pas utiliser la page d’accueil « %s »." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Vous ne pouvez pas utiliser le pseudonyme « %s »." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Vous ne pouvez pas utiliser l’URL « %s » dans les avis." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "Maintient une liste noire des pseudonymes et motifs d’URL interdits." + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Liste noire" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Configuration de la liste noire" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "Ajouter ce motif de pseudonymes à la liste noire" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "Ajouter ce motif de pages d’accueil à la liste noire" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "Liste noire d’URL et de pseudonymes" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Pseudonymes" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "Motifs de surnoms à bloquer, un par ligne" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "Adresses URL" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "Motifs d’adresses URL à bloquer, un par ligne" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Sauvegarder" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Sauvegarder les paramètres du site" diff --git a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..1c95072ec0 --- /dev/null +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - Blacklist to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "" + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "" + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "" + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "" + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "" + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "" + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Lista negra" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Configuración da lista negra" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Alcumes" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "Enderezos URL" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Gardar" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Gardar a configuración do sitio" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..20e15071d0 --- /dev/null +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blacklist to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Tu non pote registrar te con le pagina personal '%s'." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Tu non pote registrar te con le pseudonymo '%s'." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Tu non pote usar le pagina personal '%s'." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Tu non pote usar le pseudonymo '%s'." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Tu non pote usar le URL \"%s\" in notas." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "" +"Tene un lista nigre de pseudonymos e patronos de adresse URL prohibite." + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Lista nigre" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Configuration del lista nigre" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "Adder iste patrono de pseudonymo al lista nigre" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "Adder iste patrono de pagina personal al lista nigre" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "URLs e pseudonymos in lista nigre" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Pseudonymos" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "Patronos de pseudonymos a blocar, un per linea" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "Adresses URL" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "Patronos de adresses URL a blocar, un per linea" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Salveguardar" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Salveguardar configurationes del sito" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..eedc24cd67 --- /dev/null +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - Blacklist to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Не можете да се регистрирате со домашната страница „%s“." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Не можете да се регистрирате со прекарот „%s“." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Не можете да ја користите домашната страница „%s“." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Не можете да го користите прекарот „%s“." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Не можете да ја користите URL-адресата „%s“ во забелешки." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "Води црн список на забранети видови на прекари и URL-адреси." + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Црн список" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Поставки на црниот список" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "Додај го овој вид прекар во црниот список" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "Додај го овој вид домашна страница во црниот список" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "URL-адреси и прекари на црниот список" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Прекари" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "Видови прекари за блокирање, по еден во секој ред" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URL-адреси" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "Видови URL-адреси за блокирање, по една во секој ред" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Зачувај" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Зачувај поставки на мреж. место" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..b2f40c960f --- /dev/null +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - Blacklist to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "U kunt niet registreren met \"%s\" als homepage." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "U kunt niet registreren met \"%s\" als gebruikersnaam." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "U mag \"%s\" niet als homepage instellen." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "U mag \"%s\" niet als gebruikersnaam gebruiken." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "U mag de URL \"%s\" niet gebruiken in mededelingen." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "Houdt een lijst bij van verboden gebruikersnamen en URL-patronen." + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Zwarte lijst" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Instellingen voor zwarte lijst" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "Dit gebruikersnaampatroon aan de zwarte lijst toevoegen" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "Dit homepagepatroon aan de zwarte lijst toevoegen" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "URL's en gebruikersnamen die op de zwarte lijst staan" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Gebruikersnamen" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "Patronen van te blokkeren gebruikersnamen. Eén per regel." + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URL's" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "Patronen van te blokkeren URL's. Eén per regel." + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Opslaan" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Websiteinstellingen opslaan" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..e594a009d1 --- /dev/null +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blacklist to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Ви не можете зареєструватися, вказавши «%s» як веб-адресу." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Ви не можете зареєструватися, використавши нікнейм «%s»." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Ви не можете використовувати веб-адресу «%s»." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Ви не можете використовувати нікнейм «%s»." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Ви не можете використовувати URL-адресу «%s» в своїх повідомленнях." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "Зберігає чорний список заборонених нікнеймів та URL-шаблонів." + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "Чорний список" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "Конфігурація чорного списку" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "Додати цей нікнейм до чорного списку" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "Додати цей шаблон веб-адреси до чорного списку" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "URL-адреси і нікнеми, що містяться в чорному списку" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Нікнейми" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "Шаблони нікнеймів, котрі будуть блокуватися (по одному на рядок)" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URL-адреси" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "Шаблони URL-адрес, котрі будуть блокуватися (по одному на рядок)" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Зберегти" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Зберегти налаштування сайту" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..1cedbfe500 --- /dev/null +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blacklist to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "你不能使用主页 '%s' 注册。" + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "你不能使用昵称 '%s' 注册。" + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "你不能使用主页 '%s'。" + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "你不能使用昵称 '%s'。" + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "你不能在提醒中使用URL '%s'。" + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "为被禁止的昵称和URL模板创建黑名单。" + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "黑名单" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "黑名单配置" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "向黑名单添加此昵称规则" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "向黑名单添加此主页规则" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "黑名单中的URL和昵称" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "昵称" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "禁止的昵称规则,每行一个" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URL" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "禁止的URL规则,每行一个" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "保存" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "保存网站设置" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..d0bc05c4ba --- /dev/null +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Plug-in pro essayar le lay-out de annuncios." diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..b7d294fc3d --- /dev/null +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Plug-in voor het testen van advertentielay-outs." diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..3cdbcdec58 --- /dev/null +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +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/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..1180fc1d06 --- /dev/null +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Plug-in om mededelingen te controleren tegen blogspam.net." diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..020f295ced --- /dev/null +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Registra lecturas y escrituras en el caché" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..17e0770614 --- /dev/null +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Lectures et écritures de journal en cache." diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..e3fb74b271 --- /dev/null +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Registrar le lectura e scriptura al cache." diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..da0e2c36de --- /dev/null +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Евидентирај читања на и записи во кешот." diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..b91fe28461 --- /dev/null +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Lezen en schrijven naar de cache in het logboek opnemen." diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..6f7833c8e5 --- /dev/null +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Waldir +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Regista leituras e escritas na cache." diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..be78b92230 --- /dev/null +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - CacheLog to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"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" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Журнал читает и пишет в кеш." diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..988c097d4c --- /dev/null +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Ang tala ay nagbabasa at nagsusulat sa taguan." diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..731edf4538 --- /dev/null +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - CacheLog to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"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" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Лоґ переглядів та записів у кеші." diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..89dee4f27a --- /dev/null +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - CacheLog to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 35::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "将读写日志到缓存。" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..ce0c8015fc --- /dev/null +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,77 @@ +# Translation of StatusNet - CasAuthentication to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "Service d’authentification central (SAC)" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Se connecter ou s’inscrire via le SAC." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(Vous avez un compte authentifié SAC ? Essayez notre [connexion SAC](%%" +"action.caslogin%%) !)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "La spécification d’un serveur est nécessaire." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "La spécification d’un port est nécessaire." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "La spécification d’un chemin d’accès est nécessaire." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"Le greffon d’authentification SAC permet à StatusNet de gérer " +"l’authentification par SAC (Service central d’authentification)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Déjà connecté." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Nom d’utilisateur ou mot de passe incorrect." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Erreur lors de la définition de l’utilisateur. Vous n’êtes probablement pas " +"autorisé." diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..2eecc24d01 --- /dev/null +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,77 @@ +# Translation of StatusNet - CasAuthentication to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Aperir session o crear conto via CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(Tu ha un conto de CAS? Essaya nostre [authentication CAS](%%action.caslogin%" +"%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Specificar un servitor es necessari." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Specificar un porto es necessari." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Specificar un cammino es necessari." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"Le plug-in de authentication CAS permitte que StatusNet manea le " +"authentication via CAS (Central Authentication Service, servicio central de " +"authentication)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Tu es jam authenticate." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Nomine de usator o contrasigno incorrecte." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Error de acceder al conto de usator. Tu probabilemente non es autorisate." diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..58235164a8 --- /dev/null +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - CasAuthentication to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Најава или регистрација со CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(Имате сметка на CAS? Пробајте ја нашата [најава со CAS](%%action.caslogin%" +"%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Мора да се назначи опслужувач." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Мора да се назначи порта." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Мора да се назначи патека." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"Приклучокот за потврда CAS му овозможува на StatusNet да работи со потврди " +"преку CAS (Central Authentication Service - „Служба за централно " +"потврдување“)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Веќе сте најавени." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Мора да се назначи корисничко име и лозинка." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "Грешка при поставувањето на корисникот. Веројатно не сте потврдени." diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..d1a72ef6e2 --- /dev/null +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - CasAuthentication to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Aanmelden of registreren via CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"Hebt u een gebruiker met CAS? [Meld u dan aan met CAS](%%action.caslogin%%)!" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Het aangeven van een server is vereist." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Het aangeven van een poort is vereist." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Het aangeven van een pad is vereist." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"De plugin CAS Authentication stelt StatusNet in staat authenticatie via CAS " +"after handelen (Central Authentication Service)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "U bent al aangemeld." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "De gebruikersnaam of wachtwoord is onjuist." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Er is een fout opgetreden bij het maken van de instellingen. U hebt " +"waarschijnlijk niet de juiste rechten." diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..d3a8604b19 --- /dev/null +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,73 @@ +# Translation of StatusNet - CasAuthentication to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Luckas Blade +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "" + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "É necessário especificar um servidor." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "É necessário especificar uma porta." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "" + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Já está autenticado." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Nome de usuário e/ou senha incorreto(s)." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Erro na configuração do usuário. Você provavelmente não tem autorização." diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..6ae4d1570e --- /dev/null +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,74 @@ +# Translation of StatusNet - CasAuthentication to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Увійти або зареєструватися з CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "Маєте акаунт CAS? Спробуйте наш [вхід CAS](%%action.caslogin%%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Необхідно зазначити сервер." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Необхідно зазначити порт." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Необхідно зазначити шлях." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"Додаток автентифікації CAS дозволяє входити на сайт StatusNet за допомогою " +"CAS (центрального сервісу автентифікації)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Тепер Ви увійшли." + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Неточне ім’я або пароль." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "Помилка налаштувань користувача. Можливо, Ви не авторизовані." diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..63820c98fc --- /dev/null +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,73 @@ +# Translation of StatusNet - CasAuthentication to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "中央鉴权服务" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "登录或注册到中央鉴权服务" + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +" (已有中央鉴权服务帐号?尝试使用 [中央鉴权登录](%%action.caslogin%%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "需要指定一个服务器" + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "需要指定一个端口" + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "需要指定一个路径" + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "中央鉴权插件可以使StatusNet使用中央鉴权服务进行登录鉴权。" + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "已登录。" + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "用户名或密码错误" + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "设置用户时出错。你可能没有通过鉴权。" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..b69826609f --- /dev/null +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - ClientSideShorten to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten fait en sorte que le formulaire d’avis de l’interface " +"raccourcisse automatiquement les URL lorsqu’elles sont saisies, avant que " +"l’avis ne soit soumis." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "L’argument « text » doit être spécifié." diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..bfaf2d8473 --- /dev/null +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - ClientSideShorten to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten causa que le formulario web pro entrar notas abbrevia " +"automaticamente le adresses URL a lor entrata, e ante le submission del nota." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Le parametro 'text' debe esser specificate." diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..ba5cb2c5a1 --- /dev/null +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"Со ClientSideShorten, образецот за забелешки во мрежниот посредник " +"автоматски ги скратува URL-адресите при самото нивно внесување, и пред да се " +"поднесе забелешката." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Мора да се назначи аргументот „text“." diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..e44714c347 --- /dev/null +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - ClientSideShorten to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten fører til at nettgrensesnittets notisskjema automatisk " +"forkorter URL-er mens de skrives inn, og før notisen sendes inn." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "'text'-argument må spesifiseres." diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..2ab860c203 --- /dev/null +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten zorgt dat URLs die worden ingegeven in het " +"mededelingenformulier automatisch worden ingekort tijdens het invoeren en " +"voordat de mededeling wordt opgeslagen." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Het argument 'text' moet aangegeven worden." diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..f681b4e153 --- /dev/null +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"Ang ClientSideShorten ay nakapagsasanhi sa pormularyo ng pabatid ng ugnayang-" +"mukha ng web na kusang paiksiin ang mga URL habang ipinapasok sila, at bago " +"ipasa ang pabatid." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "dapat tukuyin ang argumento ng 'teksto'." diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..8088a8f2a5 --- /dev/null +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - ClientSideShorten to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"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" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten зазначає, чи будуть автоматично скорочуватись URL-адреси " +"при використанні веб-інтерфейсу для надсилання допису на сайт до того, як " +"допис буде надіслано." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Аргумент «текст» має бути зазначено." diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..f4202abb13 --- /dev/null +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - ClientSideShorten to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 36::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"客户端短网址(ClientSideShorten )将在消息发布前自动在网页界面下缩短输入的网" +"址。" + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "需要定义'text' 变量。" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..740eb543b5 --- /dev/null +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..493457278f --- /dev/null +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-53 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Plug-in om \"real time\" updates te brengen via Comet/Bayeux." diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..aca6099adc --- /dev/null +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Muestra los mensajes de contenido derecha-a-izquierda en la dirección " +"correcta." diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..26faae1b3d --- /dev/null +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Affiche dans les bon sens les avis contenant du texte écrit de droite à " +"gauche." diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..8863bc1d57 --- /dev/null +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Monstra notas con scripto de dextra a sinistra in le direction correcte." diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..426b5c762b --- /dev/null +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DirectionDetector to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "正しい方向で右から左へ表示される内容の通知を表示する。" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..7f0b9d4582 --- /dev/null +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to Luxembourgish (Lëtzebuergesch) +# Expored from translatewiki.net +# +# Author: Robby +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Luxembourgish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: lb\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Weist Matdeelungen mat Inhalt dee vu riets not lenks geschriwwen ass an där " +"richteger Richtung." diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..8c813dfd8b --- /dev/null +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Ги прикажува забелешките напишани на писма од десно на лево во исправната " +"насока." diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..5d0a6f859e --- /dev/null +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DirectionDetector to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "Viser notiser med høyre-til-venstre-innhold i riktig retning." diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index e8dae6ea85..9baf2a61e9 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -1,22 +1,30 @@ -# Translation of StatusNet plugin DirectionDetector to Dutch +# Translation of StatusNet - DirectionDetector to Dutch (Nederlands) +# Expored from translatewiki.net # -# Author@translatewiki.net: Siebrand +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-08 22:32+0000\n" -"PO-Revision-Date: 2010-05-08 23:32+0100\n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" "Last-Translator: Siebrand Mazeland \n" -"Language-Team: Dutch\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: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" -#: DirectionDetectorPlugin.php:222 -msgid "Geeft mededelingen met rechts-naar-linksinhoud weer in de juiste richting." +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." msgstr "" +"Geeft mededelingen met inhoud in een van rechts naar links geschreven " +"schrift in de juiste richting weer." diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..58f1acbb15 --- /dev/null +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"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" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "Правильно показывает уведомления для системы письма справа налево." diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..9630f35b12 --- /dev/null +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DirectionDetector to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "" +"Nagpapakita ng mga pabatid na may nilalamang mula-kanan-pakaliwa sa tamang " +"daan." diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..5a97121aa5 --- /dev/null +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"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" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "Показує повідомлення із письмом справа наліво у правильному напрямі." diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..a6fe2cc06c --- /dev/null +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 37::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: DirectionDetectorPlugin.php:259 +msgid "Shows notices with right-to-left content in correct direction." +msgstr "在内容方向为从右到左时,以相同的文字方向显示提醒。" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..9bca2677df --- /dev/null +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DiskCache to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 06::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Plug-in pro implementar un interfacie de cache con files sur disco." diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..e6d235c27a --- /dev/null +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DiskCache to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 06::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Plugin voor een cacheinterface met bestanden op schijf." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..8a908513a9 --- /dev/null +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Disqus to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DisqusPlugin.php:135 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Per favor activa JavaScript pro vider le [commentos actionate per Disqus]" +"(http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:142 +msgid "Comments powered by " +msgstr "Commentos actionate per " + +#: DisqusPlugin.php:250 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Usar Disqus pro adder le possibilitate de " +"commentar a paginas de notas." diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..f64b7b93a2 --- /dev/null +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Utilisez Echo pour ajouter des " +"commentaires aux pages d’avis." diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..f87ea0178d --- /dev/null +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Usar Echo pro adder le possibilitate " +"de commentar a paginas de notas." diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..20eed9b832 --- /dev/null +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Користи Echo за додавање на коментари " +"во страници со забелешки." diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..d73d1f08ee --- /dev/null +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Bruk Echo til å legge kommentering til " +"notissider." diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..f3c0eac138 --- /dev/null +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Echo gebruiken om opmerkingen toe te " +"voegen aan mededelingenpagina's." diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..009b115bcb --- /dev/null +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Echo to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"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" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Использование Echo для добавления " +"комментариев на страницы уведомления." diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..dcf706c6c9 --- /dev/null +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Gamitin ang Echo upang magdagdag ng " +"pagpuna sa mga pahina ng pabatid." diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..61ec08a67d --- /dev/null +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Echo to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"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" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Використання Echo для коментування " +"дописів." diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..5b6b39b4f5 --- /dev/null +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Echo to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 40::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "使用Echo在消息页中添加评论。" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..ab07093799 --- /dev/null +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"L’extension d’identification électronique permet à l’utilisateur de " +"s’identifier en utilisant son adresse électronique." diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..de9fe900c2 --- /dev/null +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Le plug-in Authentication E-mail permitte que usatores aperi session usante " +"lor adresse de e-mail." diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..d224d5c845 --- /dev/null +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"電子メール認証プラグインは、ユーザーに、電子メールアドレスでログインすること" +"を許可します。" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..4f0b4b5b66 --- /dev/null +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Приклучокот Email Authentication им овозможува на корисниците да се " +"најавуваат со е-поштенска адреса." diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..d53d879f31 --- /dev/null +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Utvidelsen Email Authentication gjør det mulig for brukere å logge inn med " +"sin e-postadresse." diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..a96a9a3177 --- /dev/null +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"De plug-in E-mailauthenticatie maakt het voor gebruikers mogelijk om aan te " +"melden met hun e-mailadres." diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..66db11f31f --- /dev/null +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Waldir +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"O plugin de autenticação por email permite aos utilizadores autenticar-se " +"usando o seu endereço de email." diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..93e5c83931 --- /dev/null +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - EmailAuthentication to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"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" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Модуль аутентификации по электронной почте позволяет пользователям войти в " +"систему используя адрес электронной почты." diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..797ffe6d8b --- /dev/null +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Ang pamasak na Pagpapatunay ng E-liham ay nagpapahintulot sa mga tagagamit " +"na makalagdang ginagamit ang kanilang tirahan ng e-liham." diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..cbf3345d46 --- /dev/null +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - EmailAuthentication to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"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" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Додаток автентифікації через адресу ел. пошти дозволяє користувачам входити " +"на сайт використовуючи адресу ел. пошти." diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..f7b017f445 --- /dev/null +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - EmailAuthentication to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:41: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: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "Email验证插件允许用户使用Email地址登录。" diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..b2d24ec18f --- /dev/null +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -0,0 +1,576 @@ +# Translation of StatusNet - Facebook to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Salut, %1$s. Nous sommes désolés de vous informer que nous ne sommes pas en " +"mesure de mettre à jour votre statut Facebook depuis %2$s et que nous avons " +"désactivé l’application Facebook sur votre compte. C’est peut-être parce que " +"vous avez retiré l’autorisation de l’application Facebook, ou avez supprimé " +"votre compte Facebook. Vous pouvez réactiver l’application Facebook et la " +"mise à jour d’état automatique en réinstallant l’application %2$s pour " +"Facebook.\n" +"\n" +"Cordialement,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "Vous devez être identifié sur Facebook pour utiliser Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Il existe déjà un utilisateur local lié à ce compte Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Une erreur inconnue s’est produite." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"C’est la première fois que vous êtes connecté à %s via Facebook, il nous " +"faut donc lier votre compte Facebook à un compte local. Vous pouvez soit " +"créer un nouveau compte, soit vous connecter avec votre compte local " +"existant si vous en avez un." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Configuration du compte Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Options de connexion" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mon texte et mes fichiers sont disponibles sous licence %s, à l’exception " +"des données privées suivantes : mot de passe, adresse courriel, adresse de " +"messagerie instantanée et numéro de téléphone." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Créer un nouveau compte" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Créer un nouvel utilisateur avec ce pseudonyme." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nouveau pseudonyme" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Créer" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Se connecter à un compte existant" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Si vous avez déjà un compte ici, connectez-vous avec votre nom d’utilisateur " +"et mot de passe pour l’associer à votre compte Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Pseudonyme existant" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Mot de passe" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Connexion" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Inscription non autorisée." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Le code d’invitation n’est pas valide." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Les pseudonymes ne peuvent contenir que des lettres minuscules et des " +"chiffres, sans espaces." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Pseudonyme non autorisé." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Erreur de connexion de l’utilisateur à Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Nom d’utilisateur ou mot de passe incorrect." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Connexion" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Envoyer un avis" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Quoi de neuf, %s ?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caractères restants" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Envoyer" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Erreur de serveur : impossible d’obtenir l’utilisateur !" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Nom d’utilisateur ou mot de passe incorrect." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s et ses amis" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Si vous souhaitez que l’application %s mette à jour automatiquement votre " +"statut Facebook avec votre dernier avis, vous devez lui en donner " +"l’autorisation." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Ok, le faire !" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Sauter cette étape" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Pagination" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Après" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Avant" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Merci d’inviter vos amis à utiliser %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Des invitations ont été envoyées aux utilisateurs suivants :" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Vous avez été invité à %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Invitez vos amis à utiliser %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Amis utilisant déjà %s :" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuration de l’intégration Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Utilisateur de Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Se connecter ou s’inscrire via Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Paramètres pour Facebook Connect" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Le greffon Facebook permet d’intégrer des instances StatusNet avec Facebook et Facebook Connect." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Déjà connecté." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Connectez-vous avec votre compte Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Connexion Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Impossible de supprimer l’utilisateur Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Accueil" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Page d’accueil" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Inviter" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Inviter" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Paramètres" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Préférences de l’utilisateur" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"Pour utiliser l’application %s pour Facebook, vous devez vous identifier " +"avec votre nom d’utilisateur et mot de passe. Vous n’avez pas encore un nom " +"d’utilisateur ?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "un nouveau compte." + +#: facebookaction.php:242 +msgid "Register" +msgstr "S’inscrire" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Pseudonyme" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Connexion" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Mot de passe perdu ou oublié ?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Aucun contenu dans l’avis !" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "C’est trop long ! La taille maximale de l’avis est de %d caractères." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Avis publiés" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Paramètres d’intégration Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" +"Clé invalide pour l’API Facebook. La longueur maximum est de 255 caractères." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" +"Code secret invalide pour l’API Facebook. La longueur maximum est de 255 " +"caractères." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Paramètres de l’application Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "Clé API" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "Clé API fournie par Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Code secret" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "Code secret pour l’API fourni par Facebook" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Sauvegarder" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Sauvegarder les paramètres Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Gérez la façon dont votre compte se connecte à Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Il n’y a pas d’utilisateur Facebook connecté à ce compte." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Utilisateur Facebook connecté" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Déconnecter mon compte de Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"La déconnexion de votre compte Facebook ne vous permettrait plus de vous " +"connecter ! S’il vous plaît " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "définissez un mot de passe" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " tout d’abord." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Déconnecter" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Impossible de supprimer le lien vers Facebook." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "Vous avez été déconnecté de Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Pas certain de ce que vous essayez de faire." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" +"Il y a eu un problème lors de la sauvegarde de vos préférences de " +"synchronisation !" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Préférences de synchronisation enregistrées." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "Mettre à jour automatiquement mon statut Facebook avec mes avis." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Envoyez des réponses « @ » à Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Sauvegarder" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Si vous souhaitez que l’application %s mette à jour automatiquement votre " +"statut Facebook avec votre dernier avis, vous devez lui en donner " +"l’autorisation." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Autoriser %s à mettre à jour mon statut Facebook" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Préférences de synchronisation" diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..068e0e6409 --- /dev/null +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -0,0 +1,565 @@ +# Translation of StatusNet - Facebook to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Salute, %1$s. Nos regretta informar te que nos es incapace de actualisar tu " +"stato de Facebook ab %2$s, e que nos ha disactivate le application Facebook " +"pro tu conto. Isto pote esser proque tu ha removite le autorisation del " +"application Facebook, o ha delite tu conto de Facebook. Tu pote reactivar le " +"application Facebook e le actualisation automatic de tu stato per " +"reinstallar le application Facebook %2$s.\n" +"\n" +"Attentemente,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "Tu debe aperir un session a Facebook pro usar Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Il ha jam un usator local ligate a iste conto de Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +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." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Tu non pote crear un conto si tu non accepta le licentia." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Un error incognite ha occurrite." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"Isto es le prime vice que tu ha aperite un session in %s, dunque nos debe " +"connecter tu Facebook a un conto local. Tu pote crear un nove conto, o " +"connecter con tu conto existente si tu ha un." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Configuration de conto Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Optiones de connexion" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mi texto e files es disponibile sub %s excepte iste datos private: " +"contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de " +"telephono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Crear nove conto" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Crear un nove usator con iste pseudonymo." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nove pseudonymo" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 minusculas o numeros, sin punctuation o spatios" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Connecter conto existente" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Si tu ha jam un conto, aperi session con tu nomine de usator e contrasigno " +"pro connecter lo a tu Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Pseudonymo existente" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Contrasigno" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Connecter" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Creation de conto non permittite." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Le codice de invitation es invalide." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Pseudonymo non permittite." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonymo ja in uso. Proba un altere." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Error durante le connexion del usator a Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Nomine de usator o contrasigno invalide." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Aperir session" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Inviar un nota" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Como sta, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Characteres disponibile" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Inviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Error de servitor: Non poteva obtener le usator!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Nomine de usator o contrasigno incorrecte." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s e amicos" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Si tu vole que le application %s actualisa automaticamente tu stato de " +"Facebook con tu ultim enota, tu debe dar permission a illo." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "OK, face lo!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Saltar" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Pagination" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Post" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Ante" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Gratias pro invitar tu amicos a usar %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Invitationes ha essite inviate al sequente usatores:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Tu ha essite invitate a %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Invita tu amicos a usar %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Amicos que jam usa %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Inviar invitationes" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuration del integration de Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Usator de Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Aperir session o crear conto usante Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Configurationes de connexion a Facebook" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Le plug-in de Facebook permitte integrar installationes de StatusNet con Facebook e Facebook Connect." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Tu es jam authenticate." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Aperir session con tu conto de Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Authentication con Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Non poteva remover le usator de Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Initio" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Initio" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Configurationes" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Configurationes" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"Pro usar le application Facebook %s tu debe aperir un session con tu nomine " +"de usator e contrasigno. Tu non ha ancora un nomine de usator?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " un nove conto." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Crear conto" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Pseudonymo" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Aperir session" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Contrasigno perdite o oblidate?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Le nota non ha contento!" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Isto es troppo longe. Le longitude maximal del notas es %d characteres." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Notas" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Configurationes de integration de Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "Clave API de Facebook invalide. Longitude maximal es 255 characteres." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" +"Secreto API de Facebook invalide. Longitude maximal es 255 characteres." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Configurationes del application de Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "Clave API" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "Clave API providite per Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Secreto" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "Secreto API providite per Facebook" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Salveguardar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Salveguardar configuration Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Configura como tu conto se connecte a Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Il non ha un usator de Facebook connectite a iste conto." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Usator de Facebook connectite" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Disconnecter mi conto ab Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"Le disconnexion de tu Facebook renderea le authentication impossibile! Per " +"favor " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "defini un contrasigno" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " primo." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Disconnecter" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Non poteva deler le ligamine a Facebook." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "Tu te ha disconnectite de Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Non es clar lo que tu tenta facer." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" +"Occurreva un problema durante le salveguarda de tu preferentias de " +"synchronisation!" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Preferentias de synchronisation salveguardate." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "Actualisar automaticamente mi stato de Facebook con mi notas." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Inviar responsas \"@\" a Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Si tu vole que %s actualisa automaticamente tu stato de Facebook con tu " +"ultime nota, tu debe dar permission a illo." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Permitter a %s de actualisar mi stato de Facebook" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Preferentias de synchronisation" diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..1832f5bdbf --- /dev/null +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -0,0 +1,562 @@ +# Translation of StatusNet - Facebook to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Здраво, %1$s. Нажалост, не можеме да го смениме Вашиот статус на Facebook од " +"%2$s, и го имаме оневозможено програмчето за Facebook на Вашата сметка. Ова " +"можеби се должи на тоа што сте го отстраниле овластувањето на програмчето за " +"Facebook, или пак сте ја избришале самата сметка на Facebook. Можете " +"повторно да го овозможите програмчето за Facebook и автоматското менување на " +"статус со преинсталирање на програмчето %2$s - Facebook.\n" +"\n" +"Поздрав,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" +"Мора да сте најавени на Facebook за да можете да користите Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Веќе постои локален корисник поврзан со оваа сметка на Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се повторно." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Се појави непозната грешка." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"Ова е прв пат како се најавувате на %s, па затоа мораме да го поврземе " +"Вашиот профил на Facebook со локална сметка. Можете да создадете нова " +"сметка, или пак да се поврзете со Вашата постоечка сметка (ако ја имате)." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Поставки за сметка на Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Нагодувања за врска" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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 освен следниве приватни " +"податоци: лозинка, е-пошта, IM-адреса, и телефонскиот број." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Создај нова сметка" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Создај нов корисник со овој прекар." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Нов прекар" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Создај" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Поврзи постоечка сметка" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Ако веќе имате сметка, најавете се со корисничкото име и лозинката за да ја " +"поврзете со профилот на Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Постоечки прекар" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Лозинка" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Поврзи се" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Регистрацијата не е дозволена." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Ова не е важечки код за покана." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Прекарот мора да се состои само од мали букви и бројки, без празни места." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Прекарот не е дозволен." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Прекарот е зафатен. Одберете друг." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Грешка при поврзувањето на корисникот со Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Неважечко корисничко име или лозинка." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Најава" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Испрати забелешка" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Како е, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Расположиви знаци" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Прати" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Грешка во опслужувачот: Не можев да го добијам корисникот!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Погрешно корисничко име или лозинка." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s и пријателите" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Доколку сакате %s автоматски да Ви го менува Вашиот статус на Facebook " +"(прикажувајќи ја најновата забелешка), ќе морате да дадете дозвола." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Во ред, ајде!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Прескокни" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Прелом на страници" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Потоа" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Претходно" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Ви благодариме што ги поканивте пријателите да користат %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Испратени се покани до следениве корисници:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Поканети сте на %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Поканете ги пријателите да користат %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Пријатели што веќе користат %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Испрати покани" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Поставки за обединување со Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Поврзување на корисник со Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Најава или регистрација со Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Нагодувања за поврзување со Facebook" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Приклучокот за Facebook овозможува соединување на примероци на StatusNet со " +"Facebook и Facebook Connect." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Веќе сте најавени." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Најавете се со Вашата сметка на Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Најава со Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Не можев да го отстранам корисниот на Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Почетна" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Почетна" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Покани" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Покани" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Нагодувања" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Нагодувања" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"За да го користите програмчето %s - Facebook ќе мора да сте најавени со " +"Вашето корисничко име и лозинка. Сè уште немате корисничко име?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " нова сметка." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Регистрација" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Прекар" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Најава" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Ја загубивте/заборавивте лозинката?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Нема содржина за забелешката!" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Ова е предолго. Забелешката може да содржи највеќе %d знаци." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Забелешки" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Поставки за обедунување со Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "Неважечки API-клуч за Facebook. Дозволени се највеќе 255 знаци." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "Неважечки API-тајна за Facebook. Дозволени се највеќе 255 знаци." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Нагодувања за прог. Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "API-клуч" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "API-клучот е обезбеден од Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Тајна" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "API-тајната е обезбедена од Facebook" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Зачувај" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Зачувај нагодувања за Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Раководење со начинот на поврзување на Вашата сметка со Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Нема корисник на Facebook поврзан со оваа сметка." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Поврзан корисник на Facebook" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Исклучи ја мојата сметка од Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"Ако ја исклучите врската со Facebook нема да можете да се најавите! Затоа, " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "поставете лозинка" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " пред да продолжите." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Прекини" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Не можев да ја избришам врската до Facebook." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "Сега е исклучена врската со Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Не ми е јасно што сакате да направите." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" +"Се појави проблем при зачувувањето на Вашите поставки за услогласување!" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Поставките за усогласување се зачувани." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "Автоматски заменувај ми го статусот на Facebook со моите забелешки." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Испрати „@“ одговори на Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Ако сакате %s автоматски да го заменува Вашиот статус на Facebook со Вашата " +"најновата забелешка, ќе треба да дадете дозвола." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Дозволи %s да го менува мојот статус на Facebook" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Услогласи нагодувања" diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..2cb4c1ea6f --- /dev/null +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -0,0 +1,533 @@ +# Translation of StatusNet - Facebook to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "" + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Opprett ny konto" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Opprett en ny bruker med dette kallenavnet." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nytt kallenavn" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Opprett" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Eksisterende kallenavn" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Passord" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Koble til" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Registrering ikke tillatt." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Ikke en gyldig invitasjonskode." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Kallenavn er ikke tillatt." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Kallenavnet er allerede i bruk. Prøv et annet." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Ugyldig brukernavn eller passord." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Hva skjer %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Tilgjengelige tegn" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Send" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Tjenerfeil: Kunne ikke hente bruker!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Feil brukernavn eller passord." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s og venner" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Hopp over" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Etter" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Før" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "" + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Send invitasjoner" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Allerede innlogget." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Hjem" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Hjem" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Inviter" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Inviter" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Innstillinger" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Innstillinger" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " en ny konto." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Registrer" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Kallenavn" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Logg inn" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Mistet eller glemt passordet?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Lagre" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "angi et passord" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " først." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Send «@»-svar til Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Lagre" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Tillat %s å oppdatere min Facebook-status" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..b925791c13 --- /dev/null +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -0,0 +1,571 @@ +# Translation of StatusNet - Facebook to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Hallo %1$s.\n" +"\n" +"Het spijt ons je te moeten meedelen dat het niet mogelijk is uw " +"Facebookstatus bij te werken vanuit %2$s. De Facebookapplicatie is " +"uitgeschakeld voor uw gebruiker. Dit kan komen doordat u de toegangsrechten " +"voor de Facebookapplicatie hebt ingetrokken of omdat u uw Facebookgebruiker " +"hebt verwijderd. U kunt deze Facebookapplicatie opnieuw inschakelen en " +"automatisch uw status laten bijwerken door de Facebookapplicatie van %2$s " +"opnieuw te installeren.\n" +"\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "U moet zijn aangemeld bij Facebook om Facebook Connect te gebruiken." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +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." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Er is een onbekende fout opgetreden." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"De is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " +"Facebookgebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe " +"gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Facebookgebruiker instellen" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Verbindingsinstellingen" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Nieuwe gebruiker aanmaken" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nieuwe gebruikersnaam" + +#: FBConnectAuth.php:193 +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. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Aanmaken" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Verbinden met een bestaande gebruiker" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " +"wachtwoord om deze daarna te koppelen met uw Facebookgebruiker." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Bestaande gebruikersnaam" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Wachtwoord" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Koppelen" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Registratie is niet toegestaan." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "De uitnodigingscode is ongeldig." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties " +"zijn niet toegestaan." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Gebruikersnaam niet toegestaan." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "" +"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Fout bij het verbinden van de gebruiker met Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Ongeldige gebruikersnaam of wachtwoord." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Aanmelden" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Mededeling verzenden" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Hallo, %s." + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Beschikbare tekens" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Verzenden" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Serverfout: de gebruiker kon niet geladen worden." + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "De gebruikersnaam of wachtwoord is onjuist." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s en vrienden" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Als u wilt dat het programma %s automatisch uw Facebookstatus bijwerkt met " +"uw laatste bericht, dan moet u daarvoor toestemming geven." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Toestemming geven" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Overslaan" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paginering" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Later" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Eerder" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Dank u wel voor het uitnodigen van uw vrienden om %s te gebruiken." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Er is een uitnodiging verstuurd naar de volgende gebruikers:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "U bent uitgenodigd bij %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Vrienden uitnodigen om %s te gebruiken" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Vrienden die %s al gebruiken:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Instellingen voor Facebookintegratie" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Facebook Connectgebruiker" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Aanmelden of registreren via Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Instellingen voor Facebook Connect" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Via de de Facebookplug-in is het mogelijk StatusNet-installaties te koppelen " +"met Facebook en Facebook Connect." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "U bent al aangemeld." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Aanmelden met uw Facebookgebruiker" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Aanmelden via Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Het was niet mogelijk de Facebookgebruiker te verwijderen." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Hoofdmenu" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Hoofdmenu" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Uitnodigen" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Uitnodigen" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Instellingen" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Instellingen" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"Om het Facebookprograma %s te gebruiken moet u aanmelden met uw " +"gebruikersnaam en wachtwoord. Hebt u nog geen gebruiker?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " een nieuwe gebruiker." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Registreer" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Gebruikersnaam" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Aanmelden" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Wachtwoord kwijt of vergeten?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Geen berichtinhoud!" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "De mededeling is te lang. Gebruik maximaal %d tekens." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Mededelingen" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Instellingen voor Facebookkoppeling" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "Ongeldige Facebook API-sleutel. De maximale lengte is 255 tekens." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "Ongeldig Facebook API-geheim. De maximale lengte is 255 tekens." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Applicatieinstellingen voor Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "API-sleutel" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "API-sleutel die door Facebook is uitgeven" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Geheim" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "API-geheim dat door Facebook is uitgeven" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Opslaan" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Facebookinstellingen opslaan" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Beheren hoe uw gebruiker is gekoppeld met Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Er is geen Facebookgebruiker gekoppeld met deze gebruiker." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Gekoppelde Facebookgebruiker" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Mijn gebruiker loskoppelen van Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"Loskoppelen van uw Facebookgebruiker zou ervoor zorgen dat u niet langer " +"kunt aanmelden. U moet eerst " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "een wachtwoord instellen" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " voordat u verder kunt met deze handeling." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Loskoppelen" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "U bent losgekoppeld van Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Het is niet duidelijk wat u wilt bereiken." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" +"Er is een fout opgetreden tijdens het opslaan van uw " +"synchronisatievoorkeuren!" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Uw synchronisatievoorkeuren zijn opgeslagen." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "Mijn Facebookstatus automatisch bijwerken met mijn mededelingen." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Antwoorden met \"@\" naar Facebook verzenden." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Als u wilt dat %s automatisch uw Facebookstatus bijwerkt met uw laatste " +"mededeling, dat moet u daar toestemming voor geven." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "%s toestaan mijn Facebookstatus bij te werken" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Synchronisatievooreuren" diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..fa61eaf377 --- /dev/null +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -0,0 +1,536 @@ +# Translation of StatusNet - Facebook to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Luckas Blade +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Você não pode se registrar se não aceitar a licença." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Ocorreu um erro desconhecido." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Opções de conexão" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Criar nova conta" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Criar um novo usuário com este apelido." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Novo apelido" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Criar" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Senha" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Não é permitido o registro." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "O código de convite é inválido." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"O apelido deve conter apenas letras minúsculas e números e não pode ter " +"espaços." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Apelido não permitido." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Este apelido já está em uso. Tente outro." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Erro ao conectar o usuário ao Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "" + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Entrar" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caracteres disponíveis" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Nome de usuário e/ou senha incorreto(s)." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s e amigos" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Avançar" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paginação" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Depois" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Antes" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Obrigado por convidar seus amigos a usar %s" + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Você foi convidado para %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Convidar seus amigos a usar %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Amigos já usando %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Enviar convites" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Entrar ou se registrar usando o Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Já está autenticado." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Convidar" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Convidar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Configurações" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Configurações" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "" + +#: facebookaction.php:242 +msgid "Register" +msgstr "Registrar-se" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Apelido" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Entrar" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Perdeu ou esqueceu sua senha?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Salvar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Salvar configurações do Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Desconectar minha conta do Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Desconectar" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Salvar" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..5c9d28822b --- /dev/null +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -0,0 +1,578 @@ +# Translation of StatusNet - Facebook to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Kumusta, %1$s. May pagpapaumanhin naming ipinababatid sa iyo na hindi namin " +"naisapanahon ang iyong katayuan ng Facebook mula %2$s, at hindi namin " +"pinagana ang aplikasyon ng Facebook para sa iyong akawnt. Maaaring dahil " +"ito sa inalis mo ang pahintulot sa aplikasyon ng Facebook, o pagbura ng " +"iyong akawnt sa Facebook. Maaari mong muling buhayin ang aplikasyon ng " +"Facebook at kusang pagsasapanahon ng kalagayan sa pamamagitan ng muling " +"pagtatalaga ng aplikasyon ng Facebook na %2$s.\n" +"\n" +"Nagpapahalaga,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "Dapat na nakalagda ka sa Facebook upang magamit ang Ugnay sa Facebook." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" +"Mayroon nang isang katutubong tagagamit na nakakawing sa ganitong akawnt ng " +"Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "May isang suliranin sa iyong token ng sesyon. Paki subukan uli." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Hindi ka makapagpapatala kung hindi ka sumasang-ayon sa lisensiya." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Isang hindi nalalamang kamalian ang naganap." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"Ito ang iyong unang pagkakataong lumagda sa %s kaya't kailangan naming " +"iugnay ang iyong Facebook sa isang katutubong akawnt. Maaari kang lumikha " +"ng isang bagong akawnt, o umugnay sa pamamagitan ng iyong umiiral na akawnt, " +"kung mayroon ka." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Pagtatakda ng Akawnt ng Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Mga pagpipilian na pang-ugnay" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Ang aking teksto at mga talaksan ay makukuha sa ilalim ng %s maliban sa " +"pribadong dato na ito: hudyat, tirahan ng e-liham, tirahan ng IM, at bilang " +"na pangtelepono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Lumikha ng bagong akawnt" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Bagong palayaw" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1 hanggang 64 na maliliit na mga titik o mga bilang, walang bantas o mga " +"patlang" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Likhain" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Umugnay sa umiiral na akawnt" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Kung mayroon ka nang akawnt, lumagda sa pamamagitan ng iyong pangalan ng " +"tagagamit at hudyat upang iugnay ito sa iyong Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Umiiral na palayaw" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Hudyat" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Umugnay" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Hindi pinapahintulutan ang pagpapatala." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Hindi isang tanggap na kodigo ng paanyaya." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ang palayaw ay dapat na may mga maliliit na mga titik lamang at mga bilang " +"at walang mga patlang." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Hindi pinapahintulutan ang palayaw." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Ginagamit na ang palayaw. Subukan ang iba." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "May kamalian sa pag-ugnay ng tagagamit sa Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Lumagda" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Magpadala ng pabatid" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Anong balita, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Makukuhang mga panitik" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Ipadala" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Kamalian ng tapaghain: Hindi makuha ang tagagamit!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Hindi tamang pangalan ng tagagamit o hudyat." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s at mga kaibigan" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Kung nais mong kusang isapanahon ng aplikasyong %s ang iyong katayuan ng " +"Facebook na may pinakabagong pabatid, kailangan mong bigyan ito ng " +"pahintulot." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Sige, gawin iyan!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Lagtawan" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Pagbilang ng pahina" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Pagkalipas ng" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Bago ang" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Salamat sa pag-anyaya sa iyong mga kaibigan na gamitin ang %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Ipinadala na ang mga paanyaya sa sumusunod ng mga tagagamit:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Inaanyayahan ka sa %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Anyayahan ang iyong mga kaibigan na gamitin ang %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Mga kaibigang gumagamit na ng %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Ipadala ang mga paanyaya" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Pagkakaayos ng integrasyon ng Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Tagagamit ng Ugnay sa Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Lumagda o magpatalang ginagamit ang Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Mga Pagtatakda sa Ugnay sa Facebook" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Ang pamasak na Facebook ay nagpapahintulot ng integrasyon ng mga pagkakataon " +"sa StatusNet sa pamamagitan ng Facebook " +"at Ugnay sa Facebook." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Nakalagda na." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Lumagda sa pamamagitan ng iyong Akawnt sa Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Paglagda sa Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Hindi matanggal ang tagagamit ng Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Tahanan" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Tahanan" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Anyayahan" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Anyayahan" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Mga pagtatakda" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Mga pagtatakda" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"Upang magamit ang Aplikasyon ng Facebook na %s kailangan mong lumagda sa " +"pamamagitan ng iyong pangalan ng tagagamit at hudyat. Wala ka pa bang " +"bansag?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "isang bagong akawnt." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Magpatala" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Palayaw" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Lumagda" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Hudyat na nawala o nakalimutan?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Walang laman ang pabatid!" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Napakahaba niyan. Ang pinakamataas na sukat ng pabatid ay %d mga panitik." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Mga pabatid" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Mga pagtatakda sa integrasyon ng Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" +"Hindi tanggap na susi sa API ng Facebook. Ang pinakamataas na haba ay 255 " +"mga panitik." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" +"Hindi tanggap na lihim sa API ng Facebook. Ang pinakamataas na haba ay 255 " +"mga panitik." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Mga pagtatakda sa aplikasyon ng Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "Susi ng API" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "Ang susi ng API ay ibinigay ng Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Lihim" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "Ang lihim ng API ay ibinigay ng Facebook" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Sagipin" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Sagipin ang mga katakdaan ng Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Pamahalaan kung paano umuugnay ang iyong akawnt sa Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Walang tagagamit ng Facebook na nakaugnay sa akawnt na ito." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Nakaugnay na tagagamit ng Facebook" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Huwag iugnay ang aking akawnt mula sa Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"Ang pagtatanggal ng ugnay sa Facebook ay magsasanhi ng hindi mangyayaring " +"paglagda! Paki " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "magtakda ng isang hudyat" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "muna." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Huwag umugnay" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Hindi maalis ang pagkabit sa Facebook." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "Hindi ka na nakaugnay sa Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Hindi sigurado kung ano ang sinusubok mong gawin." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "May isang suliranin sa pagsagip ng iyong mga nais sa pagsabay!" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Nasagip ang mga nais sa pagsabay." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" +"Kusang isapanahon ang aking katayuan ng Facebook na may mga pabatid ko." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Ipadala ang mga tugong \"@\" sa Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Sagipin" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Kung nais mong kusang isapanahon ng %s ang iyong katayuan ng Facebook na may " +"pinakabagong mga pabatid mo, kailangan mo itong bigyan ng pahintulot." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Pahintulutan si %s na isapanahon ang aking katayuan ng Facebook" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Mga nais sa pagsabay" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..56e678f1aa --- /dev/null +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -0,0 +1,568 @@ +# Translation of StatusNet - Facebook to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"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" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але ми не в змозі " +"оновлювати Ваш статус у Facebook з %2$s і відключаємо додаток Facebook для " +"Вашого акаунту. Таке могло статися тому, що Ви, можливо, скасували " +"авторизацію для додатку Facebook або видалили Ваш акаунт Facebook. Ви маєте " +"можливість перезапустити додаток для Facebook і автоматичний імпорт Ваших " +"статусів на %2$s до Facebook буде поновлено.\n" +"\n" +"З повагою,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "Ви повинні увійти до Facebook або використати Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" +"На даному сайті вже є користувач, котрий підключив цей акаунт Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Виникла якась незрозуміла помилка." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Facebook " +"до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " +"використати такий, що вже існує." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Налаштування акаунту Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Опції з’єднання" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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, окрім цих приватних даних: пароль, " +"електронна адреса, адреса IM, телефонний номер." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Створити новий акаунт" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Створити нового користувача з цим нікнеймом." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Новий нікнейм" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Створити" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Приєднати акаунт, який вже існує" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"приєднати їх до Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Нікнейм, який вже існує" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Пароль" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Під’єднати" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Реєстрацію не дозволено." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "Це не дійсний код запрошення." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " +"інтервалів." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Нікнейм не допускається." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Цей нікнейм вже використовується. Спробуйте інший." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Помилка при підключенні до Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Невірне ім’я або пароль." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Увійти" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Надіслати допис" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Що нового, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Лишилось знаків" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Так!" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Помилка сервера: не вдалося отримати користувача!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Неточне ім’я або пароль." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s з друзями" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " +"останнім повідомленням, Ви повинні надати дозвіл." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Так, зробіть це!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Проскочити" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Нумерація сторінок" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Вперед" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Назад" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Дякуємо, що запросили своїх друзів на %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Запрошення було надіслано таким користувачам:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Вас було запрошено до %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Запросіть своїх друзів до %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Деякі друзі вже користуються %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Розсилка запрошень" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Налаштування інтеграції з Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Увійти або зареєструватись з Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Налаштування Facebook Connect" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" +"Додаток Facebook дозволяє інтегрувати StatusNet-сумісні сервіси з Facebook та Facebook Connect." + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Тепер Ви увійшли." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Увійти з акаунтом Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Вхід Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Не вдалося видалити користувача Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Дім" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Дім" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Запросити" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Запросити" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Налаштування" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Налаштування" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" +"Щоб використовувати додаток %s для Facebook, Ви мусите увійти, " +"використовуючи своє ім’я користувача та пароль. Ще не маєте імені " +"користувача?" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " новий акаунт." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Зареєструвати" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Нікнейм" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Увійти" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Загубили або забули пароль?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Повідомлення порожнє!" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Надто довго. Максимальний розмір допису — %d знаків." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Дописи" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Налаштування інтеграції з Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" +"Помилковий ключ Facebook API. Максимальна довжина ключа — 255 символів." + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" +"Помилковий секретний код Facebook API. Максимальна довжина — 255 символів." + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "Налаштування додатку для Facebook" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "API-ключ" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "API-ключ, що був наданий Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Секретний код" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "Секретний код API, що був наданий Facebook" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Зберегти" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "Зберегти налаштування Facebook" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "Зазначте, яким чином Ваш акаунт буде під’єднано до Facebook" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "Наразі жоден користувач Facebook не під’єднаний до цього акаунту." + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "Під’єднаний користувач Facebook" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "Від’єднати мій акаунт від Facebook" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" +"Якщо Ви від’єднаєте свій Facebook, то це унеможливить вхід до системи у " +"майбутньому! Будь ласка, " + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "встановіть пароль" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " спочатку." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "Від’єднати" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "Не можу видалити посилання на Facebook." + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "Ви від’єдналися від Facebook." + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "Хто зна, що Ви намагаєтеся зробити." + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "Виникла проблема при збереженні параметрів синхронізації!" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "Параметри синхронізації збережено." + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "Автоматично оновлювати статус у Facebook моїми дописами." + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "Надсилати «@» відповіді до Facebook." + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зберегти" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " +"останнім повідомленням, Ви повинні надати дозвіл." + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "Дозволити додатку %s оновлювати мій статус у Facebook" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "Параметри синхронізації" diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..5614af9308 --- /dev/null +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -0,0 +1,548 @@ +# Translation of StatusNet - Facebook to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: Chenxiaoqino +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 41::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"你好,%1$s。我们很抱歉的通知你我们无法从%2$s更新你的Facebook状态,并已禁用你" +"帐户的Facebook应用。这可能是因为你取消了Facebook应用的授权,或者你删除了你的" +"Facebook帐户。通过重新安装Facebook应用你可以重新启用你的Facebook应用的自动状" +"态更新。\n" +"\n" +"祝好,\n" +"\n" +"%2$s" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "你必须使用Facebook Connect来登入Facebook帐号。" + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "这里已经有一个用户连接了此Facebook帐号。" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "你的session token出错了。请重试。" + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "你必须同意许可协议才能注册。" + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "发生未知错误。" + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +" 这是你第一次登录到 %s,我们需要将你的Facebook帐号与一个本地的帐号关联。你可" +"以新建一个帐号,或者使用你在本站已有的帐号。" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Facebook帐号设置" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "连接选项" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电" +"话号码。" + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "创建新帐户" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "以此昵称创建新帐户" + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "新昵称" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 到 64 个小写字母或数字,不包含标点或空格" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "创建" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "连接现有帐号" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "如果你已有帐号,请输入用户名和密码登录并连接至Facebook。" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "已存在的昵称" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "密码" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "连接" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "不允许注册。" + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "对不起,无效的邀请码。" + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "昵称只能使用小写字母和数字且不能使用空格。" + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "昵称不被允许。" + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "连接用户至Facebook时发生错误。" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "用户名或密码不正确。" + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "登录" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "发送一个通知" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "%s,最近怎么样?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "可用的字符" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "发送" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "服务器错误:无法获取用户。" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "用户名或密码不正确。" + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s 和好友们" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"如果你希望 %s 应用自动更新你最新的状态到Facebook状态上,你需要给它设置权限。" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "好的!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "跳过" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "分页" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "之后" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "之前" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "谢谢你邀请你的朋友们来使用 %s。" + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "邀请已发给一些的用户:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "你被邀请来到 %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "邀请你的朋友们来使用 %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "已经使用 %s 的好友们:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "发送邀请" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Facebook整合设置" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Facebook Connect 用户" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "使用 Facebook 登陆或注册" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Facebook Connect 设置" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "" + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "" + +#: facebookaction.php:242 +msgid "Register" +msgstr "" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..c7bc7655af --- /dev/null +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FirePHP to Finnish (Suomi) +# Expored from translatewiki.net +# +# Author: Nike +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: Finnish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fi\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "FirePHP-liitännäinen kirjoittaa StatusNetin tulosteen FirePHP:hen." diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..bf55055d1c --- /dev/null +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"L’extension FirePHP écrit la sortie du journal de StatusNet dans FirePHP." diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..60224d5af0 --- /dev/null +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"Le plug-in FirePHP transmitte le output del registro de StatusNet a FirePHP." diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..d716f8a73b --- /dev/null +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FirePHP to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "FirePHPプラグインは、StatusNetの記録出力を、FirePHPへ書き出します。" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..404c022965 --- /dev/null +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - FirePHP to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"Приклучокот FirePHP ги врши излезните записи во дневникот на StatusNet во " +"FirePHP." diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..9e42a3aa8f --- /dev/null +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FirePHP to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "Utvidelsen FirePHP skriver StatusNets logg-utdata til FirePHP." diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..4f40fe1a9c --- /dev/null +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"De plug-in FirePHP schrijft de logboekuitvoer van StatusNet naar FirePHP." diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..720445ee6e --- /dev/null +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - FirePHP to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Waldir +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:04+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "O plugin FirePHP envia a saída do log do StatusNet para o FirePHP." diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..467216c605 --- /dev/null +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"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" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "Модуль FirePHP записывает вывод журнала StatusNet в FirePHP." diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..875d73de82 --- /dev/null +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - FirePHP to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"Ang pamasak na FirePHP ay nagsusulat ng tala ng paglalabas ng StatusNet sa " +"FirePHP." diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..389090e38a --- /dev/null +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 42::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"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" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "Додаток FirePHP записує лоґи StatusNet до FirePHP." diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..48b42c4296 --- /dev/null +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Interroger GeoURL lorsque de nouveaux " +"avis géolocalisés sont postés." diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..3c8fce7cb1 --- /dev/null +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Invia un ping a GeoURL quando se publica " +"nove notas con geolocalisation." diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..0844be8f16 --- /dev/null +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Пингувај GeoURL при објавување на нови " +"геолоцирани забелешки." diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..648b9ab67c --- /dev/null +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"GeoURL pingen als nieuwe met " +"geolocatiegegevens verrijkte mededelingen worden geplaatst." diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..237dde8013 --- /dev/null +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Kalansingin ang GeoURL kapag napaskil ang " +"mga bagong mga pabatid na pinainam ng heolokasyon." diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..d527d8dba4 --- /dev/null +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GeoURL to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 44::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"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" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Пінґувати GeoURL, якщо нові повідомлення " +"позначаються іншим географічним розташуванням." diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..ad8a3f6790 --- /dev/null +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Geonames to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Utilise le service Geonames pour " +"obtenir des dénominations géographiques lisibles par l’homme pour les " +"emplacements basés sur des paires latitude/longitude fournies par " +"l’utilisateur." diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..d4a36f203e --- /dev/null +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Usa le servicio Geonames pro obtener " +"nomines geographic ben legibile a base de coordinatas latitude/longitude " +"fornite per usatores." diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..fb11335213 --- /dev/null +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Ја користи службата Geonames за " +"добивање на имиња на места за приказ врз основа на парови од географска " +"ширина и должина внесени од корисниците." diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..69d52a0eb3 --- /dev/null +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Geonames to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Bruker tjenesten Geonames for å få " +"lesbare navn for steder basert på brukergitte lengde- og breddegrader." diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..ccaa503ad5 --- /dev/null +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"De dienst Geonames gebruiken om " +"leesbare namen voor locaties te krijgen op basis van door gebruikers " +"opgegeven paren van lengte en breedte." diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..b71c8b871f --- /dev/null +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Geonames to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Сrower +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"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" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Использование сервиса GeoNames для " +"получения понятных для человека названий по указанным пользователем " +"географическим координатам." diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..f24fc3a05f --- /dev/null +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Gumagamit ng serbisyong Geonames upang " +"kumuha ng mga pangalan mababasa ng tao para sa mga lokasyon batay sa mga " +"pares ng lat/long na bigay ng tagagamit." diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..eabd940b08 --- /dev/null +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Geonames to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"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" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Використання сервісу Geonames дозволяє " +"отримувати географічні назви людською мовою замість координат, що вони були " +"вказані користувачем." diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..92c7c6700a --- /dev/null +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 43::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"使用 Geonames 服务获取基于用户提供的经纬" +"度坐标的可读的名称。" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..fb88afd61b --- /dev/null +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Utiliser Google Analytics " +"pour tracer les accès Web." diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..d4e5512f62 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Usar Google Analytics pro " +"traciar le accessos web." diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..6c35eb389e --- /dev/null +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Користи Google Analytics за " +"следење на мрежен пристап." diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..dd728d65d8 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Bruk Google Analytics til å " +"spore nettilgang." diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..60e7b4a787 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Google Analytics gebruiken " +"om webtoegang te volgen." diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..59d479900b --- /dev/null +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GoogleAnalytics to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Сrower +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"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" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Использование Google Analytics для отслеживания за посещением веб-страницы." diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..bbc1f90d84 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Gamitin ang Analitiks ng " +"Google upang tugaygayin ang pagpunta sa web." diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..faa0924030 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GoogleAnalytics to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"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" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Використання Google Analytics для стеження за відвідуваністю веб-сторінки." diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..5510809c65 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GoogleAnalytics to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 71::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"使用 Google Analytics 跟踪记" +"录网站访问。" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..ea1d65c204 --- /dev/null +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -0,0 +1,77 @@ +# Translation of StatusNet - Gravatar to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "" +"Falls Sie Ihr Gravatar Bild verwenden wollen, klicken sie \"Hinzufügen\"" + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Hinzufügen" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Gravatar löschen" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Falls Sie Ihr Gravatar Bild entfernen wollen, klicken sie \"Entfernen\"" + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Entfernen" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Um einen Gravatar zuverwenden geben Sie zunächst in eine E-Mail-Adresse ein." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "" + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "" + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar hinzugefügt." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar entfernt." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Das Gravatar Plugin erlaubt es Benutzern, ihr Gravatar mit StatusNet zu verwenden." diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..207fa2fc86 --- /dev/null +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -0,0 +1,77 @@ +# Translation of StatusNet - Gravatar to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Définir un Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "" +"Si vous souhaitez utiliser votre image Gravatar, cliquez sur « Ajouter »." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Ajouter" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Supprimer le Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Si vous souhaitez supprimer votre image Gravatar, cliquez sur « Supprimer »." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Supprimer" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Pour utiliser un Gravatar, veuillez d’abord saisir une adresse courriel." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "Vous n'avez pas d’adresse courriel définie dans votre profil." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Impossible de sauvegarder le Gravatar dans la base de données." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar ajouté." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar supprimé." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Le greffon Gravatar permet aux utilisateurs d’utiliser leur image Gravatar avec StatusNet." diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..9144cbbf63 --- /dev/null +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -0,0 +1,74 @@ +# Translation of StatusNet - Gravatar to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Stabilir Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Si tu vole usar tu imagine Gravatar, clicca \"Adder\"." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Adder" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Remover Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "Si tu vole remover tu imagine Gravatar, clicca \"Remover\"." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Remover" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "Pro usar un Gravatar, entra primo un adresse de e-mail." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "Tu non ha un adresse de e-mail definite in tu profilo." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Falleva de salveguardar le Gravatar in le base de datos." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar addite." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar removite." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Le plug-in Gravatar permitte al usatores de usar lor Gravatar con StatusNet." diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..6e88cfa1b4 --- /dev/null +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - Gravatar to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Постави Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "" +"Ако сакате да ја користите Вашата слика од Gravatar, кликнете на „Додај“." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Додај" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Отстрани Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Ако сакате да ја отстраните Вашата слика од Gravatar, кликнете на „Отстрани“." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Отстрани" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "За да користите Gravatar најпрвин внесете е-пошта." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "Во профилот немате назначено е-пошта." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Не успеав да го зачувам Gravatar-от во базата на податоци." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar-от е додаден." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar-от е отстранет." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Приклучокот Gravatar им овозможува на корисниците да го користат својот Gravatar со StatusNet." diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..6be92e6517 --- /dev/null +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -0,0 +1,75 @@ +# Translation of StatusNet - Gravatar to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Gravatar instellen" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Klik \"Toevoegen\" om uw afbeelding van Gravatar te gebruiken." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Toevoegen" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Gravatar verwijderen" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Klik \"Verwijderen\" om uw afbeelding van Gravatar niet langer te gebruiken." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Verwijderen" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "Voer eerst een e-mailadres in om Gravatar te kunnen gebruiken." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "U hebt geen e-mailadres ingesteld in uw profiel." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Het was niet mogelijk de Gravatar in the database op te slaan." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "De Gravatar is toegevoegd." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "De Gravatar is verwijderd." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"De plug-in Gravatar maak het mogelijk dat gebruikers hun Gravatar gebruiken in StatusNet." diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..060fe4b6f2 --- /dev/null +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - Gravatar to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Itakda ang Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "" +"Kung nais mong gamitin ang iyong larawan ng Gravatar, pindutin ang \"Idagdag" +"\"." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Idagdag" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Alisin ang Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Kung nais mong alisin ang larawan mo ng Gravatar, pindutin ang \"Alisin\"." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Alisin" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Upang gamitin ang isang Gravatar ipasok muna ang isang tirahan ng e-liham." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "Wala kang tirahan ng e-liham na nakatakda sa iyong balangkas." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Nabigong sagipin ang Gravatar sa iyong kalipunan ng dato." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Idinagdag ang Gravatar." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Inalis ang Gravatar." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Ang pamasak na Gravatar ay nagpapahintulot sa mga tagagamit na gamitin ang " +"kanilang Gravatar na may StatusNet." diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..f31f0166f5 --- /dev/null +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - Gravatar to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"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" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Встановити Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Якщо Ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Додати" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Видалити Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "" +"Якщо Ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Видалити" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "Щоб використовувати Gravatar, спершу введіть адресу електронної пошти." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "У Вашому профілі не вказано жодної електронної адреси." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Не вдалося зберегти Gravatar до бази даних." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar додано." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar вилучено." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Додаток Gravatar дозволяє користувачам встановлювати аватарки з Gravatar для сайту StatusNet." diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..fec92e51c6 --- /dev/null +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -0,0 +1,75 @@ +# Translation of StatusNet - Gravatar to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "设置 Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "如果你想使用你的 Gravatar 图像,点击“添加”" + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "添加" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "删除 Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "如果你想删除你的 Gravatar 图像,点击“删除”。" + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "删除" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "要使用 Gravatar 先要填写一个 email 地址。" + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "你的账号没有设置 email 地址。" + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "将 Gravatar 保存到数据库失败。" + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar 已添加。" + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar 已删除。" + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Gravatar 插件可以让用户在 StatusNet 站点使用自己的 Gravatar。" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..b2029098e2 --- /dev/null +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Imap to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:10+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Erreur" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager devrait être instancié en utilisant son constructeur et non pas " +"en utilisant la méthode statique « get »." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Une boîte aux lettres doit être spécifiée." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Un nom d’utilisateur doit être spécifié." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Un mot de passe doit être spécifié." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Une fréquence d’interrogation doit être spécifiée." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"L’extension IMAP permet à StatusNet de rechercher dans une boîte " +"électronique POP ou IMAP les messages contenant des avis des utilisateurs." diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..4655954336 --- /dev/null +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Imap to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Error" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager debe esser create per medio de su constructor, non con le " +"methodo \"get\" static." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Un cassa postal debe esser specificate." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Un usator debe esser specificate." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Un contrasigno debe esser specificate." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Un poll_frequency debe esser specificate." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Le plug-in IMAP permitte que StatusNet verifica si cassas postal POP o IMAP " +"ha recipite e-mail continente messages de usatores." diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..b3c140f0c5 --- /dev/null +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Imap to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Грешка" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager треба да се создаде користејќи го неговиот конструктор, а не " +"преку статичниот метод на негово добивање." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Мора да назначите сандаче." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Мора да назначите корисник." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Мора да назначите лозинка." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Мора да назначите poll_frequency." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Приклучокот IMAP му овозможува на StatusNet да проверува дојдовни пораки со " +"објави од корисници во POP или IMAP сандачиња ." diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..c27f3ab51f --- /dev/null +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Imap to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Feil" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager bør opprettes ved å bruke dets konstruktør, ikke ved å bruke " +"dets statiske get-metode." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "En postkasse må spesifiseres." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "En bruker må spesifiseres." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Et passord må spesifiseres." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "En poll_frequency må spesifiseres." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Utvidelsen IMAP gjør det mulig for StatusNet å sjekke en POP- eller IMAP-" +"postkasse for innkommende e-post som innholder brukerinnlegg." diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..76454680a5 --- /dev/null +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Imap to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Fout" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager moet aangemaakt worden via de constructor en niet met de " +"statische methode get." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Er moet een postbus opgegeven worden." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Er moet een gebruiker opgegeven worden." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Er moet een wachtwoord opgegeven worden." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Er moet een poll_frequency opgegeven worden." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"De plug-in IMAP maakt het mogelijk om StatusNet een POP- of IMAP-postbus te " +"laten controleren op inkomende e-mail die berichten van gebruikers bevat." diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..3ff067b28b --- /dev/null +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - Imap to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# Author: Сrower +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"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" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Ошибка" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager должен быть создан с помощью конструктора, а не получен " +"статическим методом." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Должен быть указан почтовый ящик." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Должен быть указан пользователь." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Должен быть указан пароль." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Периодичность проверки должна быть задана в poll_frequency." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Плагин IMAP позволяет StatusNet проверять почтовый ящик по протоколу POP или " +"IMAP на предмет наличия во входящей почте сообщений от пользователей." diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..dc90bf8c38 --- /dev/null +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Imap to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Kamalian" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Dapat tukuyin ang isang kahon ng liham." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Dapat tukuyin ang isang tagagamit." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Dapat tukuyin ang isang hudyat." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Dapat tukuyin ang isang kadalasan ng botohan." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Ang pamasak na IMAP ay nagpapahintulot na masuri ng StatusNet ang isang " +"kahon ng liham ng POP o IMAP para sa papasok na liham na naglalaman ng mga " +"pagpapaskil ng tagagamit." diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..9d3e6cf20b --- /dev/null +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Imap to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"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" + +#: imapmailhandler.php:28 +msgid "Error" +msgstr "Помилка" + +#: imapmanager.php:47 +msgid "" +"ImapManager should be created using its constructor, not the using the " +"static get method." +msgstr "" +"ImapManager має бути створений за допомогою конструктору, не статичним " +"методом." + +#: ImapPlugin.php:54 +msgid "A mailbox must be specified." +msgstr "Поштову скриньку має бути зазначено." + +#: ImapPlugin.php:57 +msgid "A user must be specified." +msgstr "Користувача має бути зазначено." + +#: ImapPlugin.php:60 +msgid "A password must be specified." +msgstr "Пароль має бути зазначено." + +#: ImapPlugin.php:63 +msgid "A poll_frequency must be specified." +msgstr "Періодичність перевірки має бути зазначено." + +#: ImapPlugin.php:103 +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"Додаток IMAP дозволяє перевіряти поштові скриньки за протоколами POP та IMAP " +"на предмет наявності у вхідній пошті повідомлень від користувачів." diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..ea339383ae --- /dev/null +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - InfiniteScroll to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"InfiniteScroll ajoute la fonctionnalité suivante à votre installation " +"StatusNet : lorsqu’un utilisateur fait défiler la page jusqu’à la fin, la " +"page d’avis suivante est automatiquement téléchargée et ajoutée à la suite. " +"Ceci signifie que l’utilisateur n’a plus besoin de cliquer sur le bouton « " +"Page suivante », ce qui augmente considérablement l’adhérence de " +"l’utilisateur." diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..844652bba9 --- /dev/null +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Infinite Scroll adde le sequente functionalitate a tu installation de " +"StatusNet: Quando un usator face rolar le pagina verso le fundo, le sequente " +"pagina de notas es automaticamente recuperate e adjungite. Isto significa " +"que ille nunquam ha besonio de cliccar super \"Pagina sequente\", lo que " +"augmenta dramaticamente le adherentia." diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..2af480c1ff --- /dev/null +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - InfiniteScroll to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"無限スクロールは、StatusNetのインストールに次の機能を追加します:ユーザーが" +"ページの最後までスクロースしたとき、次のページの通知が自動的に取得され追加さ" +"れます。これはつまり、「次のページ」をクリックする必要がなく、手間を劇的に改" +"善します。" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..98ff1d3d4d --- /dev/null +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"„Бесконечно лизгање“ ја додава следнава функција во Вашата инсталација на " +"StatusNet: Кога еден корисник лизга кон дното на страницата, следната " +"страница автоматски се појавува во продолжение. Со ова се отстранува " +"потребата од стискање на „Следна страница“, што значително ја зголемува " +"лепливоста." diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..bf15301851 --- /dev/null +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - InfiniteScroll to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Oneindig scrollen (Infinite Scroll) maakt het mogelijk om in een StatusNet-" +"site naar onderaan de pagina te scrollen en dan automatisch de volgende " +"pagina te zien laden. Een gebruiker hoeft dus nooit meer op \"Volgende pagina" +"\" te klikken zodat ze langers op de site blijven." diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..74d213dafd --- /dev/null +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - InfiniteScroll to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Сrower +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"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" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Бесконечная прокрутка добавляет следующую функциональность вашему сайту " +"StatusNet: Когда пользователь прокручивает страницу уведомлений до самого " +"низа, следующая страница уведомлений автоматически запрашивается и " +"добавлятся. Это значит, что вам никогда не прийдётся нажимать кнопку " +"\"Следующая страница\", что резко увеличивает клейкость." diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..ef50d1b194 --- /dev/null +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - InfiniteScroll to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Nagdaragdag ang Walang Hangganang Balumbon ng sumusunod na tungkulin sa " +"iyong instalasyon ng StatusNet: Kapag ang isang tagagamit ay nagpapadulas " +"papunta sa ilalim ng pahina, ang susunod na pahina ng mga pabatid ay kusang " +"muling nakukuha at nadurugtong. Nangangahulugan ito na hindi nila kailangan " +"kailanman na pindutin ang \"Susunod na Pahina\", na mabisang nagpapataas ng " +"pagkamadikit." diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..8c076b33d0 --- /dev/null +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"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" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Нескінченна прокрутка сторінки додає наступні функції сайту StatusNet: коли " +"користувач прокручує сторінку до самого її низу, дописи з наступної сторінки " +"додаються автоматично. Це означає, що Вам не доведеться натискати «Назад», " +"аби переглянути попередні повідомлення." diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..bfe15183a9 --- /dev/null +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to French (Français) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"L’extension LDAP Authentication permet à StatusNet de gérer l’identification " +"par LDAP." diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..bcaae861c5 --- /dev/null +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Le plug-in LDAP Authentication permitte que StatusNet manea le " +"authentication via LDAP." diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..0bf2066f9a --- /dev/null +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - LdapAuthentication to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"LDAP認証プラグインは、StatusNetにLDAPによる認証を処理させることができます。" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..b4695e3f01 --- /dev/null +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Приклучокот за потврдување LDAP му овозможува на StatusNet да работи со " +"потврдувања преку LDAP." diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..cab3284b04 --- /dev/null +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Utvidelsen LDAP Authentication gjør det mulig for StatusNet å håndtere " +"autentisering gjennom LDAP." diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..fc48c98443 --- /dev/null +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"De plug-in LDAP-authenticatie maakt het mogelijk om authenticatie voor " +"StatusNet via LDAP af te handelen." diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..8889acdf4e --- /dev/null +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthentication to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"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" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Плагин аутентификации LDAP позволяет обрабатывать запросы к StatusNet через " +"сетевой протокол LDAP." diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..39d58e27bd --- /dev/null +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Ang pamasak na Pagpapatunay ng LDAP ay nagpapahintulot sa StatusNet na " +"panghawakan ang pagpapatunay sa pamamagitan ng LDAP." diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..ddcd8796e3 --- /dev/null +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthentication to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 74::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"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" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"Додаток автентифікації LDAP дозволяє обробляти запити автентифікації за " +"допомогою LDAP." diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..103044ab77 --- /dev/null +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"L’extension LDAP Authorization permet à StatusNet de gérer l’autorisation " +"par LDAP." diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..02e5660c3c --- /dev/null +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Le plug-in LDAP Authorization permitte que StatusNet manea le autorisation " +"via LDAP." diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..03150ff41c --- /dev/null +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Приклучокот за овластување LDAP му овозможува на StatusNet да работи со " +"овластувања преку LDAP." diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..4c74b30288 --- /dev/null +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Utvidelsen LDAP Authorization gjør det mulig for StatusNet å håndtere " +"autorisasjon gjennom LDAP." diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..51dc2db3df --- /dev/null +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"De plug-in LDAP-autorisatie maakt het mogelijk om autorisatie voor StatusNet " +"via LDAP af te handelen." diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..e2e4e77132 --- /dev/null +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthorization to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"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" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Плагин авторизации LDAP позволяет обрабатывать запросы к StatusNet через " +"сетевой протокол LDAP." diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..2766803d85 --- /dev/null +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Ang pamasak na Pahintulot na pang-LDAP ay nagpapahintulot sa StatusNet na " +"panghawakan ang pahintulot sa pamamagitan ng LDAP." diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..89884b6ef2 --- /dev/null +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LdapAuthorization to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 75::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"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" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"Додаток авторизації LDAP дозволяє обробляти запити авторизації за допомогою " +"LDAP." diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..b5356f2ad4 --- /dev/null +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - LilUrl to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Une URL de service doit être spécifiée." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilise le service de raccourcissement d’URL %1$s." diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..3d260ca73a --- /dev/null +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - LilUrl to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Un serviceUrl debe esser specificate." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa le servicio de accurtamento de URL %1$s." diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..589fae541f --- /dev/null +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LilUrl to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "" + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "%1$sをURL短縮サービスとして利用する。" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..00f0b78b64 --- /dev/null +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - LilUrl to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Мора да се назначи адреса на службата (serviceUrl)." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Користи %1$s - служба за скратување на URL-" +"адреси." diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..af1e8b3d47 --- /dev/null +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - LilUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "En tjeneste-Url må spesifiseres." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..e2cec1e665 --- /dev/null +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - LilUrl to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Er moet een serviceUrl opgegeven worden." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gebruikt de dienst %1$s om URL's korter te " +"maken." diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..5b9cfd8a21 --- /dev/null +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - LilUrl to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "" + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gumagamit ng %1$s na serbisyong pampaikli ng " +"URL." diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..e200546101 --- /dev/null +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - LilUrl to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 20::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"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" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "URL-адресу сервісу має бути зазначено." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Для скорочення URL-адрес використовується %1$s." diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..329abc03a8 --- /dev/null +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Avertissez les auteurs de blogues lorsque leurs publications ont été liées " +"dans des avis « microblogue », au moyen des protocoles Pingback ou Trackback." diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..ddfed77d25 --- /dev/null +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Notificar autores de blogs quando lor articulos ha essite ligate in notas de " +"microblog usante le protocollos Pingback o Trackback." diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..395003aa27 --- /dev/null +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Извести ги авторите на блоговите кога некој стави врска до нивните објави во " +"забелешки од микроблогови користејќи ги протоколите Pingback или Trackback." diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..061d0f2d5e --- /dev/null +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Varsle bloggforfattere når deres innlegg har blitt lenket til i " +"mikrobloggvarsler ved å bruke Pingback- eller Trackback-protokoller." diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..558ba0d0dd --- /dev/null +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Blogauteurs laten weten wanneer naar hun berichten wordt verwezen in " +"mededelingen met behulp van de protocollen Pingback of Trackback." diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..447e168283 --- /dev/null +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Ipaalam sa mga may-akda ng blog kapag ang kanilang ang mga pagpapaskil ay " +"ikinawing sa mga pabatid ng mikroblog sa pamamagitan ng mga protokol na Pingback o Trackback." diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..1d1eb506d3 --- /dev/null +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - Linkback to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 77::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"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" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Сповіщення авторів блоґів, якщо їхні дописи стають об’єктом уваги у " +"мікроблоґах, використовуючи протоколи Pingback або Trackback." diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..fc605b1fb2 --- /dev/null +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Mapstraction to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Karte" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "Unbekannter Benutzer." + +#: map.php:79 +msgid "User has no profile." +msgstr "Benutzer hat kein Profil." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..7ee4a01584 --- /dev/null +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Mapstraction to Finnish (Suomi) +# Expored from translatewiki.net +# +# Author: Nike +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Finnish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fi\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Kartta" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Täysi koko" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "Käyttäjää ei ole." + +#: map.php:79 +msgid "User has no profile." +msgstr "Käyttäjällä ei ole profiilia." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Kartta käyttäjän %s ystävistä" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..2e59eb24b0 --- /dev/null +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Mapstraction to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Cartographie" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Pleine taille" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Affiche des cartes localisant les avis des utilisateurs et amis avec Mapstraction." + +#: map.php:72 +msgid "No such user." +msgstr "Utilisateur inexistant." + +#: map.php:79 +msgid "User has no profile." +msgstr "Aucun profil ne correspond à cet utilisateur." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Carte des amis de %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "Carte %s, page %d" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..ddc5793292 --- /dev/null +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Mapstraction to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Mapa" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Tamaño completo" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "Non existe tal usuario." + +#: map.php:79 +msgid "User has no profile." +msgstr "O usuario non ten perfil." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..0b7408d774 --- /dev/null +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Mapstraction to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Mappa" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Dimension complete" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Monstra mappas de notas de usatores e amicos con Mapstraction." + +#: map.php:72 +msgid "No such user." +msgstr "Iste usator non existe." + +#: map.php:79 +msgid "User has no profile." +msgstr "Le usator non ha un profilo." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Mappa del amicos de %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "Mappa de %s, pagina %d" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..bd808641a0 --- /dev/null +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Mapstraction to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Карта" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Полна големина" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Прикажувај карти со забелешките на корисниците и пријателите со Mapstraction" + +#: map.php:72 +msgid "No such user." +msgstr "Нема таков корисник." + +#: map.php:79 +msgid "User has no profile." +msgstr "Корисникот нема профил." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Карта на пријатели на %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "Карта на %s, стр. %d" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..2c515212dd --- /dev/null +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - Mapstraction to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Kaart" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Groter" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Geeft een kaart met de mededelingen van de gebruiker en vrienden weer met " +"behulp van Mapstraction." + +#: map.php:72 +msgid "No such user." +msgstr "Deze gebruiker bestaat niet" + +#: map.php:79 +msgid "User has no profile." +msgstr "Deze gebruiker heeft geen profiel." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Kaart van %s en vrienden" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "Kaart van %s, pagina %d" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..bc7f2e5d4b --- /dev/null +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - Mapstraction to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Mapa" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Buong sukat" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Nagpapakita ng mga mapa ng mga pabatid ng mga tagagamit at ng mga kaibigan " +"sa pamamagitan ng Mapstraction." + +#: map.php:72 +msgid "No such user." +msgstr "Walang ganyang tagagamit." + +#: map.php:79 +msgid "User has no profile." +msgstr "Walang balangkas ang tagagamit." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "%s na mapa ng mga kaibigan" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "%s na mapa, pahina %d" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..be3005cec1 --- /dev/null +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - Mapstraction to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 78::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"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" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Мапа" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Повний розмір" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" +"Показувати на мапі користувачів і їхні повідомлення за допомогою Mapstraction." + +#: map.php:72 +msgid "No such user." +msgstr "Такого користувача немає." + +#: map.php:79 +msgid "User has no profile." +msgstr "Користувач не має профілю." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Мапа друзів %s." + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "Мапа друзів %s, сторінка %d" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..757b929de8 --- /dev/null +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utiliser Memcached pour mettre en " +"cache les résultats de requêtes." diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..584b2d6bdf --- /dev/null +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Usar Memcached pro immagazinar " +"resultatos de consultas in cache." diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..464b18fccf --- /dev/null +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Користи Memcached за кеширање на " +"резултати од барања." diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..47ea1c5013 --- /dev/null +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Bruk Memcached for å hurtiglagre " +"søkeresultat." diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..553588b208 --- /dev/null +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Memcached gebruiken om zoekresultaten " +"te cachen." diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..a6a0c5a04b --- /dev/null +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcache to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Lockal +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"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" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Использование Memcached для " +"кеширования результатов запросов." diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..8ea48360f0 --- /dev/null +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Gamitin ang Memcached upang itago ang " +"mga resulta ng pagtatanong." diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..9810369748 --- /dev/null +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcache to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 79::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"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" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Використання Memcached для зберігання " +"пошукових запитів в кеші." diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..9b414d189f --- /dev/null +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utiliser Memcached pour mettre en " +"cache les résultats de requêtes." diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..5022d8ff63 --- /dev/null +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Usar Memcached pro immagazinar " +"resultatos de consultas in cache." diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..da804c6737 --- /dev/null +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Користи Memcached за кеширање на " +"резултати од барања." diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..ef100881bd --- /dev/null +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Bruk Memcached for å hurtiglagre " +"søkeresultat." diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..1143bcab2a --- /dev/null +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Memcached gebruiken om zoekresultaten " +"te cachen." diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..a5451e2c72 --- /dev/null +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcached to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Lockal +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"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" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Использование Memcached для " +"кеширования результатов запросов." diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..4171af4de7 --- /dev/null +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Gamitin ang Memcached upang ikubli ang " +"mga resulta ng pagtatanong." diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..00212437ca --- /dev/null +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcached to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"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" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Використання Memcached для зберігання " +"пошукових запитів в кеші." diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..1f964341ea --- /dev/null +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 03::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Non poteva connecter a %1$s sur %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Error durante le addition del message Meteor \"%s\"" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..5ea59a35d6 --- /dev/null +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 03::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Het was niet mogelijk te verbinden met %1$s op %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Fout bij het toevoegen van meteorbericht \"%s\"" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Plug-in voor het maken van \"real time\" updates via Comet/Bayeux." diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..086f1b59de --- /dev/null +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -0,0 +1,42 @@ +# Translation of StatusNet - Minify to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "Le paramètre « f » ne contient pas un chemin valide." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "Le paramètre « f » est nécessaire mais absent." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Type de fichier non pris en charge." + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"Le greffon Minify minimise vos CSS et Javascript, en supprimant les espaces " +"et les commentaires." diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..c4f82e3502 --- /dev/null +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -0,0 +1,42 @@ +# Translation of StatusNet - Minify to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "Le parametro \"f\" non es un cammino valide." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "Le parametro \"f\" es necessari, ma manca." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Typo de file non supportate." + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"Le plug-in Minify minimisa le CSS e JavaScript de StatusNet, removente " +"spatio blanc e commentos." diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..7a03c1d484 --- /dev/null +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -0,0 +1,42 @@ +# Translation of StatusNet - Minify to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "Параметарот „f“ не претставува важечка патека." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "Параметарот „f“ е задолжителен, но недостасува." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Овој топ на податотека не е поддржан." + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"Приклучокот Minify ги смалува CSS и JavaScript на StatusNet, отстранувајќи " +"бели простори и коментари." diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..d5c3a0044b --- /dev/null +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -0,0 +1,42 @@ +# Translation of StatusNet - Minify to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "De parameter \"f\" is geen geldig pad." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "De parameter \"f\" is vereist, maar ontbreekt." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Dit bestandstype wordt niet ondersteund" + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"De plug-in Minify maakt CSS en JavaScript kleiner door witruimte en " +"opmerkingen te verwijderen." diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..7d32081dc1 --- /dev/null +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -0,0 +1,42 @@ +# Translation of StatusNet - Minify to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "Ang parametrong \"f\" ay hindi isang tanggap na landas." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "Ang parametrong \"f\" ay kailangan ngunit nawawala." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Hindi tinatangkilik ang uri ng talaksan." + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"Ang pamasak na Minify ay nagpapaliit sa CSS at JavaScript ng StatusNet, na " +"nagtatanggal ng puting puwang at mga puna." diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po new file mode 100644 index 0000000000..3947498485 --- /dev/null +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Minify to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Minify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 80::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-minify\n" +"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" + +#: minify.php:49 +msgid "The parameter \"f\" is not a valid path." +msgstr "Параметр «f» не є правильним шляхом." + +#: minify.php:53 +msgid "The parameter \"f\" is required but missing." +msgstr "Параметр «f» має бути зазначено, але він відсутній." + +#: minify.php:111 +msgid "File type not supported." +msgstr "Тип файлу не підтримується." + +#: MinifyPlugin.php:179 +msgid "" +"The Minify plugin minifies StatusNet's CSS and JavaScript, removing " +"whitespace and comments." +msgstr "" +"Додаток Minify мінімізує CSS та JavaScript сайту StatusNet, усуваючи " +"пропуски і коментарі." diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..cde0930a56 --- /dev/null +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Gwendal +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Degemer" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Kont" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Kevreañ" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Merour" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Kemmañ arventennoù al lec'hienn" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Pediñ" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Digevreañ" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Marilhañ" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Kevreañ" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Klask" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Stagañ" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Stagañ ur restr" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..dddda0f37f --- /dev/null +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,80 @@ +# Translation of StatusNet - MobileProfile to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" +"Cette page n’est pas disponible dans un des types de média que vous acceptez." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Accueil" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Compte" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Connexion" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Administrateur" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Modifier la configuration du site" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Inviter" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Déconnexion" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "S’inscrire" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Connexion" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Rechercher" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Joindre" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Joindre un fichier" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "Sortie XHTML MobileProfile pour les navigateurs compatibles." diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..a7884571a3 --- /dev/null +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,80 @@ +# Translation of StatusNet - MobileProfile to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Iste pagina non es disponibile in un formato que tu accepta." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Initio" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Conto" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Connecter" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Admin" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Modificar le configuration del sito" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Invitar" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Clauder session" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Crear conto" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Aperir session" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Cercar" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Annexar" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Annexar un file" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" +"Production de XHTML MobileProfile pro le programmas de usator que lo " +"supporta." diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..a72dfb7511 --- /dev/null +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Страницава не е достапна во форматот кој Вие го прифаќате." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Почетна" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Сметка" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Поврзи се" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Администратор" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Промена на поставките на мрежното место" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Покани" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Одјава" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Регистрација" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Најава" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Пребарај" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Приложи" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Приложи податотека" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "Излез „XHTML MobileProfile“ за поддршка на кориснички агенти." diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..71b0af5064 --- /dev/null +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - MobileProfile to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Deze pagina is niet beschikbaar in een mediumtype dat u accepteert." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Hoofdmenu" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Gebruiker" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Koppelen" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Beheer" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Websiteinstellingen wijzigen" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Uitnodigen" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Afmelden" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Registreren" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Aanmelden" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Zoeken" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Toevoegen" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Bestand toevoegen" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" +"Uitvoer in MobileProfile XHTML voor de gebruikersprogramma's die dat " +"ondersteunen." diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..e7d9bbc906 --- /dev/null +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,79 @@ +# Translation of StatusNet - MobileProfile to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"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" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Страница недоступна для того типа, который вы задействовали." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Домой" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Аккаунт" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Подключиться" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Администратор" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Изменить конфигурацию сайта" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Пригласить" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Выйти" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Регистрация" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Представиться" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Поиск" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Прикрепить" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Прикрепить файл" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..933b706fea --- /dev/null +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,80 @@ +# Translation of StatusNet - MobileProfile to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"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" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Дім" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Акаунт" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "З’єднання" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Адмін" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Змінити конфігурацію сайту" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Запросити" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Вийти" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Реєстрація" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Увійти" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Пошук" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Вкласти" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Вкласти файл" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" +"Вивід XHTML для перегляду на мобільному для підтримки пристроїв користувачів." diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..3706978cbd --- /dev/null +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,79 @@ +# Translation of StatusNet - MobileProfile to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 93::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "" + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "账号" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "关联" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "管理" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "更改网站配置" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "邀请" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "登出" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "注册" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "登录" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "搜索" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "附件" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "添加一个文件附件" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..6cec215523 --- /dev/null +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Breton (Brezhoneg) +# Expored 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 - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..85825d452a --- /dev/null +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Ajoute des titres optionnels aux avis." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..17773a64db --- /dev/null +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Adde optional titulos a notas." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..bda31caa4e --- /dev/null +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Додава наслови на забелешките (по избор)." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..50c95a569e --- /dev/null +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Legger valgfrie titler til notiser." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..0a71b63e08 --- /dev/null +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Voegt optioneel titels toe aan mededelingen." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..9f3b6bee67 --- /dev/null +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Telugu (తెలుగు) +# Expored from translatewiki.net +# +# Author: Veeven +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Telugu \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: te\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..2176f74dc6 --- /dev/null +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - NoticeTitle to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Nagdaragdag ng maaaring wala na mga pamagat sa mga pabatid." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr " %1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..44f3ca400c --- /dev/null +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - NoticeTitle to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 82::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"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" + +#: NoticeTitlePlugin.php:126 +msgid "Adds optional titles to notices." +msgstr "Додавати до повідомлень необов’язкові заголовки." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: NoticeTitlePlugin.php:299 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s — %2$s" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..4d4ee37d2a --- /dev/null +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -0,0 +1,796 @@ +# Translation of StatusNet - OStatus to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 00::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. 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:227 OStatusPlugin.php:937 +msgid "Subscribe" +msgstr "S'abonner" + +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +msgid "Join" +msgstr "Rejoindre" + +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Envoyé depuis %s via OStatus" + +#. TRANS: Exception. +#: OStatusPlugin.php:531 +msgid "Could not set up remote subscription." +msgstr "Impossible de mettre en place l’abonnement distant." + +#: OStatusPlugin.php:605 +msgid "Unfollow" +msgstr "Ne plus suivre" + +#. 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:608 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s a cessé de suivre %2$s." + +#: OStatusPlugin.php:636 +msgid "Could not set up remote group membership." +msgstr "Impossible de mettre en place l’appartenance au groupe distant." + +#. TRANS: Exception. +#: OStatusPlugin.php:667 +msgid "Failed joining remote group." +msgstr "Échec lors de l’adhésion au groupe distant." + +#: OStatusPlugin.php:707 +msgid "Leave" +msgstr "Sortir" + +#: OStatusPlugin.php:785 +msgid "Disfavor" +msgstr "Retirer des favoris" + +#. 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:788 +#, php-format +msgid "%1$s marked notice %2$s as no longer a favorite." +msgstr "%1$s a retiré l’avis %2$s de ses favoris." + +#. TRANS: Link text for link to remote subscribe. +#: OStatusPlugin.php:864 +msgid "Remote" +msgstr "À distance" + +#. TRANS: Title for activity. +#: OStatusPlugin.php:904 +msgid "Profile update" +msgstr "Mise à jour du profil" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:907 +#, php-format +msgid "%s has updated their profile page." +msgstr "%s a mis à jour sa page de profil." + +#. TRANS: Plugin description. +#: OStatusPlugin.php:952 +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Suivez les personnes à travers les réseaux sociaux mettant en œuvre OStatus ." + +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" +"Tente de démarrer l’inscription PuSH à un flux d’information sans " +"concentrateur." + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"Tente d’arrêter l’inscription PuSH à un flux d’information sans " +"concentrateur." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" +"État invalide du profil OStatus : identifiants à la fois de groupe et de " +"profil définis pour « %s »." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" +"État invalide du profil OStatus : identifiants à la fois de groupe et de " +"profil non renseignés pour « %s »." + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "Type d’acteur invalide passé à la méthode « %1$s » : « %2$s »." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"Type invalide passé à la méthode « Ostatus_profile::notify ». Ce doit être " +"une chaîne XML ou une entrée « Activity »." + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "Format de flux d’information inconnu." + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "Flux RSS sans canal." + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "Impossible de gérer cette sorte de publication." + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "Aucun contenu dans l’avis « %s »." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 +msgid "Show more" +msgstr "Voir davantage" + +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "Impossible d’atteindre la page de profil « %s »." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "" +"Impossible de trouver une adresse URL de flux d’information pour la page de " +"profil « %s »." + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "" +"Impossible de trouver assez d’informations de profil pour créer un flux " +"d’information." + +#: classes/Ostatus_profile.php:1035 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Adresse URL d’avatar « %s » invalide." + +#: classes/Ostatus_profile.php:1045 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" +"Tente de mettre à jour l’avatar associé au profil distant non sauvegardé « %s " +"»." + +#: classes/Ostatus_profile.php:1053 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossible de récupérer l’avatar depuis « %s »." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "L’utilisateur local ne peut être référencé comme distant." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "Le groupe local ne peut être référencé comme distant." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "Impossible de sauvegarder le profil local." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "Impossible de sauvegarder le profil OStatus." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "Ce n’est pas une adresse « webfinger » valide." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "Impossible de sauvegarder le profil pour « %s »." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "Impossible d’enregistrer le profil OStatus pour « %s »." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "Impossible de trouver un profil valide pour « %s »." + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "" +"Impossible de stocker le contenu HTML d’une longue publication en un fichier." + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "" +"La vérification d’abonné sur le concentrateur a retourné le statut HTTP « %s " +"»." + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "La routine de rappel a retourné le statut « %1$s ». Corps : %2$s" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 +msgid "This method requires a POST." +msgstr "Cette méthode nécessite une commande HTTP « POST »." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "Salmon exige le type « application/magic-envelope+xml »." + +#. TRANS: Client error. +#: lib/salmonaction.php:57 +msgid "Salmon signature verification failed." +msgstr "La vérification de signature Salmon a échoué." + +#. TRANS: Client error. +#: lib/salmonaction.php:69 +msgid "Salmon post must be an Atom entry." +msgstr "Une publication Salmon doit être une entrée « Atom »." + +#. TRANS: Client exception. +#: lib/salmonaction.php:118 +msgid "Unrecognized activity type." +msgstr "Type d’activité non reconnu." + +#. TRANS: Client exception. +#: lib/salmonaction.php:127 +msgid "This target doesn't understand posts." +msgstr "Cette cible ne reconnaît pas les publications." + +#. TRANS: Client exception. +#: lib/salmonaction.php:133 +msgid "This target doesn't understand follows." +msgstr "Cette cible ne reconnaît pas les indications de début de suivi." + +#. TRANS: Client exception. +#: lib/salmonaction.php:139 +msgid "This target doesn't understand unfollows." +msgstr "Cette cible ne reconnaît pas les indications de fin de suivi." + +#. TRANS: Client exception. +#: lib/salmonaction.php:145 +msgid "This target doesn't understand favorites." +msgstr "Cette cible ne reconnaît pas les indications de mise en favoris." + +#. TRANS: Client exception. +#: lib/salmonaction.php:151 +msgid "This target doesn't understand unfavorites." +msgstr "Cette cible ne reconnaît pas les indications de retrait des favoris." + +#. TRANS: Client exception. +#: lib/salmonaction.php:157 +msgid "This target doesn't understand share events." +msgstr "Cette cible ne reconnaît pas les évènements partagés." + +#. TRANS: Client exception. +#: lib/salmonaction.php:163 +msgid "This target doesn't understand joins." +msgstr "Cette cible ne reconnaît pas les indications d’adhésion." + +#. TRANS: Client exception. +#: lib/salmonaction.php:169 +msgid "This target doesn't understand leave events." +msgstr "Cette cible ne reconnaît pas les indications de retrait d’évènements." + +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "Réception d’une giffle Salmon d’un acteur non identifié." + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "Impossible de trouver des services pour « %s »." + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "XML invalide." + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "XML invalide, racine XRD manquante." + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "Impossible de trouver la clé publique du signataire." + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "Acteur Salmon invalide pour la signature." + +#: tests/gettext-speedtest.php:57 +msgid "Feeds" +msgstr "Flux d’informations" + +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "La publication des flux externes n’est pas supportée." + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "Mode « %s » non reconnu." + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"Le sujet de concentrateur « %s » n’est pas supporté. Ce concentrateur ne sert " +"que les flux Atom d’utilisateurs et groupes locaux." + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "" +"La vérification de concentrateur « %s » est invalide. Ce doit être « sync » ou " +"« async »." + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" +"Le bail de concentrateur « %s » est invalide. Ce doit être vide ou un entier " +"positif." + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "" +"Le secret de concentrateur « %s » est invalide. Il doit faire moins de 200 " +"octets." + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "" +"Le sujet de concentrateur « %s » est invalide. L’utilisateur n’existe pas." + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pas." + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "URL invalide passée à la méthode « %1$s » : « %2$s »" + +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "Utilisateur inexistant." + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "Aucun identifiant." + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "En réponse à l’avis inconnu." + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" +"En réponse à un avis non émis par cet utilisateur et ne mentionnant pas cet " +"utilisateur." + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "Impossible de sauvegarder le nouveau favori." + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "Impossible de mettre en favoris ou retirer des favoris sans un objet." + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "" +"Impossible de gérer ce genre d’objet parmi les sujets appréciés ou favoris." + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Avis d’identifiant « %s » inconnu." + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "Avis d’identifiant « %1$s » non publié par %2$s." + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 +msgid "Join group" +msgstr "Rejoindre le groupe" + +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "" +"Une adresse de groupe OStatus telle que « http://example.net/group/pseudonyme " +"»." + +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuer" + +#: actions/ostatusgroup.php:103 +msgid "You are already a member of this group." +msgstr "Vous êtes déjà membre de ce groupe." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:138 +msgid "Already a member!" +msgstr "Déjà membre !" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:149 +msgid "Remote group join failed!" +msgstr "L’adhésion au groupe distant a échoué !" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:153 +msgid "Remote group join aborted!" +msgstr "L’adhésion au groupe distant a été avortée !" + +#. TRANS: Page title for OStatus remote group join form +#: actions/ostatusgroup.php:165 +msgid "Confirm joining remote group" +msgstr "Confirmer l’adhésion au groupe distant" + +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Vous pouvez souscrire aux groupes d’autres sites supportés. Collez l’adresse " +"URI du profil du groupe ci-dessous :" + +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "Groupe inexistant." + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 +msgid "Can't accept remote posts for a remote group." +msgstr "" +"Impossible d’accepter des envois distants de messages pour un groupe distant." + +#. TRANS: Client error. +#: actions/groupsalmon.php:127 +msgid "Can't read profile to set up group membership." +msgstr "" +"Impossible de lire le profil pour mettre en place l’adhésion à un groupe." + +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 +msgid "Groups can't join groups." +msgstr "Les groupes ne peuvent pas adhérer à des groupes." + +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "Vous avez été bloqué de ce groupe par l’administrateur." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "Impossible de joindre l’utilisateur distant %1$s au groupe %2$s." + +#: actions/groupsalmon.php:171 +msgid "Can't read profile to cancel group membership." +msgstr "Impossible de lire le profil pour annuler l’adhésion à un groupe." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "Impossible de retirer l’utilisateur distant %1$s du groupe %2$s." + +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 +msgid "Subscribe to" +msgstr "S’abonner à" + +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname" +msgstr "" +"Adresse d’un utilisateur OStatus ou de sa page de profil, telle que " +"pseudonyme@example.com ou http://example.net/pseudonyme" + +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Rejoindre ce groupe" + +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmer" + +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 +msgid "Subscribe to this user" +msgstr "S’abonner à cet utilisateur" + +#: actions/ostatussub.php:136 +msgid "You are already subscribed to this user." +msgstr "Vous êtes déjà abonné à cet utilisateur." + +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "Photo" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "Pseudonyme" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "Emplacement" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "Adresse URL" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "Note" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"Désolé, nous n’avons pas pu atteindre cette adresse. Veuillez vous assurer " +"que l’adresse OStatus de l’utilisateur ou de sa page de profil est de la " +"forme pseudonyme@example.com ou http://example.net/pseudonyme." + +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" +"Désolé, nous n’avons pas pu atteindre ce flux. Veuillez réessayer plus tard " +"cette adresse OStatus." + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:315 +msgid "Already subscribed!" +msgstr "Déjà abonné !" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:320 +msgid "Remote subscription failed!" +msgstr "Ĺ’abonnement distant a échoué !" + +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#. TRANS: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +msgid "Subscribe to user" +msgstr "S’abonner à un utilisateur" + +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "Confirmer" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"Vous pouvez vous abonner aux utilisateurs d’autres sites pris en charge. " +"Collez leur adresse ou l’URI de leur profil ci-dessous :" + +#. TRANS: Client error. +#: actions/ostatusinit.php:41 +msgid "You can use the local subscription!" +msgstr "Vous pouvez utiliser l’abonnement local !" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 +#, php-format +msgid "Join group %s" +msgstr "Rejoindre le groupe « %s »" + +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "Rejoindre" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 +#, php-format +msgid "Subscribe to %s" +msgstr "S’abonner à « %s »" + +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "S’abonner" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 +msgid "User nickname" +msgstr "Pseudonyme de l’utilisateur" + +#: actions/ostatusinit.php:118 +msgid "Nickname of the user you want to follow." +msgstr "Pseudonyme de l’utilisateur que vous voulez suivre." + +#. TRANS: Field label. +#: actions/ostatusinit.php:123 +msgid "Profile Account" +msgstr "Compte de profil" + +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 +msgid "Your account id (e.g. user@identi.ca)." +msgstr "Votre identifiant de compte (utilisateur@identi.ca, par exemple)." + +#. TRANS: Client error. +#: actions/ostatusinit.php:147 +msgid "Must provide a remote profile." +msgstr "Vous devez fournir un profil distant." + +#. TRANS: Client error. +#: actions/ostatusinit.php:159 +msgid "Couldn't look up OStatus account profile." +msgstr "Impossible de consulter le profil de compte OStatus." + +#. TRANS: Client error. +#: actions/ostatusinit.php:172 +msgid "Couldn't confirm remote profile address." +msgstr "Impossible de confirmer l’adresse de profil distant." + +#. TRANS: Page title. +#: actions/ostatusinit.php:217 +msgid "OStatus Connect" +msgstr "Connexion OStatus" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "Identifiant de flux vide ou invalide." + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "Identifiant de flux PuSH inconnu : « %s »" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "Flux de sujet de concentrateur incorrect : « %s »" + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "" +"Jeton de vérification de concentrateur incorrect « %1$s » pour le sujet « %2$s " +"»." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Demande d’abonnement inattendue pour le sujet invalide « %s »." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Demande de désabonnement inattendue pour le sujet invalide « %s »." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..63c7def6e1 --- /dev/null +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -0,0 +1,768 @@ +# Translation of StatusNet - OStatus to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 00::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. 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:227 OStatusPlugin.php:937 +msgid "Subscribe" +msgstr "Subscriber" + +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +msgid "Join" +msgstr "Inscriber" + +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Inviate de %s via OStatus" + +#. TRANS: Exception. +#: OStatusPlugin.php:531 +msgid "Could not set up remote subscription." +msgstr "Non poteva configurar le subscription remote." + +#: OStatusPlugin.php:605 +msgid "Unfollow" +msgstr "Non plus sequer" + +#. 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:608 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s cessava de sequer %2$s." + +#: OStatusPlugin.php:636 +msgid "Could not set up remote group membership." +msgstr "Non poteva configurar le membrato del gruppo remote." + +#. TRANS: Exception. +#: OStatusPlugin.php:667 +msgid "Failed joining remote group." +msgstr "Falleva de facer se membro del gruppo remote." + +#: OStatusPlugin.php:707 +msgid "Leave" +msgstr "Quitar" + +#: OStatusPlugin.php:785 +msgid "Disfavor" +msgstr "Disfavorir" + +#. 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:788 +#, php-format +msgid "%1$s marked notice %2$s as no longer a favorite." +msgstr "%1$s marcava le nota %2$s como non plus favorite." + +#. TRANS: Link text for link to remote subscribe. +#: OStatusPlugin.php:864 +msgid "Remote" +msgstr "Remote" + +#. TRANS: Title for activity. +#: OStatusPlugin.php:904 +msgid "Profile update" +msgstr "Actualisation de profilo" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:907 +#, php-format +msgid "%s has updated their profile page." +msgstr "%s ha actualisate su pagina de profilo." + +#. TRANS: Plugin description. +#: OStatusPlugin.php:952 +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Sequer personas trans retes social que implementa OStatus." + +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "Tentativa de comenciar subscription PuSH pro syndication sin centro." + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "Tentativa de terminar subscription PuSH pro syndication sin centro." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" +"Stato ostatus_profile invalide: IDs e de gruppo e de profilo definite pro %s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" +"Stato ostatus_profile invalide: IDs e de gruppo e de profilo vacue pro %s." + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "Actor invalide passate a %1$s: %2$s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"Typo invalide passate a Ostatos_profile::notify. Illo debe esser catena XML " +"o entrata Activity." + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "Formato de syndication incognite." + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "Syndication RSS sin canal." + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "Non pote tractar iste typo de message." + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "Nulle contento pro nota %s." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 +msgid "Show more" +msgstr "Monstrar plus" + +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "Non poteva attinger pagina de profilo %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Non poteva trovar un URL de syndication pro pagina de profilo %s." + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "" +"Non pote trovar satis de information de profilo pro facer un syndication." + +#: classes/Ostatus_profile.php:1035 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL de avatar %s invalide." + +#: classes/Ostatus_profile.php:1045 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Tentava actualisar avatar pro profilo remote non salveguardate %s." + +#: classes/Ostatus_profile.php:1053 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Incapace de obtener avatar ab %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "Usator local non pote esser referentiate como remote." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "Gruppo local non pote esser referentiate como remote." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "Non pote salveguardar profilo local." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "Non pote salveguardar profilo OStatus." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "Adresse webfinger invalide." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "Non poteva salveguardar profilo pro \"%s\"." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "Non poteva salveguardar osatus_profile pro %s." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "Non poteva trovar un profilo valide pro \"%s\"." + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "Non poteva immagazinar contento HTML de longe message como file." + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "Verification de subscriptor de centro retornava HTTP %s." + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "Appello de retorno retornava stato: %1$s. Corpore: %2$s" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 +msgid "This method requires a POST." +msgstr "Iste methodo require un POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "Salmon require \"application/magic-envelope+xml\"." + +#. TRANS: Client error. +#: lib/salmonaction.php:57 +msgid "Salmon signature verification failed." +msgstr "Verification de signatura Salmon falleva." + +#. TRANS: Client error. +#: lib/salmonaction.php:69 +msgid "Salmon post must be an Atom entry." +msgstr "Message Salmon debe esser un entrata Atom." + +#. TRANS: Client exception. +#: lib/salmonaction.php:118 +msgid "Unrecognized activity type." +msgstr "Typo de activitate non recognoscite." + +#. TRANS: Client exception. +#: lib/salmonaction.php:127 +msgid "This target doesn't understand posts." +msgstr "Iste destination non comprende messages." + +#. TRANS: Client exception. +#: lib/salmonaction.php:133 +msgid "This target doesn't understand follows." +msgstr "Iste destination non comprende sequimentos." + +#. TRANS: Client exception. +#: lib/salmonaction.php:139 +msgid "This target doesn't understand unfollows." +msgstr "Iste destination non comprende cessationes de sequimento." + +#. TRANS: Client exception. +#: lib/salmonaction.php:145 +msgid "This target doesn't understand favorites." +msgstr "Iste destination non comprende le addition de favorites." + +#. TRANS: Client exception. +#: lib/salmonaction.php:151 +msgid "This target doesn't understand unfavorites." +msgstr "Iste destination non comprende le remotion de favorites." + +#. TRANS: Client exception. +#: lib/salmonaction.php:157 +msgid "This target doesn't understand share events." +msgstr "Iste destination non comprende eventos commun." + +#. TRANS: Client exception. +#: lib/salmonaction.php:163 +msgid "This target doesn't understand joins." +msgstr "Iste destination non comprende indicationes de adhesion." + +#. TRANS: Client exception. +#: lib/salmonaction.php:169 +msgid "This target doesn't understand leave events." +msgstr "Iste destination non comprende eventos de partita." + +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "Recipeva un claffo de salmon de un actor non identificate." + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "Incapace de trovar servicios pro %s." + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "XML invalide." + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "XML invalide, radice XRD mancante." + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "Incapace de localisar le clave public del signator." + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "Salmon: actor invalide pro signar." + +#: tests/gettext-speedtest.php:57 +msgid "Feeds" +msgstr "Syndicationes" + +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "Le publication de syndicationes externe non es supportate." + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "Modo \"%s\" non recognoscite." + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"Le topico de centro %s non es supportate. Iste centro servi solmente le " +"syndicationes Atom de usatores e gruppos local." + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "Invalide hub.verify \"%s\". Debe esser sync o async." + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" +"Invalide hub.lease \"%s\". Debe esser vacue o un numero integre positive." + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "Invalide hub.secret \"%s\". Debe pesar minus de 200 bytes." + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "Invalide hub.topic \"%s\". Usator non existe." + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "Invalide hub.topic \"%s\". Gruppo non existe." + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "Invalide URL passate pro %1$s: \"%2$s\"" + +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "Iste usator non existe." + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "Nulle ID." + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "In responsa a un nota incognite." + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" +"In responsa a un nota non scribite per iste usator e que non mentiona iste " +"usator." + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "Non poteva salveguardar le nove favorite." + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "Non pote favorir/disfavorir sin objecto." + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "Non pote manear iste typo de objecto pro appreciar/favorir." + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Nota con ID %s incognite." + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "Nota con ID %1$s non publicate per %2$s." + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 +msgid "Join group" +msgstr "Adherer al gruppo" + +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "" +"Un adresse de gruppo OStatus, como http://example.net/group/pseudonymo." + +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuar" + +#: actions/ostatusgroup.php:103 +msgid "You are already a member of this group." +msgstr "Tu es ja membro de iste gruppo." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:138 +msgid "Already a member!" +msgstr "Ja membro!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:149 +msgid "Remote group join failed!" +msgstr "Le adhesion al gruppo remote ha fallite!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:153 +msgid "Remote group join aborted!" +msgstr "Le adhesion al gruppo remote ha essite abortate!" + +#. TRANS: Page title for OStatus remote group join form +#: actions/ostatusgroup.php:165 +msgid "Confirm joining remote group" +msgstr "Confirmar adhesion a gruppo remote" + +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Tu pote subscriber a gruppos de altere sitos supportate. Colla le URI del " +"profilo del gruppo hic infra:" + +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "Gruppo non existe." + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 +msgid "Can't accept remote posts for a remote group." +msgstr "Non pote acceptar messages remote pro un gruppo remote." + +#. TRANS: Client error. +#: actions/groupsalmon.php:127 +msgid "Can't read profile to set up group membership." +msgstr "Non pote leger profilo pro establir membrato de gruppo." + +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 +msgid "Groups can't join groups." +msgstr "Gruppos non pote adherer a gruppos." + +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "Le administrator te ha blocate de iste gruppo." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "Non poteva inscriber le usator remote %1$s in le gruppo %2$s." + +#: actions/groupsalmon.php:171 +msgid "Can't read profile to cancel group membership." +msgstr "Non pote leger profilo pro cancellar membrato de gruppo." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "Non poteva remover le usator remote %1$s del gruppo %2$s." + +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 +msgid "Subscribe to" +msgstr "Subscriber a" + +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname" +msgstr "" +"Le adresse de un usator OStatus, como pseudonymo@example.com o http://" +"example.net/pseudonymo" + +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Adherer a iste gruppo" + +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 +msgid "Subscribe to this user" +msgstr "Subscriber a iste usator" + +#: actions/ostatussub.php:136 +msgid "You are already subscribed to this user." +msgstr "Tu es ja subscribite a iste usator." + +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "Photo" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "Pseudonymo" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "Loco" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "URL" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "Nota" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"Regrettabilemente, nos non poteva attinger iste adresse. Per favor assecura " +"te que le adresse OStatus es como pseudonymo@example.com o http://example." +"net/pseudonymo." + +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" +"Regrettabilemente, nos non poteva attinger iste syndication. Per favor " +"reproba iste adresse OStatus plus tarde." + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:315 +msgid "Already subscribed!" +msgstr "Ja subscribite!" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:320 +msgid "Remote subscription failed!" +msgstr "Subscription remote fallite!" + +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +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: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +msgid "Subscribe to user" +msgstr "Subscriber a usator" + +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "Confirmar" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"Tu pote subscriber a usatores de altere sitos supportate. Colla su adresse o " +"URI de profilo hic infra:" + +#. TRANS: Client error. +#: actions/ostatusinit.php:41 +msgid "You can use the local subscription!" +msgstr "Tu pote usar le subscription local!" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 +#, php-format +msgid "Join group %s" +msgstr "Adherer al gruppo %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "Inscriber" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 +#, php-format +msgid "Subscribe to %s" +msgstr "Subscriber a %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscriber" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 +msgid "User nickname" +msgstr "Pseudonymo del usator" + +#: actions/ostatusinit.php:118 +msgid "Nickname of the user you want to follow." +msgstr "Le pseudonymo del usator que tu vole sequer." + +#. TRANS: Field label. +#: actions/ostatusinit.php:123 +msgid "Profile Account" +msgstr "Conto de profilo" + +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 +msgid "Your account id (e.g. user@identi.ca)." +msgstr "Le ID de tu conto (p.ex. usator@identi.ca)." + +#. TRANS: Client error. +#: actions/ostatusinit.php:147 +msgid "Must provide a remote profile." +msgstr "Debe fornir un profilo remote." + +#. TRANS: Client error. +#: actions/ostatusinit.php:159 +msgid "Couldn't look up OStatus account profile." +msgstr "Non poteva cercar le profilo del conto OStatus." + +#. TRANS: Client error. +#: actions/ostatusinit.php:172 +msgid "Couldn't confirm remote profile address." +msgstr "Non poteva confirmar le adresse del profilo remote." + +#. TRANS: Page title. +#: actions/ostatusinit.php:217 +msgid "OStatus Connect" +msgstr "Connexion OStatus" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "ID de syndication vacue o invalide." + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "ID de syndication PuSH %s incognite" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "Syndication hub.topic \"%s\" incorrecte." + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "Incorrecte hub.verify_token %1$s pro %2$s." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Requesta de subscription inexpectate pro %s." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Requesta de cancellation de subscription inexpectate pro %s." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..53970a77f3 --- /dev/null +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -0,0 +1,771 @@ +# Translation of StatusNet - OStatus to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 00::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. 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:227 OStatusPlugin.php:937 +msgid "Subscribe" +msgstr "Претплати се" + +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +msgid "Join" +msgstr "Придружи се" + +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Испратено од %s преку OStatus" + +#. TRANS: Exception. +#: OStatusPlugin.php:531 +msgid "Could not set up remote subscription." +msgstr "Не можев да ја поставам далечинската претплата." + +#: OStatusPlugin.php:605 +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:608 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s престана да го/ја следи %2$s." + +#: OStatusPlugin.php:636 +msgid "Could not set up remote group membership." +msgstr "Не можев да го поставам членството во далечинската група." + +#. TRANS: Exception. +#: OStatusPlugin.php:667 +msgid "Failed joining remote group." +msgstr "Не успеав да Ве зачленам во далечинската група." + +#: OStatusPlugin.php:707 +msgid "Leave" +msgstr "Напушти" + +#: OStatusPlugin.php:785 +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:788 +#, php-format +msgid "%1$s marked notice %2$s as no longer a favorite." +msgstr "%1$s ја означи забелешката %2$s како неомилена." + +#. TRANS: Link text for link to remote subscribe. +#: OStatusPlugin.php:864 +msgid "Remote" +msgstr "Далечински" + +#. TRANS: Title for activity. +#: OStatusPlugin.php:904 +msgid "Profile update" +msgstr "Поднова на профил" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:907 +#, php-format +msgid "%s has updated their profile page." +msgstr "%s ја поднови својата профилна страница." + +#. TRANS: Plugin description. +#: OStatusPlugin.php:952 +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Следете луѓе низ разни друштвени мрежи што го применуваат OStatus." + +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "Се обидов да ја започнам PuSH-претплатата за канал без средиште." + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"Се обидувам да ставам крај на PuSH-претплатата за емитување без средиште." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" +"Неважечка ostatus_profile-состојба: назнаките (ID) на групата и профилот се " +"наместени за %s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" +"Неважечка ostatus_profile-состојба: назнаките (ID) за групата и профилот се " +"празни за %s." + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "На %1$s е пренесен неважечки учесник: %2$s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"На Ostatus_profile::notify е пренесен неважечки тип. Мора да биде XML-низа " +"или ставка во Activity." + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "Непознат формат на каналско емитување." + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "RSS-емитување без канал." + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "Не можам да работам со таква објава." + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "Нема содржина за забелешката %s." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 +msgid "Show more" +msgstr "Повеќе" + +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "Не можев да ја добијам профилната страница %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Не можев да пронајдам каналска URL-адреса за профилната страница %s." + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "Не можев да најдам доволно профилни податоци за да направам канал." + +#: classes/Ostatus_profile.php:1035 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Неважечка URL-адреса за аватарот: %s." + +#: classes/Ostatus_profile.php:1045 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" +"Се обидов да го подновам аватарот за незачуваниот далечински профил %s." + +#: classes/Ostatus_profile.php:1053 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Не можам да го добијам аватарот од %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "Локалниот корисник не може да се наведе како далечински." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "Локалната група не може да се наведе како далечинска." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "Не можам да го зачувам локалниот профил." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "Не можам да го зачувам профилот од OStatus." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "Ова не е важечка Webfinger-адреса" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "Не можам да го зачувам профилот за „%s“." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "Не можам да го зачувам ostatus_profile за „%s“." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "Не можев да пронајдам важечки профил за „%s“." + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "" +"Не можам да ја складирам HTML-содржината на долгата објава како податотека." + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "Потврдата на претплатникот на средиштето даде HTTP %s." + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "Повратниот повик даде статус: %1$s. Содржина: %2$s" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 +msgid "This method requires a POST." +msgstr "Овој метод бара POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "Salmon бара „програм/magic-envelope+xml“." + +#. TRANS: Client error. +#: lib/salmonaction.php:57 +msgid "Salmon signature verification failed." +msgstr "Salmon-овото потврдување на потпис не успеа." + +#. TRANS: Client error. +#: lib/salmonaction.php:69 +msgid "Salmon post must be an Atom entry." +msgstr "Salmon-овата објава мора да биде Atom-ова ставка." + +#. TRANS: Client exception. +#: lib/salmonaction.php:118 +msgid "Unrecognized activity type." +msgstr "Непризнаен вид на активност." + +#. TRANS: Client exception. +#: lib/salmonaction.php:127 +msgid "This target doesn't understand posts." +msgstr "Оваа цел не разбира објави." + +#. TRANS: Client exception. +#: lib/salmonaction.php:133 +msgid "This target doesn't understand follows." +msgstr "Оваа цел не разбира следења." + +#. TRANS: Client exception. +#: lib/salmonaction.php:139 +msgid "This target doesn't understand unfollows." +msgstr "Оваа цел не разбира прекини на следења." + +#. TRANS: Client exception. +#: lib/salmonaction.php:145 +msgid "This target doesn't understand favorites." +msgstr "Оваа цел не разбира омилени." + +#. TRANS: Client exception. +#: lib/salmonaction.php:151 +msgid "This target doesn't understand unfavorites." +msgstr "Оваа цел не разбира отстранувања од омилени." + +#. TRANS: Client exception. +#: lib/salmonaction.php:157 +msgid "This target doesn't understand share events." +msgstr "Оваа цел не разбира споделување на настани." + +#. TRANS: Client exception. +#: lib/salmonaction.php:163 +msgid "This target doesn't understand joins." +msgstr "Оваа цел не разбира придружувања." + +#. TRANS: Client exception. +#: lib/salmonaction.php:169 +msgid "This target doesn't understand leave events." +msgstr "Оваа цел не разбира напуштање на настани." + +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "Примив Salmon-шамар од непознат учесник." + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "Не можев да најдам служби за %s." + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "Неважечко XML." + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "Неважечко XML. Нема XRD-основа." + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "Не можам да го пронајдам јавниот клуч на потписникот." + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "Ова е неважечки учесник во потпишувањето според Salmon." + +#: tests/gettext-speedtest.php:57 +msgid "Feeds" +msgstr "Канали" + +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "Објавувањето вон каналите не е поддржано." + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "Непрепознат режим „%s“." + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"Неподдржан hub.topic %s - ова средиште служи само за само Atom-емитувања од " +"локални корисници и групи." + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "Неважечки hub.verify „%s“. Мора да биде sync или async." + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "Неважечки hub.lease „%s“. Мора да биде празно или позитивен цел број." + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "Неважечки hub.secret „%s“. Мора да биде под 200 бајти." + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "Неважеки hub.topic „%s“. Корисникот не постои." + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "Неважечки hub.topic „%s“. Групата не постои." + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "Добив неважечка URL-адреса за %1$s: „%2$s“" + +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "Нема таков корисник." + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "Нема ID." + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "Како одговор на непозната забелешка." + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" +"Како одговор на забелешка која не е од овој корисник и не го споменува." + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "Не можам да го зачувам новото омилено." + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "Не можам да означам како омилено или да тргнам омилено без објект." + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "" +"Не можам да работам со таков објект за ставање врски/означување омилени." + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Не ја распознавам забелешката со ID %s." + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "Забелешката со ID %1$s не е објавена од %2$s." + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 +msgid "Join group" +msgstr "Придружи се на групата" + +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "" +"Адреса на групата на OStatus, како на пр. http://primer.net/group/prekar." + +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продолжи" + +#: actions/ostatusgroup.php:103 +msgid "You are already a member of this group." +msgstr "Веќе членувате во групава." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:138 +msgid "Already a member!" +msgstr "Веќе членувате!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:149 +msgid "Remote group join failed!" +msgstr "Придружувањето на далечинската група не успеа!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:153 +msgid "Remote group join aborted!" +msgstr "Придружувањето на далечинската група е откажано!" + +#. TRANS: Page title for OStatus remote group join form +#: actions/ostatusgroup.php:165 +msgid "Confirm joining remote group" +msgstr "Потврди придружување кон далечинска група." + +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Можете да се претплаќате на групи од други поддржани мреж. места. Подолу " +"залепете го URI-то на профилот на групата." + +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "Нема таква група." + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 +msgid "Can't accept remote posts for a remote group." +msgstr "Не можам да прифаќам далечински објави од далечинска група." + +#. TRANS: Client error. +#: actions/groupsalmon.php:127 +msgid "Can't read profile to set up group membership." +msgstr "" +"Не можев да го прочитам профилот за да го поставам членството во групата." + +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 +msgid "Groups can't join groups." +msgstr "Во групите не можат да се зачленуваат групи." + +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "Блокирани сте на таа група од администратор." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "Не можев да го зачленам далечинскиот корисник %1$s во групата %2$s." + +#: actions/groupsalmon.php:171 +msgid "Can't read profile to cancel group membership." +msgstr "Не можам да го прочитам профилот за откажам членство во групата." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "Не можев да го отстранам далечинскиот корисник %1$s од групата %2$s." + +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 +msgid "Subscribe to" +msgstr "Претплати се" + +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname" +msgstr "" +"Адреса на корисникот на OStatus, како на пр. prekar@primer.com or http://" +"primer.net/prekar" + +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Зачлени се во групава" + +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Потврди" + +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 +msgid "Subscribe to this user" +msgstr "Претплати се на корисников" + +#: actions/ostatussub.php:136 +msgid "You are already subscribed to this user." +msgstr "Веќе сте претплатени на овој корисник." + +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "Слика" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "Прекар" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "Место" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "URL-адереса" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "Белешка" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"Нажалост, не можевме да ја добиеме таа адреса. Проверете дали адресата од " +"OStatus е од типот prekar@primer.com или http://primer.net/prekar." + +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" +"Нажалост, не можевме да го добиеме тој канал. Обидете се со таа OStatus-" +"адреса подоцна." + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:315 +msgid "Already subscribed!" +msgstr "Веќе сте претплатени!" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:320 +msgid "Remote subscription failed!" +msgstr "Далечинската претплата не успеа!" + +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се повторно." + +#. TRANS: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +msgid "Subscribe to user" +msgstr "Претплати се на корисник" + +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "Потврди" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"Можете да се претплатите на корисници од други поддржани мрежни места. " +"Ископирајте ја нивната адреса или профилно URI подолу:" + +#. TRANS: Client error. +#: actions/ostatusinit.php:41 +msgid "You can use the local subscription!" +msgstr "Можете да ја користите локалната претплата!" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 +#, php-format +msgid "Join group %s" +msgstr "Зачлени се во групата %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "Зачлени се" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 +#, php-format +msgid "Subscribe to %s" +msgstr "Претплати се на %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплати се" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 +msgid "User nickname" +msgstr "Прекар на корисникот" + +#: actions/ostatusinit.php:118 +msgid "Nickname of the user you want to follow." +msgstr "Прекарот на корисникот што сакате да го следите." + +#. TRANS: Field label. +#: actions/ostatusinit.php:123 +msgid "Profile Account" +msgstr "Профилна сметка" + +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 +msgid "Your account id (e.g. user@identi.ca)." +msgstr "Вашата назнака (ID) на сметката (на пр. korisnik@identi.ca)." + +#. TRANS: Client error. +#: actions/ostatusinit.php:147 +msgid "Must provide a remote profile." +msgstr "Мора да наведете далечински профил." + +#. TRANS: Client error. +#: actions/ostatusinit.php:159 +msgid "Couldn't look up OStatus account profile." +msgstr "Не можев да го проверам профилот на OStatus-сметката." + +#. TRANS: Client error. +#: actions/ostatusinit.php:172 +msgid "Couldn't confirm remote profile address." +msgstr "Не можев да ја потврдам адресата на далечинскиот профил." + +#. TRANS: Page title. +#: actions/ostatusinit.php:217 +msgid "OStatus Connect" +msgstr "OStatus - Поврзување" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "Празен или неважечки ID за канал" + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "Непознат ID %s за PuSH-канал" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "Лош hub.topic-канал „%s“." + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "Лош hub.verify_token %1$s за %2$s." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Неочекувано барање за претплата за %s." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Неочекувано барање за отпишување од претплата за %s." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..51f26d7ac7 --- /dev/null +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -0,0 +1,781 @@ +# Translation of StatusNet - OStatus to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 00::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. 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:227 OStatusPlugin.php:937 +msgid "Subscribe" +msgstr "Abonneren" + +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +msgid "Join" +msgstr "Toetreden" + +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Verzonden vanaf %s via OStatus" + +#. TRANS: Exception. +#: OStatusPlugin.php:531 +msgid "Could not set up remote subscription." +msgstr "" +"Het was niet mogelijk het abonnement via een andere dienst in te stellen." + +#: OStatusPlugin.php:605 +msgid "Unfollow" +msgstr "Niet langer volgen" + +#. 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:608 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s volgt %2$s niet langer." + +#: OStatusPlugin.php:636 +msgid "Could not set up remote group membership." +msgstr "" +"Het was niet mogelijk het groepslidmaatschap via een andere dienst in te " +"stellen." + +#. TRANS: Exception. +#: OStatusPlugin.php:667 +msgid "Failed joining remote group." +msgstr "" +"Het was niet mogelijk toe te streden to de groep van een andere dienst." + +#: OStatusPlugin.php:707 +msgid "Leave" +msgstr "Verlaten" + +#: OStatusPlugin.php:785 +msgid "Disfavor" +msgstr "Uit favorieten verwijderen" + +#. 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:788 +#, php-format +msgid "%1$s marked notice %2$s as no longer a favorite." +msgstr "%1$s heeft de mededeling %2$s als favoriet verwijderd." + +#. TRANS: Link text for link to remote subscribe. +#: OStatusPlugin.php:864 +msgid "Remote" +msgstr "Via andere dienst" + +#. TRANS: Title for activity. +#: OStatusPlugin.php:904 +msgid "Profile update" +msgstr "Profielupdate" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:907 +#, php-format +msgid "%s has updated their profile page." +msgstr "Het profiel van %s is bijgewerkt." + +#. TRANS: Plugin description. +#: OStatusPlugin.php:952 +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Mensen volgen over sociale netwerken die gebruik maken van OStatus." + +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" +"Aan het proberen een PuSH-abonnement te krijgen op een feed zonder hub." + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"Aan het proberen een PuSH-abonnement te verwijderen voor een feed zonder hub." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "" + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "Onbekend feedformaat" + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "RSS-feed zonder kanaal." + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "Dat type post kan niet verwerkt worden." + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "Geen inhoud voor mededeling %s." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 +msgid "Show more" +msgstr "Meer weergeven" + +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "Het was niet mogelijk de profielpagina %s te bereiken." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Het was niet mogelijk de feed-URL voor de profielpagina %s te vinden." + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "" +"Het was niet mogelijk voldoende profielinformatie te vinden om een feed te " +"maken." + +#: classes/Ostatus_profile.php:1035 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Ongeldige avatar-URL %s." + +#: classes/Ostatus_profile.php:1045 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" +"Geprobeerd om een avatar bij te werken voor het niet opgeslagen profiel %s." + +#: classes/Ostatus_profile.php:1053 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Het was niet mogelijk de avatar op te halen van %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "" +"Naar een lokale gebruiker kan niet verwezen worden alsof die zich bij een " +"andere dienst bevindt." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "" +"Naar een lokale groep kan niet verwezen worden alsof die zich bij een andere " +"dienst bevindt." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "" + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "Geen geldig webfingeradres." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "" + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "" + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "" + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "" + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 +msgid "This method requires a POST." +msgstr "Deze methode vereist een POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "" + +#. TRANS: Client error. +#: lib/salmonaction.php:57 +msgid "Salmon signature verification failed." +msgstr "" + +#. TRANS: Client error. +#: lib/salmonaction.php:69 +msgid "Salmon post must be an Atom entry." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:118 +msgid "Unrecognized activity type." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:127 +msgid "This target doesn't understand posts." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:133 +msgid "This target doesn't understand follows." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:139 +msgid "This target doesn't understand unfollows." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:145 +msgid "This target doesn't understand favorites." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:151 +msgid "This target doesn't understand unfavorites." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:157 +msgid "This target doesn't understand share events." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:163 +msgid "This target doesn't understand joins." +msgstr "" + +#. TRANS: Client exception. +#: lib/salmonaction.php:169 +msgid "This target doesn't understand leave events." +msgstr "" + +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "" + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "" + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "Ongeldige XML." + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "" + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "" + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "" + +#: tests/gettext-speedtest.php:57 +msgid "Feeds" +msgstr "Feeds" + +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "Publiceren buiten feeds om wordt niet ondersteund." + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "Niet herkende modus \"%s\"." + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"Niet ondersteund hub.topic \"%s\". Deze hub serveert alleen Atom feeds van " +"lokale gebruikers en groepen." + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "" +"Ongeldige waarde voor hub.verify \"%s\". Het moet \"sync\" of \"async\" zijn." + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" +"Ongeldige waarde voor hub.lease \"%s\". Deze waarde moet leeg zijn of een " +"positief geheel getal." + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "" + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "" + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "" + +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "Onbekende gebruiker." + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "Geen ID." + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "In antwoord op een onbekende mededeling." + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "" + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "" + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "" + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "" + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 +msgid "Join group" +msgstr "Lid worden van groep" + +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "" + +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" +msgid "Continue" +msgstr "Doorgaan" + +#: actions/ostatusgroup.php:103 +msgid "You are already a member of this group." +msgstr "U bent al lid van deze groep." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:138 +msgid "Already a member!" +msgstr "U bent al lid!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:149 +msgid "Remote group join failed!" +msgstr "Het verlaten van de groep bij een andere dienst is mislukt." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:153 +msgid "Remote group join aborted!" +msgstr "Het lid worden van de groep bij een andere dienst is afgebroken." + +#. TRANS: Page title for OStatus remote group join form +#: actions/ostatusgroup.php:165 +msgid "Confirm joining remote group" +msgstr "Lid worden van groep bij andere dienst" + +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"U kunt abonneren op groepen van andere ondersteunde sites. Plak hieronder de " +"URI van het groepsprofiel:" + +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "De opgegeven groep bestaat niet." + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 +msgid "Can't accept remote posts for a remote group." +msgstr "" +"Berichten van andere diensten voor groepen bij andere diensten worden niet " +"geaccepteerd." + +#. TRANS: Client error. +#: actions/groupsalmon.php:127 +msgid "Can't read profile to set up group membership." +msgstr "Het profiel om lid te worden van een groep kon niet gelezen worden." + +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 +msgid "Groups can't join groups." +msgstr "Groepen kunnen geen lid worden van groepen." + +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "" +"De gebruiker %1$s van een andere dienst kon niet lid worden van de groep %2" +"$s." + +#: actions/groupsalmon.php:171 +msgid "Can't read profile to cancel group membership." +msgstr "" +"Het profiel om groepslidmaatschap te annuleren kon niet gelezen worden." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "" +"Het was niet mogelijk gebruiker %1$s van een andere dienst uit de groep %2$s " +"te verwijderen." + +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 +msgid "Subscribe to" +msgstr "Abonneren op" + +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname" +msgstr "" + +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Lid worden van deze groep" + +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bevestigen" + +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 +msgid "Subscribe to this user" +msgstr "Abonneren op deze gebruiker" + +#: actions/ostatussub.php:136 +msgid "You are already subscribed to this user." +msgstr "U bent al geabonneerd op deze gebruiker." + +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "Foto" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "Gebruikersnaam" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "Locatie" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "URL" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "Opmerking" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"Dat adres is helaas niet te bereiken. Zorg dat het OStatusadres de voor heft " +"van gebruiker@example.com of http://example.net/gebruiker." + +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:315 +msgid "Already subscribed!" +msgstr "U bent al gebonneerd!" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:320 +msgid "Remote subscription failed!" +msgstr "" + +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +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: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +msgid "Subscribe to user" +msgstr "Abonneren op gebruiker" + +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "Bevestigen" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"U kunt abonneren op gebruikers van andere ondersteunde sites. Plak hun adres " +"of profiel-URI hieronder:" + +#. TRANS: Client error. +#: actions/ostatusinit.php:41 +msgid "You can use the local subscription!" +msgstr "U kunt het lokale abonnement gebruiken!" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 +#, php-format +msgid "Join group %s" +msgstr "Lid worden van de groep %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "Toetreden" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 +#, php-format +msgid "Subscribe to %s" +msgstr "Abonneren op %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Abonneren" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 +msgid "User nickname" +msgstr "Gebruikersnaam" + +#: actions/ostatusinit.php:118 +msgid "Nickname of the user you want to follow." +msgstr "Gebruikersnaam van de gebruiker waarop u wilt abonneren." + +#. TRANS: Field label. +#: actions/ostatusinit.php:123 +msgid "Profile Account" +msgstr "Gebruikersprofiel" + +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 +msgid "Your account id (e.g. user@identi.ca)." +msgstr "Uw gebruikers-ID (bv. gebruiker@identi.ca)." + +#. TRANS: Client error. +#: actions/ostatusinit.php:147 +msgid "Must provide a remote profile." +msgstr "Er moet een profiel bij een andere dienst opgegeven worden." + +#. TRANS: Client error. +#: actions/ostatusinit.php:159 +msgid "Couldn't look up OStatus account profile." +msgstr "Het was niet mogelijk het OStatusgebruikersprofiel te vinden." + +#. TRANS: Client error. +#: actions/ostatusinit.php:172 +msgid "Couldn't confirm remote profile address." +msgstr "" +"Het was niet mogelijk het profieladres bij de andere dienst te bevestigen." + +#. TRANS: Page title. +#: actions/ostatusinit.php:217 +msgid "OStatus Connect" +msgstr "" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "" + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "" + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "" + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..0169259617 --- /dev/null +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -0,0 +1,781 @@ +# Translation of StatusNet - OStatus to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-55 00::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Link description for link to subscribe to a remote user. +#. TRANS: Link text for a user to subscribe to an OStatus user. +#: OStatusPlugin.php:227 OStatusPlugin.php:937 +msgid "Subscribe" +msgstr "Підписатись" + +#. TRANS: Link description for link to join a remote group. +#: OStatusPlugin.php:246 OStatusPlugin.php:655 actions/ostatussub.php:107 +msgid "Join" +msgstr "Приєднатися" + +#. TRANSLATE: %s is a domain. +#: OStatusPlugin.php:459 +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Надіслано з %s через OStatus" + +#. TRANS: Exception. +#: OStatusPlugin.php:531 +msgid "Could not set up remote subscription." +msgstr "Не вдалося створити віддалену підписку." + +#: OStatusPlugin.php:605 +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:608 +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s припинив читати Ваші дописи %2$s." + +#: OStatusPlugin.php:636 +msgid "Could not set up remote group membership." +msgstr "Не вдалося приєднатися до віддаленої групи." + +#. TRANS: Exception. +#: OStatusPlugin.php:667 +msgid "Failed joining remote group." +msgstr "Помилка приєднання до віддаленої групи." + +#: OStatusPlugin.php:707 +msgid "Leave" +msgstr "Залишити" + +#: OStatusPlugin.php:785 +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:788 +#, php-format +msgid "%1$s marked notice %2$s as no longer a favorite." +msgstr "%1$s позначив допис %2$s, як такий, що більше не є обраним." + +#. TRANS: Link text for link to remote subscribe. +#: OStatusPlugin.php:864 +msgid "Remote" +msgstr "Віддалено" + +#. TRANS: Title for activity. +#: OStatusPlugin.php:904 +msgid "Profile update" +msgstr "Оновлення профілю" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#: OStatusPlugin.php:907 +#, php-format +msgid "%s has updated their profile page." +msgstr "%s оновив сторінку свого профілю." + +#. TRANS: Plugin description. +#: OStatusPlugin.php:952 +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Слідкуйте за дописами людей з інших мереж, що підтримують протокол OStatus." + +#: classes/FeedSub.php:248 +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" +"Спроба підписатися за допомогою PuSH до веб-стрічки, котра не має вузла." + +#: classes/FeedSub.php:278 +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"Спроба скасувати підписку за допомогою PuSH до веб-стрічки, котра не має " +"вузла." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:188 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." +msgstr "" +"Невірний стан параметру ostatus_profile: як групові, так і персональні " +"ідентифікатори встановлено для %s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:191 +#, php-format +msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." +msgstr "" +"Невірний стан параметру ostatus_profile: як групові, так і персональні " +"ідентифікатори порожні для %s." + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#: classes/Ostatus_profile.php:281 +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "До %1$s передано невірний об’єкт: %2$s." + +#. TRANS: Server exception. +#: classes/Ostatus_profile.php:374 +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"До параметру Ostatus_profile::notify передано невірний тип. Це має бути або " +"рядок у форматі XML, або запис активності." + +#: classes/Ostatus_profile.php:404 +msgid "Unknown feed format." +msgstr "Невідомий формат веб-стрічки." + +#: classes/Ostatus_profile.php:427 +msgid "RSS feed without a channel." +msgstr "RSS-стрічка не має каналу." + +#. TRANS: Client exception. +#: classes/Ostatus_profile.php:472 +msgid "Can't handle that kind of post." +msgstr "Не вдається обробити такий тип допису." + +#. TRANS: Client exception. %s is a source URL. +#: classes/Ostatus_profile.php:555 +#, php-format +msgid "No content for notice %s." +msgstr "Допис %s не має змісту." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. +#: classes/Ostatus_profile.php:588 +msgid "Show more" +msgstr "Дивитись далі" + +#. TRANS: Exception. %s is a profile URL. +#: classes/Ostatus_profile.php:781 +#, php-format +msgid "Could not reach profile page %s." +msgstr "Не вдалося досягти сторінки профілю %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:839 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Не вдалося знайти URL веб-стрічки для сторінки профілю %s." + +#: classes/Ostatus_profile.php:976 +msgid "Can't find enough profile information to make a feed." +msgstr "" +"Не можу знайти достатньо інформації про профіль, аби сформувати веб-стрічку." + +#: classes/Ostatus_profile.php:1035 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Невірна URL-адреса аватари %s." + +#: classes/Ostatus_profile.php:1045 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Намагаюся оновити аватару для не збереженого віддаленого профілю %s." + +#: classes/Ostatus_profile.php:1053 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Неможливо завантажити аватару з %s." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1275 +msgid "Local user can't be referenced as remote." +msgstr "Місцевий користувач не може бути зазначеним у якості віддаленого." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1280 +msgid "Local group can't be referenced as remote." +msgstr "Місцева група не може бути зазначена у якості віддаленої." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 +msgid "Can't save local profile." +msgstr "Не вдається зберегти місцевий профіль." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1351 +msgid "Can't save OStatus profile." +msgstr "Не вдається зберегти профіль OStatus." + +#. TRANS: Exception. +#: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 +msgid "Not a valid webfinger address." +msgstr "Це недійсна адреса для протоколу WebFinger." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1720 +#, php-format +msgid "Couldn't save profile for \"%s\"." +msgstr "Не можу зберегти профіль для «%s»." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1739 +#, php-format +msgid "Couldn't save ostatus_profile for \"%s\"." +msgstr "Не можу зберегти профіль OStatus для «%s»." + +#. TRANS: Exception. %s is a webfinger address. +#: classes/Ostatus_profile.php:1747 +#, php-format +msgid "Couldn't find a valid profile for \"%s\"." +msgstr "не можу знайти відповідний й профіль для «%s»." + +#: classes/Ostatus_profile.php:1789 +msgid "Could not store HTML content of long post as file." +msgstr "Не можу зберегти HTML місткого допису у якості файлу." + +#. TRANS: Client exception. %s is a HTTP status code. +#: classes/HubSub.php:208 +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "Перевірка вузла підписки завершилася зі статусом HTTP %s." + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#: classes/HubSub.php:355 +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "Зворотній виклик повернуто зі статусом: %1$s. Зміст: %2$s" + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: lib/salmonaction.php:42 +msgid "This method requires a POST." +msgstr "Цей метод вимагає команди POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml" +#: lib/salmonaction.php:47 +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "Протокол Salmon вимагає \"application/magic-envelope+xml\"." + +#. TRANS: Client error. +#: lib/salmonaction.php:57 +msgid "Salmon signature verification failed." +msgstr "Перевірка підпису протоколу Salmon не вдалася." + +#. TRANS: Client error. +#: lib/salmonaction.php:69 +msgid "Salmon post must be an Atom entry." +msgstr "Дописи за протоколом Salmon мають бути у форматі Atom." + +#. TRANS: Client exception. +#: lib/salmonaction.php:118 +msgid "Unrecognized activity type." +msgstr "Невідомий тип діяльності." + +#. TRANS: Client exception. +#: lib/salmonaction.php:127 +msgid "This target doesn't understand posts." +msgstr "Ціль не розуміє, що таке «дописи»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:133 +msgid "This target doesn't understand follows." +msgstr "Ціль не розуміє, що таке «слідувати»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:139 +msgid "This target doesn't understand unfollows." +msgstr "Ціль не розуміє, що таке «не слідувати»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:145 +msgid "This target doesn't understand favorites." +msgstr "Ціль не розуміє, що таке «додати до обраних»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:151 +msgid "This target doesn't understand unfavorites." +msgstr "Ціль не розуміє, що таке «вилучити з обраних»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:157 +msgid "This target doesn't understand share events." +msgstr "Ціль не розуміє, що таке «поділитися подією»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:163 +msgid "This target doesn't understand joins." +msgstr "Ціль не розуміє, що таке «приєднатися»." + +#. TRANS: Client exception. +#: lib/salmonaction.php:169 +msgid "This target doesn't understand leave events." +msgstr "Ціль не розуміє, що таке «залишати подію»." + +#. TRANS: Exception. +#: lib/salmonaction.php:197 +msgid "Received a salmon slap from unidentified actor." +msgstr "Отримано ляпаса від невизначеного учасника за протоколом Salmon." + +#. TRANS: Exception. +#: lib/discovery.php:110 +#, php-format +msgid "Unable to find services for %s." +msgstr "Не вдається знайти сервіси для %s." + +#. TRANS: Exception. +#: lib/xrd.php:64 +msgid "Invalid XML." +msgstr "Невірний XML." + +#. TRANS: Exception. +#: lib/xrd.php:69 +msgid "Invalid XML, missing XRD root." +msgstr "Невірний XML, корінь XRD відсутній." + +#. TRANS: Exception. +#: lib/magicenvelope.php:80 +msgid "Unable to locate signer public key." +msgstr "Не вдалося знайти публічного ключа підписанта." + +#. TRANS: Exception. +#: lib/salmon.php:93 +msgid "Salmon invalid actor for signing." +msgstr "Недійсний учасник подій за протоколом Salmon для підписання." + +#: tests/gettext-speedtest.php:57 +msgid "Feeds" +msgstr "Веб-стрічки" + +#. TRANS: Client exception. +#: actions/pushhub.php:66 +msgid "Publishing outside feeds not supported." +msgstr "Публікація змісту зовнішніх веб-стрічок не підтримується." + +#. TRANS: Client exception. %s is a mode. +#: actions/pushhub.php:69 +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "Невизначений режим «%s»." + +#. TRANS: Client exception. %s is a topic. +#: actions/pushhub.php:89 +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"hub.topic %s не підтримується. Цей вузол використовується лише тутешніми " +"користувачами та групою веб-стрічок у форматі Atom." + +#. TRANS: Client exception. +#: actions/pushhub.php:95 +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "hub.verify «%s» невірний. Він має бути синхронним або ж асинхронним." + +#. TRANS: Client exception. +#: actions/pushhub.php:101 +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "" +"hub.lease «%s» невірний. Він має бути порожнім або містити ціле позитивне " +"число." + +#. TRANS: Client exception. +#: actions/pushhub.php:109 +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "hub.secret «%s» невірний. 200 байтів — не більше." + +#. TRANS: Client exception. +#: actions/pushhub.php:161 +#, php-format +msgid "Invalid hub.topic \"%s\". User doesn't exist." +msgstr "hub.topic «%s» невірний. Користувача не існує." + +#. TRANS: Client exception. +#: actions/pushhub.php:170 +#, php-format +msgid "Invalid hub.topic \"%s\". Group doesn't exist." +msgstr "hub.topic «%s» невірний. Групи не існує." + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#: actions/pushhub.php:195 +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "Для %1$s передано невірний URL: «%2$s»" + +#: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 +msgid "No such user." +msgstr "Такого користувача немає." + +#. TRANS: Client error. +#: actions/usersalmon.php:37 actions/groupsalmon.php:40 +msgid "No ID." +msgstr "Немає ідентифікатора." + +#. TRANS: Client exception. +#: actions/usersalmon.php:81 +msgid "In reply to unknown notice." +msgstr "У відповідь на невідомий допис." + +#. TRANS: Client exception. +#: actions/usersalmon.php:86 +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "" +"У відповідь на допис іншого користувача, а даний користувач у ньому навіть " +"не згадується." + +#. TRANS: Client exception. +#: actions/usersalmon.php:163 +msgid "Could not save new favorite." +msgstr "Не вдалося зберегти як новий обраний допис." + +#. TRANS: Client exception. +#: actions/usersalmon.php:195 +msgid "Can't favorite/unfavorite without an object." +msgstr "" +"Неможливо додати до обраних або видалити зі списку обраних, якщо немає " +"об’єкта." + +#. TRANS: Client exception. +#: actions/usersalmon.php:207 +msgid "Can't handle that kind of object for liking/faving." +msgstr "" +"Не вдається обробити подібний об’єкт для додавання його до списку обраних." + +#. TRANS: Client exception. %s is an object ID. +#: actions/usersalmon.php:214 +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Допис з ідентифікатором %s є невідомим." + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#: actions/usersalmon.php:219 +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "Допис з ідентифікатором %1$s було надіслано не %2$s." + +#. TRANS: Field label. +#: actions/ostatusgroup.php:76 +msgid "Join group" +msgstr "Приєднатися до групи" + +#. TRANS: Tooltip for field label "Join group". +#: actions/ostatusgroup.php:79 +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "" +"Адреса групи згідно протоколу OStatus, наприклад http://example.net/group/" +"nickname." + +#. TRANS: Button text. +#: actions/ostatusgroup.php:84 actions/ostatussub.php:73 +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продовжити" + +#: actions/ostatusgroup.php:103 +msgid "You are already a member of this group." +msgstr "Ви вже є учасником цієї групи." + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:138 +msgid "Already a member!" +msgstr "Ви вже учасник!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:149 +msgid "Remote group join failed!" +msgstr "Приєднатися до віддаленої групи не вдалося!" + +#. TRANS: OStatus remote group subscription dialog error. +#: actions/ostatusgroup.php:153 +msgid "Remote group join aborted!" +msgstr "Приєднання до віддаленої групи перервано!" + +#. TRANS: Page title for OStatus remote group join form +#: actions/ostatusgroup.php:165 +msgid "Confirm joining remote group" +msgstr "Підтвердження приєднання до віддаленої групи" + +#. TRANS: Instructions. +#: actions/ostatusgroup.php:176 +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Ви маєте можливість приєднатися до груп на аналогічних сайтах. Просто " +"вставте URI профілю групи тут:" + +#. TRANS: Client error. +#: actions/groupsalmon.php:47 +msgid "No such group." +msgstr "Такої групи немає." + +#. TRANS: Client error. +#: actions/groupsalmon.php:53 +msgid "Can't accept remote posts for a remote group." +msgstr "Не можу узгодити віддалену пересилку дописів до віддаленої групи." + +#. TRANS: Client error. +#: actions/groupsalmon.php:127 +msgid "Can't read profile to set up group membership." +msgstr "Не можу прочитати профіль, аби встановити членство у групі." + +#. TRANS: Client error. +#: actions/groupsalmon.php:131 actions/groupsalmon.php:174 +msgid "Groups can't join groups." +msgstr "Групи ніяк не можуть приєднуватися до груп." + +#: actions/groupsalmon.php:144 +msgid "You have been blocked from that group by the admin." +msgstr "Адміністратор групи заблокував Ваш профіль." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:159 +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "Віддаленому користувачеві %1$s не вдалося приєднатися до групи %2$s." + +#: actions/groupsalmon.php:171 +msgid "Can't read profile to cancel group membership." +msgstr "" +"Не вдається прочитати профіль користувача, щоб скасувати його членство в " +"групі." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#: actions/groupsalmon.php:188 +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "Не вдалось видалити віддаленого користувача %1$s з групи %2$s." + +#. TRANS: Field label for a field that takes an OStatus user address. +#: actions/ostatussub.php:66 +msgid "Subscribe to" +msgstr "Підписатися" + +#. TRANS: Tooltip for field label "Subscribe to". +#: actions/ostatussub.php:69 +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname" +msgstr "" +"Адреса користувача згідно протоколу OStatus, щось на зразок nickname@example." +"com або http://example.net/nickname" + +#. TRANS: Button text. +#. TRANS: Tooltip for button "Join". +#: actions/ostatussub.php:110 +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Приєднатися до групи" + +#. TRANS: Button text. +#: actions/ostatussub.php:113 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Підтвердити" + +#. TRANS: Tooltip for button "Confirm". +#: actions/ostatussub.php:115 +msgid "Subscribe to this user" +msgstr "Підписатись до цього користувача" + +#: actions/ostatussub.php:136 +msgid "You are already subscribed to this user." +msgstr "Ви вже підписані до цього користувача." + +#: actions/ostatussub.php:165 +msgid "Photo" +msgstr "Фото" + +#: actions/ostatussub.php:176 +msgid "Nickname" +msgstr "Псевдонім" + +#: actions/ostatussub.php:197 +msgid "Location" +msgstr "Розташування" + +#: actions/ostatussub.php:206 +msgid "URL" +msgstr "URL-адреса" + +#: actions/ostatussub.php:218 +msgid "Note" +msgstr "Примітка" + +#. TRANS: Error text. +#: actions/ostatussub.php:254 actions/ostatussub.php:261 +#: actions/ostatussub.php:286 +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"Вибачайте, але ми в змозі розшукати дану адресу. Будь ласка, переконайтеся, " +"що адресу зазначено згідно правил протоколу OStatus, щось на зразок " +"nickname@example.com або ж http://example.net/nickname." + +#. TRANS: Error text. +#: actions/ostatussub.php:265 actions/ostatussub.php:269 +#: actions/ostatussub.php:273 actions/ostatussub.php:277 +#: actions/ostatussub.php:281 +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" +"Вибачайте, але ми не в змозі досягти цієї веб-стрічки. Будь ласка, спробуйте " +"дану адресу ще раз пізніше." + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:315 +msgid "Already subscribed!" +msgstr "Вже підписаний!" + +#. TRANS: OStatus remote subscription dialog error. +#: actions/ostatussub.php:320 +msgid "Remote subscription failed!" +msgstr "Підписатися віддалено не вдалося!" + +#: actions/ostatussub.php:367 actions/ostatusinit.php:63 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#. TRANS: Form title. +#: actions/ostatussub.php:395 actions/ostatusinit.php:82 +msgid "Subscribe to user" +msgstr "Підписатися до користувача" + +#. TRANS: Page title for OStatus remote subscription form +#: actions/ostatussub.php:415 +msgid "Confirm" +msgstr "Підтвердити" + +#. TRANS: Instructions. +#: actions/ostatussub.php:427 +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"Ви маєте можливість підписуватись до користувачів на аналогічних сайтах. " +"Просто вставте їхні адреси або URI профілів тут:" + +#. TRANS: Client error. +#: actions/ostatusinit.php:41 +msgid "You can use the local subscription!" +msgstr "Ви можете користуватись локальними підписками!" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:97 +#, php-format +msgid "Join group %s" +msgstr "Приєднатися до групи %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:99 +msgctxt "BUTTON" +msgid "Join" +msgstr "Приєднатися" + +#. TRANS: Form legend. +#: actions/ostatusinit.php:102 +#, php-format +msgid "Subscribe to %s" +msgstr "Підписатися до %s" + +#. TRANS: Button text. +#: actions/ostatusinit.php:104 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Підписатись" + +#. TRANS: Field label. +#: actions/ostatusinit.php:117 +msgid "User nickname" +msgstr "Ім’я користувача" + +#: actions/ostatusinit.php:118 +msgid "Nickname of the user you want to follow." +msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." + +#. TRANS: Field label. +#: actions/ostatusinit.php:123 +msgid "Profile Account" +msgstr "Профіль акаунту" + +#. TRANS: Tooltip for field label "Profile Account". +#: actions/ostatusinit.php:125 +msgid "Your account id (e.g. user@identi.ca)." +msgstr "Ідентифікатор Вашого акаунту (щось на зразок user@identi.ca)" + +#. TRANS: Client error. +#: actions/ostatusinit.php:147 +msgid "Must provide a remote profile." +msgstr "Мусите зазначити віддалений профіль." + +#. TRANS: Client error. +#: actions/ostatusinit.php:159 +msgid "Couldn't look up OStatus account profile." +msgstr "Не вдалося знайти профіль акаунту за протоколом OStatus." + +#. TRANS: Client error. +#: actions/ostatusinit.php:172 +msgid "Couldn't confirm remote profile address." +msgstr "Не вдалося підтвердити адресу віддаленого профілю." + +#. TRANS: Page title. +#: actions/ostatusinit.php:217 +msgid "OStatus Connect" +msgstr "З’єднання OStatus" + +#: actions/pushcallback.php:48 +msgid "Empty or invalid feed id." +msgstr "Порожній або недійсний ідентифікатор веб-стрічки." + +#. TRANS: Server exception. %s is a feed ID. +#: actions/pushcallback.php:54 +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "Веб-стрічка за протоколом PuSH має невідомий ідентифікатор %s" + +#. TRANS: Client exception. %s is an invalid feed name. +#: actions/pushcallback.php:93 +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "hub.topic веб-стрічки «%s» неправильний." + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#: actions/pushcallback.php:98 +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "hub.verify_token %1$s для %2$s неправильний." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:105 +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Несподіваний запит підписки для %s." + +#. TRANS: Client exception. %s is an invalid topic. +#: actions/pushcallback.php:110 +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Несподіваний запит щодо скасування підписки для %s." diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..93b5caeff8 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Ouvre les liens externes (p. ex., avec rel=external) dans une nouvelle " +"fenêtre ou un nouvel onglet." diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..6b2bf2bcce --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Aperi ligamines externe (p.ex. con rel=external) in un nove fenestra o " +"scheda." diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..87fad79928 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Отвора надворешни врски (на пр. со rel=external) во нов прозорец или јазиче." diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..1c11f8a6cd --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Åpner eksterne lenker (f.eks. med rel=external) i ett nytt vindu eller en ny " +"fane." diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..3f1c3dbe8d --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Opent externe verwijzingen in een nieuw venster of tabblad (bv. met " +"\"rel=external\")." diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..a9aab443e4 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\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" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Возможность открыть внешние ссылки (например, rel=внешние) в новом окне или " +"вкладке." diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..00c047d9f1 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Nagbubukas ng panlabasa na mga kawing (iyon ay may rel=external) sa isang " +"bagong bintana o panglaylay." diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..145c06bcd4 --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-54 83::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"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" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "Відкривати зовнішні посилання у новому вікні або вкладці." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..7c78051cf1 --- /dev/null +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -0,0 +1,587 @@ +# Translation of StatusNet - OpenID to German (Deutsch) +# Expored from translatewiki.net +# +# Author: Apmon +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "OpenID-Einstellungen" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Füge OpenID hinzu" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Falls Sie eine OpenID zu Ihrem Konto hinzufügen wollen, tragen Sie sie in " +"dem nachfolgenden Feld ein und klicken Sie auf \"Hinzufügen\"" + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "OpenID URL" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Hinzufügen" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Entfernen der OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Das Entfernen der einzigen OpenID würde das einloggen unmöglich machen! " +"Falls Sie sie entfernen müssen, fügen Sie zuerst eine andere hinzu." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Sie können eine OpenID aus Ihrem Konto entfernen, indem Sie auf den Button " +"\"Entfernen\" klicken." + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Entfernen" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"Den folgenden Seiten ist es erlaubt Ihre Identität abzufragen und Sie damit " +"anzumelden. Sie können eine Website aus dieser Liste entfernen um ihr den " +"Zugriff auf Ihre OpenID zu verweigern." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Es gab ein Problem mit Ihrem Sitzungstoken. Bitte versuchen Sie es erneut." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Kann keine neuen Provider hinzufügen" + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "Etwas Seltsames ist passiert." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Keine solche OpenID trustroot." + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "Trustroots entfernt" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Keine solche OpenID." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Die OpenID gehört Ihnen nicht." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "OpenID entfernt." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "Ungültige Provider-URL. Maximale Länge beträgt 255 Zeichen." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "Ungültiger Teamnamen. Maximale Länge beträgt 255 Zeichen." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Vertrauenswürdiger Provider" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "" + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Keine gültige OpenID." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "" + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "" + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "" + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Anmelden" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Helfen Sie mir!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Hilfe" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Suche" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Anmelden oder Registrieren per OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Hinzufügen oder Entfernen von OpenIDs" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Benutzen Sie eine OpenID um sich auf der " +"Seite anzumelden." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "" + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Bereits angemeldet." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "" + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Neues Benutzerkonto erstellen" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "" + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Erstellen" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Passwort" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "" + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "" + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "" + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "" + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "" + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "" + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "" + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "" + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "" + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "" + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Geben Sie Ihren Benutzernamen ein." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "Ihre OpenID URL" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Anmeldedaten merken" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Anmelden" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Weiter" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Abbrechen" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "" + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Sie haben bereits diese OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "" + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "" + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..5625a52a06 --- /dev/null +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -0,0 +1,631 @@ +# Translation of StatusNet - OpenID to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Paramètres OpenID" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à de nombreux sites " +"avec le même compte utilisateur. Gérez à partir d’ici les identifiants " +"OpenID associés à votre compte ici." + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Ajouter OpenID" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Si vous souhaitez ajouter un compte OpenID à votre compte, entrez-le dans la " +"case ci-dessous et cliquez sur « Ajouter »." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "Adresse URL OpenID" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Ajouter" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Retirer OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Le retrait de votre unique compte OpenID ne vous permettrait plus de vous " +"connecter ! Si vous avez besoin de l’enlever, ajouter d’abord un autre " +"compte OpenID." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Vous pouvez retirer un compte OpenID de votre compte en cliquant le bouton « " +"Retirer »" + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Retirer" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "Sites de confiance OpenID" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"Les sites suivants sont autorisés à accéder à votre identité et à vous " +"connecter. Vous pouvez retirer un site de cette liste pour l’empêcher " +"d’accéder à votre compte OpenID." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Impossible d’ajouter de nouveaux fournisseurs." + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "Quelque chose de bizarre s’est passé." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Racine de confiance OpenID inexistante." + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "Racines de confiance retirées" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Compte OpenID inexistant." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Ce compte OpenID ne vous appartient pas." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "Compte OpenID retiré." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "" +"Adresse URL du fournisseur invalide. La taille maximale est de 255 " +"caractères." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "Nom d’équipe invalide. La taille maximale est de 255 caractères." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Fournisseur de confiance" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Par défaut, les utilisateurs sont autorisés à s’authentifier auprès de " +"n’importe quel fournisseur OpenID. Si vous utilisez votre propre service " +"OpenID pour l’inscription partagée, vous pouvez restreindre l’accès à vos " +"seuls propres utilisateurs ici." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "Adresse URL du fournisseur" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Toutes les connexions OpenID seront envoyées à cette adresse ; les autres " +"fournisseurs ne peuvent être utilisés." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Ajouter un nom d’utilisateur à l’adresse URL de base" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Le formulaire de connexion affichera l’adresse URL de base et demandera un " +"nom d’utilisateur à ajouter à la fin. Utilisez cette option quand l’adresse " +"URL du fournisseur OpenID devrait être la page de profil des utilisateurs " +"individuels." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Équipe exigée" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Autoriser uniquement les connexions des utilisateurs membres de l’équipe " +"donnée (extension Launchpad)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Options" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Activer le mode OpenID seul" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Exiger que tous les utilisateurs se connectent via OpenID. AVERTISSEMENT : " +"cela désactive l’authentification par mot de passe pour tous les " +"utilisateurs !" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "Sauvegarder les paramètres OpenID" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Impossible d’instancier l’objet client OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Ce n’est pas un identifiant OpenID valide." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "Échec d’OpenID : %s" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Impossible de rediriger vers le serveur : %s" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ce formulaire devrait se soumettre automatiquement lui-même. Si ce n’est pas " +"le cas, cliquez le bouton « Soumettre » en bas pour aller vers la page de " +"votre fournisseur OpenID." + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "Erreur lors de la sauvegarde du profil." + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "Erreur lors de la sauvegarde de l’utilisateur." + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "Adresse URL non autorisée utilisée pour la connexion OpenID." + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "Soumission de la connexion OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "Demande d’autorisation auprès de votre fournisseur de connexion..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Si vous n’êtes pas redirigé vers votre fournisseur de connexion dans " +"quelques secondes, essayez en cliquant le bouton ci-dessous." + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Connexion au site" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Connexion" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Aidez-moi !" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Aide" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Rechercher des personnes ou du texte" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Rechercher" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Se connecter ou s’inscrire avec OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Ajouter ou retirer des identifiants OpenID" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "Configuration d’OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Utiliser OpenID pour se connecter au site." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "Vous n’êtes pas autorisé à utiliser l’identité « %s »." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "Juste un fournisseur OpenID. Rien à voir ici, passez votre chemin..." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Déjà connecté." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Une erreur inconnue s’est produite." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"C’est la première fois que vous êtes connecté à %s via OpenID, il nous faut " +"donc lier votre compte OpenID à un compte local. Vous pouvez soit créer un " +"nouveau compte, soit vous connecter avec votre compte local existant si vous " +"en avez un." + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "Configuration du compte OpenID" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Créer un nouveau compte" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "Créer un nouvel utilisateur avec ce pseudonyme." + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "Nouveau pseudonyme" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Créer" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "Se connecter à un compte existant" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si vous avez déjà un compte ici, connectez-vous avec votre nom d’utilisateur " +"et mot de passe pour l’associer à votre compte OpenID." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "Pseudonyme existant" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Mot de passe" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Connexion" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "Authentification OpenID annulée." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "L’authentification OpenID a échoué : %s" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" +"L’authentification OpenID a été abandonnée : vous n'êtes pas autorisé à vous " +"connecter à ce site." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "Inscription non autorisée." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "Le code d’invitation n’est pas valide." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Les pseudonymes ne peuvent contenir que des lettres minuscules et des " +"chiffres, sans espaces." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "Pseudonyme non autorisé." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "OpenID stocké non trouvé." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "Créer un nouveau compte pour OpenID qui a déjà un utilisateur." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "Nom d’utilisateur ou mot de passe incorrect." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "Erreur de connexion de l’utilisateur à OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez vous reconnecter avec votre [OpenID](%" +"%doc.openid%%) avant de changer toute préférence liée à votre profil." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Connexion avec un compte [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "Connexion OpenID" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "Connexion OpenID" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "Fournisseur OpenID" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Entrez votre nom d’utilisateur." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "Vous serez envoyé sur le site du fournisseur pour l’authentification." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "Votre URL OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Se souvenir de moi" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Me connecter automatiquement à l’avenir ; déconseillé sur les ordinateurs " +"publics ou partagés !" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Connexion" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "Vérification d’identité OpenID" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Cette page ne devrait être atteinte que durant un traitement OpenID, pas " +"directement." + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s a demandé la vérification de votre identité. Veuillez cliquer sur « " +"Continuer » pour vérifier votre identité et connectez-vous sans créer un " +"nouveau mot de passe." + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Continuer" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Annuler" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "Non connecté." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Vous êtes déjà connecté avec cet OpenID !" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Quelqu’un d’autre a déjà cet OpenID." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "Erreur lors de la connexion de l’utilisateur à OpenID." + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "Erreur lors de la mise à jour du profil utilisateur" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..53158ed7c0 --- /dev/null +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -0,0 +1,619 @@ +# Translation of StatusNet - OpenID to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Configuration OpenID" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permitte authenticar te a multe sitos con le mesme " +"conto de usator. Tu pote gerer hic tu OpenIDs associate." + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Adder OpenID" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Si tu vole adder un OpenID a tu conto, entra lo in le quadro hic infra e " +"clicca \"Adder\"." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "URL OpenID" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Adder" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Remover OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Le remotion de tu sol OpenID renderea le apertura de session impossibile! Si " +"tu debe remover lo, adde primo un altere OpenID." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Tu pote remover un OpenID de tu conto per cliccar le button \"Remover\"." + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Remover" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "Sitos OpenID de confidentia" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"Le sequente sitos ha le permission de acceder a tu identitate e de " +"authenticar te. Tu pote remover un sito de iste lista pro negar a illo le " +"accesso a tu OpenID." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +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." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Non pote adder nove fornitores." + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "Qualcosa de bizarre occurreva." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Iste \"trustroot\" de OpenID non existe." + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "\"Trustroots\" removite" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Iste OpenID non existe." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Iste OpenID non appertine a te." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "OpenID removite." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "URL de fornitor invalide. Longitude maximal es 255 characteres." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "Nomine de equipa invalide. Longitude maximal es 255 characteres." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Fornitor de confidentia" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Per predefinition, le usatores ha le permission de authenitcar se con omne " +"fornitor de OpenID. Si tu usa tu proprie servicio OpenID pro le " +"authentication in commun, tu pote hic restringer le accesso a solmente tu " +"proprie usatores." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "URL del fornitor" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Tote le authenticationes de OpenID essera inviate a iste URL; altere " +"fornitores non pote esser usate." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Adjunger un nomine de usator al URL de base" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Le formulario de authentication monstrara le URL de base e demandara un " +"nomine de usator a adder al fin. Usa isto si le URL de un fornitor de OpenID " +"debe esser le pagina de profilo pro usatores individual." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Equipa requirite" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Permitter solmente le apertura de session ab usatores in le equipa " +"specificate (extension de Launchpad)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Optiones" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Activar modo OpenID sol" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Requirer que tote le usatores aperi session via OpenID. ATTENTION: isto " +"disactiva le authentication per contrasigno pro tote le usatores!" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "Salveguardar configurationes de OpenID" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Non pote instantiar un objecto de consumitor OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Non es un OpenID valide." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "Fallimento de OpenID: %s" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Non poteva rediriger al servitor: %s" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Iste formulario deberea submitter se automaticamente. Si non, clicca super " +"le button Submitter pro vader a tu fornitor de OpenID." + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "Error durante le salveguarda del profilo." + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "Error durante le salveguarda del usator." + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "" +"Un URL non autorisate ha essite usate pro le authentication via OpenID." + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "Apertura de session via OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "Requesta autorisation de tu fornitor de authentication..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Si tu non es redirigite a tu fornitor de authentication post pauc secundas, " +"tenta pulsar le button hic infra." + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Authenticar te a iste sito" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Aperir session" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Adjuta me!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Adjuta" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Cercar personas o texto" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Cercar" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Aperir session o crear conto via OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Adder o remover OpenIDs" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "Configuration de OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Usar OpenID pro aperir session al sito." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "Tu non es autorisate a usar le identitate %s." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" +"Solmente un fornitor de OpenID. Nihil a vider hic, per favor continua..." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Tu es jam authenticate." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "Tu non pote crear un conto si tu non accepta le licentia." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Un error incognite ha occurrite." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe " +"connecter tu OpenID a un conto local. Tu pote crear un nove conto, o " +"connecter con tu conto existente, si tu ha un." + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "Configuration de conto OpenID" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Crear nove conto" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "Crear un nove usator con iste pseudonymo." + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "Nove pseudonymo" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 minusculas o numeros, sin punctuation o spatios" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "Connecter conto existente" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si tu ha jam un conto, aperi session con tu nomine de usator e contrasigno " +"pro connecter lo a tu OpenID." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "Pseudonymo existente" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Contrasigno" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Connecter" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "Authentication OpenID cancellate." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "Le authentication OpenID ha fallite: %s" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" +"Authentication OpenID abortate: tu non ha le permission de aperir session in " +"iste sito." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "Creation de conto non permittite." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "Le codice de invitation es invalide." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "Pseudonymo non permittite." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonymo ja in uso. Proba un altere." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "Le OpenID immagazinate non esseva trovate." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "Tentativa de crear un nove conto pro un OpenID que ha jam un usator." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "Nomine de usator o contrasigno invalide." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "Error durante le connexion del usator a OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Pro motivos de securitate, per favor re-aperi session con tu [OpenID](%%doc." +"openid%%) ante de cambiar tu configurationes." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Aperir session con un conto [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "Apertura de session via OpenID" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "Apertura de session via OpenID" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "Fornitor de OpenID" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Entra tu nomine de usator." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "Tu essera inviate al sito del fornitor pro authentication." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "Tu URL de OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Memorar me" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Aperir session automaticamente in le futuro; non pro computatores usate in " +"commun!" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Aperir session" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "Verification de identitate via OpenID" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Iste pagina debe esser attingite solmente durante le tractamento de un " +"OpenID, non directemente." + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s ha demandate de verificar tu identitate. Clicca super Continuar pro " +"verificar tu identitate e aperir session sin crear un nove contrasigno." + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Continuar" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Cancellar" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "Tu non ha aperite un session." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Tu jam ha iste OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Un altere persona jam ha iste OpenID." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "Error durante le connexion del usator." + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "Error durante le actualisation del profilo" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..90bb3fcd28 --- /dev/null +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -0,0 +1,614 @@ +# Translation of StatusNet - OpenID to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Нагодувања за OpenID" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) Ви дава можност да се најавувате на многубројни " +"мреж. места со една иста сметка. Од ова место можете да раководите со Вашите " +"OpenID-ја." + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Додај OpenID" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Доколку не сакате да приложите OpenID кон Вашата сметка, тогаш внесете ја во " +"полето подолу и кликнете на „Додај“." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "URL на OpenID" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Додај" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Отстрани OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Ако го отстраните Вашиот единствен OpenID, тогаш нема да можете да се " +"најавите! Ако треба да го отстраните, тогаш најпрвин додадете друг OpenID." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "Отстранувањето на OpenID од сметката се врши преку копчето „Отстрани“." + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Отстрани" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "Мреж. места од доверба на OpenID" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"Следниве мреж. места имаат дозволен пристап до Вашиот идентитет и дозвола за " +"да Ве најават. Ако сакате некое мрежно место да нема пристап до Вашиот " +"OpenID, тогаш отстранете го од списоков." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Не можам да додадам нови услужители." + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "Се случи нешто чудно." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Нема таков довербен извор (trustroot) за OpenID" + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "Довербените извори (trustroots) се отстранети" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Нема таков OpenID." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Тој OpenID не Ви припаѓа Вам." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "OpenID е отстранет." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "Неважечка URL-адреса за услужителот. Дозволени се највеќе 255 знаци." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "Неважечко екипно име. Дозволени се највеќе 255 знаци." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Услужник од доверба" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Корисниците по основно можат да се потврдат со било кој OpenID-услужник. " +"Доколку користите сопствена OpenID-сужба за заедничка најава, тука можете да " +"им доделите право на пристап само на Вашите корисници." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "URL-адреса на услужникот" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Сите OpenID-најави ќе бидат испратени на следнава URL-адреса. Нема да можат " +"да се користат други услужници." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Приложи корисничко име кон основната URL-адреса" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Образецот за најава ќе ја прикаже основната URL-адреса и ќе Ви побара на " +"крајот да додадете корисничко име. Користете го ова кога URL-адресата на " +"OpenID-услужникот треба да биде профилната страница за поединечни корисници." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Потребна екипа" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Дозволувај само најави на корисници од дадената екипа (додаток „Launchpad“)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Нагодувања" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Вклучи режим „само OpenID“" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Барај од сите корисници да се најават преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова ја " +"оневозможува потврдата на лозинка за сите корисници!" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "Зачувај нагодувања за OpenID" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Не можам да го повикам потрошувачкиот објект за OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Ова не е важечки OpenID." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "OpenID не успеа: %s" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Не можев да пренасочам кон опслужувачот: %s" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Овој образец би требало да се поднесе самиот. Ако тоа не се случи, кликнете " +"на копчето „Поднеси“ за да дојдете до Вашиот OpenID-услужник." + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "Грешка при зачувувањето на профилот." + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "Грешка при зачувувањето на корисникот." + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "Употребена е неовластена URL-адреса за најавата со OpenID." + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "Поднесување на најава со OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "Барам овластување од Вашиот услужител за најава..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Ако не бидете префрлени на Вашиот услужител за најава за неколку секунди, " +"тогаш пристиснете го копчето подолу." + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Најава на мреж. место" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Најава" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Напомош!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Помош" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Пребарување на луѓе или текст" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Пребарај" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Најава или регистрација со OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Додај или отстрани OpenID-ја" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "Поставки за OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "Користете OpenID за најава." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "Не сте овластени да го користите идентитетот %s." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" +"Ова е просто услужник за OpenID. Нема ништо интересно, продолжете понатаму..." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Веќе сте најавени." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Се појави непозната грешка." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Ова е прв пат како се најавувате на %s, па затоа мораме да го поврземе " +"Вашиот OpenID со локална сметка. Можете да создадете нова сметка, или пак да " +"се поврзете со Вашата постоечка сметка (ако ја имате)." + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "Поставување на OpenID-сметка" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Создај нова сметка" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "Создај нов корисник со овој прекар." + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "Нов прекар" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Создај" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "Поврзи постоечка сметка" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"ко веќе имате сметка, најавете се со корисничкото име и лозинката за да ја " +"поврзете со Вашиот OpenID." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "Постоечки прекар" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Лозинка" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Поврзи се" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "Потврдувањето на OpenID е откажано." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "Потврдувањето на OpenID не успеа: %s" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" +"Потврдата за OpenID е откажана: не Ви е дозволено да се најавите на ова " +"мреж. место." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "Регистрацијата не е дозволена." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "Ова не е важечки код за покана." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "Прекарот не е дозволен." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "Прекарот е зафатен. Одберете друг." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "Складираниот OpenID не е пронајден." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "Создавање на сметка за OpenID што веќе има корисник." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "Неважечко корисничко име или лозинка." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "Грешка при поврзувањето на корисникот со OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Пред да ги измените Вашите нагодувања ќе треба повторно да се најавите со " +"Вашиот [OpenID](%%doc.openid%%) од безбедносни причини." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Најава со сметка на [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "OpenID-Најава" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "Најава со OpenID" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "Услужител за OpenID" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Внесете го Вашето корисничко име." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "Ќе бидете префрлени на мреж. место на услужникот за потврда." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "URL-адреса на Вашиот OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Запомни ме" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Отсега врши автоматска најава. Не треба да се користи за јавни сметачи!" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Најава" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "OpenID - потврда на идентитет" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"До оваа страница треба да се доаѓа само во текот на постапката на OpenID, а " +"не директно." + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s побара да го потврдите Вашиот идентитет. Кликнете на „Продолжи“ за да " +"потврдите и да се најавите без да треба да ставате нова лозинка." + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Продолжи" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Откажи" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "Не сте најавени." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Веќе го имате овој OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Некој друг веќе го зафатил ова OpenID." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "Грешка при поврзувањето на корисникот." + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "Грешка при подновувањето на профилот" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 5cda9b129a..6a6310bc5c 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -1,355 +1,570 @@ -# Translation of StatusNet plugin OpenID to Dutch +# Translation of StatusNet - OpenID to Dutch (Nederlands) +# Expored from translatewiki.net # -# Author@translatewiki.net: Siebrand +# Author: McDutchie +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # msgid "" msgstr "" -"Project-Id-Version: StatusNet\n" +"Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-29 23:39+0000\n" -"PO-Revision-Date: 2010-04-30 02:16+0100\n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" "Last-Translator: Siebrand Mazeland \n" -"Language-Team: Dutch\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: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" -#: openidsettings.php:59 +#: openidsettings.php:59 openidadminpanel.php:65 msgid "OpenID settings" msgstr "OpenID-instellingen" #: openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij veel websites met dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Met [OpenID](%%doc.openid%%) kunt u aanmelden bij veel websites met dezelfde " +"gebruiker. U kunt hier uw gekoppelde OpenID's beheren." -#: openidsettings.php:99 +#: openidsettings.php:101 msgid "Add OpenID" msgstr "OpenID toevoegen" -#: openidsettings.php:102 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, voer deze dan hieronder in en klik op \"Toevoegen\"." +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Als u een OpenID aan uw gebruiker wilt toevoegen, voer deze dan hieronder in " +"en klik op \"Toevoegen\"." -#: openidsettings.php:107 -#: openidlogin.php:119 +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 msgid "OpenID URL" msgstr "OpenID-URL" -#: openidsettings.php:117 +#: openidsettings.php:119 msgid "Add" msgstr "Toevoegen" -#: openidsettings.php:129 +#: openidsettings.php:131 msgid "Remove OpenID" msgstr "OpenID verwijderen" -#: openidsettings.php:134 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Door uw enige OpenID te verwijderen zou het niet meer mogelijk zijn om aan te melden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Door uw enige OpenID te verwijderen zou het niet meer mogelijk zijn om aan " +"te melden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." -#: openidsettings.php:149 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop \"Verwijderen\"." +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"U kunt een OpenID van uw gebruiker verwijderen door te klikken op de knop " +"\"Verwijderen\"." -#: openidsettings.php:172 -#: openidsettings.php:213 +#: openidsettings.php:174 openidsettings.php:215 msgid "Remove" msgstr "Verwijderen" -#: openidsettings.php:186 +#: openidsettings.php:188 msgid "OpenID Trusted Sites" msgstr "Vertrouwde OpenID-sites" -#: openidsettings.php:189 -msgid "The following sites are allowed to access your identity and log you in. You can remove a site from this list to deny it access to your OpenID." -msgstr "De volgende sites hebben toegang tot uw indentiteit en kunnen u aanmelden. U kunt een site verwijderen uit deze lijst zodat deze niet langer toegang heeft tot uw OpenID." +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"De volgende sites hebben toegang tot uw indentiteit en kunnen u aanmelden. U " +"kunt een site verwijderen uit deze lijst zodat deze niet langer toegang " +"heeft tot uw OpenID." -#: openidsettings.php:231 -#: finishopenidlogin.php:38 -#: openidlogin.php:39 +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 msgid "There was a problem with your session token. Try again, please." msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw." -#: openidsettings.php:247 -#: finishopenidlogin.php:51 +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Het niet is mogelijk nieuwe providers toe te voegen." + +#: openidsettings.php:253 msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." -#: openidsettings.php:271 +#: openidsettings.php:277 msgid "No such OpenID trustroot." msgstr "Die OpenID trustroot bestaat niet." -#: openidsettings.php:275 +#: openidsettings.php:281 msgid "Trustroots removed" msgstr "De trustroots zijn verwijderd" -#: openidsettings.php:298 +#: openidsettings.php:304 msgid "No such OpenID." msgstr "De OpenID bestaat niet." -#: openidsettings.php:303 +#: openidsettings.php:309 msgid "That OpenID does not belong to you." msgstr "Die OpenID is niet van u." -#: openidsettings.php:307 +#: openidsettings.php:313 msgid "OpenID removed." msgstr "OpenID verwijderd." -#: openid.php:137 +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "De URL voor de provider is ongeldig. De maximale lengte is 255 tekens." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "De teamnaam is ongeldig. De maximale lengte is 255 tekens." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Vertrouwde provider" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Gebruikers is het standaard toegestaan aan te melden via alle OpenID-" +"providers. Als u uw eigen OpenID-dienst gebruikt voor gedeeld aanmelden, dan " +"kunt u hier de toegang beperken tot alleen uw eigen gebruikers." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "URL van provider" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Alle aanmeldpogingen voor OpenID worden naar deze URL gezonden. Andere " +"providers kunnen niet gebruikt worden." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Gebruikersnaam aan basis-URL toevoegen" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Het aanmeldformulier geeft de basis-URL weer en vraag om achteraan een " +"gebruikersnaam toe te voegen. Gebruik deze instelling als de URL van een " +"OpenID-provider de profielpagina van individuele gebruikers moet zijn." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Vereist team" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Alleen leden van een bepaald team toestaan aan te melden (uitbreiding van " +"Launchpad)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Instellingen" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Alleen OpenID inschakelen" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Alle gebruikers verplichten aan te melden via OpenID. Waarschuwing: als deze " +"instelling wordt gebruikt, kan geen enkele gebruiker met een wachtwoord " +"aanmelden." + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "OpenID-instellingen opslaan" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 msgid "Cannot instantiate OpenID consumer object." msgstr "Het was niet mogelijk een OpenID-object aan te maken." -#: openid.php:147 +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 msgid "Not a valid OpenID." msgstr "Geen geldige OpenID." -#: openid.php:149 +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-fout: %s" -#: openid.php:176 +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 #, php-format msgid "Could not redirect to server: %s" msgstr "Het was niet mogelijk door te verwijzen naar de server: %s" -#: openid.php:194 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s" +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Dit formulier hoort zichzelf automatisch op te slaan. Als dat niet gebeurt, " +"klik dan op de knop \"Aanmelden\" om naar uw OpenID-provider te gaan." -#: openid.php:210 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Dit formulier hoort zichzelf automatisch op te slaan. Als dat niet gebeurt, klik dan op de knop \"Aanmelden\" om naar uw OpenID-provider te gaan." - -#: openid.php:242 +#. TRANS: OpenID plugin server error. +#: openid.php:280 msgid "Error saving the profile." msgstr "Fout bij het opslaan van het profiel." -#: openid.php:253 +#. TRANS: OpenID plugin server error. +#: openid.php:292 msgid "Error saving the user." msgstr "Fout bij het opslaan van de gebruiker." -#: openid.php:282 +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 msgid "Unauthorized URL used for OpenID login." msgstr "Ongeautoriseerde URL gebruikt voor aanmelden via OpenID" -#: openid.php:302 -#, fuzzy +#. TRANS: Title +#: openid.php:370 msgid "OpenID Login Submission" msgstr "Aanmelden via OpenID" -#: openid.php:312 +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 msgid "Requesting authorization from your login provider..." msgstr "Bezig met het vragen van autorisatie van uw aanmeldprovider..." -#: openid.php:315 -msgid "If you are not redirected to your login provider in a few seconds, try pushing the button below." -msgstr "Als u binnen een aantal seconden niet wordt doorverwezen naar uw aanmeldprovider, klik dan op de onderstaande knop." +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Als u binnen een aantal seconden niet wordt doorverwezen naar uw " +"aanmeldprovider, klik dan op de onderstaande knop." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:204 +#: OpenIDPlugin.php:221 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Aanmelden bij de site" -#: OpenIDPlugin.php:207 -#, fuzzy +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:212 +#: OpenIDPlugin.php:229 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me" -#: OpenIDPlugin.php:215 +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 msgctxt "MENU" msgid "Help" msgstr "Hulp" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:238 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Zoeken naar mensen of tekst" -#: OpenIDPlugin.php:224 +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 msgctxt "MENU" msgid "Search" msgstr "Zoeken" -#: OpenIDPlugin.php:283 -#: OpenIDPlugin.php:319 +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" msgid "OpenID" msgstr "OpenID" -#: OpenIDPlugin.php:284 +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 msgid "Login or register with OpenID" msgstr "Aanmelden of registreren met OpenID" -#: OpenIDPlugin.php:320 +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 msgid "Add or remove OpenIDs" msgstr "OpenID's toevoegen of verwijderen" -#: OpenIDPlugin.php:595 -msgid "Use OpenID to login to the site." -msgstr "Gebruik OpenID om aan te melden bij de site." +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "OpenID-instellingen" -#: openidserver.php:106 +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Gebruik OpenID om aan te melden bij de " +"site." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 #, php-format msgid "You are not authorized to use the identity %s." msgstr "U mag de identiteit %s niet gebruiken." -#: openidserver.php:126 +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 msgid "Just an OpenID provider. Nothing to see here, move along..." msgstr "Gewoon een OpenID-provider. Niets te zien hier..." -#: finishopenidlogin.php:34 -#: openidlogin.php:30 +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 msgid "Already logged in." msgstr "U bent al aangemeld." -#: finishopenidlogin.php:43 +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 msgid "You can't register if you don't agree to the license." msgstr "U kunt niet registreren als u niet akkoord gaat met de licentie." -#: finishopenidlogin.php:65 -#, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Dit is de eerste keer dat u aameldt bij %s en uw OpenID moet gekoppeld worden aan uw lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of koppelen met uw bestaande gebruiker als u die al hebt." +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Er is een onbekende fout opgetreden." +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. #: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Dit is de eerste keer dat u aameldt bij %s en uw OpenID moet gekoppeld " +"worden aan uw lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of " +"koppelen met uw bestaande gebruiker als u die al hebt." + +#. TRANS: Title +#: finishopenidlogin.php:78 msgid "OpenID Account Setup" msgstr "Instellingen OpenID" -#: finishopenidlogin.php:101 +#: finishopenidlogin.php:108 msgid "Create new account" msgstr "Nieuwe gebruiker aanmaken" -#: finishopenidlogin.php:103 +#: finishopenidlogin.php:110 msgid "Create a new user with this nickname." msgstr "Nieuwe gebruiker met deze naam aanmaken." -#: finishopenidlogin.php:106 +#: finishopenidlogin.php:113 msgid "New nickname" msgstr "Nieuwe gebruiker" -#: finishopenidlogin.php:108 +#: finishopenidlogin.php:115 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" -#: finishopenidlogin.php:130 +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" msgid "Create" msgstr "Aanmaken" -#: finishopenidlogin.php:135 +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 msgid "Connect existing account" msgstr "Koppelen met bestaande gebruiker" -#: finishopenidlogin.php:137 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Als u al een gebruiker hebt, meld u dan aan met uw gebruikersnaam en wachtwoord om de gebruiker te koppelen met uw OpenID." +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Als u al een gebruiker hebt, meld u dan aan met uw gebruikersnaam en " +"wachtwoord om de gebruiker te koppelen met uw OpenID." -#: finishopenidlogin.php:140 +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 msgid "Existing nickname" msgstr "Bestaande gebruiker" -#: finishopenidlogin.php:143 +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 msgid "Password" msgstr "Wachtwoord" -#: finishopenidlogin.php:146 +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" msgid "Connect" msgstr "Koppelen" -#: finishopenidlogin.php:158 -#: finishaddopenid.php:88 +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 msgid "OpenID authentication cancelled." msgstr "De authenticatie via OpenID is afgebroken." -#: finishopenidlogin.php:162 -#: finishaddopenid.php:92 +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" msgstr "De authenticatie via OpenID is mislukt: %s" -#: finishopenidlogin.php:227 -#: finishopenidlogin.php:236 +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" +"Het aanmelden via OpenID is afgebroken. U mag niet aanmelden bij deze site." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 msgid "Registration not allowed." msgstr "Registreren is niet mogelijk." -#: finishopenidlogin.php:243 +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is niet geldig." -#: finishopenidlogin.php:253 +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen spaties bevatten." +msgstr "" +"De gebruikersnaam mag alleen uit kleine letters en cijfers bestaan, en geen " +"spaties bevatten." -#: finishopenidlogin.php:258 +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 msgid "Nickname not allowed." msgstr "Deze gebruikersnaam is niet toegestaan." -#: finishopenidlogin.php:263 +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 msgid "Nickname already in use. Try another one." msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere." -#: finishopenidlogin.php:270 -#: finishopenidlogin.php:350 +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 msgid "Stored OpenID not found." msgstr "Het opgeslagen OpenID is niet aangetroffen." -#: finishopenidlogin.php:279 +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 msgid "Creating new account for OpenID that already has a user." -msgstr "Bezig met het aanmaken van een gebruiker voor OpenID die al een gebruiker heeft." +msgstr "Poging tot aanmaken van een OpenID-account dat al een gebruiker heeft." -#: finishopenidlogin.php:339 +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." -#: finishopenidlogin.php:357 +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 msgid "Error connecting user to OpenID." msgstr "Fout bij het koppelen met OpenID." -#: openidlogin.php:68 +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 #, php-format -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Om veiligheidsreden moet u opnieuw aanmelden met uw [OpenID](%%doc.openid%%) voordat u uw instellingen kunt wijzigen." +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Om veiligheidsreden moet u opnieuw aanmelden met uw [OpenID](%%doc.openid%%) " +"voordat u uw instellingen kunt wijzigen." -#: openidlogin.php:72 +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker." -#: openidlogin.php:97 -#: finishaddopenid.php:170 +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 msgid "OpenID Login" msgstr "Aanmelden via OpenID" -#: openidlogin.php:114 +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 msgid "OpenID login" msgstr "Aanmelden via OpenID" -#: openidlogin.php:121 +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "OpenID-provider" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Voer uw gebruikersnaam in" + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "U wordt naar de site van de provider omgeleid om aan te melden." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 msgid "Your OpenID URL" msgstr "Uw OpenID-URL" -#: openidlogin.php:124 +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 msgid "Remember me" msgstr "Aanmeldgegevens onthouden" -#: openidlogin.php:125 +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 msgid "Automatically login in the future; not for shared computers!" -msgstr "In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!" +msgstr "" +"In het vervolg automatisch aanmelden. Niet gebruiken op gedeelde computers!" -#: openidlogin.php:129 +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" msgid "Login" msgstr "Aanmelden" @@ -358,13 +573,21 @@ msgid "OpenID Identity Verification" msgstr "OpenID-identiteitscontrole" #: openidtrust.php:69 -msgid "This page should only be reached during OpenID processing, not directly." -msgstr "Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een OpenID, en niet direct." +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Deze pagina hoort alleen bezocht te worden tijdens het verwerken van een " +"OpenID, en niet direct." #: openidtrust.php:117 #, php-format -msgid "%s has asked to verify your identity. Click Continue to verify your identity and login without creating a new password." -msgstr "%s heeft gevraagd uw identiteit te bevestigen. Klik op \"Doorgaan\" om uw indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven invoeren." +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s heeft gevraagd uw identiteit te bevestigen. Klik op \"Doorgaan\" om uw " +"indentiteit te controleren en aan te melden zonder een wachtwoord te hoeven " +"invoeren." #: openidtrust.php:135 msgid "Continue" @@ -374,22 +597,27 @@ msgstr "Doorgaan" msgid "Cancel" msgstr "Annuleren" -#: finishaddopenid.php:67 +#. TRANS: Client error message +#: finishaddopenid.php:68 msgid "Not logged in." msgstr "Niet aangemeld." -#: finishaddopenid.php:112 +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 msgid "You already have this OpenID!" msgstr "U hebt deze OpenID al!" -#: finishaddopenid.php:114 +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 msgid "Someone else already has this OpenID." msgstr "Iemand anders gebruikt deze OpenID al." -#: finishaddopenid.php:126 +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 msgid "Error connecting user." msgstr "Fout bij het verbinden met de gebruiker." -#: finishaddopenid.php:131 +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 msgid "Error updating profile" msgstr "Fout bij het bijwerken van het profiel." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..b569ce432c --- /dev/null +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -0,0 +1,633 @@ +# Translation of StatusNet - OpenID to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Mga katakdaan ng OpenID" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Nagpapahintulot ang [OpenID](%%doc.openid%%) na makalagda ka sa maraming mga " +"sityong may katulad na akawnt ng tagagamit. Pamahalaan ang iyong kaugnay na " +"mga OpenID mula rito." + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Idagdag ang OpenID" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Kung nais mong magdagdag ng isang OpenID sa akawnt mo, ipasok ito sa kahong " +"nasa ibaba at pindutin ang \"Idagdag\"." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "URL ng OpenID" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Idagdag" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Tanggalin ang OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Ang pagtatanggal ng iyong OpenID lamang ay makasasanhi ng imposibleng " +"paglagda! Kung kailangan mong tanggalin ito, magdagdag ng ibang OpenID muna." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Matatanggap mo ang isang OpenID mula sa akawnt mo sa pamamagitan ng " +"pagpindot sa pindutang may tatak na \"Tanggalin\"." + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Tanggalin" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "Pinagkakatiwalaang mga Sityo ng OpenID" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"Ang sumusunod na mga sityo ay pinapahintulutang makapunta sa iyong katauhan " +"at makalagda kang papasok. Matatanggal mo ang isang sityo mula sa talaang " +"ito upang tanggihan ang pagpunta nito sa iyong OpenID." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +msgid "There was a problem with your session token. Try again, please." +msgstr "May suliranin sa iyong token na pangsesyon. Paki subukan uli." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Hindi makapagdaragdag ng bagong mga tagapagbigay." + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "May nangyaring kakaiba." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Walng ganyang pinagkakatiwalaang ugat ng OpenID." + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "Tinanggal ang mga pinagkakatiwalaang ugat" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Walang ganyang OpenID." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Hindi mo pag-aari ang OpenID na iyan." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "Tinanggal ang OpenID." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "" +"Hindi tanggap na URL ng tagapagbigay. Ang pinakamataas na haba ay 255 mga " +"panitik." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "" +"Hindi tanggap ng pangalan ng pangkat. Pinakamataas na haba ay 255 mga " +"panitik." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Pinagkakatiwalaang tagapagbigay" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Bilang likas na pagtatakda, ang mga tagagamit ay hindi pinapahintulutang " +"magpatunay sa pamamagitan ng anumang tagapagbigay ng OpenID. Kung ginagamit " +"mo ang sarili mong palingkuran ng OpenID para sa pinagsasaluhang paglagdang " +"papasok, malilimitahan mo ang pagpunta sa iyong mga tagagamit lamang dito." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "URL ng tagapagbigay" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Ang lahat ng mga paglalagda sa OpenID ay ipapadala sa URL na ito; hindi " +"maaaring gamitin ang ibang mga tagapagbigay." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Ikabit ang isang pangalan ng tagagamit sa punong URL" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Ang pormularyo ng paglagda ay magpapakita ng batayang URL at gagawa ng isang " +"pangalan ng tagagamit na idaragdag sa huli. Gamitin kapag ang URL ng " +"tagapagbigay ng OpenID ay ang dapat na maging pahina ng balangkas para sa " +"indibiduwal na mga tagagamit." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Kailangang pangkat" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Payagan lamang ang mga paglagda mula sa mga tagagamit na nasa loob ng " +"ibinigay na pangkat (karugtong ng Launchpad)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Mga pagpipilian" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Paganahin ang gawi na OpenID lamang" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Igiit sa lahat ng mga tagagamit na lumagda sa pamamagitan ng OpenID. " +"BABALA: hindi pinagagana ang pagpapatunay ng hudyat para sa lahat ng mga " +"tagagamit!" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "Sagipin ang mga katakdaan ng OpenID" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Hindi mapanimulan ang bagay na pangtagapagtangkilik ng OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Hindi isang tanggap na OpenID." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "Kabiguan ng OpenID: %s" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Hindi mabago upang papuntahin sa tagapaghain: %s" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ang pormularyong ito ay dapat na kusang magpapasa ng kanyang sarili. Kung " +"hindi, pindutin ang pindutang pampasa upang pumunta sa iyong tagapagbigay ng " +"OpenID." + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "Kamalian sa pagsagip ng balangkas." + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "Kamalian sa pagsagip ng tagagamit." + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "Hindi pinahintulutang URL na ginamit para sa paglagda ng OpenID." + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "Pagpapasa ng Paglagda ng OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "" +"Humihiling ng pahintulot mula sa iyong tagapagbigay ng paglagdang papasok..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Kapag hindi ka itinurong papunta sa iyong tagapagbigay ng paglagda sa loob " +"ng ilang mga segundo, subukang pindutin ang pindutang nasa ibaba." + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Lumagda sa sityo" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Lumagda" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Saklolohan ako!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Saklolo" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Maghanap ng mga tao o teksto" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Maghanap" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Lumagda o magpatala na may OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Idagdag o alisin ang mga OpenID" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "Pagkakaayos ng OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Gamitin ang OpenID upang lumagda sa sityo." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "Wala kang pahintulot na gamitin ang katauhang %s." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" +"Isa lamang na tagapagbigay ng OpenID. Walang makikita rito, magpatuloy..." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Nakalagda na." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "Hindi ka makakapagpatala kung hindi ka sasang-ayon sa lisensiya." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Naganap ang isang hindi nalalamang kamalian." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Ito ang iyong unang pagkakataon ng paglagda sa %s kaya't kailangan naming " +"umugnay sa iyong OpenID papunta sa isang katutubong akawnt. Maaari kang " +"lumikha ng isang bagong akawnt, o umugnay sa pamamagitan ng umiiral mong " +"akawnt, kung mayroon ka." + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "Pagkakaayos ng Akawnt na OpenID" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Likhain ang bagong akawnt" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "Bagong palayaw" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga patlang" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Likhain" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "Iugnay ang umiiral na akawnt" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Kung mayroon ka nang akawnt, lumagda sa pamamagitan ng iyong pangalan ng " +"tagagamit at hudyat upang iugnay ito sa iyong OpenID." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "Umiiral na palayaw" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Hudyat" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Umugnay" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "Kinansela ang pagpapatunay ng OpenID." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "Nabigo ang pagpapatunay ng OpenID: %s" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" +"Hindi itinuloy ang pagpapatunay ng OpenID: hindi ka pinahintulutang lumagda " +"sa sityong ito." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "Hindi pinayagan ang pagpapatala." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "Hindi isang tanggap na kodigo ng paanyaya." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ang palayaw ay dapat lamang na may maliliit ng mga titik at mga bilang at " +"walang mga patlang." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "Hindi pinayagan ang palayaw." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "Ginagamit na ang palayaw. Sumubok ng iba." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "Hindi natagpuan ang nakalagak na OpenID." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "" +"Nililikha ang bagong akawnt para sa OpenID na mayroon nang isang tagagamit." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "May kamalian sa pag-ugnay ng tagagamit sa OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Para sa dahilang pangkaligtasan, mangyaring muling lumagda sa pamamagitan ng " +"iyong [OpenID](%%doc.openid%%) bago baguhin ang iyong mga pagtatakda." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Lumagda sa pamamagitan ng isang akawnt ng [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "Panglagdang OpenID" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "Panglagdang OpenID" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "Tagapagbigay ng OpenID" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Ipasok ang iyong pangalan ng tagagamit." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "Ipapadala ka sa sityo ng tagapagbigay para sa pagpapatunay." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "Ang iyong URL ng OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Tandaan ako" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Kusang lumagda sa hinaharap; hindi para sa pinagsasaluhang mga kompyuter!" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Lumagda" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "Pagpapatunay sa Katauhan ng OpenID" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Ang pahinang ito ay dapat lamang na maabot habang pinoproseso ang OpenID, " +"hindi tuwiran." + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"Hiniling ng/ni %s na patunayan ang iyong katauhan. Pindutin ang Magpatuloy " +"upang tiyakin ang iyong katauhan at lumagdang hindi lumilikha ng isang " +"bagong hudyat." + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Magpatuloy" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Huwag ituloy" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "Hindi nakalagda." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Mayroon ka na ng ganitong OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Mayroon nang ibang tao na may ganitong OpenID." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "Kamalian sa pag-ugnay ng tagagamit." + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "Kamalian sa pagsasapanahon ng balangkas" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..8f84fc4621 --- /dev/null +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -0,0 +1,622 @@ +# Translation of StatusNet - OpenID to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 46::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"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" + +#: openidsettings.php:59 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Налаштування OpenID" + +#: openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) дозволяє входити до багатьох веб-сторінок " +"використовуючи той самий лоґін і пароль. Тут можна впорядкувати Ваші OpenID-" +"акаунти." + +#: openidsettings.php:101 +msgid "Add OpenID" +msgstr "Додати OpenID" + +#: openidsettings.php:104 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Якщо Ви бажаєте додати OpenID до Вашого акаунту, введіть його у полі нижче і " +"натисніть «Додати»." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:109 openidlogin.php:159 +msgid "OpenID URL" +msgstr "URL-адреса OpenID" + +#: openidsettings.php:119 +msgid "Add" +msgstr "Додати" + +#: openidsettings.php:131 +msgid "Remove OpenID" +msgstr "Видалити OpenID" + +#: openidsettings.php:136 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Якщо для входу Ви використовуєте лише OpenID, то його видалення унеможливить " +"вхід у майбутньому! Якщо Вам потрібно видалити Ваш єдиний OpenID, то спершу " +"додайте інший." + +#: openidsettings.php:151 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "Ви можете видалити Ваш OpenID просто натиснувши «Видалити»." + +#: openidsettings.php:174 openidsettings.php:215 +msgid "Remove" +msgstr "Видалити" + +#: openidsettings.php:188 +msgid "OpenID Trusted Sites" +msgstr "Довірені сайти OpenID" + +#: openidsettings.php:191 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" +"У списку наведено OpenID-адреси, які ідентифіковані як Ваші і їм дозволено " +"вхід до сайту. Ви можете вилучити якийсь з них, тим самим скасувавши дозвіл " +"на вхід." + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." + +#: openidsettings.php:240 +msgid "Can't add new providers." +msgstr "Не вдається додати нового OpenID-провайдера." + +#: openidsettings.php:253 +msgid "Something weird happened." +msgstr "Сталося щось незрозуміле." + +#: openidsettings.php:277 +msgid "No such OpenID trustroot." +msgstr "Серед довірених такого OpenID немає." + +#: openidsettings.php:281 +msgid "Trustroots removed" +msgstr "Довірені OpenID видалено" + +#: openidsettings.php:304 +msgid "No such OpenID." +msgstr "Немає такого OpenID." + +#: openidsettings.php:309 +msgid "That OpenID does not belong to you." +msgstr "Даний OpenID належить не Вам." + +#: openidsettings.php:313 +msgid "OpenID removed." +msgstr "OpenID видалено." + +#: openidadminpanel.php:54 OpenIDPlugin.php:623 +msgid "OpenID" +msgstr "OpenID" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "Невірний URL OpenID-провайдера. Максимальна довжина — 255 символів." + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "Невірна назва групи. Максимальна довжина — 255 символів." + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "Довірений OpenID-провайдер" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"За замовчуванням, відвідувачам дозволено користуватись послугами будь-якого " +"OpenID-провайдера. Якщо Ви користуєтесь своїм власним OpenID для загального " +"входу на веб-сторінки, то Ви вільні обмежити доступ лише колом Ваших власних " +"користувачів." + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "URL провайдера" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"Всі сесії входу через OpenID будуть спрямовуватись на цю URL-адресу; інших " +"OpenID-провайдерів використовувати не можна." + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "Додати ім’я користувача до базового URL" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"У формі входу на сайт буде представлено базовий URL і запит щодо імені " +"користувача у кінці. В такому випадку, URL OpenID-провайдера — це сторінка " +"профілю окремих користувачів." + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "Необхідна група" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Дозволяється вхід лише користувачам у вказаній групі (розширення для " +"Launchpad)." + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Параметри" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "Увімкнути режим входу лише за OpenID" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. WARNING: disables password " +"authentication for all users!" +msgstr "" +"Вимагає, щоб всі користувачі входили лише за наявності OpenID. УВАГА: ця " +"опція вимикає автентифікацію за паролем для всіх користувачів." + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "Зберегти налаштування OpenID" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "Не можу створити примірник об’єкта споживача OpenID." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "Це недійсний OpenID." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "Неуспіх OpenID: %s" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "Не можу переадресувати на сервер: %s" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ця форма має автоматичне себе представити. Якщо ні, то натисніть відповідну " +"кнопку, щоб перейти на сторінку Вашого OpenID-провайдера." + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "Помилка при збереженні профілю." + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "Помилка при збереженні користувача." + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "Для входу за OpenID використовується неавторизований URL." + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "Представлення входу за OpenID" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "Запитуємо дозвіл у Вашого OpenID-провайдера..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Якщо за кілька секунд Вас не буде перенаправлено на сторінку входу Вашого " +"OpenID-провайдера, просто натисніть кнопку внизу." + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:221 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Вхід на сайт" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:224 +msgctxt "MENU" +msgid "Login" +msgstr "Увійти" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:229 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Допоможіть!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:232 +msgctxt "MENU" +msgid "Help" +msgstr "Довідка" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:238 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Пошук людей або текстів" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:241 +msgctxt "MENU" +msgid "Search" +msgstr "Пошук" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:303 +msgid "Login or register with OpenID" +msgstr "Увійти або зареєструватися за допомогою OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:341 +msgid "Add or remove OpenIDs" +msgstr "Додати або видалити OpenID" + +#: OpenIDPlugin.php:624 +msgid "OpenID configuration" +msgstr "Конфігурація OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:649 +msgid "Use OpenID to login to the site." +msgstr "" +"Використання OpenID для входу на сайт." + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:118 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "" +"Ви не авторизовані, для того щоб мати можливість пройти перевірку " +"ідентичності на %s." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:139 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "Просто OpenID-провайдер. Нічого належного чомусь не видно..." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:35 openidlogin.php:31 +msgid "Already logged in." +msgstr "Тепер Ви увійшли." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:46 +msgid "You can't register if you don't agree to the license." +msgstr "Ви не зможете зареєструватися, якщо не погодитесь з умовами ліцензії." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:55 +msgid "An unknown error has occured." +msgstr "Виникла якась незрозуміла помилка." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:71 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш OpenID до " +"акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " +"використати такий, що вже існує." + +#. TRANS: Title +#: finishopenidlogin.php:78 +msgid "OpenID Account Setup" +msgstr "Створення акаунту OpenID" + +#: finishopenidlogin.php:108 +msgid "Create new account" +msgstr "Створити новий акаунт" + +#: finishopenidlogin.php:110 +msgid "Create a new user with this nickname." +msgstr "Створити нового користувача з цим нікнеймом." + +#: finishopenidlogin.php:113 +msgid "New nickname" +msgstr "Новий нікнейм" + +#: finishopenidlogin.php:115 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:140 +msgctxt "BUTTON" +msgid "Create" +msgstr "Створити" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:146 +msgid "Connect existing account" +msgstr "Приєднати акаунт, який вже існує" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:149 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"приєднати їх до Вашого OpenID." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:153 +msgid "Existing nickname" +msgstr "Нікнейм, який вже існує" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:157 +msgid "Password" +msgstr "Пароль" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:161 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Під’єднати" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:174 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "Автентифікацію за OpenID скасовано." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:178 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "Автентифікуватись за OpenID не вдалося: %s" + +#: finishopenidlogin.php:198 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "Автентифікацію за OpenID перервано: Вам не можна відвідувати цей сайт." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:250 finishopenidlogin.php:260 +msgid "Registration not allowed." +msgstr "Реєстрацію не дозволено." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:268 +msgid "Not a valid invitation code." +msgstr "Це не дійсний код запрошення." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:279 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " +"інтервалів." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:285 +msgid "Nickname not allowed." +msgstr "Нікнейм не допускається." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:291 +msgid "Nickname already in use. Try another one." +msgstr "Цей нікнейм вже використовується. Спробуйте інший." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:299 finishopenidlogin.php:386 +msgid "Stored OpenID not found." +msgstr "Збережений OpenID не знайдено." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:309 +msgid "Creating new account for OpenID that already has a user." +msgstr "Створення нового акаунту для OpenID користувачем, який вже існує." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:374 +msgid "Invalid username or password." +msgstr "Невірне ім’я або пароль." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:394 +msgid "Error connecting user to OpenID." +msgstr "Помилка при підключенні користувача до OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:80 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, увійдіть знов з [OpenID](%%doc.openid%%), " +"перед тим як змінювати налаштування." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:86 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Увійти з [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:120 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "Вхід з OpenID" + +#. TRANS: OpenID plugin logon form legend. +#: openidlogin.php:138 +msgid "OpenID login" +msgstr "Вхід з OpenID" + +#: openidlogin.php:146 +msgid "OpenID provider" +msgstr "OpenID-провайдер" + +#: openidlogin.php:154 +msgid "Enter your username." +msgstr "Введіть ім’я користувача." + +#: openidlogin.php:155 +msgid "You will be sent to the provider's site for authentication." +msgstr "Вас буде перенаправлено на веб-сторінку провайдера для автентифікації." + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:162 +msgid "Your OpenID URL" +msgstr "URL Вашого OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:167 +msgid "Remember me" +msgstr "Пам’ятати мене" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:169 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Автоматично входити у майбутньому; не для комп’ютерів загального " +"користування!" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:174 +msgctxt "BUTTON" +msgid "Login" +msgstr "Увійти" + +#: openidtrust.php:51 +msgid "OpenID Identity Verification" +msgstr "Перевірка ідентичності OpenID" + +#: openidtrust.php:69 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Ви потрапляєте на цю сторінку лише при обробці запитів OpenID, не напряму." + +#: openidtrust.php:117 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s запрошує Вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " +"перевірити Вашу особу та увійти не створюючи нового паролю." + +#: openidtrust.php:135 +msgid "Continue" +msgstr "Продовжити" + +#: openidtrust.php:136 +msgid "Cancel" +msgstr "Скасувати" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "Ви не увійшли до системи." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "У Вас вже є цей OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Хтось інший вже приєднав цей OpenID до свого акаунту." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "Помилка при підключенні користувача." + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "Помилка при оновленні профілю" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..8919456781 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Utiliser le logiciel d’analyse Web en source ouvert Piwik." diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..2c60014f54 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Usar le software open source de analyse web Piwik." diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..776af5d6aa --- /dev/null +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Користи Piwik - програм за мрежна " +"аналитика со отворен код." diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..fe9a85984f --- /dev/null +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Piwik Open Source webanalysesoftware " +"gebruiken." diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..c9f145fb08 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - PiwikAnalytics to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"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" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Использование Open Source программного обеспечения для веб-аналитики: Piwik." diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..a94150b752 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Gamitin ang analatikong pangweb na sopwer na Piwik na may Bukas na Pinagmulan." diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..f77750d94d --- /dev/null +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - PiwikAnalytics to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 48::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"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" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Використання Piwik — програмного " +"забезпечення з відкритим кодом для аналізу веб-потоків." diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..f8094da371 --- /dev/null +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Outil de débogage pour enregistrer les requêtes détaillées de POST." diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..459ce9cf17 --- /dev/null +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PostDebug to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "" +"Instrumento pro eliminar defectos que registra le detalios del requestas " +"POST." diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..e150f16302 --- /dev/null +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "POSTリクエストの詳細を記録するデバッグツール" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..b885af5b70 --- /dev/null +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Алатка за отстранување на грешки за евидентирање на податоци за POST." diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..ba96e25dc8 --- /dev/null +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - PostDebug to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Hulpprogramma voor debuggen om verzoekdetails van POST op te slaan." diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..6a2d1fe90e --- /dev/null +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PostDebug to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Lockal +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"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" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Инструмент отладки для записи подробностей POST-запросов." diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..107558379f --- /dev/null +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PostDebug to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "" +"Kasangkapang pantanggal ng depekto upang itala ang mga detalye ng paghiling " +"sa POST." diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..e86e100ec3 --- /dev/null +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PostDebug to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 49::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"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" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "Інструмент правки для запису деталей запитів щодо POST." diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..5f62dd5f34 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - PoweredByStatusNet to Breton (Brezhoneg) +# Expored 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 - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "savet gant %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..9c16e01e54 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - PoweredByStatusNet to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "propulsé par %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Affiche « propulsé par StatusNet » après " +"le nom du site." diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..317354475f --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "desenvolvido por %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Produce un \"desenvolvido por StatusNet\" " +"despois do nome do sitio." diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..0c285600a9 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "actionate per %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Affixa \"actionate per StatusNet\" post " +"le nomine del sito." diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..60fa496286 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "овозможено од %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Дава „со поддршка од StatusNet“ по името " +"на мреж. место." diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..5cc5cd2768 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "Powered by %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Voegt te tekst \"Powered by StatusNet\" " +"toe na de sitenaam." diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..6a419f4196 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Portuguese (Português) +# Expored from translatewiki.net +# +# Author: Waldir +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "Potenciado por %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Produz o texto \"potenciado por StatusNet" +"\" a seguir ao nome do site." diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..841e58644a --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - PoweredByStatusNet to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "pinapatakbo ng %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Ang mga paglalabas ay \"pinapatakbo ng StatusNet\" pagkaraan ng pangalan ng sityo." diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..19738fe5e2 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - PoweredByStatusNet to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 50::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"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: %s is a URL to status.net with "StatusNet" (localised) as link text. +#: PoweredByStatusNetPlugin.php:51 +#, php-format +msgid "powered by %s" +msgstr "працює на %s" + +#: PoweredByStatusNetPlugin.php:53 +msgid "StatusNet" +msgstr "StatusNet" + +#: PoweredByStatusNetPlugin.php:66 +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Виводити «працює на StatusNet» після назви " +"сайту." diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..b1db002d65 --- /dev/null +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - PtitUrl to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilise le service de raccourcissement d’URL %1$s." diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..97f0570624 --- /dev/null +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PtitUrl to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa le servicio de accurtamento de URL %1$s." diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..ea4b6bf239 --- /dev/null +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PtitUrl to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "%1$sをURL短縮サービスとして利用する。" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..c5d3f28b51 --- /dev/null +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - PtitUrl to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Користи %1$s - служба за скратување на URL-" +"адреси." diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..f76a0025f0 --- /dev/null +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PtitUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..8551fce072 --- /dev/null +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - PtitUrl to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gebruikt de dienst %1$s om URL's korter te " +"maken." diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..a323532bf7 --- /dev/null +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PtitUrl to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"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" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Использование службы сокращения URL %1$s." diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..8be07a2f35 --- /dev/null +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - PtitUrl to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gumagamit ng palingkurang pampaigsi ng URL na %1$s." diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..64a4487af6 --- /dev/null +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - PtitUrl to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 51::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"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" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..41aeca2ddd --- /dev/null +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,85 @@ +# Translation of StatusNet - RSSCloud to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "La requête HTTP au nuage RSS doit être de type POST." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "" +"Seules les notifications HTTP-POST sont prises en charge en ce moment sur le " +"nuage RSS." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "" +"Les paramètres suivants étaient absents du corps de la requête au nuage " +"RSS : %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Vous devez fournir au moins une adresse URL de flux de profil valide (url1, " +"url2, url3 ... urlN)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "L’abonnement au flux a échoué : ce n’est pas un flux RSS valide." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"L’abonnement au flux RSS a échoué : le gestionnaire de notifications ne " +"répond pas correctement." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Merci pour l’abonnement. Vous serez informé lors des mises à jour de ce(s) " +"flux." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Cette ressource nécessite une requête HTTP GET." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Cette ressource nécessite une requête HTTP POST." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"L’extension RSSCloud permet à votre instance StatusNet de publier des mises " +"à jour en temps réel sur des flux RSS en utilisant le protocole RSSCloud." diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..2e5d69333e --- /dev/null +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - RSSCloud to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "Requesta debe esser POST." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "Solmente le notificationes http-post es presentemente supportate." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "Le sequente parametros mancava del corpore del requesta: %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Tu debe fornir al minus un URL de syndication de profilo valide (url1, url2, " +"url3 ... urlN)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "Le subscription al syndication ha fallite: Non un syndication valide." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"Le subscription al syndication ha fallite - le gestor de notification non " +"responde correctemente." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Gratias pro le subscription. Quando le syndication(es) se actualisa, tu " +"recipera notification." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Iste ressource require un HTTP GET." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Iste ressource require un HTTP POST." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"Le plug-in RSSCloud permitte que tu installation de SatusNet publica " +"actualisationes in directo de syndicationes RSS de profilos usante le protocollo RSSCloud." diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..883a703c9b --- /dev/null +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - RSSCloud to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "Барањето мора да биде POST." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "Моментално се поддржани само известувања од типот http-post." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "Следниве параметри недостасуваа од содржината на барањето: %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Мора да наведете барем едеа важечка URL-адреса за профилен канал (url1, " +"url2, url3 ... urlN)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "Претплаќањето на каналот не успеа: Не е важечки канал." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"Претплаќањето на каналот не успеа - ракувачот со известувања не одговара " +"правилно." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Ви благодариме шт осе претплативте. Ќе бидете известени за сите подновувања " +"на каналот/ите." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Овој ресурс бара HTTP GET." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Овој ресурс бара HTTP POST." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"Приклучокот RSSCloud овозможува Вашиот примерок на StatusNet да објавува " +"поднови во живо за профилни RSS-емитувања користејќи го протоколот RSSCloud." diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..7a3aed62e5 --- /dev/null +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - RSSCloud to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "Het verzoek moet POST zijn." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "Op dit moment worden alle mededelingen via HTTP POST ondersteund." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "De volgende parameters missen in de verzoekinhoud: %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"U moet tenminste een geldige URL voor een profielfeed opgeven ( url1, url2, " +"url3, ..., urlN)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "Abonneren op de feed is mislukt: geen geldige feed." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"Abonneren op de feed is mislukt: het verwerkingsproces heeft niet juist " +"geantwoord." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Dank u wel voor het abonneren. Als de feed of feeds bijgewerkt worden, wordt " +"u op de hoogte gesteld." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Deze bron heeft een HTTP GET nodig." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Deze bron heeft een HTTP POST nodig." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"De plug-in RSSCloud laat StatusNet real-time updates publiceren voor de RSS-" +"feeds van profielen met het protocol RSSCloud." diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..d6b7aa1ca2 --- /dev/null +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,82 @@ +# Translation of StatusNet - RSSCloud to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "Ang hiling ay dapat na POST." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "Tanging mga pabatid na http-post lang ang tinatangkilik sa ngayon." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "Nawawala ang sumusunod na mga parametro mula sa katawan ng hiling: %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Dapat kang magbigay ng kahit na isang url ng pakain ng tanggap na talaksan " +"(url1, url2, url3 ... urlN)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "Nabigo ang pagtanggap ng pakain: Hindi isang tanggap na pakain." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"Nabigo ang pagtanggap ng pakain - hindi tama ang pagtugon ng tagapaghawak ng " +"pabatid." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Salamat sa pagtatanggap. Kapag nagsapanahon ang (mga) pakain, pababatiran " +"ka." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Ang pinagkunang ito ay nangangailangan ng HTTP GET." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Ang pinagkukunang ito ay nangangailangan ng HTTP POST." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"Ang pamasak ng RSSCloud ay nagpapahintulot sa iyong pagkakataon ng StatusNet " +"na maglathala ng mga pagsasapanahong pangtunay na oras para sa mga balangkas " +"ng mga pakain ng RSS na gumagamit ng protokolo ng RSSCloud." diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po new file mode 100644 index 0000000000..27894ab728 --- /dev/null +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -0,0 +1,81 @@ +# Translation of StatusNet - RSSCloud to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RSSCloud\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-rsscloud\n" +"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" + +#: RSSCloudRequestNotify.php:90 +msgid "Request must be POST." +msgstr "Запит вимагає форми POST." + +#: RSSCloudRequestNotify.php:107 +msgid "Only http-post notifications are supported at this time." +msgstr "На даний момент підтримуються лише сповіщення форми http-post." + +#. TRANS: %s is a comma separated list of parameters. +#: RSSCloudRequestNotify.php:118 +#, php-format +msgid "The following parameters were missing from the request body: %s." +msgstr "У формі запиту відсутні наступні параметри: %s." + +#: RSSCloudRequestNotify.php:124 +msgid "" +"You must provide at least one valid profile feed url (url1, url2, url3 ... " +"urlN)." +msgstr "" +"Ви повинні зазначити щонайменше один дійсний профіль для URL-адреси веб-" +"стрічки (URL-адреси через кому та пробіл)." + +#: RSSCloudRequestNotify.php:141 +msgid "Feed subscription failed: Not a valid feed." +msgstr "Підписатися до веб-стрічки не вдалося: ця веб-стрічка не є дійсною." + +#: RSSCloudRequestNotify.php:147 +msgid "" +"Feed subscription failed - notification handler doesn't respond correctly." +msgstr "" +"Підписатися до веб-стрічки не вдалося: обробник сповіщень відреагував " +"неправильно." + +#: RSSCloudRequestNotify.php:161 +msgid "" +"Thanks for the subscription. When the feed(s) update(s), you will be " +"notified." +msgstr "" +"Дякуємо за підписку. Коли веб-стрічки оновляться, Вас буде поінформовано." + +#: LoggingAggregator.php:93 +msgid "This resource requires an HTTP GET." +msgstr "Цей ресурс вимагає форми HTTP GET." + +#: LoggingAggregator.php:104 +msgid "This resource requires an HTTP POST." +msgstr "Цей ресурс вимагає форми HTTP POST." + +#: RSSCloudPlugin.php:248 +msgid "" +"The RSSCloud plugin enables your StatusNet instance to publish real-time " +"updates for profile RSS feeds using the RSSCloud protocol." +msgstr "" +"Додаток RSSCloud дозволяє Вашому StatusNet-сумісному сайту публікувати " +"оновлення з веб-стрічок у реальному часі, використовуючи протокол RSSCloud." diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..428b5989c1 --- /dev/null +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - Recaptcha to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Vérificateur anti-robot Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Le Captcha ne correspond pas !" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Utilise le service Recaptcha pour " +"ajouter un captcha à la page d’enregistrement." diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..3e7db99551 --- /dev/null +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Recaptcha to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Captcha non corresponde!" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Usa le servicio Recaptcha pro adder " +"un captcha al pagina de registration." diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..4c40a22170 --- /dev/null +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Recaptcha to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Captcha не се совпаѓа!" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Ја користи слкубата Recaptcha за " +"додавање на captcha во страницата за регистрација." diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..025dc7652a --- /dev/null +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Recaptcha to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Captcha stemmer ikke." + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Bruker Recaptcha-tjenesten for å legge " +"en captcha til registreringssiden." diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..be02a3aa80 --- /dev/null +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Recaptcha to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Captcha komt niet overeen!" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Gebruikt de dienst Recaptcha om een " +"captcha toe te voegen aan de registratiepagina." diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..d01aec27ea --- /dev/null +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Recaptcha to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Hindi tugma ang Captcha!" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Gumagamit ng palingkurang Recaptcha " +"upang magdagdag ng isang captcha sa pahina ng pagpapatala." diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po new file mode 100644 index 0000000000..a7872f223a --- /dev/null +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - Recaptcha to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Recaptcha\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 52::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-recaptcha\n" +"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" + +#: RecaptchaPlugin.php:64 +msgid "Captcha" +msgstr "Captcha" + +#: RecaptchaPlugin.php:105 +msgid "Captcha does not match!" +msgstr "Коди перевірки не збігаються!" + +#: RecaptchaPlugin.php:117 +msgid "" +"Uses Recaptcha service to add a " +"captcha to the registration page." +msgstr "" +"Використання Recaptcha у якості " +"інструменту для перевірки на «людяність» на сторінці реєстрації." diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..f478fbe898 --- /dev/null +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - RegisterThrottle to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Impossible de trouver l’adresse IP." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "" +"Inscriptions trop nombreuses. Faites une pause et essayez à nouveau plus " +"tard." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Impossible de trouver l’utilisateur après un enregistrement réussi." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "Évite les inscriptions excessives depuis une même adresse IP." diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..765de70df3 --- /dev/null +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - RegisterThrottle to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Non pote trovar adresse IP." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "Troppo de registrationes. Face un pausa e reproba plus tarde." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Non pote trovar usator post registration succedite." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "Inhibi le creation de contos excessive ab un sol adresse IP." diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..ade31d12a7 --- /dev/null +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - RegisterThrottle to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Не можам да ја пронајдам IP-адресата." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "Премногу регистрации. Направете пауза и обидете се подоцна." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Не можам да го пронајдам корисникот по успешната регистрација." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "Истиснува прекумерни регистрации од една IP-адреса." diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..af932de16b --- /dev/null +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - RegisterThrottle to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Het IP-adres kon niet gevonden worden." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "Te veel registraties. Wacht even en probeer het later opnieuw." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Het was niet mogelijk de gebruiker te vinden na registratie." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "Beperkt excessieve aantallen registraties vanaf één IP-adres." diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..69d96cc4b3 --- /dev/null +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - RegisterThrottle to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Hindi matagpuan ang tirahan ng IP." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "Napakaraming mga pagpapatala. Magpahinga muna at subukan uli mamaya." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Hindi matagpuan ang tagagamit pagkatapos ng matagumpay na pagpapatala." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "" +"Naglilipat-lipat ng labis na pagpapatala mula sa isang nag-iisang tirahan ng " +"IP." diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..dfab70994c --- /dev/null +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - RegisterThrottle to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 53::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#: RegisterThrottlePlugin.php:121 RegisterThrottlePlugin.php:160 +msgid "Cannot find IP address." +msgstr "Не вдається знайти IP-адресу." + +#: RegisterThrottlePlugin.php:136 +msgid "Too many registrations. Take a break and try again later." +msgstr "Забагато реєстрацій. Випийте поки що кави і повертайтесь пізніше." + +#: RegisterThrottlePlugin.php:166 +msgid "Cannot find user after successful registration." +msgstr "Не вдається знайти користувача після успішної реєстрації." + +#: RegisterThrottlePlugin.php:199 +msgid "Throttles excessive registration from a single IP address." +msgstr "Обмеження кількості реєстрацій з певною IP-адресою." diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..97111b2425 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - RequireValidatedEmail to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "Vous devez valider votre adresse électronique avant de poster." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "Vous devez fournir une adresse électronique avant de vous enregistrer." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"L’extension Require Validated Email désactive le postage pour les comptes " +"qui n’ont pas d’adresse électronique valide." diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..b222f712e1 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - RequireValidatedEmail to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "Tu debe validar tu adresse de e-mail ante de publicar." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "Tu debe fornir un adresse de e-mail pro poter crear un conto." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"Le plug-in \"Require Validated Email\" disactiva le publication pro contos " +"que non ha un adresse de e-mail validate." diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..522ac7a6ba --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - RequireValidatedEmail to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "" +"Пред да почнете да објавувате ќе мора да ја потврдите Вашата е-поштенска " +"адреса." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "За да се регистрирате, ќе мора да наведете е-поштенска адреса." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"Приклучокот Require Validated Email оневозможува објави од сметки што немаат " +"потврдено е-поштенска адреса." diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..c7c55e083d --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - RequireValidatedEmail to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "U moet uw e-mailadres bevestigen voordat u berichten kunt plaatsen." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "U moet een e-mailadres opgeven om te kunnen registreren." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"De plug-in Require Validated Email staat het plaatsen van berichten alleen " +"toe voor gebruikers met een bevestigd e-mailadres." diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..13e2923b64 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - RequireValidatedEmail to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "Kailangan patunayan mo ang iyong tirahan ng e-liham bago magpaskil." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "Dapat kang magbigay ng isang tirahan ng e-liham upang makapagpatala." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"Ang pamasak na Kailanganin ang Pagpapatunay ng E-liham ay hindi nagpapagana " +"ng pagpapaskil para sa mga akawnt na walang isang napatunayan tirahan ng e-" +"liham." diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..93110622a1 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - RequireValidatedEmail to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 54::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"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" + +#: RequireValidatedEmailPlugin.php:72 +msgid "You must validate your email address before posting." +msgstr "" +"Ви повинні підтвердити свою адресу електронної пошти до того, як почнете " +"надсилати дописи поштою." + +#: RequireValidatedEmailPlugin.php:90 +msgid "You must provide an email address to register." +msgstr "Ви повинні зазначити свою адресу електронної пошти для реєстрації." + +#: RequireValidatedEmailPlugin.php:169 +msgid "" +"The Require Validated Email plugin disables posting for accounts that do not " +"have a validated email address." +msgstr "" +"Додаток Require Validated Email унеможливлює надсилання дописів поштою для " +"тих акаунтів, що не мають підтверджених електронних адрес." diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..a680e404e6 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"L’extension Reverse Username Authentication permet à StatusNet de gérer " +"l’identification en vérifiant si le mot de passe fourni est identique à " +"l’inverse du nom d’utilisateur." diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..0f7c4dd5e3 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"Le plug-in \"Reverse Username Authentication\" permitte que StatusNet manea " +"le authentication per verificar si le contrasigno fornite es identic al " +"inverso del nomine de usator." diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..fe67287237 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"反転ユーザー名認証プラグインは、StatusNetに、パスワードをユーザー名を反転させ" +"たものと同じものを利用しているかどうか確認させ、認証を処理させることができま" +"す。" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..cd9e450e9c --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"Приклучокот за Потврда на обратно корисничко име му овозможува на StatusNet " +"да работи со потврди проверувајќи дали наведената лозинка е иста што и " +"обратното од корисничкото име." diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..c93a4ad69a --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"De plug-in Reverse Username Authentication laat StatusNet authenticeren door " +"te controleren of het opgegeven wachtwoord het omgekeerde van de " +"gebruikersnaam is." diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..9263ff1f1a --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"Ang pamasak na Pabaligtad na Pagpapatunay ng Pangalan ng Tagagamit ay " +"nagpapahintulot sa StatusNet na panghawakan ang pagpapatunay sa pamamagitan " +"ng pagsusuri kung ang ibinigay na hudyat ay katulad ng kabaligtara ng " +"pangalan ng tagagamit." diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..f8a4d90787 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 55::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"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" + +#: ReverseUsernameAuthenticationPlugin.php:67 +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"Додаток Reverse Username Authentication дозволяє сайту StatusNet перевіряти " +"запити автентифікації на предмет того, чи не збігається зазначений пароль із " +"ім’ям користувача, якби його було написано у зворотньому напрямку." diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..06852f91cd --- /dev/null +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -0,0 +1,69 @@ +# Translation of StatusNet - Sample to Breton (Brezhoneg) +# Expored 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 - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "" + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Demat" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Demat, %s !" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Demat, estrañjour!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Demat, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "" +msgstr[1] "" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..b25b3bf9f2 --- /dev/null +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -0,0 +1,72 @@ +# Translation of StatusNet - Sample to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "" +"Impossible de sauvegarder le nouveau compte de vœux pour l’utilisateur %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Impossible d’incrémenter le compte de vœux pour l’utilisateur %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Bonjour" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Un accueil chaleureux" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un exemple de greffon pour montrer les bases de développement pour les " +"nouveaux codeurs." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Bonjour, %s !" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Bonjour, étranger !" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Bonjour, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "une" +msgstr[1] "%d" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..f37dfe0faa --- /dev/null +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -0,0 +1,71 @@ +# Translation of StatusNet - Sample to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Non poteva salveguardar le numero de nove salutationes pro %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Non poteva incrementar le numero de salutationes pro %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Salute" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Un calide salutation" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un plug-in de exemplo pro demonstrar le principios de disveloppamento pro " +"nove programmatores." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Salute %s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Salute estraniero!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Salute %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "Io te ha salutate %d vice." +msgstr[1] "Io te ha salutate %d vices." diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..17c907df2d --- /dev/null +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -0,0 +1,70 @@ +# Translation of StatusNet - Sample to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Не можев да го зачувам бројот на поздрави за %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Не можев да го дополнам бројот на поздрави за %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Здраво" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Срдечен поздрав" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Приклучок-пример за основите на развојното програмирање за нови хакери." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Здраво, %s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Здрво, незнајнику!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Здраво, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "Ве поздравив еднаш." +msgstr[1] "Ве поздравив %d пати." diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..fcf42e1955 --- /dev/null +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -0,0 +1,70 @@ +# Translation of StatusNet - Sample to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Het was niet mogelijk het aantal begroetingen op te slaan voor %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Het was niet mogelijk het aantal begroetingen op te hogen voor %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Hallo" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Een warme begroeting" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Een voorbeeldplug-in als basis voor ontwikkelingen door nieuwe hackers." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Hallo, %s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Hallo vreemdeling!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Hallo, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "Ik heb u voor de eerste keer gegroet." +msgstr[1] "Ik heb u %d keer gegroet." diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..cabaad5500 --- /dev/null +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -0,0 +1,71 @@ +# Translation of StatusNet - Sample to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Hindi masagip ang bagong bilang ng pagbati para sa %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Hindi masudlungan ang bilang ng pagbati para sa %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Kumusta" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Isang mainit-init na pagbati" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Isang halimbawang pampasak upang ipakita ang mga saligan ng kaunlaran para " +"sa bagong mga mangunguha." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Kumusta, %s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Kumusta, dayuhan!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Kumusta, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "Binati kita ng %d ulit." +msgstr[1] "Binati kita ng %d mga ulit." diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..461cb0f9c4 --- /dev/null +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -0,0 +1,71 @@ +# Translation of StatusNet - Sample to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "Не вдалося зберегти новий лічильник привітань для %d." + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "Не вдалося перерахувати лічильник привітань для %d." + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "Привіт" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "Щирі вітання" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "Приклад додатку для демонстрації основ розробки новим гакерам." + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "Привіт, %s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "Привіт, чужинцю!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "Привіт, %s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "Я привітав Вас %d раз." +msgstr[1] "Я привітав Вас %d разів." +msgstr[2] "" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..f41f00c18b --- /dev/null +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -0,0 +1,69 @@ +# Translation of StatusNet - Sample to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:164 +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "无法保存%d新的问候计数。" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#: User_greeting_count.php:177 +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "无法增加%d的问候计数。" + +#: SamplePlugin.php:259 hello.php:111 +msgid "Hello" +msgstr "你好" + +#: SamplePlugin.php:259 +msgid "A warm greeting" +msgstr "一个热情的问候" + +#: SamplePlugin.php:270 +msgid "A sample plugin to show basics of development for new hackers." +msgstr "一个为新的 hackers 显示基础开发的示例插件。" + +#: hello.php:113 +#, php-format +msgid "Hello, %s!" +msgstr "你好,%s!" + +#: hello.php:133 +msgid "Hello, stranger!" +msgstr "你好,陌生人!" + +#: hello.php:136 +#, php-format +msgid "Hello, %s" +msgstr "你好,%s" + +#: hello.php:138 +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..a6a449623a --- /dev/null +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SimpleUrl to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilise le service de raccourcissement d’URL %1$s." diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..a31e000c3e --- /dev/null +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SimpleUrl to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa le servicio de accurtamento de URL %1$s." diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..c076b2a799 --- /dev/null +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SimpleUrl to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "%1$sをURL短縮サービスとして利用する。" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..d214a34e7a --- /dev/null +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SimpleUrl to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Користи %1$s - служба за скратување на URL-" +"адреси." diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..07ac2507fd --- /dev/null +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SimpleUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..c905f0b95c --- /dev/null +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SimpleUrl to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gebruikt de dienst %1$s om URL's korter te " +"maken." diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..15ee8bf48c --- /dev/null +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SimpleUrl to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"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" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Использование службы сокращения URL %1$s." diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..7058596ef8 --- /dev/null +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SimpleUrl to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gumagamit ng %1$s na palingkuran ng pampaiksi " +"ng URL." diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..e28996f5c2 --- /dev/null +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SimpleUrl to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 57::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"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" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..1e20384240 --- /dev/null +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -0,0 +1,141 @@ +# Translation of StatusNet - SubMirror to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Importez des flux d’information dans votre agenda !" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Mise en miroir" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Configurer la mise en miroir de messages provenant d’autres flux" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Flux distant :" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Utilisateur local" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Style de mise en miroir" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Répéter : référence le message de l’auteur d’origine (montré parfois comme « " +"RT @blabla »)" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "Reposter le contenu sous mon compte" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Sauvegarder" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Arrêter le miroir" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "Adresse URL de la page Web ou du flux :" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Ajouter le flux" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "Adresse URL de flux invalide." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Profil invalide pour la mise en miroir." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "Impossible de mettre en miroir un groupe StatusNet actuellement." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Cette action n’accepte que les requêtes de type POST." + +#: actions/basemirror.php:123 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Non connecté." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Abonné" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Profil invalide demandé à modifier." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Données de formulaire erronées." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Miroir inexistant demandé à modifier." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Impossible de vous abonner au flux." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Paramètres de miroir de flux" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Vous pouvez mettre en miroir dans votre agenda StatusNet les mises à jour de " +"nombreux flux RSS et Atom !" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..cfbe1016f9 --- /dev/null +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -0,0 +1,139 @@ +# Translation of StatusNet - SubMirror to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Importar syndicationes in tu chronologia!" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Republication" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Configurar le republication de messages de altere syndicationes" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Syndication remote:" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Usator local" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Stilo de republication" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Repeter: referer al message del usator original (monstrate a vices como 'RT " +"@pseudonymo')" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "Republicar le contento sub mi conto" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Salveguardar" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Cessar le republication" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "URL de pagina web o syndication:" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Adder syndication" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "URL de syndication invalide." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Profilo invalide pro republication." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "Al presente il es impossibile republicar un gruppo StatusNet." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Iste action accepta solmente le requestas de typo POST." + +#: actions/basemirror.php:123 +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." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Tu non ha aperite un session." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Subscribite" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Requestava un profilo invalide a modificar." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Mal datos de formulario." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Requestava le modification de un speculo mancante." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Non poteva subscriber al syndication." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Configuration de speculo de syndication" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Tu pote republicar actualisationes de multe syndicationes RSS e Atom in tu " +"chronologia de StatusNet!" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..f1a2f21b71 --- /dev/null +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -0,0 +1,139 @@ +# Translation of StatusNet - SubMirror to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Повлекувајте каналски емитувања во Вашата хронологија!" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Отсликување" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Нагодување на отсликувањето на објавите од други канали" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Далечински канал:" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Локален корисник" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Стил на отсликување" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Повторување: наведете ја објавата на изворниот корисник (понекогаш се " +"прикажува како „RT @blah“)" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "Објави ја содржината под мојата сметка" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Зачувај" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Престани со отсликување" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "Мреж. страница или URL на каналот:" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Додај канал" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "Неважечка URL-адреса за каналот." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Неважечки профил за отсликување." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "Моментално не можам да отсликам група од StatusNet." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Оваа постапка прифаќа само POST-барања." + +#: actions/basemirror.php:123 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Не сте најавени." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Претплатено" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Побаран е неважечки профил за уредување." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Неисправни податоци за образецот." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Побаравте уредување на отсликување што недостасува." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Не можев да Ве претплатам на каналот." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Нагодувања на каналското отсликување" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Можете да отсликувате поднови од многу RSS- и Atom-канали во Вашата " +"хронологија на StatusNet!" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..136bfb7874 --- /dev/null +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -0,0 +1,141 @@ +# Translation of StatusNet - SubMirror to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Neem feeds op in uw tijdlijn!" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Spiegelen" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Spiegelen instellen voor berichten van andere feeds" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Bronfeed:" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Lokale gebruiker" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Spiegelstijl" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Herhalen: refereer aan het bericht van de originele gebruiker (wordt soms " +"weergegeven als \"RT @blah ...\")" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "De inhoud herhalen alsof die van mij komt" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Opslaan" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Spiegelen beëindigen" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "URL van webpagina of feed:" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Feed toevoegen" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "Ongeldige URL voor feed." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Ongeldig profiel om te spiegelen." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "Het is niet mogelijk om een StatusNet-groep te spiegelen." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Deze handeling accepteert alleen POST-verzoeken." + +#: actions/basemirror.php:123 +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." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Niet aangemeld." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Geabonneerd" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Er is een ongeldig profiel opgevraagd om te bewerken." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Onjuiste formuliergegevens." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Er is een missende spiegel opgevraagd om te bewerken." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Het abonneren op de feed is mislukt." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Instellingen voor spiegelfeed" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"U kunt statusupdates vanuit veel RSS- en Atomfeeds spiegelen in uit " +"StatusNet-tijdlijn." diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..6de5184b12 --- /dev/null +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -0,0 +1,139 @@ +# Translation of StatusNet - SubMirror to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Hilahin ang mga pakain papasok sa iyong guhit ng panahon!" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Sinasalamin" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Iayos ang pagsasalamin ng mga pagpapaskil mula sa ibang mga pakain" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Pakaing malayo:" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Katutubong tagagamit" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Estilo ng pagsasalamin" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Ulitin: sangguniin ang orihinal na pagpapaskil ng tagagamit (minsang " +"ipinapakita bilang 'RT @blah')" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "Muling ipaskil ang nilalaman sa ilalim ng aking akawnt" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Sagipin" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Ihinto ang pagsasalamin" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "URL ng pahina sa web o pakain:" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Idagdag ang pakain" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "Hindi tanggap na URL ng pakain." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Hindi tanggap na balangkas para sa pagsasalamin." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "Hindi maisalamin sa ngayon ang isang pangkat ng StatusNet." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Ang galaw na ito ay tumatanggap lamang ng mga kahilingang POST." + +#: actions/basemirror.php:123 +msgid "There was a problem with your session token. Try again, please." +msgstr "May isang suliranin sa iyong token ng sesyon. Pakisubukan uli." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Hindi nakalagda." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Tumanggap ng sipi" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Hiniling na pamamatnugutang hindi tanggap na balangkas." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Datong may masamang anyo." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Hiniling na pagpatnugot ng nawawalang salamin." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Hindi magawang makatanggap ng pakain." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Mga katakdaan ng salamin ng pakain" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Maisasalamin mo ang mga pagsasapanahon mula sa maraming mga pakain ng RSS at " +"Atom sa iyong guhit ng panahon ng StatusNet!" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..f3f881bf90 --- /dev/null +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -0,0 +1,140 @@ +# Translation of StatusNet - SubMirror to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 58::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"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" + +#: SubMirrorPlugin.php:90 +msgid "Pull feeds into your timeline!" +msgstr "Стягування веб-каналів до Вашої стрічки повідомлень!" + +#. TRANS: SubMirror plugin menu item on user settings page. +#: SubMirrorPlugin.php:109 +msgctxt "MENU" +msgid "Mirroring" +msgstr "Віддзеркалення" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +#: SubMirrorPlugin.php:111 +msgid "Configure mirroring of posts from other feeds" +msgstr "Конфігурація віддзеркалення дописів з інших веб-стрічок" + +#: lib/editmirrorform.php:83 +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Віддалена веб-стрічка:" + +#: lib/editmirrorform.php:87 +msgctxt "LABEL" +msgid "Local user" +msgstr "Тутешній користувач" + +#: lib/editmirrorform.php:93 +msgid "Mirroring style" +msgstr "Форма віддзеркалення" + +#: lib/editmirrorform.php:95 +msgid "" +"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +msgstr "" +"Повторення: посилання до оригінального допису користувача (щось на зразок «RT " +"@pupkin»)" + +#: lib/editmirrorform.php:96 +msgid "Repost the content under my account" +msgstr "Повторення змісту під моїм акаунтом" + +#: lib/editmirrorform.php:115 +msgid "Save" +msgstr "Зберегти" + +#: lib/editmirrorform.php:117 +msgid "Stop mirroring" +msgstr "Зупинити віддзеркалення" + +#: lib/addmirrorform.php:59 +msgid "Web page or feed URL:" +msgstr "Веб-сторінка або ж URL-адреса стрічки:" + +#: lib/addmirrorform.php:64 +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Додати веб-стрічку" + +#: actions/basemirror.php:71 +msgid "Invalid feed URL." +msgstr "Помилкова URL-адреса веб-стрічки." + +#. TRANS: Error message returned to user when setting up feed mirroring, but we were unable to resolve the given URL to a working feed. +#: actions/basemirror.php:83 +msgid "Invalid profile for mirroring." +msgstr "Помилковий профіль для віддзеркалення." + +#: actions/basemirror.php:101 +msgid "Can't mirror a StatusNet group at this time." +msgstr "На даний момент не можу віддзеркалювати групу на сайті StatusNet." + +#: actions/basemirror.php:115 +msgid "This action only accepts POST requests." +msgstr "Ця дія приймає запити лише за формою POST." + +#: actions/basemirror.php:123 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#: actions/basemirror.php:133 +msgid "Not logged in." +msgstr "Ви не увійшли до системи." + +#: actions/basemirror.php:156 +msgid "Subscribed" +msgstr "Підписані" + +#: actions/editmirror.php:68 +msgid "Requested invalid profile to edit." +msgstr "Було запитано невірний профіль для редагування." + +#: actions/editmirror.php:86 +msgid "Bad form data." +msgstr "Невірні дані форми." + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +#: actions/editmirror.php:95 +msgid "Requested edit of missing mirror." +msgstr "Запитано редагування зниклого дзеркала." + +#: actions/addmirror.php:72 +msgid "Could not subscribe to feed." +msgstr "Не можу підписатися до веб-стрічки." + +#. TRANS: Title. +#: actions/mirrorsettings.php:42 +msgid "Feed mirror settings" +msgstr "Налаштування дзеркала веб-стрічки" + +#. TRANS: Instructions. +#: actions/mirrorsettings.php:54 +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" +"Ви маєте можливість віддзеркалювати оновлення багатьох веб-стрічок формату " +"RSS або Atom одразу до стрічки своїх дописів на сайті StatusNet!" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..bc7d2dcb8d --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SubscriptionThrottle to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "Limites configurables pour les abonnements et adhésions aux groupes." diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..255fe5d333 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SubscriptionThrottle to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "Limites configurabile pro subscriptiones e membrato de gruppos." diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..4846c89327 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SubscriptionThrottle to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: SubscriptionThrottlePlugin.php:171 +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 new file mode 100644 index 0000000000..c7ff451488 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SubscriptionThrottle to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+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: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +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 new file mode 100644 index 0000000000..dbdd70f662 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SubscriptionThrottle to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "In te stellen limieten voor abonnementen en groepslidmaatschappen." diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..47820e81bd --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SubscriptionThrottle to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"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" + +#: SubscriptionThrottlePlugin.php:171 +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 new file mode 100644 index 0000000000..e781441259 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SubscriptionThrottle to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" +"Maisasaayos na mga hangganan para sa mga pagtatanggap at mga kasapian sa " +"pangkat." diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..97cc7d35c1 --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SubscriptionThrottle to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"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" + +#: SubscriptionThrottlePlugin.php:171 +msgid "Configurable limits for subscriptions and group memberships." +msgstr "Обмеження для підписок та щодо членства у групах, що настроюються." diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..b58a14075f --- /dev/null +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus change le comportement du formulaire d’avis afin que l’appui sur la " +"touche tabulation depuis la zone de texte envoie le focus sur le bouton « " +"Envoyer », ce qui correspond au comportement de Twitter." diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..21c44198f3 --- /dev/null +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus modifica le comportamento del formulario de notas de sorta que " +"premer le clave Tab desde le area de texto mitte le puncto focal sur le " +"button \"Inviar\", lo que corresponde al comportamento de Twitter." diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..9da2c4a548 --- /dev/null +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus го менува поведението на образецот за забелешки: со пристискање на " +"копчето Tab во местото за текст се означува копчето „Прати“, така " +"поситоветувајќи се со поведението на Twitter." diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..93d20f2378 --- /dev/null +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus endrer notisskjemaets oppførsel slik at når man er tekstområdet vil " +"et trykk på tab-knappen fokusere på «Send»-knappen, samsvarende med " +"oppførselen til Twitter." diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..f374e8a9ed --- /dev/null +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus wijzigt het gedrag van het mededelingenformulier zodat, wanneer je " +"vanuit het tekstvak op de Tab-toets drukt, de focus op de knop \"Verzenden\" " +"wordt gericht, net als in Twitter." diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..346e0e9ae5 --- /dev/null +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - TabFocus to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"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" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus изменяет поведение формы уведомлений таким образом что, если в " +"текстовом поле нажать клавишу табуляции, то фокус переключится кнопку " +"«Отправить», повторяя поведение интерфейса Twitter." diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..2c46ebe609 --- /dev/null +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"Binabago ng TabFocus ang ugali ng anyo ng pabatid upang, habang nasa loob ng " +"lugar ng teksto, ang pagpindot sa susi ng panglaylay ay tumutuon sa " +"pindutang \"Ipadala\", na tumutugma sa ugali ng Twitter." diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..2a325ed197 --- /dev/null +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - TabFocus to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 59::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"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" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus змінює поведінку форми надсилання дописів таким чином, що натиснута " +"у вікні вводу повідомлення клавіша «Tab» перебирає на себе функцію кнопки " +"«Надіслати» («Так!»), що імітує інтерфейс Твіттера." diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..3938f14fe5 --- /dev/null +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilise le service de raccourcissement d’URL %1$s." diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..8fdf167ce0 --- /dev/null +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TightUrl to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa le servicio de accurtamento de URL %1$s." diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..d09633b90b --- /dev/null +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TightUrl to Japanese (日本語) +# Expored from translatewiki.net +# +# Author: 青子守歌 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Japanese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "%1$sをURL短縮サービスとして利用する。" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..9961c4aa4b --- /dev/null +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Користи %1$s - служба за скратување на URL-" +"адреси." diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..f3b93e8c44 --- /dev/null +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TightUrl to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..81365bb4a4 --- /dev/null +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gebruikt de dienst %1$s om URL's korter te " +"maken." diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..2d74a172ec --- /dev/null +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TightUrl to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"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" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Использование службы сокращения URL %1$s." diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..50c8fe782b --- /dev/null +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Gumagamit ng palingkurang pampaiksi ng URL na %1$s" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..336bec24e0 --- /dev/null +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TightUrl to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 60::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"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" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Для скорочення URL-адрес використовується %1$s." diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..f02ed2ba9a --- /dev/null +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Utiliser la bibliothèque TinyMCE pour permettre la modification de texte " +"enrichi dans le navigateur." diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..78485b8e39 --- /dev/null +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Usar le bibliotheca TinyMCE pro permitter le modification de texto " +"inricchite in le navigator." diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..b8f325f1b7 --- /dev/null +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Користи ја библиотеката TinyMCE за уредување со збогатен текст во " +"прелистувачот." diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..9f1031a7ed --- /dev/null +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TinyMCE to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Bruk TinyMCE-biblioteket for å tillate rik tekstredigering i nettleseren." diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..374a7faeb2 --- /dev/null +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - TinyMCE to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "TinyMCE gebruiken om WYSIWYG-bewerken in de browser mogelijk te maken." diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..486729f73c --- /dev/null +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42: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: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Utilizar a biblioteca TinyMCE para permitir edição em rich text no navegador." diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..10b64d8d81 --- /dev/null +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"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" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Использование библиотеки TinyMCE, для редактирования текста в браузере." diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..ba038474f6 --- /dev/null +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Gamitin ang aklatan ng TinyMCE upang pahintulutan ang pamamatnugot ng " +"mayamang teksto sa pantingin-tingin." diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..dfa0e16ea6 --- /dev/null +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TinyMCE to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 61::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"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" + +#: TinyMCEPlugin.php:76 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Використання бібліотеки TinyMCE для простого форматування тексту у вікні " +"браузера." diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..fa5154facf --- /dev/null +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,410 @@ +# Translation of StatusNet - TwitterBridge to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "Votre passerelle Twitter a été désactivée." + +#: twitter.php:354 +#, 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 "" +"Salut, %1$s. Nous sommes désolés de vous informer que votre liaison avec " +"Twitter a été désactivée. Il semble que nous ne soyons plus autorisé à " +"mettre à jour votre statut Twitter. Peut-être avez-vous révoqué l’accès de %3" +"$s ?\n" +"\n" +"Vous pouvez réactiver votre passerelle Twitter en visitant la page des " +"paramètres de votre compte Twitter :\n" +"\n" +"%2$s\n" +"\n" +"Cordialement,\n" +"%3$s" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "Se connecter ou s’inscrire via Twitter" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Options d’intégration de Twitter" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Configuration de la passerelle Twitter" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Le greffon de « passerelle » Twitter permet l’intégration d’une instance de " +"StatusNet avec Twitter." + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Paramètres de la passerelle Twitter" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Clé de client invalide. La longueur maximum est de 255 caractères." + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "" +"Code secret du client invalide. La longueur maximum est de 255 caractères." + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "Paramètres de l’application Twitter" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Clé du client" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Clé du client assignée par Twitter" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Code secret du client" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "Code secret du client assigné par Twitter" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "Note : une clé et un code secret de client global sont définis." + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "Source d’intégration" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "Nom de votre application Twitter" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Options" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Activer « S’inscrire avec Twitter »" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "" +"Permet aux utilisateurs de se connecter avec leurs identifiants Twitter" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "Activer l’importation Twitter" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Permettre aux utilisateurs d’importer les agendas de leurs amis Twitter. " +"Exige que les démons soient configurés manuellement." + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Sauvegarder" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Sauvegarder les paramètres Twitter" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "Déjà connecté." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Connexion Twitter" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "Connexion avec votre compte Twitter" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "S’inscrire avec Twitter" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: twitterauthorization.php:126 +msgid "You can't register if you don't agree to the license." +msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." + +#: twitterauthorization.php:135 +msgid "Something weird happened." +msgstr "Quelque chose de bizarre s’est passé." + +#: twitterauthorization.php:181 twitterauthorization.php:229 +#: twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "Impossible de lier votre compte Twitter." + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" +"Impossible de lier votre compte Twitter : le jeton d’authentification ne " +"correspond pas." + +#: twitterauthorization.php:312 +#, 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 "" +"C’est la première fois que vous êtes connecté à %s via Twitter, il nous faut " +"donc lier votre compte Twitter à un compte local. Vous pouvez soit créer un " +"nouveau compte, soit vous connecter avec votre compte local existant si vous " +"en avez un." + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Configuration du compte Twitter" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "Options de connexion" + +#: twitterauthorization.php:360 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mon texte et mes fichiers sont disponibles sous licence %s, à l’exception " +"des données privées suivantes : mot de passe, adresse courriel, adresse de " +"messagerie instantanée et numéro de téléphone." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Créer un nouveau compte" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "Créer un nouvel utilisateur avec ce pseudonyme." + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Nouveau pseudonyme" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Créer" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "Se connecter à un compte existant" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Si vous avez déjà un compte ici, connectez-vous avec votre nom d’utilisateur " +"et mot de passe pour l’associer à votre compte Twitter." + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Pseudonyme existant" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Mot de passe" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Connexion" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Inscription non autorisée." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "Le code d’invitation n’est pas valide." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Les pseudonymes ne peuvent contenir que des lettres minuscules et des " +"chiffres, sans espaces." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Pseudonyme non autorisé." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "Erreur lors de l’inscription de l’utilisateur." + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Erreur de connexion de l’utilisateur à Twitter." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Nom d’utilisateur ou mot de passe incorrect." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Paramètres Twitter" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Connectez votre compte Twitter pour partager vos mises à jour avec vos amis " +"Twitter et vice-versa." + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Compte Twitter" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "Compte Twitter connecté" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "Déconnecter mon compte de Twitter" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" +"La déconnexion de votre compte Twitter ne vous permettrait plus de vous " +"connecter ! S’il vous plaît " + +#: twittersettings.php:136 +msgid "set a password" +msgstr "définissez un mot de passe" + +#: twittersettings.php:138 +msgid " first." +msgstr " tout d’abord." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" +"Gardez votre compte %1$s, mais déconnectez-vous de Twitter. Vous pouvez " +"utiliser votre mot de passe %1$s pour vous connecter." + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Déconnecter" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Préférences" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "Envoyer automatiquement mes avis sur Twitter." + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "Envoyer des réponses \"@\" locales à Twitter." + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "S’abonner à mes amis Twitter ici." + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "Importer l’agenda de mes amis." + +#: twittersettings.php:202 +msgid "Add" +msgstr "Ajouter" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Soumission de formulaire inattendue." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "Impossible de supprimer l’utilisateur Twitter." + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "Compte Twitter déconnecté." + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "Impossible de sauvegarder les préférences Twitter." + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "Préférences Twitter enregistrées." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..a209f9c10a --- /dev/null +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,400 @@ +# Translation of StatusNet - TwitterBridge to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "Tu ponte a Twitter ha essite disactivate." + +#: twitter.php:354 +#, 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 "" +"Salute, %1$s. Nos regretta informar te que tu ligamine a Twitter ha essite " +"disactivate. Il pare que nos non ha plus le permission de actualisar tu " +"stato de Twitter. Esque tu forsan revocava le accesso de %3$s?\n" +"\n" +"Tu pote reactivar tu ponte a Twitter per visitar tu pagina de configuration " +"de Twitter:\n" +"\n" +"\t%2$s\n" +"\n" +"Cordialmente,\n" +"%3$s" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "Aperir session o crear conto usante Twitter" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Optiones de integration de Twitter" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Configuration del ponte a Twitter" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Le plug-in de \"ponte\" a Twitter permitte le integration de un installation " +"de StatusNet con Twitter." + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Configuration del ponte a Twitter" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Clave de consumitor invalide. Longitude maximal es 255 characteres." + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Secreto de consumitor invalide. Longitude maximal es 255 characteres." + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "Configuration del application Twitter" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Clave de consumitor" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Clave de consumitor assignate per Twitter" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Secreto de consumitor" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "Secreto de consumitor assignate per Twitter" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "Nota: un clave e un secreto de consumitor global es definite." + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "Fonte de integration" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "Nomine de tu application Twitter" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Optiones" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Activar \"Aperir session con Twitter\"" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "Permitte que usatores aperi session con lor conto de Twitter" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "Activar le importation de Twitter" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Permitte que usatores importa le chronologias de lor amicos de Twitter. " +"Require que le demones sia configurate manualmente." + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Salveguardar" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Salveguardar configurationes de Twitter" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "Tu es jam authenticate." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Apertura de session con Twitter" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "Aperir session con tu conto de Twitter" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "Aperir session con Twitter" + +#: twitterauthorization.php:120 twittersettings.php:226 +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." + +#: twitterauthorization.php:126 +msgid "You can't register if you don't agree to the license." +msgstr "Tu non pote crear un conto si tu non accepta le licentia." + +#: twitterauthorization.php:135 +msgid "Something weird happened." +msgstr "Qualcosa de bizarre occurreva." + +#: twitterauthorization.php:181 twitterauthorization.php:229 +#: twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "Non poteva ligar a tu conto de Twitter." + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "Non poteva ligar a tu conto de Twitter: oauth_token non corresponde." + +#: twitterauthorization.php:312 +#, 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 "" +"Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe " +"connecter tu conto de Twitter a un conto local. Tu pote crear un nove conto, " +"o connecter con tu conto existente, si tu ha un." + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Configuration del conto de Twitter" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "Optiones de connexion" + +#: twitterauthorization.php:360 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mi texto e files es disponibile sub %s excepte iste datos private: " +"contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de " +"telephono." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Crear nove conto" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "Crear un nove usator con iste pseudonymo." + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Nove pseudonymo" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 minusculas o numeros, sin punctuation o spatios" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Crear" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "Connecter conto existente" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Si tu ha jam un conto, aperi session con tu nomine de usator e contrasigno " +"pro connecter lo a tu conto de Twitter." + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Pseudonymo existente" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Contrasigno" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Connecter" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Creation de conto non permittite." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "Le codice de invitation es invalide." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Pseudonymo non permittite." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "Pseudonymo ja in uso. Proba un altere." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "Error durante le registration del usator." + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Error durante le connexion del usator a Twitter." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Nomine de usator o contrasigno invalide." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Configuration de Twitter" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Connecte tu conto de Twitter pro condivider tu actualisationes con tu amicos " +"de Twitter e vice versa." + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Conto de Twitter" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "Conto de Twitter connectite" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "Disconnecter mi conto ab Twitter" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" +"Le disconnexion de tu conto de Twitter renderea le authentication " +"impossibile! Per favor " + +#: twittersettings.php:136 +msgid "set a password" +msgstr "defini un contrasigno" + +#: twittersettings.php:138 +msgid " first." +msgstr " primo." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" +"Retene tu conto de %1$s ma disconnecte ab Twitter. Tu pote usar tu " +"contrasigno de %1$s pro aperir session." + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Disconnecter" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Preferentias" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "Automaticamente inviar mi notas a Twitter." + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "Inviar responsas \"@\" local a Twitter." + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "Subscriber hic a mi amicos de Twitter." + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "Importar le chronologia de mi amicos." + +#: twittersettings.php:202 +msgid "Add" +msgstr "Adder" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Submission de formulario inexpectate." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "Non poteva remover le usator de Twitter." + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "Conto de Twitter disconnectite." + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "Non poteva salveguardar le preferentias de Twitter." + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "Preferentias de Twitter salveguardate." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..4530a58956 --- /dev/null +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,403 @@ +# Translation of StatusNet - TwitterBridge to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "Вашиот мост до Twitter е оневозможен." + +#: twitter.php:354 +#, 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 "" +"Здраво, %1$s. Нажалост Вашата врска до Twitter е оневозможена. Се чини дека " +"веќе немаме дозвола за менување на Вашиот статус на Twitter. Дали можеби го " +"имате одземено правото на пристап на %3$s?\n" +"\n" +"Можете повторно да го овозможите Вашиот мост до Twitter на страницата за " +"нагодувања на Twitter:\n" +"\n" +"%2$s\n" +"\n" +"Поздрав,\n" +"%3$s" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "Најава или регистрација со Twitter" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Нагодувања за обединување со Twitter" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Нагодувања за мостот до Twitter" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Приклучокот за „мост“ до Twitter овозможува соединување на примерок на " +"StatusNet со Twitter." + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Поставки за мостот до Twitter" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Неважечки потрошувачки клуч. Дозволени се највеќе 255 знаци." + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Неважечка потрошувачка тајна. Дозволени се највеќе 255 знаци." + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "Нагодувања на програмчето за Twitter" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Потрошувачки клуч" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Потрошувачкиот клуч доделен од Twitter" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Потрошувачка тајна" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "Потрошувачката тајна доделена од Twitter" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "Напомена: поставени се глобални потрошувачки клуч и тајна." + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "Извор на соединување" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "Име на Вашето програмче за Twitter" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Поставки" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Овозможи „најава со Twitter“" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "" +"Им овозможува на корисниците да се најавуваат со нивните податоци од Twitter" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "Овозможу увоз од Twitter" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Им овозможува на корисниците да ги увезуваат хронологиите на нивните " +"пријатели на Twitter. Бара рачно нагодување на демоните." + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Зачувај" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Зачувај нагодувања на Twitter" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "Веќе сте најавени." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Најава со Twitter" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "Најава со Вашата сметка од Twitter" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "Најава со Twitter" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се повторно." + +#: twitterauthorization.php:126 +msgid "You can't register if you don't 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." +msgstr "Не можам да ја поврзам Вашата сметка на Twitter." + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" +"Не можев да ја поврзам Вашата сметка на Twitter: несогласување со " +"oauth_token." + +#: twitterauthorization.php:312 +#, 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 "" +"Ова е прв пат како се најавувате на %s, па затоа мораме да ја поврземе " +"Вашата сметка на Twitter со локална сметка. Можете да создадете нова сметка, " +"или пак да се поврзете со Вашата постоечка сметка (ако ја имате)." + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Поставки за сметката на Twitter" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "Нагодувања за врска" + +#: twitterauthorization.php:360 +#, 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, освен следниве приватни " +"податоци: лозинка, е-пошта, IM-адреса и телефонски број." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Создај нова сметка" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "Создај нов корисник со овој прекар." + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Нов прекар" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Создај" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "Поврзи постоечка сметка" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Ако веќе имате сметка, најавете се со корисничкото име и лозинката за да ја " +"поврзете со профилот на Twitter." + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Постоечки прекар" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Лозинка" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Поврзи се" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Регистрацијата не е дозволена." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "Ова не е важечки код за покана." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Прекарот мора да се состои само од мали букви и бројки, без празни места." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Прекарот не е дозволен." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "Прекарот е зафатен. Одберете друг." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "Грешка при регистрирање на корисникот." + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Грешка при поврзувањето на корисникот со Twitter." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Неважечко корисничко име или лозинка." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Нагодувања за Twitter" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Поврзете ја Вашата сметка на Twitter за да ги споделувате подновувањата со " +"Вашите пријатели на Twitter и обратно." + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Сметка на Twitter" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "Поврзана сметка на Twitter" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "Прекини ја врската со сметката на Twitter" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" +"Ако ја прекинете врската со сметката на Twitter, нема да можете да се " +"најавите! Затоа " + +#: twittersettings.php:136 +msgid "set a password" +msgstr "поставете лозинка" + +#: twittersettings.php:138 +msgid " first." +msgstr "пред да продолжите." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" +"Задржете си ја сметката на %1$s, но прекинете ја врската со Twitter. За " +"најава, користете ја Вашата лозинка на %1$s." + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Прекини" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Нагодувања" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "Автоматски испраќај ми ги забелешките на Twitter." + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "Испраќај локални „@“ одговори на Twitter." + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "Претплатете се на пријателите од Twitter тука." + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "Увези ја хронологијата на моите пријатели." + +#: twittersettings.php:202 +msgid "Add" +msgstr "Додај" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Неочекувано поднесување на образец." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "Не можев да го отстранам корисникот на Twitter." + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "Врската со сметката на Twitter е прекината." + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "Не можев да ги зачувам нагодувањата за Twitter." + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "Нагодувањата за Twitter се зачувани." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, 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 new file mode 100644 index 0000000000..4935076743 --- /dev/null +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,380 @@ +# Translation of StatusNet - TwitterBridge to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: twitter.php:354 +#, 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 "" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Ongeldige gebruikerssleutel. De maximale lengte is 255 tekens." + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Ongeldig gebruikersgeheim. De maximale lengte is 255 tekens." + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Gebruikerssleutel" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Gebruikersgeheim" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "" + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Opties" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Opslaan" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Twitterinstellingen opslaan" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "U bent al aangemeld." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "Aanmelden met Twitter" + +#: twitterauthorization.php:120 twittersettings.php:226 +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." + +#: twitterauthorization.php:126 +msgid "You can't register if you don't agree to the license." +msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." + +#: twitterauthorization.php:135 +msgid "Something weird happened." +msgstr "" + +#: twitterauthorization.php:181 twitterauthorization.php:229 +#: twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "" + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" + +#: twitterauthorization.php:312 +#, 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 "" + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "" + +#: twitterauthorization.php:360 +#, 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." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Nieuwe gebruiker aanmaken" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "" + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Nieuwe gebruikersnaam" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Aanmaken" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Bestaande gebruikersnaam" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Wachtwoord" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Koppelen" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Registratie is niet toegestaan." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "De uitnodigingscode is ongeldig." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties " +"zijn niet toegestaan." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Gebruikersnaam niet toegestaan." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "" +"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "" + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Fout bij het verbinden van de gebruiker met Twitter." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Ongeldige gebruikersnaam of wachtwoord." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Twitterinstellingen" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Twittergebruiker" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" +"Loskoppelen van uw Twittergebruiker zou ervoor zorgen dat u niet langer kunt " +"aanmelden. U moet eerst " + +#: twittersettings.php:136 +msgid "set a password" +msgstr "een wachtwoord instellen" + +#: twittersettings.php:138 +msgid " first." +msgstr " voordat u verder kunt met deze handeling." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Loskoppelen" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Voorkeuren" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "" + +#: twittersettings.php:202 +msgid "Add" +msgstr "Toevoegen" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Het formulier is onverwacht ingezonden." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "" + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "De Twitterinstellingen zijn opgeslagen." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..0a9569e7f0 --- /dev/null +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,384 @@ +# Translation of StatusNet - TwitterBridge to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: twitter.php:354 +#, 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 "" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Twitter entegrasyon seçenekleri" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Twitter köprü yapılandırması" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Twitter köprü ayarları" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "" + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "" + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Kullanıcı anahtarı" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Twitter tarafından atanan kullanıcı anahtarı" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "" + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "Entegrasyon kaynağı" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "Twitter uygulamanızın ismi" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Seçenekler" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Kaydet" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Twitter ayarlarını kaydet" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "Zaten giriş yapılmış." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Twitter Giriş" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "Twitter hesabınızla giriş yapın" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: twitterauthorization.php:126 +msgid "You can't register if you don't agree to the license." +msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." + +#: twitterauthorization.php:135 +msgid "Something weird happened." +msgstr "Garip bir şeyler oldu." + +#: twitterauthorization.php:181 twitterauthorization.php:229 +#: twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "" + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" + +#: twitterauthorization.php:312 +#, 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 "" +"İlk defa %s'ye giriş yaptınız, Twitter hesabınızı yerel bir hesapla " +"bağlamamız gerekiyor. Yeni bir hesap oluşturabilir ya da varolan bir " +"hesabınızı kullanabilirsiniz." + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Twitter Hesap Kurulumu" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "Bağlantı seçenekleri" + +#: twitterauthorization.php:360 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Parola, e-posta adresi, anlık mesajlaşma adresi ve telefon numarası gibi " +"özel verilerim dışındaki tüm yazı ve dosyalarım %s dahilinde kullanılabilir." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Yeni hesap oluştur" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "Bu kullanıcı adıyla yeni bir kullanıcı oluştur." + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Yeni kullanıcı adı" + +#: twitterauthorization.php:388 +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" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Oluştur" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "Varolan hesaba bağlan" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Halihazırda bir hesabınız varsa, Twitter hesabınızla bağlantı kurmak için " +"kullanıcı adı ve parolanızla giriş yapın." + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Varolan kullanıcı adı" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Parola" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Bağlan" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Kayıt yapılmasına izin verilmiyor." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "Geçerli bir davet kodu değil." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Kullanıcı adı sadece küçük harfler ve rakamlardan oluşabilir, boşluk " +"kullanılamaz." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Bu kullanıcı adına izin verilmiyor." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "Kullanıcı adı halihazırda kullanılıyor. Başka bir tane deneyin." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "Kullanıcı kayıt hatası." + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Twitter'a kullanıcı bağlama hatası." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Geçersiz kullanıcı adı veya parola." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Twitter ayarları" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Güncellemelerinizi Twitter arkadaşlarınızla paylaşmak ve onların sizi takip " +"edebilmesi için Twitter hesabınızla bağlantı kurun." + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Twitter hesabı" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "Bağlı Twitter hesabı" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "Hesabımın Twitter bağlantısını kes." + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" + +#: twittersettings.php:136 +msgid "set a password" +msgstr "bir parola ayarla" + +#: twittersettings.php:138 +msgid " first." +msgstr " ilk." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Bağlantıyı Kes" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Tercihler" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "Durum mesajlarımı otomatik olarak Twitter'a gönder." + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "Arkadaşlarımın zaman çizelgesini içeri aktar." + +#: twittersettings.php:202 +msgid "Add" +msgstr "Ekle" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Beklenmedik form gönderimi." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "Twitter kullanıcısı silinemedi." + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "Twitter hesabı bağlantısı kesildi." + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "Twitter tercihleri kaydedilemedi." + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "Twitter tercihleriniz kaydedildi." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..e850ba8f54 --- /dev/null +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,406 @@ +# Translation of StatusNet - TwitterBridge to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"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" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "Ваш місток до Twitter було відключено." + +#: twitter.php:354 +#, 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 "" +"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але з’єднання Вашого " +"акаунту на сайті StatusNet з Twitter було відключено. Здається, ми більше не " +"маємо дозволу оновлювати Ваші статуси в Twitter. Можливо, це саме Ви " +"скасували дозвіл %3$s?\n" +"\n" +"Ви маєте можливість перезапустити додаток для автоматичного імпорту Ваших " +"статусів до Twitter, завітавши до сторінки Ваших налаштувань:\n" +"\n" +"%2$s\n" +"\n" +"З повагою,\n" +"%3$s" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "Увійти або зареєструватись з Twitter" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Параметри інтеграції з Twitter" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Налаштування містка з Twitter" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Додаток «місток» з Twitter дозволяє інтегрувати StatusNet-сумісний сайт з Twitter." + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Налаштування містка з Twitter" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Невірний ключ споживача. Максимальна довжина — 255 символів." + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Невірний секретний код споживача. Максимальна довжина — 255 символів." + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "Налаштування додатку для Twitter" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Ключ споживача" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Ключ споживача, що він був наданий сервісом Twitter" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Секретний код споживача" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "Секретний код споживача, що він був наданий сервісом Twitter" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "Примітка: глобальний ключ споживача та секретний код встановлено." + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "Джерело об’єднання" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "Назва Вашого додатку для Twitter" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "Параметри" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Увімкнути «Увійти з допомогою Twitter»" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "" +"Дозволити користувачам входити на сайт, використовуючи повноваження Twitter" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "Увімкнути імпорт з Twitter" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Дозволити користувачам імпортувати їхні стрічки дописів з Twitter. Це " +"вимагає ручної настройки процесів типу «daemon»." + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "Зберегти" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "Зберегти налаштування Twitter" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "Тепер Ви увійшли." + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Вхід Twitter" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "Увійти за допомогою акаунту Twitter" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "Увійти з акаунтом Twitter" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#: twitterauthorization.php:126 +msgid "You can't register if you don't 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." +msgstr "Не вдається підключити Ваш акаутнт Twitter." + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" +"Не вдається підключити Ваш акаутнт Twitter: невідповідність oauth_token." + +#: twitterauthorization.php:312 +#, 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 "" +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Twitter " +"до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " +"використати такий, що вже існує, якщо він у Вас є." + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Створення акаунту за допомогою Twitter" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "Опції з’єднання" + +#: twitterauthorization.php:360 +#, 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, окрім цих приватних даних: пароль, " +"електронна адреса, адреса IM, телефонний номер." + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "Створити новий акаунт" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "Створити нового користувача з цим нікнеймом." + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "Новий нікнейм" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "Створити" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "Приєднати акаунт, який вже існує" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" +"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"приєднати їх до Twitter." + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "Нікнейм, який вже існує" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "Пароль" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "Під’єднати" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "Реєстрацію не дозволено." + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "Це не дійсний код запрошення." + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " +"інтервалів." + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "Нікнейм не допускається." + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "Цей нікнейм вже використовується. Спробуйте інший." + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "Помилка при реєстрації користувача." + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "Помилка при підключенні користувача до Twitter." + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "Недійсне ім’я або пароль." + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Налаштування Twitter" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Підключіть ваш акаунт Twitter, щоб ділитися новими дописами з друзями в " +"Twitter і навпаки." + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Акаунт Twitter" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "Під’єднаний акаунт Twitter" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "Від’єднати мій акаунт від Twitter" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "" +"Якщо Ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " +"майбутньому! Будь ласка, " + +#: twittersettings.php:136 +msgid "set a password" +msgstr "встановіть пароль" + +#: twittersettings.php:138 +msgid " first." +msgstr " спочатку." + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" +"Зберегти Ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " +"використовувати пароль від %1$s для входу на сайт." + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "Від’єднати" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "Налаштування" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "Автоматично пересилати мої дописи на Twitter." + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "Надіслати локальні «@» відповіді на Twitter." + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "Підписатись до моїх друзів з Twitter тут." + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "Імпортувати стрічку дописів моїх друзів." + +#: twittersettings.php:202 +msgid "Add" +msgstr "Додати" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "Несподіване представлення форми." + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "Не вдається видалити користувача Twitter." + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "Акаунт Twitter від’єднано." + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "Не можу зберегти налаштування Twitter." + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "Налаштування Twitter збережено." + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..2860fe66c0 --- /dev/null +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,388 @@ +# Translation of StatusNet - TwitterBridge to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 62::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: twitter.php:350 +msgid "Your Twitter bridge has been disabled." +msgstr "你的 Twitter bridge 已被禁用。" + +#: twitter.php:354 +#, 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 "" +"Hi, %1$s。我们很抱歉通知你,你与 Twitter 的连接已被禁用了。我们似乎没有更新" +"你 Twitter 消息的权限了。或许你之前取消了 %3$ 的访问权限?\n" +"\n" +"你可以通过更新你的 Twitter 设置重新恢复你的 Twitter 连接:\n" +"\n" +"%2$s\n" +"\n" +"祝好,\n" +"%3$s" + +#: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 +#: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 +msgid "Twitter" +msgstr "Twitter" + +#: TwitterBridgePlugin.php:152 +msgid "Login or register using Twitter" +msgstr "使用 Twitter 登录或注册" + +#: TwitterBridgePlugin.php:175 +msgid "Twitter integration options" +msgstr "Twitter 整合选项" + +#: TwitterBridgePlugin.php:292 +msgid "Twitter bridge configuration" +msgstr "Twitter bridge 设置" + +#: TwitterBridgePlugin.php:316 +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Twitter \"bridge\" 是个可以让 StatusNet 账户与 Twitter 整合的插件。" + +#: twitteradminpanel.php:62 +msgid "Twitter bridge settings" +msgstr "Twitter bridge 设置" + +#: twitteradminpanel.php:145 +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "无效的 consumer key。最大长度为 255 字符。" + +#: twitteradminpanel.php:151 +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "无效的 consumer secret。最大长度为 255 字符。" + +#: twitteradminpanel.php:207 +msgid "Twitter application settings" +msgstr "Twitter 应用设置" + +#: twitteradminpanel.php:213 +msgid "Consumer key" +msgstr "Consumer key" + +#: twitteradminpanel.php:214 +msgid "Consumer key assigned by Twitter" +msgstr "Twitter 分配的 consumer key" + +#: twitteradminpanel.php:222 +msgid "Consumer secret" +msgstr "Consumer secret" + +#: twitteradminpanel.php:223 +msgid "Consumer secret assigned by Twitter" +msgstr "Twitter 分配的 consumer secret" + +#: twitteradminpanel.php:233 +msgid "Note: a global consumer key and secret are set." +msgstr "注意:已设置了一个全局的 consumer key 和 secret。" + +#: twitteradminpanel.php:240 +msgid "Integration source" +msgstr "整合来源" + +#: twitteradminpanel.php:241 +msgid "Name of your Twitter application" +msgstr "你的 Twitter 应用名称" + +#: twitteradminpanel.php:253 +msgid "Options" +msgstr "选项" + +#: twitteradminpanel.php:260 +msgid "Enable \"Sign-in with Twitter\"" +msgstr "启用 “使用 Twitter 登录”" + +#: twitteradminpanel.php:262 +msgid "Allow users to login with their Twitter credentials" +msgstr "允许用户使用他们的 Twitter 帐号登录。" + +#: twitteradminpanel.php:269 +msgid "Enable Twitter import" +msgstr "启用 Twitter 导入" + +#: twitteradminpanel.php:271 +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "允许用户导入他们 Twitter 好友的时间线。需要手动设置后台进程。" + +#: twitteradminpanel.php:288 twittersettings.php:200 +msgid "Save" +msgstr "保存" + +#: twitteradminpanel.php:288 +msgid "Save Twitter settings" +msgstr "保存 Twitter 设置" + +#: twitterlogin.php:56 +msgid "Already logged in." +msgstr "已登录。" + +#: twitterlogin.php:64 +msgid "Twitter Login" +msgstr "Twitter 登录" + +#: twitterlogin.php:69 +msgid "Login with your Twitter account" +msgstr "使用你的 Twitter 帐号登录" + +#: twitterlogin.php:87 +msgid "Sign in with Twitter" +msgstr "使用 Twitter 登录" + +#: twitterauthorization.php:120 twittersettings.php:226 +msgid "There was a problem with your session token. Try again, please." +msgstr "你的 session token 出现了一个问题,请重试。" + +#: twitterauthorization.php:126 +msgid "You can't register if you don't 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." +msgstr "无法连接你的 Twitter 帐号。" + +#: twitterauthorization.php:201 +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "无法连接你的 Twitter 帐号:oauth_token 不符。" + +#: twitterauthorization.php:312 +#, 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 "" +"这是你第一次登录到 %s,我们需要将你的 Twitter 帐号与一个本地的帐号关联。你可" +"以新建一个帐号,或者使用你在本站已有的帐号。" + +#: twitterauthorization.php:318 +msgid "Twitter Account Setup" +msgstr "Twitter 帐号设置" + +#: twitterauthorization.php:351 +msgid "Connection options" +msgstr "连接选项" + +#: twitterauthorization.php:360 +#, 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下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话" +"号码。" + +#: twitterauthorization.php:381 +msgid "Create new account" +msgstr "创建新帐户" + +#: twitterauthorization.php:383 +msgid "Create a new user with this nickname." +msgstr "以此昵称创建新帐户" + +#: twitterauthorization.php:386 +msgid "New nickname" +msgstr "新昵称" + +#: twitterauthorization.php:388 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1 到 64 个小写字母或数字,不包含标点或空格" + +#: twitterauthorization.php:391 +msgid "Create" +msgstr "创建" + +#: twitterauthorization.php:396 +msgid "Connect existing account" +msgstr "关联现有账号" + +#: twitterauthorization.php:398 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "如果你已有帐号,请输入用户名和密码登录并将其与你的 Twitter 账号关联。" + +#: twitterauthorization.php:401 +msgid "Existing nickname" +msgstr "已存在的昵称" + +#: twitterauthorization.php:404 +msgid "Password" +msgstr "密码" + +#: twitterauthorization.php:407 +msgid "Connect" +msgstr "关联" + +#: twitterauthorization.php:423 twitterauthorization.php:432 +msgid "Registration not allowed." +msgstr "不允许注册。" + +#: twitterauthorization.php:439 +msgid "Not a valid invitation code." +msgstr "无效的邀请码。" + +#: twitterauthorization.php:449 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "昵称只能使用小写字母和数字且不能使用空格。" + +#: twitterauthorization.php:454 +msgid "Nickname not allowed." +msgstr "昵称不被允许。" + +#: twitterauthorization.php:459 +msgid "Nickname already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" + +#: twitterauthorization.php:474 +msgid "Error registering user." +msgstr "注册用户出错。" + +#: twitterauthorization.php:485 twitterauthorization.php:523 +#: twitterauthorization.php:543 +msgid "Error connecting user to Twitter." +msgstr "关联用户到 Twitter 出错。" + +#: twitterauthorization.php:505 +msgid "Invalid username or password." +msgstr "用户名或密码不正确。" + +#: twittersettings.php:58 +msgid "Twitter settings" +msgstr "Twitter 设置" + +#: twittersettings.php:69 +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"关联你的 Twitter 帐号并与你的 Twitter 好友分享你的更新和查看好友的更新。" + +#: twittersettings.php:116 +msgid "Twitter account" +msgstr "Twitter 帐号" + +#: twittersettings.php:121 +msgid "Connected Twitter account" +msgstr "已关联的 Twitter 帐号" + +#: twittersettings.php:126 +msgid "Disconnect my account from Twitter" +msgstr "取消我的帐号与 Twitter 的关联" + +#: twittersettings.php:132 +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "取消关联你的 Twitter 帐号和能会导致无法登录!请" + +#: twittersettings.php:136 +msgid "set a password" +msgstr "设置一个密码" + +#: twittersettings.php:138 +msgid " first." +msgstr "先。" + +#. TRANS: %1$s is the current website name. +#: twittersettings.php:142 +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "保留你的 %1$s 帐号并取消关联 Twitter。你可以使用你的 %1$s 密码来登录。" + +#: twittersettings.php:150 +msgid "Disconnect" +msgstr "取消关联" + +#: twittersettings.php:157 +msgid "Preferences" +msgstr "参数设置" + +#: twittersettings.php:161 +msgid "Automatically send my notices to Twitter." +msgstr "自动将我的消息发送到 Twitter。" + +#: twittersettings.php:168 +msgid "Send local \"@\" replies to Twitter." +msgstr "将本地的“@”回复发送到 Twitter。" + +#: twittersettings.php:175 +msgid "Subscribe to my Twitter friends here." +msgstr "关注我在这里的 Twitter 好友。" + +#: twittersettings.php:184 +msgid "Import my friends timeline." +msgstr "导入我好友的时间线。" + +#: twittersettings.php:202 +msgid "Add" +msgstr "添加" + +#: twittersettings.php:236 +msgid "Unexpected form submission." +msgstr "未预料的表单提交。" + +#: twittersettings.php:254 +msgid "Couldn't remove Twitter user." +msgstr "无法删除 Twitter 用户。" + +#: twittersettings.php:258 +msgid "Twitter account disconnected." +msgstr "已取消 Twitter 帐号关联。" + +#: twittersettings.php:278 twittersettings.php:288 +msgid "Couldn't save Twitter preferences." +msgstr "无法保存 Twitter 参数设置。" + +#: twittersettings.php:292 +msgid "Twitter preferences saved." +msgstr "已保存 Twitter 参数设置。" + +#. 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. +#: daemons/twitterstatusfetcher.php:264 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..a52002a904 --- /dev/null +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: UserLimitPlugin.php:89 +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/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..7c9cc948c1 --- /dev/null +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +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/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..59481404a2 --- /dev/null +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Ограничување на бројот на корисници што можат да се регистрираат." diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..3c2901f931 --- /dev/null +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+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: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..11a1422815 --- /dev/null +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Limiteert het aantal gebruikers dat kan registreren." diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..dec02d8b0b --- /dev/null +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - UserLimit to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..052204fbe1 --- /dev/null +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - UserLimit to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"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" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..3ab6bcaa26 --- /dev/null +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..9391333cce --- /dev/null +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..098d7e41f4 --- /dev/null +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - UserLimit to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"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" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Обмеження кількості користувачів, котрі можуть зареєструватися." diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..b6f2c25a00 --- /dev/null +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Obtient les descriptions de hashtags depuis WikiHashtags ." diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..37fcd0fe61 --- /dev/null +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Obtene descriptiones de hashtags ab WikiHashtags." diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..aef6e9e398 --- /dev/null +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Презема описи на хеш-ознаки од WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..c908f32f7c --- /dev/null +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43: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: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Henter hashtag-beskrivelser fra WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..6a9a367639 --- /dev/null +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Haalt hashtagbeschrijvingen op van WikiHashtags." diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..58fc9d6a35 --- /dev/null +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - WikiHashtags to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43: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: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Obter as descrições de hashtags a partir de WikiHashtags ." diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..2ef1103b56 --- /dev/null +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - WikiHashtags to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"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" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Получает описания хештегов из WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..daaf88e423 --- /dev/null +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Kumukuha ng mga paglalarawan ng tatak ng giling mula sa WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..d3e3704104 --- /dev/null +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - WikiHashtags to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Kareetiket tanımlarını WikiHashtags'tan al." diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..3d642d4bc9 --- /dev/null +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - WikiHashtags to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 63::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"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" + +#: WikiHashtagsPlugin.php:110 +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Отримувати описи теґів з WikiHashtags." diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..206d7d6c14 --- /dev/null +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Récupère l’avatar et les autres informations de profil des utilisateurs " +"WikiHow lorsqu’ils créent un compte via OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Adresse URL d’avatar « %s » invalide." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossible de récupérer l’avatar depuis « %s »." diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..58a5c154ea --- /dev/null +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Obtene le avatar e altere informationes de profilo pro usatores de WikiHow " +"durante le creation de un conto via OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL de avatar %s invalide." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Incapace de obtener avatar ab %s." diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..4be4c18717 --- /dev/null +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Презема аватар и други профилни податоци за корисници на WikiHow при " +"создавање на сметка преку OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Неважечка URL-адреса на аватарот: %s." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Не можев да го преземам аватарот од %s." diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..de7218e31a --- /dev/null +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Haalt avatar- en andere informatie op voor WikiHow-gebruikers die een " +"gebruiker aanmaken via OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Ongeldige avatar-URL %s." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Het was niet mogelijk om de avatar op te halen van %s." diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..b7a7ea6e86 --- /dev/null +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - WikiHowProfile to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Lockal +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"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" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Запрашивает аватару и прочую информацию из профиля пользователя WikiHow при " +"создании учётной записи с помощью OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Неверный URL-адрес аватары %s" + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Не удаётся получить аватару из %s." diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..15347e108f --- /dev/null +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Dumarampot ng abatar at ibang kabatiran ng balangkas para sa mga tagagamit " +"ng WikiHow kapag nagtatalaga ng isang akawnt sa pamamagitan ng OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Hindi tanggap na URL ng abatar ang %s." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Hindi nagawang damputin ang abatar mula sa %s." diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..01106bbc5b --- /dev/null +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - WikiHowProfile to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"OpenID aracılığıyla hesap oluşturan WikiHow kullanıcıları için kullanıcı " +"resimlerini ve diğer profil bilgilerini alır." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Geçersiz kullanıcı resmi bağlantısı %s." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "%s'ten kullanıcı resmi alınamıyor." diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..f482635812 --- /dev/null +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - WikiHowProfile to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 66::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"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" + +#: WikiHowProfilePlugin.php:59 +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Запитує аватар та іншу супутню інформацію з WikiHow для користувачів, котрі " +"створюють акаунти через OpenID." + +#: WikiHowProfilePlugin.php:171 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Невірна URL-адреса аватари %s." + +#: WikiHowProfilePlugin.php:178 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Неможливо завантажити аватару з %s." diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..482ef25ff5 --- /dev/null +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Locos epraix +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Utilice la caché variable XCache " +"para guardar los resultados de consultas." diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..2aca3bbc6a --- /dev/null +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to French (Français) +# Expored from translatewiki.net +# +# Author: Verdy p +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Utilisez le cache variable XCache pour mettre en cache les résultats de requêtes." diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..e846df3129 --- /dev/null +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Usar le cache de variabiles XCache pro immagazinar le resultatos de consultas." diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..fee680dbf7 --- /dev/null +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Користи променлив кеш XCache за " +"кеширање на резултати од барања." diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..a01aaefea5 --- /dev/null +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43: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: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Bruk XCache-" +"variabelhurtiglageret til å hurtiglagre søkeresultat." diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..101f70b627 --- /dev/null +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"XCache cache gebruiken voor het " +"cachen van zoekopdrachtresultaten." diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..194f9741e4 --- /dev/null +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - XCache to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"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" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Использование XCache для " +"кеширования результатов запросов." diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..f4b76f386d --- /dev/null +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Gamitin ang nababagong taguan na XCache upang ikubli ang mga kinalabasan ng pagtatanong." diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..71783f1626 --- /dev/null +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Sorgulama sonuçlarını saklamak için XCache değişken önbelleğini kullan." diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..ae4e4d4003 --- /dev/null +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - XCache to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:20+0000\n" +"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-19-55 68::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"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" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Використання XCache для " +"різноманітних запитів щодо кешу." From ec83fef9b7ae84cd6f61b0caa4113e1bc7480e01 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 01:33:09 +0200 Subject: [PATCH 192/310] Take trailing newline out of i18n. --- scripts/restoreuser.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/restoreuser.php b/scripts/restoreuser.php index 363ef42fb2..de3816dd53 100644 --- a/scripts/restoreuser.php +++ b/scripts/restoreuser.php @@ -57,7 +57,7 @@ function getActivityStreamDocument() throw new Exception("File '$filename' not readable."); } - printfv(_("Getting backup from file '$filename'.\n")); + printfv(_("Getting backup from file '$filename'.")."\n"); $xml = file_get_contents($filename); @@ -79,19 +79,19 @@ function importActivityStream($user, $doc) if (!empty($subjectEl)) { $subject = new ActivityObject($subjectEl); - printfv(_("Backup file for user %s (%s)\n"), $subject->id, Ostatus_profile::getActivityObjectNickname($subject)); + printfv(_("Backup file for user %s (%s)")."\n", $subject->id, Ostatus_profile::getActivityObjectNickname($subject)); } else { throw new Exception("Feed doesn't have an element."); } if (is_null($user)) { - printfv(_("No user specified; using backup user.\n")); + printfv(_("No user specified; using backup user.")."\n"); $user = userFromSubject($subject); } $entries = $feed->getElementsByTagNameNS(Activity::ATOM, 'entry'); - printfv(_("%d entries in backup.\n"), $entries->length); + printfv(_("%d entries in backup.")."\n", $entries->length); for ($i = $entries->length - 1; $i >= 0; $i--) { try { From f528cc55488046c1ef58a8d95dd7f89d81c80cae Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 16:56:48 -0700 Subject: [PATCH 193/310] Yammer import API keys can now be overridden by the admin. --- plugins/YammerImport/YammerImportPlugin.php | 1 + .../YammerImport/actions/yammeradminpanel.php | 89 +++++++++----- plugins/YammerImport/css/admin.css | 4 + plugins/YammerImport/lib/yammerapikeyform.php | 112 ++++++++++++++++++ .../YammerImport/lib/yammerauthinitform.php | 10 +- .../YammerImport/lib/yammerauthverifyform.php | 37 ++++-- plugins/YammerImport/scripts/yamdump.php | 34 ------ 7 files changed, 209 insertions(+), 78 deletions(-) create mode 100644 plugins/YammerImport/lib/yammerapikeyform.php delete mode 100644 plugins/YammerImport/scripts/yamdump.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 547870936b..98c6ecd0ab 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -119,6 +119,7 @@ class YammerImportPlugin extends Plugin case 'sn_yammerclient': case 'yammerimporter': case 'yammerrunner': + case 'yammerapikeyform': case 'yammerauthinitform': case 'yammerauthverifyform': case 'yammerprogressform': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 04ef26d512..13960d9051 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -52,15 +52,18 @@ class YammeradminpanelAction extends AdminPanelAction */ function getInstructions() { - return _m('Yammer import tool'); + return _m('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.'); } function prepare($args) { $ok = parent::prepare($args); - $this->init_auth = $this->trimmed('init_auth'); - $this->verify_token = $this->trimmed('verify_token'); + $this->subaction = $this->trimmed('subaction'); $this->runner = YammerRunner::init(); return $ok; @@ -68,26 +71,48 @@ class YammeradminpanelAction extends AdminPanelAction function handle($args) { + // @fixme move this to saveSettings and friends? if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->checkSessionToken(); - if ($this->init_auth) { - $url = $this->runner->requestAuth(); - $form = new YammerAuthVerifyForm($this, $this->runner); - return $this->showAjaxForm($form); - } else if ($this->verify_token) { - $this->runner->saveAuthToken($this->verify_token); - + if ($this->subaction == 'change-apikey') { + $form = new YammerApiKeyForm($this); + } else if ($this->subaction == 'apikey') { + if ($this->saveKeys()) { + $form = new YammerAuthInitForm($this, $this->runner); + } else { + $form = new YammerApiKeyForm($this); + } + } else if ($this->subaction == 'authinit') { + // hack + if ($this->arg('change-apikey')) { + $form = new YammerApiKeyForm($this); + } else { + $url = $this->runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $this->runner); + } + } else if ($this->subaction == 'authverify') { + $this->runner->saveAuthToken($this->trimmed('verify_token')); + // Haho! Now we can make THE FUN HAPPEN $this->runner->startBackgroundImport(); - + $form = new YammerProgressForm($this, $this->runner); - return $this->showAjaxForm($form); } else { throw new ClientException('Invalid POST'); } - } else { - return parent::handle($args); + return $this->showAjaxForm($form); } + return parent::handle($args); + } + + function saveKeys() + { + $key = $this->trimmed('consumer_key'); + $secret = $this->trimmed('consumer_secret'); + Config::save('yammer', 'consumer_key', $key); + Config::save('yammer', 'consumer_secret', $secret); + + return !empty($key) && !empty($secret); } function showAjaxForm($form) @@ -102,6 +127,27 @@ class YammeradminpanelAction extends AdminPanelAction $this->elementEnd('html'); } + /** + * Fetch the appropriate form for our current state. + * @return Form + */ + function statusForm() + { + if (!(common_config('yammer', 'consumer_key')) + || !(common_config('yammer', 'consumer_secret'))) { + return new YammerApiKeyForm($this); + } + switch($this->runner->state()) + { + case 'init': + return new YammerAuthInitForm($this, $this->runner); + case 'requesting-auth': + return new YammerAuthVerifyForm($this, $this->runner); + default: + return new YammerProgressForm($this, $this->runner); + } + } + /** * Show the Yammer admin panel form * @@ -110,20 +156,7 @@ class YammeradminpanelAction extends AdminPanelAction function showForm() { $this->elementStart('fieldset'); - - switch($this->runner->state()) - { - case 'init': - $form = new YammerAuthInitForm($this, $this->runner); - break; - case 'requesting-auth': - $form = new YammerAuthVerifyForm($this, $this->runner); - break; - default: - $form = new YammerProgressForm($this, $this->runner); - } - $form->show(); - + $this->statusForm()->show(); $this->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 4c1aaacd64..9c99a0b880 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -49,3 +49,7 @@ /* override */ background: none !important; } + +.magiclink { + margin-left: 40px; +} \ No newline at end of file diff --git a/plugins/YammerImport/lib/yammerapikeyform.php b/plugins/YammerImport/lib/yammerapikeyform.php new file mode 100644 index 0000000000..b2acec4ede --- /dev/null +++ b/plugins/YammerImport/lib/yammerapikeyform.php @@ -0,0 +1,112 @@ +runner = $runner; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + + function id() + { + return 'yammer-apikey-form'; + } + + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_yammer_apikey form_settings'; + } + + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('yammeradminpanel'); + } + + + /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _m('Yammer API registration')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + $this->out->hidden('subaction', 'apikey'); + + $this->out->elementStart('fieldset'); + + $this->out->elementStart('p'); + $this->out->text(_m('Before we can connect to your Yammer network, ' . + 'you will need to register the importer as an ' . + 'application authorized to pull data on your behalf. ' . + '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:')); + $this->out->elementEnd('p'); + + $this->out->elementStart('p', array('class' => 'magiclink')); + $this->out->element('a', + array('href' => 'https://www.yammer.com/client_applications/new', + 'target' => '_blank'), + _m('Open Yammer application registration form')); + $this->out->elementEnd('p'); + + $this->out->element('p', array(), _m('Copy the consumer key and secret you are given into the form below:')); + + $this->out->elementStart('ul', array('class' => 'form_data')); + $this->out->elementStart('li'); + $this->out->input('consumer_key', _m('Consumer key:'), common_config('yammer', 'consumer_key')); + $this->out->elementEnd('li'); + $this->out->elementStart('li'); + $this->out->input('consumer_secret', _m('Consumer secret:'), common_config('yammer', 'consumer_secret')); + $this->out->elementEnd('li'); + $this->out->elementEnd('ul'); + + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save these consumer keys')); + + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + } +} diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php index 5a83a06c21..9f48fd82a5 100644 --- a/plugins/YammerImport/lib/yammerauthinitform.php +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -22,7 +22,7 @@ class YammerAuthInitForm extends Form function formClass() { - return 'form_yammer_auth_init'; + return 'form_yammer_auth_init form_settings'; } @@ -56,7 +56,12 @@ class YammerAuthInitForm extends Form function formData() { - $this->out->hidden('init_auth', '1'); + $this->out->hidden('subaction', 'authinit'); + + $this->out->elementStart('fieldset'); + $this->out->submit('submit', _m('Start authentication'), 'submit', null, _m('Request authorization to connect to Yammer account')); + $this->out->submit('change-apikey', _m('Change API key')); + $this->out->elementEnd('fieldset'); } /** @@ -67,6 +72,5 @@ class YammerAuthInitForm extends Form function formActions() { - $this->out->submit('submit', _m('Connect to Yammer'), 'submit', null, _m('Request authorization to connect to Yammer account')); } } diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 2b3efbcb1a..e119be96f7 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -30,7 +30,7 @@ class YammerAuthVerifyForm extends Form function formClass() { - return 'form_yammer_auth_verify'; + return 'form_yammer_auth_verify form_settings'; } @@ -64,27 +64,39 @@ class YammerAuthVerifyForm extends Form function formData() { + $this->out->hidden('subaction', 'authverify'); + + $this->out->elementStart('fieldset'); + $this->out->elementStart('p'); $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:')); $this->out->elementEnd('p'); - $this->out->elementStart('blockquote'); - $this->out->element('a', - array('href' => $this->runner->getAuthUrl(), - 'target' => '_blank'), - _m('Open Yammer authentication window')); - $this->out->elementEnd('blockquote'); - - $this->out->element('p', array(), _m('Copy the verification code you are given into the form below:')); - - $this->out->input('verify_token', _m('Verification code:')); - // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O /* $this->out->element('iframe', array('id' => 'yammer-oauth', 'src' => $this->runner->getAuthUrl())); */ // yeah, it ignores the callback_url + // soo... crappy link. :( + + $this->out->elementStart('p', array('class' => 'magiclink')); + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + _m('Open Yammer authentication window')); + $this->out->elementEnd('p'); + + $this->out->element('p', array(), _m('Copy the verification code you are given below:')); + + $this->out->elementStart('ul', array('class' => 'form_data')); + $this->out->elementStart('li'); + $this->out->input('verify_token', _m('Verification code:')); + $this->out->elementEnd('li'); + $this->out->elementEnd('ul'); + + $this->out->submit('submit', _m('Continue'), 'submit', null, _m('Save code and begin import')); + $this->out->elementEnd('fieldset'); } /** @@ -95,6 +107,5 @@ class YammerAuthVerifyForm extends Form function formActions() { - $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); } } diff --git a/plugins/YammerImport/scripts/yamdump.php b/plugins/YammerImport/scripts/yamdump.php deleted file mode 100644 index 944ee2e499..0000000000 --- a/plugins/YammerImport/scripts/yamdump.php +++ /dev/null @@ -1,34 +0,0 @@ -users(); -var_dump($data); -// @fixme follow paging -foreach ($data as $item) { - $user = $imp->prepUser($item); - var_dump($user); -} -*/ - -$data = $yam->messages(array('newer_than' => 1)); -var_dump($data); -// @fixme follow paging -$messages = $data['messages']; -$messages = array_reverse($messages); -foreach ($messages as $message) { - $notice = $imp->prepNotice($message); - var_dump($notice); -} From 0477101af7bda9d8e58f3315837a81fca17d06b4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 17:12:06 -0700 Subject: [PATCH 194/310] update README for YammerImport --- plugins/YammerImport/README | 97 +++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 16 deletions(-) diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README index 1bac69a243..975faa2132 100644 --- a/plugins/YammerImport/README +++ b/plugins/YammerImport/README @@ -8,28 +8,93 @@ Requirements ------------ * An account on the Yammer network you wish to import from -* An administrator account on the target StatusNet instance +* An administrator account on the target StatusNet instance, or + command-line administrative access * This YammerImport plugin enabled on your StatusNet instance -Setup ------ - -The import process will be runnable through an administration panel on -your StatusNet site. - -The user interface and OAuth setup has not yet been completed, you will -have to manually initiate the OAuth authentication to get a token. - -Be patient, there will be a UI soon. ;) - Limitations ----------- -Paging has not yet been added, so the importer will only pull up to: -* first 50 users -* first 20 groups -* last 20 public messages +Yammer API key registrations only work for your own network unless you make +arrangements for a 'trusted app' key, so for now users will need to register +the app themselves. There is a helper in the admin panel for this. + +In theory any number of users, groups, and messages should be supported, but +it hasn't been fully tested on non-trivial-sized sites. + +No provision has yet been made for dealing with conflicting usernames or +group names, or names which are not considered valid by StatusNet. Errors +are possible. + +Running via the web admin interface requires having queueing enabled, and is +fairly likely to have problems with the application key registration step in +a small installation at this time. + + +Web setup +--------- + +The import process is runnable through an administration panel on your +StatusNet site. The user interface is still a bit flaky, however, and if +errors occur during import the process may stop with no way to restart it +visible. + +The admin interface will probably kinda blow up if JS/AJAX isn't working. + +You'll be prompted to register the application and authenticate into Yammer, +after which a progress screen will display. + +Two big warnings: +* The progress display does not currently auto-refresh. +* If anything fails once actual import has begun, it'll just keep showing + the current state. You won't see an error message, and there's no way + to reset or restart from the web UI yet. + +You can continue or reset the import state using the command-line script. + + +CLI setup +--------- + +You'll need to register an application consumer key to allow the importer +to connect to your Yammer network; this requires logging into Yammer: + + https://www.yammer.com/client_applications/new + +Check all the 'read' options; no 'write' options are required, but Yammer +seems to end up setting them anyway. + +You can set the resulting keys directly in config.php: + + $config['yammer']['consumer_key'] = '#####'; + $config['yammer']['consumer_secret'] = '##########'; + +Initiate authentication by starting up the importer script: + + php plugins/YammerImport/scripts/yammer-import.php + +Since you haven't yet authenticated, this will request an auth token and +give you a URL to open in your web browser. Once logged in and authorized +there, you'll be given a confirmation code. Pass this back: + + php plugins/YammerImport/scripts/yammer-import.php --verify=#### + +If all is well, the import process will begin and run through the end. + +In case of error or manual abort, you should be able to continue the +import from where you left off by running the script again: + + php plugins/YammerImport/scripts/yammer-import.php + +To reset the Yammer import state -- without removing any of the items +that have already been imported -- you can pass the --reset option: + + php plugins/YammerImport/scripts/yammer-import.php --reset + +This'll let you start over from the requesting-authentication stage. +Any users, groups, or notices that have already been imported will be +retained. Subscriptions and group memberships From 87a12b7fcf85851918192375687081e8fc78e16b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 17:23:09 -0700 Subject: [PATCH 195/310] Fix for i18n: avoid notice spew in php-gettext with the stub po file for english by using a working plurals rule --- locale/en/LC_MESSAGES/statusnet.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en/LC_MESSAGES/statusnet.po b/locale/en/LC_MESSAGES/statusnet.po index 61d902a1a9..0638f16cdf 100644 --- a/locale/en/LC_MESSAGES/statusnet.po +++ b/locale/en/LC_MESSAGES/statusnet.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title #. TRANS: Menu item for site administration From 2a02c5470e92050fe167cf418d0226cfeae732fe Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 10:11:53 +0200 Subject: [PATCH 196/310] Localisation updates from http://translatewiki.net * add Hungarian language file. Forgot to add that before. --- locale/hu/LC_MESSAGES/statusnet.po | 7184 ++++++++++++++++++++++++++++ 1 file changed, 7184 insertions(+) create mode 100644 locale/hu/LC_MESSAGES/statusnet.po diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po new file mode 100644 index 0000000000..ea83e06cd7 --- /dev/null +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -0,0 +1,7184 @@ +# Translation of StatusNet - Core to Hungarian (Magyar) +# Expored from translatewiki.net +# +# Author: Bdamokos +# Author: Dani +# Author: Gerymate +# Author: Glanthor Reviol +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"PO-Revision-Date: 2010-09-27 22:41:26+0000\n" +"Language-Team: Hungarian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: hu\n" +"X-Message-Group: #out-statusnet-core\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +msgid "Access" +msgstr "Hozzáférés" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +msgid "Site access settings" +msgstr "A webhely hozzáférhetőségének beállítása" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +msgid "Registration" +msgstr "Regisztráció" + +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" +"Tiltsuk, hogy az anonim (be nem jelentkezett) felhasználók megnézhessék a " +"webhelyet?" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +msgctxt "LABEL" +msgid "Private" +msgstr "Privát" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "Legyen a regisztráció meghíváshoz kötött." + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Csak meghívással" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "Új regisztrációk tiltása." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Zárva" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +msgid "Save access settings" +msgstr "Hozzáférések beállításainak mentése" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +msgctxt "BUTTON" +msgid "Save" +msgstr "Mentés" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:68 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +msgid "No such page." +msgstr "Nincs ilyen lap." + +#. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#: actions/all.php:79 actions/allrss.php:68 +#: actions/apiaccountupdatedeliverydevice.php:115 +#: actions/apiaccountupdateprofile.php:106 +#: actions/apiaccountupdateprofilebackgroundimage.php:117 +#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98 +#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114 +#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101 +#: actions/apigroupleave.php:101 actions/apigrouplist.php:73 +#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174 +#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80 +#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75 +#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 +#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: lib/mailbox.php:82 lib/profileaction.php:77 +msgid "No such user." +msgstr "Nincs ilyen felhasználó." + +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:90 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s és barátai, %2$d oldal" + +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#. TRANS: Message is used as link title. %s is a user nickname. +#: actions/all.php:93 actions/all.php:185 actions/allrss.php:116 +#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116 +#: lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s és barátai" + +#. TRANS: %1$s is user nickname +#: actions/all.php:107 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s barátainak hírcsatornája (RSS 1.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:116 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s barátainak hírcsatornája (RSS 2.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s barátainak hírcsatornája (Atom)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:138 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" +"Ez itt %s és barátai története, de eddig még senki nem küldött egyetlen hírt " +"sem." + +#: actions/all.php:143 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Iratkozz fel további emberek híreire, [csatlakozz egy csoporthoz] (action." +"groups%%%%), vagy írj valamit te magad." + +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:146 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from their profile or [post something " +"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "" + +#. TRANS: H1 text +#: actions/all.php:182 +msgid "You and friends" +msgstr "Te és a barátaid" + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:216 +#: actions/apitimelinehome.php:122 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!" + +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found." +msgstr "Az API-metódus nem található." + +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#: actions/apiaccountupdatedeliverydevice.php:87 +#: actions/apiaccountupdateprofile.php:90 +#: actions/apiaccountupdateprofilebackgroundimage.php:87 +#: actions/apiaccountupdateprofilecolors.php:111 +#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90 +#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110 +#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93 +#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92 +#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93 +#: actions/apigroupleave.php:93 actions/apimediaupload.php:68 +#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199 +msgid "This method requires a POST." +msgstr "Ez a metódus POST-ot igényel." + +#: actions/apiaccountupdatedeliverydevice.php:107 +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none." +msgstr "" + +#: actions/apiaccountupdatedeliverydevice.php:134 +msgid "Could not update user." +msgstr "Nem sikerült frissíteni a felhasználót." + +#: actions/apiaccountupdateprofile.php:113 +#: actions/apiaccountupdateprofilebackgroundimage.php:195 +#: actions/apiaccountupdateprofilecolors.php:186 +#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 +#: lib/profileaction.php:84 +msgid "User has no profile." +msgstr "A felhasználónak nincs profilja." + +#: actions/apiaccountupdateprofile.php:148 +msgid "Could not save profile." +msgstr "Nem sikerült menteni a profilt." + +#: actions/apiaccountupdateprofilebackgroundimage.php:109 +#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 +#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:123 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 +#: lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" +"A szerver nem tudott feldolgozni ennyi POST-adatot (%s bájtot) a jelenlegi " +"konfigurációja miatt." + +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings." +msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." + +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +msgid "Could not update your design." +msgstr "Nem sikerült frissíteni a megjelenítést." + +#: actions/apiblockcreate.php:106 +msgid "You cannot block yourself!" +msgstr "Nem blokkolhatod saját magad!" + +#: actions/apiblockcreate.php:127 +msgid "Block user failed." +msgstr "Nem sikerült a felhasználó blokkolása." + +#: actions/apiblockdestroy.php:115 +msgid "Unblock user failed." +msgstr "Nem sikerült a felhasználó blokkjának feloldása." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "Közvetlen üzenetek tőle: %s" + +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "%s által küldött összes közvetlen üzenetek" + +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Közvetlen üzenetek neki: %s" + +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "%s részére küldött összes közvetlen üzenet" + +#: actions/apidirectmessagenew.php:119 +msgid "No message text!" +msgstr "Az üzenetnek nincs szövege!" + +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Ez túl hosszú. Az üzenet mérete legfeljebb %d karakter lehet." + +#: actions/apidirectmessagenew.php:139 +msgid "Recipient user not found." +msgstr "A címzett felhasználó nem található." + +#: actions/apidirectmessagenew.php:143 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Nem küldhetsz közvetlen üzenetet olyan felhasználóknak, akik nem a barátaid." + +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 +#: actions/apistatusesdestroy.php:121 +msgid "No status found with that ID." +msgstr "Nincs ilyen azonosítójú állapot." + +#: actions/apifavoritecreate.php:121 +msgid "This status is already a favorite." +msgstr "Ez az állapotjelentés már a kedvenceid között van." + +#. TRANS: Error message text shown when a favorite could not be set. +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +msgid "Could not create favorite." +msgstr "Nem sikerült létrehozni a kedvencet." + +#: actions/apifavoritedestroy.php:124 +msgid "That status is not a favorite." +msgstr "Az az állapotjelentés nincs a kedvenceid között." + +#: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Nem sikerült törölni a kedvencet." + +#: actions/apifriendshipscreate.php:110 +msgid "Could not follow user: profile not found." +msgstr "" + +#: actions/apifriendshipscreate.php:119 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Nem lehet követni a felhasználót: %s már a listádon van." + +#: actions/apifriendshipsdestroy.php:110 +msgid "Could not unfollow user: User not found." +msgstr "Nem tudunk leválni a felhasználóról: nincs ilyen felhasználó." + +#: actions/apifriendshipsdestroy.php:121 +msgid "You cannot unfollow yourself." +msgstr "Nem tudod nem figyelemmel követni magadat." + +#: actions/apifriendshipsexists.php:91 +msgid "Two valid IDs or screen_names must be supplied." +msgstr "" + +#: actions/apifriendshipsshow.php:134 +msgid "Could not determine source user." +msgstr "Nem sikerült megállapítani a forrás felhasználót." + +#: actions/apifriendshipsshow.php:142 +msgid "Could not find target user." +msgstr "A cél felhasználó nem található." + +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/newgroup.php:126 actions/profilesettings.php:215 +#: actions/register.php:212 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül." + +#: actions/apigroupcreate.php:177 actions/editgroup.php:190 +#: actions/newgroup.php:130 actions/profilesettings.php:238 +#: actions/register.php:215 +msgid "Nickname already in use. Try another one." +msgstr "A becenév már foglalt. Próbálj meg egy másikat." + +#: actions/apigroupcreate.php:184 actions/editgroup.php:193 +#: actions/newgroup.php:133 actions/profilesettings.php:218 +#: actions/register.php:217 +msgid "Not a valid nickname." +msgstr "Nem érvényes becenév." + +#: actions/apigroupcreate.php:200 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 +#: actions/newgroup.php:139 actions/profilesettings.php:222 +#: actions/register.php:224 +msgid "Homepage is not a valid URL." +msgstr "A honlap érvénytelen URL-cím." + +#: actions/apigroupcreate.php:209 actions/editgroup.php:202 +#: actions/newgroup.php:142 actions/profilesettings.php:225 +#: actions/register.php:227 +msgid "Full name is too long (max 255 chars)." +msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)." + +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "A leírás túl hosszú (legfeljebb %d karakter lehet)." + +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 +#: actions/newgroup.php:148 actions/profilesettings.php:232 +#: actions/register.php:234 +msgid "Location is too long (max 255 chars)." +msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)." + +#: actions/apigroupcreate.php:247 actions/editgroup.php:219 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Túl sok álnév! Legfeljebb %d lehet." + +#: actions/apigroupcreate.php:268 +#, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Érvénytelen álnév: „%s”." + +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat." + +#: actions/apigroupcreate.php:290 actions/editgroup.php:238 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "Az álnév nem egyezhet meg a becenévvel." + +#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106 +#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 +#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 +msgid "Group not found." +msgstr "A csoport nem található." + +#. TRANS: Error text shown a user tries to join a group they already are a member of. +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +msgid "You are already a member of that group." +msgstr "Már tagja vagy ennek a csoportnak." + +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +msgid "You have been blocked from that group by the admin." +msgstr "Az adminisztrátor blokkolt ebből a csoportból." + +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." + +#: actions/apigroupleave.php:116 +msgid "You are not a member of this group." +msgstr "Nem vagy tagja ennek a csoportnak." + +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 +#: lib/command.php:401 +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "Nem sikerült %1$s felhasználót eltávolítani a %2$s csoportból." + +#. TRANS: %s is a user name +#: actions/apigrouplist.php:98 +#, php-format +msgid "%s's groups" +msgstr "%s csoportjai" + +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "" + +#. TRANS: Message is used as a title. %s is a site name. +#. TRANS: Message is used as a page title. %s is a nick name. +#: actions/apigrouplistall.php:92 actions/usergroups.php:63 +#, php-format +msgid "%s groups" +msgstr "%s csoportok" + +#: actions/apigrouplistall.php:96 +#, php-format +msgid "groups on %s" +msgstr "%s csoportok" + +#: actions/apimediaupload.php:100 +msgid "Upload failed." +msgstr "" + +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "" + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Érvénytelen token." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:169 actions/disfavor.php:74 +#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 +#: actions/groupblock.php:66 actions/grouplogo.php:312 +#: actions/groupunblock.php:66 actions/imsettings.php:230 +#: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:350 +#: actions/register.php:172 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: lib/designsettings.php:294 +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." + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Érvénytelen becenév / jelszó!" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:104 actions/editapplication.php:139 +#: actions/emailsettings.php:290 actions/grouplogo.php:322 +#: actions/imsettings.php:245 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:277 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "Váratlan űrlapbeküldés." + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "Egy alkalmazás szeretne csatlakozni a kontódhoz" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Elérés engedélyezése vagy tiltása" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:463 +msgid "Account" +msgstr "Kontó" + +#: actions/apioauthauthorize.php:313 actions/login.php:252 +#: actions/profilesettings.php:106 actions/register.php:431 +#: actions/showgroup.php:245 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:132 +msgid "Nickname" +msgstr "Becenév" + +#. TRANS: Link description in user account settings menu. +#: actions/apioauthauthorize.php:316 actions/login.php:255 +#: actions/register.php:436 lib/accountsettingsaction.php:125 +msgid "Password" +msgstr "Jelszó" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Tiltjuk" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Engedjük" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Engedélyezheted vagy megtilthatod a kontód megtekintését." + +#: actions/apistatusesdestroy.php:112 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: actions/apistatusesdestroy.php:135 +msgid "You may not delete another user's status." +msgstr "Nem törölheted más felhasználók állapotait." + +#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "Nincs ilyen hír." + +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +msgid "Cannot repeat your own notice." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. +#: actions/apistatusesretweet.php:92 lib/command.php:544 +msgid "Already repeated that notice." +msgstr "Már megismételted azt a hírt." + +#: actions/apistatusesshow.php:139 +msgid "Status deleted." +msgstr "Állapot törölve." + +#: actions/apistatusesshow.php:145 +msgid "No status with that ID found." +msgstr "Nem található ilyen azonosítójú állapot." + +#: actions/apistatusesupdate.php:222 +msgid "Client must provide a 'status' parameter with a value." +msgstr "" + +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat." + +#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Nem található." + +#: actions/apistatusesupdate.php:307 actions/newnotice.php:181 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" +"Egy hír legfeljebb %d karakterből állhat, a melléklet URL-jét is beleértve." + +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +msgid "Unsupported format." +msgstr "Nem támogatott formátum." + +#: actions/apitimelinefavorites.php:110 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s / %2$s kedvencei" + +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "" + +#: actions/apitimelinementions.php:118 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/apitimelinementions.php:131 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "%s közösségi története" + +#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s-frissítések mindenki számára!" + +#: actions/apitimelineretweetedtome.php:111 +#, php-format +msgid "Repeated to %s" +msgstr "" + +#: actions/apitimelineretweetsofme.php:114 +#, php-format +msgid "Repeats of %s" +msgstr "" + +#: actions/apitimelinetag.php:105 actions/tag.php:67 +#, php-format +msgid "Notices tagged with %s" +msgstr "Hírek %s címkével" + +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/apitrends.php:87 +msgid "API method under construction." +msgstr "Az API-metódus fejlesztés alatt áll." + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "Nincs ilyen csatolmány." + +#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/groupmembers.php:76 +#: actions/grouprss.php:91 actions/showgroup.php:121 +msgid "No nickname." +msgstr "Nincs becenév." + +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Nincs méret." + +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Érvénytelen méret." + +#. TRANS: Link description in user account settings menu. +#: actions/avatarsettings.php:67 actions/showgroup.php:230 +#: lib/accountsettingsaction.php:118 +msgid "Avatar" +msgstr "Avatar" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." + +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:108 +msgid "User without matching profile." +msgstr "" + +#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#: actions/grouplogo.php:254 +msgid "Avatar settings" +msgstr "Avatarbeállítások" + +#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 +msgid "Original" +msgstr "Eredeti" + +#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 +msgid "Preview" +msgstr "Előnézet" + +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:657 +msgid "Delete" +msgstr "Törlés" + +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +msgid "Upload" +msgstr "Feltöltés" + +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +msgid "Crop" +msgstr "Levágás" + +#: actions/avatarsettings.php:305 +msgid "No file uploaded." +msgstr "Nincs feltöltve fájl." + +#: actions/avatarsettings.php:332 +msgid "Pick a square area of the image to be your avatar" +msgstr "Válassz ki egy négyzet alakú területet a képből, ami az avatarod lesz" + +#: actions/avatarsettings.php:347 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "Elvesztettük az adatainkat." + +#: actions/avatarsettings.php:370 +msgid "Avatar updated." +msgstr "Avatar frissítve." + +#: actions/avatarsettings.php:373 +msgid "Failed updating avatar." +msgstr "Nem sikerült felölteni az avatart." + +#: actions/avatarsettings.php:397 +msgid "Avatar deleted." +msgstr "Avatar törölve." + +#: actions/block.php:69 +msgid "You already blocked that user." +msgstr "Már blokkoltad azt a felhasználót." + +#: actions/block.php:107 actions/block.php:136 actions/groupblock.php:158 +msgid "Block user" +msgstr "Felhasználó blokkolása" + +#: actions/block.php:138 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +msgctxt "BUTTON" +msgid "No" +msgstr "Nem" + +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:157 actions/deleteuser.php:156 +msgid "Do not block this user" +msgstr "Ne blokkoljuk ezt a felhasználót" + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +msgctxt "BUTTON" +msgid "Yes" +msgstr "Igen" + +#. TRANS: Submit button title for 'Yes' when blocking a user. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 lib/blockform.php:82 +msgid "Block this user" +msgstr "Felhasználó blokkolása" + +#: actions/block.php:187 +msgid "Failed to save block information." +msgstr "Nem sikerült elmenteni a blokkolási információkat." + +#. TRANS: Command exception text shown when a group is requested that does not exist. +#. TRANS: Error text shown when trying to leave a group that does not exist. +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 +#: lib/command.php:383 +msgid "No such group." +msgstr "Nincs ilyen csoport." + +#: actions/blockedfromgroup.php:97 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:100 +#, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "" + +#: actions/blockedfromgroup.php:115 +msgid "A list of the users blocked from joining this group." +msgstr "A csoportból blokkolt felhasználók listája" + +#: actions/blockedfromgroup.php:288 +msgid "Unblock user from group" +msgstr "Oldjuk fel a felhasználó blokkolását a csoportban" + +#. TRANS: Title for the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:70 +msgid "Unblock" +msgstr "Blokk feloldása" + +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +msgid "Unblock this user" +msgstr "Ezen felhasználó blokkjának feloldása" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, php-format +msgid "Post to %s" +msgstr "Küldés ide: %s" + +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Nincs megerősítő kód." + +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "A megerősítő kód nem található." + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "Ez a megerősítő kód nem hozzád tartozik!" + +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 +msgid "That address has already been confirmed." +msgstr "Ez a cím már meg van erősítve." + +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error thrown on database error removing a registered IM address. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#: actions/confirmaddress.php:116 actions/emailsettings.php:331 +#: actions/emailsettings.php:477 actions/imsettings.php:283 +#: actions/imsettings.php:442 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:308 +#: actions/smssettings.php:464 +msgid "Couldn't update user." +msgstr "Nem sikerült frissíteni a felhasználót." + +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +#: actions/confirmaddress.php:128 actions/emailsettings.php:437 +#: actions/smssettings.php:422 +msgid "Couldn't delete email confirmation." +msgstr "Nem sikerült törölni az e-mail cím megerősítését." + +#: actions/confirmaddress.php:146 +msgid "Confirm address" +msgstr "Cím ellenőrzése" + +#: actions/confirmaddress.php:161 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "A(z) „%s” cím meg van erősítve a fiókodhoz." + +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Beszélgetés" + +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:229 lib/searchgroupnav.php:82 +msgid "Notices" +msgstr "Hírek" + +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "" + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "" + +#. TRANS: Client error text when there is a problem with the session token. +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1320 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Alkalmazás törlése" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +msgid "Do not delete this application" +msgstr "" + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +msgid "Delete this application" +msgstr "" + +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/tagother.php:33 actions/unsubscribe.php:52 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Nem vagy bejelentkezve." + +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Hír törlése" + +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Biztosan törölni szeretnéd ezt a hírt?" + +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +msgid "Do not delete this notice" +msgstr "Ne töröljük ezt a hírt" + +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:657 +msgid "Delete this notice" +msgstr "Töröljük ezt a hírt" + +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "Nem törölhetsz felhasználókat." + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "Csak helyi felhasználókat tudsz törölni." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "Felhasználó törlése" + +#: actions/deleteuser.php:136 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" +"Biztosan törölni szeretnéd ezt a felhasználót? Ezzel minden róla szóló " +"adatot törlünk az adatbázisból, biztonsági mentés nélkül." + +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "Töröljük ezt a felhasználót" + +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +msgid "Design" +msgstr "Megjelenés" + +#: actions/designadminpanel.php:74 +msgid "Design settings for this StatusNet site" +msgstr "" + +#: actions/designadminpanel.php:331 +msgid "Invalid logo URL." +msgstr "Érvénytelen logó URL." + +#: actions/designadminpanel.php:335 +#, php-format +msgid "Theme not available: %s." +msgstr "" + +#: actions/designadminpanel.php:439 +msgid "Change logo" +msgstr "Logó megváltoztatása" + +#: actions/designadminpanel.php:444 +msgid "Site logo" +msgstr "Oldal logója" + +#: actions/designadminpanel.php:456 +msgid "Change theme" +msgstr "Téma megváltoztatása" + +#: actions/designadminpanel.php:473 +msgid "Site theme" +msgstr "Webhely-téma" + +#: actions/designadminpanel.php:474 +msgid "Theme for the site." +msgstr "A webhely témája." + +#: actions/designadminpanel.php:480 +msgid "Custom theme" +msgstr "" + +#: actions/designadminpanel.php:484 +msgid "You can upload a custom StatusNet theme as a .ZIP archive." +msgstr "" + +#: actions/designadminpanel.php:499 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Háttérkép megváltoztatása" + +#: actions/designadminpanel.php:504 actions/designadminpanel.php:587 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Háttér" + +#: actions/designadminpanel.php:509 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#. TRANS: Used as radio button label to add a background image. +#: actions/designadminpanel.php:540 lib/designsettings.php:139 +msgid "On" +msgstr "Be" + +#. TRANS: Used as radio button label to not add a background image. +#: actions/designadminpanel.php:557 lib/designsettings.php:155 +msgid "Off" +msgstr "Ki" + +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Háttérkép be- vagy kikapcsolása." + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Háttérkép csempézése" + +#: actions/designadminpanel.php:577 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Színek megváltoztatása" + +#: actions/designadminpanel.php:600 lib/designsettings.php:191 +msgid "Content" +msgstr "Tartalom" + +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Oldalsáv" + +#: actions/designadminpanel.php:626 lib/designsettings.php:217 +msgid "Text" +msgstr "Szöveg" + +#: actions/designadminpanel.php:639 lib/designsettings.php:230 +msgid "Links" +msgstr "Hivatkozások" + +#: actions/designadminpanel.php:664 +msgid "Advanced" +msgstr "" + +#: actions/designadminpanel.php:668 +msgid "Custom CSS" +msgstr "" + +#: actions/designadminpanel.php:689 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Alapértelmezések használata" + +#: actions/designadminpanel.php:690 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:696 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Visszaállítás az alapértelmezettre" + +#. TRANS: Submit button title. +#: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 +#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 +#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 +#: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 +#: actions/tagother.php:154 actions/useradminpanel.php:295 +#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/groupeditform.php:202 +msgid "Save" +msgstr "Mentés" + +#: actions/designadminpanel.php:699 lib/designsettings.php:257 +msgid "Save design" +msgstr "Design mentése" + +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "Ez a hír nincs a kedvenceid között!" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Hozzáadás a kedvencekhez" + +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "Nincs ilyen dokumentum: „%s”" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Alkalmazás szerkesztése" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "Nincs ilyen alkalmazás." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "A név szükséges." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "A név túl hosszú (max 255 karakter lehet)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "A név már foglalt. Próbálj egy másikat." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "A leírás megadása kötelező." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "A forrás URL túl hosszú." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "A forrás URL nem érvényes." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "A szervezet szükséges." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "A szervezet túl hosszú (255 karakter lehet)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Szükséges a szervezet honlapja." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "" + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "" + +#: actions/editapplication.php:261 +msgid "Could not update application." +msgstr "" + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "%s csoport szerkesztése" + +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Csoport létrehozásához be kell jelentkezned." + +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 +msgid "You must be an admin to edit the group." +msgstr "" + +#: actions/editgroup.php:158 +msgid "Use this form to edit the group." +msgstr "Ezen űrlap segítségével szerkesztheted a csoportot." + +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "a leírás túl hosszú (legfeljebb %d karakter)." + +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Érvénytelen álnév: „%s”" + +#: actions/editgroup.php:258 +msgid "Could not update group." +msgstr "Nem sikerült a csoport frissítése." + +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +msgid "Could not create aliases." +msgstr "Nem sikerült létrehozni az álneveket." + +#: actions/editgroup.php:280 +msgid "Options saved." +msgstr "Beállítások elmentve." + +#. TRANS: Title for e-mail settings. +#: actions/emailsettings.php:61 +msgid "Email settings" +msgstr "Email beállítások" + +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/emailsettings.php:76 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Beállíthatod, milyen email-eket kapj a(z) %%site.name%% webhelyről." + +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +msgid "Email address" +msgstr "Email-cím" + +#. TRANS: Form note in e-mail settings form. +#: actions/emailsettings.php:112 +msgid "Current confirmed email address." +msgstr "A jelenleg megerősített e-mail cím." + +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#: actions/emailsettings.php:115 actions/emailsettings.php:162 +#: actions/imsettings.php:116 actions/smssettings.php:124 +#: actions/smssettings.php:180 +msgctxt "BUTTON" +msgid "Remove" +msgstr "Eltávolítás" + +#: actions/emailsettings.php:122 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Megerősítés várása a címről. Ellenőrizd a beérkező leveleidet (és a " +"spameket!), hogy megkaptad-e az üzenetet, ami a további teendőket " +"tartalmazza." + +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Mégse" + +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +#: actions/emailsettings.php:139 +msgid "Email address, like \"UserName@example.org\"" +msgstr "E-mail cím, például „FelhasználóNév@example.org”" + +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +msgctxt "BUTTON" +msgid "Add" +msgstr "Hozzáadás" + +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +#: actions/emailsettings.php:151 actions/smssettings.php:171 +msgid "Incoming email" +msgstr "Bejövő email" + +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:159 actions/smssettings.php:178 +msgid "Send email to this address to post new notices." +msgstr "Erre a címre küldj emailt új hír közzétételéhez." + +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:168 actions/smssettings.php:186 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +msgctxt "BUTTON" +msgid "New" +msgstr "Új" + +#. TRANS: Form legend for e-mail preferences form. +#: actions/emailsettings.php:178 +msgid "Email preferences" +msgstr "E-mail beállítások" + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:184 +msgid "Send me notices of new subscriptions through email." +msgstr "Kapjak email-t, ha valaki feliratkozott a híreimre." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:190 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Kapjak emailt róla, ha valaki kedvenceként jelöl meg egy általam küldött " +"hírt." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:197 +msgid "Send me email when someone sends me a private message." +msgstr "Kapjak emailt róla, ha valaki privát üzenetet küld nekem." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Kapjak emailt róla, ha valaki \"@-választ\" küld nekem." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:209 +msgid "Allow friends to nudge me and send me an email." +msgstr "Megengedem a barátaimnak, hogy megbökjenek és emailt küldjenek nekem." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:216 +msgid "I want to post notices by email." +msgstr "Szeretnék email segítségével közzétenni." + +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:223 +msgid "Publish a MicroID for my email address." +msgstr "MicroID közzététele az e-mail címemhez." + +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +msgid "Email preferences saved." +msgstr "E-mail beállítások elmentve." + +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:357 +msgid "No email address." +msgstr "Nincs e-mail cím." + +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +msgid "Cannot normalize that email address" +msgstr "Nem sikerült normalizálni az e-mail címet" + +#. TRANS: Message given saving e-mail address that not valid. +#: actions/emailsettings.php:370 actions/register.php:208 +#: actions/siteadminpanel.php:144 +msgid "Not a valid email address." +msgstr "Érvénytelen email cím." + +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:374 +msgid "That is already your email address." +msgstr "Jelenleg is ez az e-mail címed." + +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:378 +msgid "That email address already belongs to another user." +msgstr "Ez az e-mail cím egy másik felhasználóhoz tartozik." + +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +#: actions/emailsettings.php:395 actions/imsettings.php:351 +#: actions/smssettings.php:373 +msgid "Couldn't insert confirmation code." +msgstr "Nem sikerült beilleszteni a megerősítő kódot." + +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:402 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Elküldtük a megerősítő kódot az általad megadott e-mail címre. Ellenőrizd a " +"beérkező leveleidet (és a spameket!), hogy megkaptad-e az üzenetet, ami a " +"további teendőket tartalmazza." + +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +msgid "No pending confirmation to cancel." +msgstr "Nincs várakozó megerősítés, amit vissza lehetne vonni." + +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +msgid "That is the wrong email address." +msgstr "" + +#. TRANS: Message given after successfully canceling e-mail address confirmation. +#: actions/emailsettings.php:442 +msgid "Email confirmation cancelled." +msgstr "" + +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:462 +msgid "That is not your email address." +msgstr "Ez nem a te e-mail címed." + +#. TRANS: Message given after successfully removing a registered e-mail address. +#: actions/emailsettings.php:483 +msgid "The email address was removed." +msgstr "" + +#: actions/emailsettings.php:497 actions/smssettings.php:568 +msgid "No incoming email address." +msgstr "Nincs bejövő e-mail cím." + +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:508 actions/emailsettings.php:532 +#: actions/smssettings.php:578 actions/smssettings.php:602 +msgid "Couldn't update user record." +msgstr "Nem sikerült frissíteni a felhasználó rekordját." + +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +msgid "Incoming email address removed." +msgstr "A bejövő email címet eltávolítottuk." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +msgid "New incoming email address added." +msgstr "Új bejövő e-mail cím hozzáadva." + +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Ez a hír már a kedvenceid között van!" + +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "Kedvenc eltávolítása" + +#: actions/favorited.php:65 lib/popularnoticesection.php:91 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Népszerű hírek" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Népszerű hírek, %d oldal" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "Most épp a webhely legnépszerűbb hírei" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" +"Ezen az oldalon kedvencnek jelölt hírek jelennek meg, de még egyet sem tett " +"senki a kedvencévé." + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "%s kedvenc hírei" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "Kiemelt felhasználók" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "Kiemelt felhasználók, %d. oldal" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some great users on %s" +msgstr "" + +#: actions/file.php:34 +msgid "No notice ID." +msgstr "Nincs hír-ID." + +#: actions/file.php:38 +msgid "No notice." +msgstr "Nincs hír." + +#: actions/file.php:42 +msgid "No attachments." +msgstr "Nincs melléklet." + +#: actions/file.php:51 +msgid "No uploaded attachments." +msgstr "Nincs feltöltött melléklet." + +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Nem várt válasz!" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "A felhasználó akire figyelsz nem létezik." + +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "Figyelemmel követheted helyben!" + +#: actions/finishremotesubscribe.php:99 +msgid "That user has blocked you from subscribing." +msgstr "Az a felhasználó blokkolta hogy figyelemmel kövesd." + +#: actions/finishremotesubscribe.php:110 +msgid "You are not authorized." +msgstr "Nincs jogosultságod." + +#: actions/finishremotesubscribe.php:113 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:118 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +msgid "Error updating remote profile." +msgstr "Nem sikerült frissíteni a távoli profilt." + +#: actions/getfile.php:79 +msgid "No such file." +msgstr "Nincs ilyen fájl." + +#: actions/getfile.php:83 +msgid "Cannot read file." +msgstr "A fájl nem olvasható." + +#: actions/grantrole.php:62 actions/revokerole.php:62 +msgid "Invalid role." +msgstr "Érvénytelen szerep." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +msgid "You cannot grant user roles on this site." +msgstr "" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "A felhasználónak már van ilyen szerepe." + +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:79 +msgid "No profile specified." +msgstr "Nincs profil megadva." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:86 +msgid "No profile with that ID." +msgstr "Nincs ilyen azonosítóval rendelkező profil." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "Nincs csoport megadva." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "Csak az adminisztrátor blokkolhat csoporttagokat." + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "Ez a felhasználó már blokkolva van a csoportból." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "Ez a felhasználó nem a csoport tagja." + +#: actions/groupblock.php:134 actions/groupmembers.php:364 +msgid "Block user from group" +msgstr "Felhasználó blokkolása a csoportból" + +#: actions/groupblock.php:160 +#, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post, and unable to subscribe to " +"the group in the future." +msgstr "" +"Biztosan blokkolni szeretnéd \"%1$s\" felhasználót a \"%2$s\" csoportból? A " +"blokkolt felhasználók el lesznek távolítva a csoportból, nem küldhetnek " +"híreket, és nem tudják majd figyelemmel követni a csoportot a jövőben." + +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +msgid "Do not block this user from this group" +msgstr "Ne blokkoljuk ezt a felhasználót ebből a csoportból" + +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 +msgid "Block this user from this group" +msgstr "Felhasználó blokkolása a csoportból" + +#: actions/groupblock.php:206 +msgid "Database error blocking user from group." +msgstr "" +"Adatbázishiba történt a felhasználó csoportból történő blokkolása során." + +#: actions/groupbyid.php:74 actions/userbyid.php:70 +msgid "No ID." +msgstr "Nincs ID." + +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "Csoport szerkesztéséhez be kell jelentkezned." + +#: actions/groupdesignsettings.php:144 +msgid "Group design" +msgstr "A csoport megjelenése" + +#: actions/groupdesignsettings.php:155 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +msgid "Couldn't update your design." +msgstr "Nem sikerült frissíteni a designt." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "Design beállítások elmentve." + +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "Csoport logója" + +#: actions/grouplogo.php:153 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:365 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouplogo.php:399 +msgid "Logo updated." +msgstr "Logó frissítve." + +#: actions/grouplogo.php:401 +msgid "Failed updating logo." +msgstr "Nem sikerült a logó feltöltése." + +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#: actions/groupmembers.php:102 +#, php-format +msgid "%s group members" +msgstr "%s csoport tagjai" + +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "" + +#: actions/groupmembers.php:122 +msgid "A list of the users in this group." +msgstr "A csoportban lévő felhasználók listája." + +#: actions/groupmembers.php:186 +msgid "Admin" +msgstr "Adminisztrátor" + +#. TRANS: Button text for the form that will block a user from a group. +#: actions/groupmembers.php:399 +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:403 +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + +#: actions/groupmembers.php:498 +msgid "Make user an admin of the group" +msgstr "A felhasználó legyen a csoport kezelője" + +#. TRANS: Button text for the form that will make a user administrator. +#: actions/groupmembers.php:533 +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +#: actions/groupmembers.php:537 +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + +#. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. +#: actions/grouprss.php:139 actions/userrss.php:94 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#, php-format +msgid "%s timeline" +msgstr "%s története" + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 +#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Csoportok" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Csoportok, %d. oldal" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Új csoport létrehozása" + +#: actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Csoport keresése a %%site.name%% webhelyen név, helyszín vagy leírás " +"alapján. Szóközökkel válaszd el a keresett kifejezéseket; legalább 3 " +"karaktert adj meg." + +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Csoport-keresés" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Nincs találat." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" +"Ha nem találod a csoportot amit keresel, [létrehozhatod](%%action.newgroup%" +"%) saját magad." + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "A felhasználó nincs blokkolva a csoportból." + +#: actions/groupunblock.php:128 actions/unblock.php:86 +msgid "Error removing the block." +msgstr "Hiba a blokkolás feloldása közben." + +#. TRANS: Title for instance messaging settings. +#: actions/imsettings.php:60 +msgid "IM settings" +msgstr "IM beállítások" + +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#: actions/imsettings.php:74 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 +msgid "IM is not available." +msgstr "IM nem elérhető." + +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +msgid "IM address" +msgstr "IM-cím" + +#: actions/imsettings.php:113 +msgid "Current confirmed Jabber/GTalk address." +msgstr "" + +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" + +#. TRANS: IM address input field instructions in IM settings form. +#. TRANS: %s is the IM address set for the site. +#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by +#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate +#. TRANS: person or organization. +#: actions/imsettings.php:143 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + +#. TRANS: Form legend for IM preferences form. +#: actions/imsettings.php:158 +msgid "IM preferences" +msgstr "Azonnali üzenetküldő beállításai" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:163 +msgid "Send me notices through Jabber/GTalk." +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:169 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:175 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:182 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#. TRANS: Confirmation message for successful IM preferences save. +#: actions/imsettings.php:290 actions/othersettings.php:180 +msgid "Preferences saved." +msgstr "Beállítások elmentve." + +#. TRANS: Message given saving IM address without having provided one. +#: actions/imsettings.php:312 +msgid "No Jabber ID." +msgstr "Nincs Jabber-azonosító." + +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:320 +msgid "Cannot normalize that Jabber ID" +msgstr "Nem lehet normalizálni a Jabber azonosítót" + +#. TRANS: Message given saving IM address that not valid. +#: actions/imsettings.php:325 +msgid "Not a valid Jabber ID" +msgstr "Érvénytelen Jabber-azonosító" + +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:329 +msgid "That is already your Jabber ID." +msgstr "Jelenleg is ez a Jabber-azonosítód." + +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:333 +msgid "Jabber ID already belongs to another user." +msgstr "Ez a Jabber-azonosító már egy másik felhasználóhoz tartozik." + +#. TRANS: Message given saving valid IM address that is to be confirmed. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:361 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" + +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +#: actions/imsettings.php:391 +msgid "That is the wrong IM address." +msgstr "Ez a hibás IM-cím." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +msgid "Couldn't delete IM confirmation." +msgstr "" + +#. TRANS: Message given after successfully canceling IM address confirmation. +#: actions/imsettings.php:405 +msgid "IM confirmation cancelled." +msgstr "" + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +#: actions/imsettings.php:427 +msgid "That is not your Jabber ID." +msgstr "Ez nem a te Jabber-azonosítód." + +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:450 +msgid "The IM address was removed." +msgstr "" + +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "" + +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "%s bejövő postafiókja" + +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Ez a postaládád, ahol láthatod a neked küldött privát üzeneteket." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "A meghívások tiltva vannak." + +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "" + +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Érvénytelen e-mail cím: %s" + +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Meghívó(k) elküldve" + +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Új felhasználó meghívása" + +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Ezen felhasználók híreire már feliratkoztál:" + +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Ők már felhasználók és automatikusan felirattunk az általuk küldött hírekre:" + +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Meghívók elküldve a következő embereknek:" + +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Ezen űrlap segítségével meghívhatsz barátokat és kollégákat erre a " +"szolgáltatásra." + +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "E-mail címek" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "A meghívandó barátaid címei (soronként egy)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Személyes üzenet" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "Megadhatsz egy személyes üzenetet a meghívóhoz." + +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" +msgid "Send" +msgstr "Küldés" + +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:231 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Be kell jelentkezned, ha csatlakozni szeretnél a csoporthoz." + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Nincs nicknév vagy azonosító." + +#: actions/joingroup.php:141 +#, php-format +msgid "%1$s joined group %2$s" +msgstr "%1$s csatlakozott a(z) %2$s csoporthoz" + +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot." + +#. TRANS: Error text shown when trying to leave an existing group the user is not a member of. +#: actions/leavegroup.php:100 lib/command.php:389 +msgid "You are not a member of that group." +msgstr "Nem vagy tagja annak a csoportnak." + +#: actions/leavegroup.php:137 +#, php-format +msgid "%1$s left group %2$s" +msgstr "" + +#. TRANS: User admin panel title +#: actions/licenseadminpanel.php:56 +msgctxt "TITLE" +msgid "License" +msgstr "" + +#: actions/licenseadminpanel.php:67 +msgid "License for this StatusNet site" +msgstr "" + +#: actions/licenseadminpanel.php:139 +msgid "Invalid license selection." +msgstr "" + +#: actions/licenseadminpanel.php:149 +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#: actions/licenseadminpanel.php:156 +msgid "Invalid license title. Max length is 255 characters." +msgstr "" + +#: actions/licenseadminpanel.php:168 +msgid "Invalid license URL." +msgstr "" + +#: actions/licenseadminpanel.php:171 +msgid "Invalid license image URL." +msgstr "" + +#: actions/licenseadminpanel.php:179 +msgid "License URL must be blank or a valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:187 +msgid "License image must be blank or valid URL." +msgstr "" + +#: actions/licenseadminpanel.php:239 +msgid "License selection" +msgstr "" + +#: actions/licenseadminpanel.php:245 +msgid "Private" +msgstr "" + +#: actions/licenseadminpanel.php:246 +msgid "All Rights Reserved" +msgstr "" + +#: actions/licenseadminpanel.php:247 +msgid "Creative Commons" +msgstr "" + +#: actions/licenseadminpanel.php:252 +msgid "Type" +msgstr "" + +#: actions/licenseadminpanel.php:254 +msgid "Select license" +msgstr "" + +#: actions/licenseadminpanel.php:268 +msgid "License details" +msgstr "" + +#: actions/licenseadminpanel.php:274 +msgid "Owner" +msgstr "" + +#: actions/licenseadminpanel.php:275 +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#: actions/licenseadminpanel.php:283 +msgid "License Title" +msgstr "" + +#: actions/licenseadminpanel.php:284 +msgid "The title of the license." +msgstr "" + +#: actions/licenseadminpanel.php:292 +msgid "License URL" +msgstr "" + +#: actions/licenseadminpanel.php:293 +msgid "URL for more information about the license." +msgstr "" + +#: actions/licenseadminpanel.php:300 +msgid "License Image URL" +msgstr "" + +#: actions/licenseadminpanel.php:301 +msgid "URL for an image to display with the license." +msgstr "" + +#: actions/licenseadminpanel.php:319 +msgid "Save license settings" +msgstr "" + +#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +msgid "Already logged in." +msgstr "Már be vagy jelentkezve." + +#: actions/login.php:148 +msgid "Incorrect username or password." +msgstr "Rossz felhasználónév vagy jelszó." + +#: actions/login.php:154 actions/otp.php:120 +msgid "Error setting user. You are probably not authorized." +msgstr "" + +#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 +msgid "Login" +msgstr "Bejelentkezés" + +#: actions/login.php:249 +msgid "Login to site" +msgstr "Bejelentkezés az oldalra" + +#: actions/login.php:258 actions/register.php:485 +msgid "Remember me" +msgstr "Emlékezz rám" + +#: actions/login.php:259 actions/register.php:487 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"A jövőben legyen automatikus a bejelentkezés; csak ha egyedül használod a " +"számítógépet!" + +#: actions/login.php:269 +msgid "Lost or forgotten password?" +msgstr "Elvesztetted vagy elfelejtetted a jelszavad?" + +#: actions/login.php:288 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" + +#: actions/login.php:292 +msgid "Login with your username and password." +msgstr "" + +#: actions/login.php:295 +#, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" + +#: actions/makeadmin.php:92 +msgid "Only an admin can make another user an admin." +msgstr "Csak kezelő tehet egy másik felhasználót kezelővé." + +#: actions/makeadmin.php:96 +#, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s már kezelője a \"%2$s\" csoportnak." + +#: actions/makeadmin.php:133 +#, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "" + +#: actions/makeadmin.php:146 +#, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Nem sikerült %1$s-t a %2$s csoport kezelőjévé tenni." + +#: actions/microsummary.php:69 +msgid "No current status." +msgstr "Nincs aktuális állapot." + +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Új alkalmazás" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "" + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "" + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Meg kell adnod forrás URL-t." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "Nem sikerült létrehozni az alkalmazást." + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Új csoport" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Ezen az űrlapon tudsz új csoportot létrehozni." + +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Új üzenet" + +#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +msgid "You can't send a message to this user." +msgstr "Ennek a felhasználónak nem küldhetsz üzenetet." + +#. TRANS: Command exception text shown when trying to send a direct message to another user without content. +#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 +#: lib/command.php:582 +msgid "No content!" +msgstr "Nincs tartalom!" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "Nincs címzett megadva." + +#. TRANS: Error text shown when trying to send a direct message to self. +#: actions/newmessage.php:164 lib/command.php:506 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." + +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Üzenet elküldve" + +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, php-format +msgid "Direct message to %s sent." +msgstr "Közvetlen üzenet ment %s részére." + +#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +msgid "Ajax Error" +msgstr "Ajax-hiba" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Új hír" + +#: actions/newnotice.php:227 +msgid "Notice posted" +msgstr "Hír elküldve" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Szöveg keresése" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:96 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:98 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Megböktük" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Megböktük!" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "" + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "" + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "" + +#: actions/oauthconnectionssettings.php:186 +#, php-format +msgid "Unable to revoke access for app: %s." +msgstr "" + +#: actions/oauthconnectionssettings.php:198 +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + +#: actions/oembed.php:80 actions/shownotice.php:100 +msgid "Notice has no profile." +msgstr "" + +#: actions/oembed.php:87 actions/shownotice.php:176 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, php-format +msgid "Content type %s not supported." +msgstr "" + +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#: actions/oembed.php:163 +#, php-format +msgid "Only %s URLs over plain HTTP please." +msgstr "" + +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 +msgid "Not a supported data format." +msgstr "Nem támogatott adatformátum." + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Emberek keresése" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Hírek keresése" + +#: actions/othersettings.php:60 +msgid "Other settings" +msgstr "Egyéb beállítások" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Számos egyéb beállítás kezelése." + +#: actions/othersettings.php:108 +msgid " (free service)" +msgstr " (ingyenes szolgáltatás)" + +#: actions/othersettings.php:116 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:117 +msgid "Automatic shortening service to use." +msgstr "" + +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" + +#: actions/otp.php:69 +msgid "No user ID specified." +msgstr "" + +#: actions/otp.php:83 +msgid "No login token specified." +msgstr "" + +#: actions/otp.php:90 +msgid "No login token requested." +msgstr "" + +#: actions/otp.php:95 +msgid "Invalid login token specified." +msgstr "" + +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%1$s kimenő postafiókja - %2$d. oldal" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "%s kimenő postafiókja" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "Ez az elküldött privát üzeneteid postafiókja." + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Jelszó megváltoztatása" + +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Változtasd meg a jelszavadat." + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Jelszó megváltoztatása" + +#: actions/passwordsettings.php:104 +msgid "Old password" +msgstr "Régi jelszó" + +#: actions/passwordsettings.php:108 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Új jelszó" + +#: actions/passwordsettings.php:109 +msgid "6 or more characters" +msgstr "6 vagy több karakter" + +#: actions/passwordsettings.php:112 actions/recoverpassword.php:239 +#: actions/register.php:440 +msgid "Confirm" +msgstr "Megerősítés" + +#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Ugyanaz mint a fenti jelszó" + +#: actions/passwordsettings.php:117 +msgid "Change" +msgstr "Változtassunk" + +#: actions/passwordsettings.php:154 actions/register.php:237 +msgid "Password must be 6 or more characters." +msgstr "A jelszónak legalább 6 karakterből kell állnia." + +#: actions/passwordsettings.php:157 actions/register.php:240 +msgid "Passwords don't match." +msgstr "A jelszavak nem egyeznek." + +#: actions/passwordsettings.php:165 +msgid "Incorrect old password" +msgstr "Érvénytelen a régi jelszó" + +#: actions/passwordsettings.php:181 +msgid "Error saving user; invalid." +msgstr "Hiba a felhasználó mentésekor; érvénytelen." + +#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +msgid "Can't save new password." +msgstr "Az új jelszót nem sikerült elmenteni." + +#: actions/passwordsettings.php:192 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Jelszó elmentve." + +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 +msgid "Paths" +msgstr "Útvonalak" + +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site" +msgstr "" + +#: actions/pathsadminpanel.php:157 +#, php-format +msgid "Theme directory not readable: %s." +msgstr "" + +#: actions/pathsadminpanel.php:163 +#, php-format +msgid "Avatar directory not writable: %s." +msgstr "" + +#: actions/pathsadminpanel.php:169 +#, php-format +msgid "Background directory not writable: %s." +msgstr "" + +#: actions/pathsadminpanel.php:177 +#, php-format +msgid "Locales directory not readable: %s." +msgstr "" + +#: actions/pathsadminpanel.php:183 +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter." + +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +msgid "Site" +msgstr "Webhely" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Szerver" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "A webhely kiszolgálójának neve." + +#: actions/pathsadminpanel.php:242 +msgid "Path" +msgstr "Útvonal" + +#: actions/pathsadminpanel.php:242 +msgid "Site path" +msgstr "Webhely útvonala" + +#: actions/pathsadminpanel.php:246 +msgid "Path to locales" +msgstr "A nyelvi fájlok elérési útvonala" + +#: actions/pathsadminpanel.php:246 +msgid "Directory path to locales" +msgstr "A nyelvi fájlok elérési útvonala" + +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "Téma" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "Téma elérési útvonala" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 +msgid "Avatars" +msgstr "Avatarok" + +#: actions/pathsadminpanel.php:284 +msgid "Avatar server" +msgstr "Avatar-kiszolgáló" + +#: actions/pathsadminpanel.php:288 +msgid "Avatar path" +msgstr "" + +#: actions/pathsadminpanel.php:292 +msgid "Avatar directory" +msgstr "Avatar-könyvtár" + +#: actions/pathsadminpanel.php:301 +msgid "Backgrounds" +msgstr "Hátterek" + +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "" + +#: actions/pathsadminpanel.php:309 +msgid "Background path" +msgstr "" + +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "" + +#: actions/pathsadminpanel.php:320 +msgid "SSL" +msgstr "SSL" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +msgid "Never" +msgstr "Soha" + +#: actions/pathsadminpanel.php:324 +msgid "Sometimes" +msgstr "Időnként" + +#: actions/pathsadminpanel.php:325 +msgid "Always" +msgstr "Mindig" + +#: actions/pathsadminpanel.php:329 +msgid "Use SSL" +msgstr "SSL használata" + +#: actions/pathsadminpanel.php:330 +msgid "When to use SSL" +msgstr "Mikor használjunk SSL-t" + +#: actions/pathsadminpanel.php:335 +msgid "SSL server" +msgstr "SSL-kiszolgáló" + +#: actions/pathsadminpanel.php:336 +msgid "Server to direct SSL requests to" +msgstr "" + +#: actions/pathsadminpanel.php:352 +msgid "Save paths" +msgstr "Elérési útvonalak mentése" + +#: actions/peoplesearch.php:52 +#, 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 "" +"Keressünk embereket a %%site.name%% webhelyen a nevük, lakhelyük vagy " +"érdeklődési körük alapján. A kifejezéseket válaszd el szóközökkel; legalább " +"3 betűből kell állniuk." + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Emberkereső" + +#: actions/peopletag.php:68 +#, php-format +msgid "Not a valid people tag: %s." +msgstr "" + +#: actions/peopletag.php:142 +#, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "" + +#: actions/postnotice.php:95 +msgid "Invalid notice content." +msgstr "Érvénytelen megjegyzéstartalom." + +#: actions/postnotice.php:101 +#, php-format +msgid "Notice 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’." + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Profilbeállítások" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Itt frissítheted a személyes információkat magadról, hogy az emberek minél " +"többet tudhassanak rólad." + +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "Személyes profil" + +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" + +#: actions/profilesettings.php:111 actions/register.php:455 +#: actions/showgroup.php:256 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:150 +msgid "Full name" +msgstr "Teljes név" + +#. TRANS: Form input field label. +#: actions/profilesettings.php:115 actions/register.php:460 +#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Honlap" + +#: actions/profilesettings.php:117 actions/register.php:462 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" +"A honlapodhoz, blogodhoz, vagy egy másik webhelyen lévő profilodhoz tartozó " +"URL" + +#: actions/profilesettings.php:122 actions/register.php:468 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Jellemezd önmagad és az érdeklődési köröd %d karakterben" + +#: actions/profilesettings.php:125 actions/register.php:471 +msgid "Describe yourself and your interests" +msgstr "Jellemezd önmagad és az érdeklődési köröd" + +#: actions/profilesettings.php:127 actions/register.php:473 +msgid "Bio" +msgstr "Életrajz" + +#: actions/profilesettings.php:132 actions/register.php:478 +#: actions/showgroup.php:265 actions/tagother.php:112 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 +#: lib/userprofile.php:165 +msgid "Location" +msgstr "Helyszín" + +#: actions/profilesettings.php:134 actions/register.php:480 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" + +#: actions/profilesettings.php:138 +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" + +#: actions/profilesettings.php:145 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:210 +msgid "Tags" +msgstr "Címkék" + +#: actions/profilesettings.php:147 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Címkék magadhoz (betűk, számok, -, ., és _), vesszővel vagy szóközzel " +"elválasztva" + +#: actions/profilesettings.php:151 +msgid "Language" +msgstr "Nyelv" + +#: actions/profilesettings.php:152 +msgid "Preferred language" +msgstr "Előnyben részesített nyelv" + +#: actions/profilesettings.php:161 +msgid "Timezone" +msgstr "Időzóna" + +#: actions/profilesettings.php:162 +msgid "What timezone are you normally in?" +msgstr "Általában melyik időzónában vagy?" + +#: actions/profilesettings.php:167 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatikusan iratkozzunk fel mindazok híreire, aki feliratkoznak a mieinkre " +"(nem embereknek való)" + +#: actions/profilesettings.php:228 actions/register.php:230 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Az bemutatkozás túl hosszú (max %d karakter)." + +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 +msgid "Timezone not selected." +msgstr "Nem választottál időzónát." + +#: actions/profilesettings.php:241 +msgid "Language is too long (max 50 chars)." +msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)." + +#: actions/profilesettings.php:253 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Érvénytelen címke: \"%s\"" + +#: actions/profilesettings.php:306 +msgid "Couldn't update user for autosubscribe." +msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani." + +#: actions/profilesettings.php:363 +msgid "Couldn't save location prefs." +msgstr "Nem sikerült a helyszín beállításait elmenteni." + +#: actions/profilesettings.php:375 +msgid "Couldn't save profile." +msgstr "Nem sikerült elmenteni a profilt." + +#: actions/profilesettings.php:383 +msgid "Couldn't save tags." +msgstr "Nem sikerült a címkéket elmenteni." + +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:138 +msgid "Settings saved." +msgstr "A beállításokat elmentettük." + +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)." +msgstr "" + +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:130 +#, php-format +msgid "Public timeline, page %d" +msgstr "Közösségi történet, %d. oldal" + +#: actions/public.php:132 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "Közösségi történet" + +#: actions/public.php:160 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:164 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:168 +msgid "Public Stream Feed (Atom)" +msgstr "" + +#: actions/public.php:188 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "Ez itt %%site.name%% közösségi története, de még senki nem írt semmit." + +#: actions/public.php:191 +msgid "Be the first to post!" +msgstr "Légy az első aki ír!" + +#: actions/public.php:195 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "Ha [regisztrálnál](%%action.register%%), te írhatnád az első hírt!" + +#: actions/public.php:242 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"%%site.name%% - egy [mikroblog](http://hu.wikipedia.org/wiki/" +"Mikroblog#Mikroblog), mely a szabad [StatusNet](http://status.net/) " +"szoftveren fut.\n" +"[Csatlakozz](%%action.register%%), és küldj híreket magadról a barátaidnak, " +"a családodnak, a munkatársaidnak! ([Tudj meg többet](%%doc.help%%))" + +#: actions/public.php:247 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "Nyilvános címkefelhő" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "%s legnépszerűbb címkéi mostanában " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "Küld be te az első hírt!" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/publictagcloud.php:134 +msgid "Tag cloud" +msgstr "Címkefelhő" + +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Már be vagy jelentkezve!" + +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Nincs ilyen visszaállítási kód." + +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "Nem visszaállítási kód." + +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "" + +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "Nem sikerült a felhasználó frissítése a megerősített e-mail címmel." + +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "Jelszó visszaállítása" + +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "Becenév vagy email cím" + +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Alaphelyzetbe állítás" + +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Jelszó alaphelyzetbe állítása" + +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Elfelejtett jelszó" + +#: actions/recoverpassword.php:210 actions/recoverpassword.php:335 +msgid "Password recovery requested" +msgstr "Jelszó visszaállítás kérvényezve" + +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Ismeretlen művelet" + +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 vagy több karakter, és ne felejtsd el!" + +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Alaphelyzet" + +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Adj meg egy nicknevet vagy email címet." + +#: actions/recoverpassword.php:282 +msgid "No user with that email address or username." +msgstr "" + +#: actions/recoverpassword.php:299 +msgid "No registered email address for that user." +msgstr "" + +#: actions/recoverpassword.php:313 +msgid "Error saving address confirmation." +msgstr "" + +#: actions/recoverpassword.php:338 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" + +#: actions/recoverpassword.php:357 +msgid "Unexpected password reset." +msgstr "" + +#: actions/recoverpassword.php:365 +msgid "Password must be 6 chars or more." +msgstr "A jelszónak legalább 6 karakterből kell állnia." + +#: actions/recoverpassword.php:369 +msgid "Password and confirmation do not match." +msgstr "A jelszó és a megerősítése nem egyeznek meg." + +#: actions/recoverpassword.php:388 actions/register.php:255 +msgid "Error setting user." +msgstr "Hiba a felhasználó beállításakor." + +#: actions/recoverpassword.php:395 +msgid "New password successfully saved. You are now logged in." +msgstr "" + +#: actions/register.php:92 actions/register.php:196 actions/register.php:412 +msgid "Sorry, only invited people can register." +msgstr "Elnézést, de csak meghívóval lehet regisztrálni." + +#: actions/register.php:99 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/register.php:119 +msgid "Registration successful" +msgstr "A regisztráció sikeres" + +#: actions/register.php:121 actions/register.php:506 lib/logingroupnav.php:85 +msgid "Register" +msgstr "Regisztráció" + +#: actions/register.php:142 +msgid "Registration not allowed." +msgstr "A regisztráció nem megengedett." + +#: actions/register.php:205 +msgid "You can't register if you don't agree to the license." +msgstr "Nem tudsz regisztrálni ha nem fogadod el a licencet." + +#: actions/register.php:219 +msgid "Email address already exists." +msgstr "Az e-mail cím már létezik." + +#: actions/register.php:250 actions/register.php:272 +msgid "Invalid username or password." +msgstr "Érvénytelen felhasználónév vagy jelszó." + +#: actions/register.php:350 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/register.php:432 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 kisbetű vagy számjegy, nem lehet írásjel vagy szóköz benne. Szükséges." + +#: actions/register.php:437 +msgid "6 or more characters. Required." +msgstr "6 vagy több karakter. Kötelező." + +#: actions/register.php:441 +msgid "Same as password above. Required." +msgstr "Ugyanaz mint a jelszó fentebb. Szükséges." + +#. TRANS: Link description in user account settings menu. +#: actions/register.php:445 actions/register.php:449 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +msgid "Email" +msgstr "E-mail" + +#: actions/register.php:446 actions/register.php:450 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" +"Csak frissítéskor, fontos közlemények esetén és jelszóproblémák orvoslására " +"használjuk" + +#: actions/register.php:457 +msgid "Longer name, preferably your \"real\" name" +msgstr "Hosszabb név, célszerűen a \"valódi\" neved" + +#: actions/register.php:518 +#, php-format +msgid "" +"I understand that content and data of %1$s are private and confidential." +msgstr "" + +#: actions/register.php:528 +#, 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:532 +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:535 +msgid "All rights reserved." +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +#: actions/register.php:583 +#, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + +#: actions/register.php:607 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Hamarosan kapnod kell egy e-mailt az e-mail címed megerősítésére vonatkozó " +"utasításokkal.)" + +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "Távoli feliratkozás" + +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "Felhasználó beceneve" + +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "Profil URL" + +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:406 +msgid "Subscribe" +msgstr "Kövessük" + +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/repeat.php:57 +msgid "Only logged-in users can repeat notices." +msgstr "" + +#: actions/repeat.php:64 actions/repeat.php:71 +msgid "No notice specified." +msgstr "Nincs hír megjelölve." + +#: actions/repeat.php:76 +msgid "You can't repeat your own notice." +msgstr "" + +#: actions/repeat.php:90 +msgid "You already repeated that notice." +msgstr "" + +#: actions/repeat.php:114 lib/noticelist.php:676 +msgid "Repeated" +msgstr "" + +#: actions/repeat.php:119 +msgid "Repeated!" +msgstr "" + +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + +#: actions/replies.php:145 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:152 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:159 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/replies.php:199 +#, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to them yet." +msgstr "" + +#: actions/replies.php:204 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:206 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/revokerole.php:75 +msgid "You cannot revoke user roles on this site." +msgstr "" + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + +#: actions/rsd.php:146 actions/version.php:159 +msgid "StatusNet" +msgstr "StatusNet" + +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:379 +msgid "Sessions" +msgstr "Munkamenetek" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site" +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Kezeljük a munkameneteket" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "Mi magunk kezeljük-e a munkameneteket." + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +msgid "Save site settings" +msgstr "Mentsük el a webhely beállításait" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#. TRANS: Form input field label for application icon. +#: actions/showapplication.php:159 lib/applicationeditform.php:173 +msgid "Icon" +msgstr "Ikon" + +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +msgid "Name" +msgstr "Név" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +msgid "Organization" +msgstr "Szervezet" + +#. TRANS: Form input field label. +#: actions/showapplication.php:187 actions/version.php:200 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +msgid "Description" +msgstr "Leírás" + +#: actions/showapplication.php:192 actions/showgroup.php:436 +#: lib/profileaction.php:187 +msgid "Statistics" +msgstr "Statisztika" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "" + +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "Nem sikerült a kedvenc híreket lekérni." + +#: actions/showfavorites.php:171 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s kedvenceinek RSS 1.0 hírcsatornája" + +#: actions/showfavorites.php:178 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s kedvenceinek RSS 2.0 hírcsatornája" + +#: actions/showfavorites.php:185 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s kedvenceinek Atom hírcsatornája" + +#: actions/showfavorites.php:206 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:208 +#, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:212 +#, 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 "" + +#: actions/showfavorites.php:243 +msgid "This is a way to share what you like." +msgstr "Ez az egyik módja annak, hogy megoszd amit kedvelsz." + +#: actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "%s csoport" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s csoport, %2$d. oldal" + +#: actions/showgroup.php:227 +msgid "Group profile" +msgstr "Csoportprofil" + +#: actions/showgroup.php:272 actions/tagother.php:118 +#: actions/userauthorization.php:175 lib/userprofile.php:178 +msgid "URL" +msgstr "URL-cím" + +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +msgid "Note" +msgstr "Megjegyzés" + +#: actions/showgroup.php:293 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "Álnevek" + +#: actions/showgroup.php:302 +msgid "Group actions" +msgstr "Csoport-tevékenységek" + +#: actions/showgroup.php:338 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s csoport RSS 1.0 hírcsatornája" + +#: actions/showgroup.php:344 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s csoport RSS 2.0 hírcsatornája" + +#: actions/showgroup.php:350 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s csoport Atom hírcsatornája" + +#: actions/showgroup.php:355 +#, php-format +msgid "FOAF for %s group" +msgstr "FOAF a %s csoportnak" + +#: actions/showgroup.php:393 actions/showgroup.php:445 +msgid "Members" +msgstr "Tagok" + +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 +#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(nincs)" + +#: actions/showgroup.php:404 +msgid "All members" +msgstr "Összes tag" + +#: actions/showgroup.php:439 +msgid "Created" +msgstr "Létrehoztuk" + +#: actions/showgroup.php:455 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** egy felhasználói csoport a %%%%site.name%%%% webhelyen - ami egy " +"[mikroblog](http://hu.wikipedia.org/wiki/Mikroblog#Mikroblog), mely a szabad " +"[StatusNet](http://status.net/) szoftveren fut. A csoport tagjai rövid " +"üzeneteket írnak az életükről és az érdeklődési körükkel kapcsolatban.\n" +"[Csatlakozz](%%%%action.register%%%%), és légy tagja ennek a csoportnak - és " +"még sok másiknak is! ([Tudj meg többet](%%%%doc.help%%%%))" + +#: actions/showgroup.php:461 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:489 +msgid "Admins" +msgstr "Adminisztrátorok" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "Nincs ilyen üzenet." + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "Csak a küldő és a címzett olvashatja ezt az üzenetet." + +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "A hírt töröltük." + +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" +msgstr " %s megcímkézve" + +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "" + +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "RSS 1.0 csatorna %1$s %2$s címkéjű híreiből" + +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s RSS 1.0 hírcsatornája" + +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s RSS 2.0 hírcsatornája" + +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s Atom hírcsatornája" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:200 +#, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "Ez %1$s története, de %2$s még nem tett közzé hírt." + +#: actions/showstream.php:205 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:207 +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" + +#: actions/showstream.php:243 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** %%%%site.name%%%% felhasználó, ami egy [mikroblog](http://hu." +"wikipedia.org/wiki/Mikroblog#Mikroblog) szolgáltatás, mely a szabad " +"[StatusNet](http://status.net/) szoftverre épült. [Csatlakozz](%%%%action." +"register%%%%) és kövesd nyomon **%s** pletykáit - és még rengeteg mást! " +"([Tudj meg többet](%%%%doc.help%%%%))" + +#: actions/showstream.php:248 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** %%%%site.name%%%% felhasználó, [mikroblogot](http://hu.wikipedia.org/" +"wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" +"status.net/) szoftverre épült. " + +#: actions/showstream.php:305 +#, php-format +msgid "Repeat of %s" +msgstr "%s ismétlése" + +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "Ezen a webhelyen nem hallgattathatod el a felhasználókat." + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "A felhasználó már el van hallgattatva." + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site" +msgstr "" + +#: actions/siteadminpanel.php:133 +msgid "Site name must have non-zero length." +msgstr "A webhely nevének legalább egy karakter hosszúnak kell lennie." + +#: actions/siteadminpanel.php:141 +msgid "You must have a valid contact email address." +msgstr "Valódi kapcsolattartó email címet kell megadnod." + +#: actions/siteadminpanel.php:159 +#, php-format +msgid "Unknown language \"%s\"." +msgstr "Ismeretlen nyelv: \"%s\"." + +#: actions/siteadminpanel.php:165 +msgid "Minimum text limit is 0 (unlimited)." +msgstr "" + +#: actions/siteadminpanel.php:171 +msgid "Dupe limit must be one or more seconds." +msgstr "" + +#: actions/siteadminpanel.php:221 +msgid "General" +msgstr "Általános" + +#: actions/siteadminpanel.php:224 +msgid "Site name" +msgstr "A webhely neve" + +#: actions/siteadminpanel.php:225 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:229 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:230 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:234 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:235 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:239 +msgid "Contact email address for your site" +msgstr "A webhelyhez tartozó kapcsolattartó email cím" + +#: actions/siteadminpanel.php:245 +msgid "Local" +msgstr "Helyi" + +#: actions/siteadminpanel.php:256 +msgid "Default timezone" +msgstr "Alapértelmezett időzóna" + +#: actions/siteadminpanel.php:257 +msgid "Default timezone for the site; usually UTC." +msgstr "A webhely alapértelmezett időzónája; többnyire GMT+1." + +#: actions/siteadminpanel.php:262 +msgid "Default language" +msgstr "Alapértelmezett nyelv" + +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" + +#: actions/siteadminpanel.php:271 +msgid "Limits" +msgstr "Korlátok" + +#: actions/siteadminpanel.php:274 +msgid "Text limit" +msgstr "Szöveg hosszának korlátja" + +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." +msgstr "A hírek maximális karakterszáma." + +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" +msgstr "Duplázások korlátja" + +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." +msgstr "" + +#: actions/sitenoticeadminpanel.php:56 +msgid "Site Notice" +msgstr "" + +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" +msgstr "" + +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." +msgstr "" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars." +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +msgid "Site notice text" +msgstr "" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +msgid "Save site notice" +msgstr "" + +#. TRANS: Title for SMS settings. +#: actions/smssettings.php:59 +msgid "SMS settings" +msgstr "SMS beállítások" + +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +msgid "SMS is not available." +msgstr "Az SMS nem elérhető." + +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +msgid "SMS address" +msgstr "" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 +msgid "Awaiting confirmation on this phone number." +msgstr "Ez a telefonszám ellenőrzésre vár." + +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 +msgid "Confirmation code" +msgstr "" + +#. TRANS: Form field instructions in SMS settings form. +#: actions/smssettings.php:144 +msgid "Enter the code you received on your phone." +msgstr "Add meg a kódot amit a telefonodra kaptál." + +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Megerősítés" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 +msgid "SMS phone number" +msgstr "SMS telefonszám" + +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#. TRANS: Form legend for SMS preferences form. +#: actions/smssettings.php:195 +msgid "SMS preferences" +msgstr "" + +#. TRANS: Checkbox label in SMS preferences form. +#: actions/smssettings.php:201 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +msgid "SMS preferences saved." +msgstr "" + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 +msgid "No phone number." +msgstr "Nincs telefonszám." + +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +msgid "No carrier selected." +msgstr "" + +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +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:356 +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:384 +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" + +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 +msgid "That is the wrong confirmation number." +msgstr "" + +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +#: actions/smssettings.php:427 +msgid "SMS confirmation cancelled." +msgstr "" + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 +msgid "That is not your phone number." +msgstr "" + +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +msgid "The SMS phone number was removed." +msgstr "" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 +msgid "Mobile carrier" +msgstr "Mobilszolgáltató" + +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 +msgid "Select a carrier" +msgstr "Válassz egy szolgáltatót" + +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#: actions/smssettings.php:525 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +msgid "No code entered" +msgstr "Nincs kód megadva" + +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:395 +msgid "Snapshots" +msgstr "Pillanatképek" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Adat pillanatképek" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Gyakoriság" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL jelentése" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +msgid "Save snapshot settings" +msgstr "" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + +#. TRANS: Exception thrown when a subscription could not be stored on the server. +#: actions/subedit.php:83 classes/Subscription.php:136 +msgid "Could not save subscription." +msgstr "" + +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" + +#: actions/subscribe.php:107 +msgid "No such profile." +msgstr "Nincs ilyen profil." + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 +msgid "Subscribed" +msgstr "Feliratkozott" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "" + +#: actions/subscribers.php:52 +#, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Ezek azok az emberek, akik odafigyelnek %s híreire." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "" + +#: actions/subscriptions.php:54 +#, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "Ezek azok az emberek, akiknek a híreire odafigyelsz." + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: actions/subscriptions.php:126 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, php-format +msgid "%s is not listening to anyone." +msgstr "%s nem követ figyelemmel senkit." + +#: actions/subscriptions.php:208 +msgid "Jabber" +msgstr "Jabber" + +#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" + +#: actions/tag.php:69 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + +#: actions/tag.php:87 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s címke RSS 1.0 hírcsatornája" + +#: actions/tag.php:93 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s címke RSS 2.0 hírcsatornája" + +#: actions/tag.php:99 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s címke Atom hírcsatornája" + +#: actions/tagother.php:39 +msgid "No ID argument." +msgstr "" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:77 lib/userprofile.php:76 +msgid "User profile" +msgstr "Felhasználói profil" + +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:103 +msgid "Photo" +msgstr "Fénykép" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "" + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "Nincs ilyen címke." + +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "" + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: 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 +msgid "Unsubscribed" +msgstr "" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, php-format +msgid "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" + +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +msgctxt "TITLE" +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:71 +msgid "User settings for this StatusNet site" +msgstr "" + +#: actions/useradminpanel.php:150 +msgid "Invalid bio limit. Must be numeric." +msgstr "" + +#: actions/useradminpanel.php:156 +msgid "Invalid welcome text. Max length is 255 characters." +msgstr "" + +#: actions/useradminpanel.php:166 +#, php-format +msgid "Invalid default subscripton: '%1$s' is not user." +msgstr "" + +#. TRANS: Link description in user account settings menu. +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: actions/useradminpanel.php:223 +msgid "Bio Limit" +msgstr "Bemutatkozás méretkorlátja" + +#: actions/useradminpanel.php:224 +msgid "Maximum length of a profile bio in characters." +msgstr "" + +#: actions/useradminpanel.php:232 +msgid "New users" +msgstr "Új felhasználók" + +#: actions/useradminpanel.php:236 +msgid "New user welcome" +msgstr "" + +#: actions/useradminpanel.php:237 +msgid "Welcome text for new users (Max 255 chars)." +msgstr "" + +#: actions/useradminpanel.php:242 +msgid "Default subscription" +msgstr "" + +#: actions/useradminpanel.php:243 +msgid "Automatically subscribe new users to this user." +msgstr "" + +#: actions/useradminpanel.php:252 +msgid "Invitations" +msgstr "Meghívások" + +#: actions/useradminpanel.php:257 +msgid "Invitations enabled" +msgstr "A meghívások engedélyezve vannak" + +#: actions/useradminpanel.php:259 +msgid "Whether to allow users to invite new users." +msgstr "" + +#: actions/useradminpanel.php:295 +msgid "Save user settings" +msgstr "" + +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "Feliratkozás engedélyezése" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#. TRANS: Menu item for site administration +#: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 +msgid "License" +msgstr "Licenc" + +#: actions/userauthorization.php:217 +msgid "Accept" +msgstr "Elfogadás" + +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" + +#: actions/userauthorization.php:219 +msgid "Reject" +msgstr "Visszautasítás" + +#: actions/userauthorization.php:220 +msgid "Reject this subscription" +msgstr "" + +#: actions/userauthorization.php:232 +msgid "No authorization request!" +msgstr "" + +#: actions/userauthorization.php:254 +msgid "Subscription authorized" +msgstr "" + +#: actions/userauthorization.php:256 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:266 +msgid "Subscription rejected" +msgstr "" + +#: actions/userauthorization.php:268 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:303 +#, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "" + +#: actions/userauthorization.php:308 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:314 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:329 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:345 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:350 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:355 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "" + +#: actions/usergroups.php:132 +msgid "Search for more groups" +msgstr "" + +#: actions/usergroups.php:159 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:164 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +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 in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: lib/atomusernoticefeed.php:76 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + +#: actions/version.php:75 +#, php-format +msgid "StatusNet %s" +msgstr "" + +#: actions/version.php:155 +#, php-format +msgid "" +"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " +"Inc. and contributors." +msgstr "" + +#: actions/version.php:163 +msgid "Contributors" +msgstr "Közreműködők" + +#: actions/version.php:170 +msgid "" +"StatusNet is free software: you can redistribute it and/or modify it under " +"the terms of the GNU Affero General Public License as published by the Free " +"Software Foundation, either version 3 of the License, or (at your option) " +"any later version. " +msgstr "" + +#: actions/version.php:176 +msgid "" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " +"for more details. " +msgstr "" + +#: actions/version.php:182 +#, php-format +msgid "" +"You should have received a copy of the GNU Affero General Public License " +"along with this program. If not, see %s." +msgstr "" + +#: actions/version.php:191 +msgid "Plugins" +msgstr "" + +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +msgid "Version" +msgstr "" + +#: actions/version.php:199 +msgid "Author(s)" +msgstr "Szerző(k)" + +#: classes/Fave.php:147 lib/favorform.php:140 +msgid "Favor" +msgstr "Kedvelem" + +#: classes/Fave.php:148 +#, php-format +msgid "%s marked notice %s as a favorite." +msgstr "" + +#. TRANS: Server exception thrown when a URL cannot be processed. +#: classes/File.php:143 +#, php-format +msgid "Cannot process URL '%s'" +msgstr "" + +#. TRANS: Server exception thrown when... Robin thinks something is impossible! +#: classes/File.php:175 +msgid "Robin thinks something is impossible." +msgstr "" + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. +#: classes/File.php:190 +#, php-format +msgid "" +"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgstr "" + +#. TRANS: Message given if an upload would exceed user quota. +#. TRANS: %d (number) is the user quota in bytes. +#: classes/File.php:202 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#. TRANS: Message given id an upload would exceed a user's monthly quota. +#. TRANS: $d (number) is the monthly user quota in bytes. +#: classes/File.php:211 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +msgid "Invalid filename." +msgstr "" + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +msgid "Group leave failed." +msgstr "" + +#: classes/Group_member.php:108 lib/joinform.php:114 +msgid "Join" +msgstr "Csatlakozzunk" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: classes/Group_member.php:112 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +msgid "Could not update local group." +msgstr "" + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, php-format +msgid "Could not create login token for %s" +msgstr "" + +#. TRANS: Exception thrown when database name or Data Source Name could not be found. +#: classes/Memcached_DataObject.php:533 +msgid "No database name or DSN found anywhere." +msgstr "" + +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +msgid "You are banned from sending direct messages." +msgstr "" + +#. TRANS: Message given when a message could not be stored on the server. +#: classes/Message.php:63 +msgid "Could not insert message." +msgstr "" + +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +msgid "Could not update message with new URI." +msgstr "" + +#. TRANS: Server exception thrown when a user profile for a notice cannot be found. +#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). +#: classes/Notice.php:98 +#, php-format +msgid "No such profile (%1$d) for notice (%2$d)." +msgstr "" + +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:193 +#, php-format +msgid "Database error inserting hashtag: %s" +msgstr "" + +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +msgid "Problem saving notice. Too long." +msgstr "" + +#. TRANS: Client exception thrown when trying to save a notice for an unknown user. +#: classes/Notice.php:270 +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:276 +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:283 +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:291 +msgid "You are banned from posting notices on this site." +msgstr "" + +#. TRANS: Server exception thrown when a notice cannot be saved. +#. TRANS: Server exception thrown when a notice cannot be updated. +#: classes/Notice.php:358 classes/Notice.php:385 +msgid "Problem saving notice." +msgstr "Probléma merült fel a hír mentése közben." + +#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). +#: classes/Notice.php:906 +msgid "Bad type provided to saveKnownGroups" +msgstr "" + +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +msgid "Problem saving group inbox." +msgstr "" + +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#: classes/Notice.php:1824 +#, php-format +msgid "RT @%1$s %2$s" +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:737 +#, 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:746 +#, php-format +msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." +msgstr "" + +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +msgid "Missing profile." +msgstr "" + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +msgid "Unable to save tag." +msgstr "" + +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +msgid "You have been banned from subscribing." +msgstr "Eltiltottak a feliratkozástól." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +msgid "Already subscribed!" +msgstr "Már feliratkoztál!" + +#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. +#: classes/Subscription.php:85 +msgid "User has blocked you." +msgstr "A felhasználó blokkolt." + +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +msgid "Not subscribed!" +msgstr "Nem követed figyelemmel!" + +#. TRANS: Exception thrown when trying to unsubscribe a user from themselves. +#: classes/Subscription.php:178 +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:206 +msgid "Could not delete subscription OMB token." +msgstr "" + +#. TRANS: Exception thrown when a subscription could not be deleted on the server. +#: classes/Subscription.php:218 +msgid "Could not delete subscription." +msgstr "" + +#: classes/Subscription.php:254 +msgid "Follow" +msgstr "" + +#: classes/Subscription.php:255 +#, php-format +msgid "%s is now following %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:384 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#. TRANS: Server exception thrown when creating a group failed. +#: classes/User_group.php:496 +msgid "Could not create group." +msgstr "Nem sikerült létrehozni a csoportot." + +#. TRANS: Server exception thrown when updating a group URI failed. +#: classes/User_group.php:506 +msgid "Could not set group URI." +msgstr "" + +#. TRANS: Server exception thrown when setting group membership failed. +#: classes/User_group.php:529 +msgid "Could not set group membership." +msgstr "Nem sikerült beállítani a csoporttagságot." + +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +msgid "Could not save local group info." +msgstr "" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 +msgid "Upload an avatar" +msgstr "Avatar feltöltése" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 +msgid "Change your password" +msgstr "Változtasd meg a jelszavad" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:130 +msgid "Change email handling" +msgstr "Email kezelés megváltoztatása" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +msgid "Design your profile" +msgstr "" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:144 +msgid "Other options" +msgstr "További opciók" + +#. TRANS: Link description in user account settings menu. +#: lib/accountsettingsaction.php:146 +msgid "Other" +msgstr "Más egyéb" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" + +#. TRANS: Page title for a page without a title set. +#: lib/action.php:164 +msgid "Untitled page" +msgstr "Név nélküli oldal" + +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +msgid "Primary site navigation" +msgstr "Elsődleges navigáció" + +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +msgctxt "MENU" +msgid "Personal" +msgstr "" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "" + +#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services +#: lib/action.php:468 +msgid "Connect" +msgstr "Kapcsolódás" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "" + +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:487 +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "" + +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:490 +msgctxt "MENU" +msgid "Logout" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:495 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "" + +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +msgctxt "MENU" +msgid "Register" +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:501 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#: lib/action.php:504 +msgctxt "MENU" +msgid "Login" +msgstr "" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:507 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "" + +#: lib/action.php:510 +msgctxt "MENU" +msgid "Help" +msgstr "" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:516 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +msgid "Site notice" +msgstr "A webhely híre" + +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:605 +msgid "Local views" +msgstr "" + +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +msgid "Page notice" +msgstr "" + +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +msgid "Secondary site navigation" +msgstr "Másodlagos navigáció" + +#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#: lib/action.php:784 +msgid "Help" +msgstr "Súgó" + +#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#: lib/action.php:787 +msgid "About" +msgstr "Névjegy" + +#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#: lib/action.php:790 +msgid "FAQ" +msgstr "GyIK" + +#. TRANS: Secondary navigation menu option leading to Terms of Service. +#: lib/action.php:795 +msgid "TOS" +msgstr "Felhasználási feltételek" + +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:799 +msgid "Privacy" +msgstr "" + +#. TRANS: Secondary navigation menu option. +#: lib/action.php:802 +msgid "Source" +msgstr "Forrás" + +#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. +#: lib/action.php:808 +msgid "Contact" +msgstr "Kapcsolat" + +#: lib/action.php:810 +msgid "Badge" +msgstr "" + +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:839 +msgid "StatusNet software license" +msgstr "A StatusNet szoftver licence" + +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" + +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#: lib/action.php:849 +#, php-format +msgid "**%%site.name%%** is a microblogging service." +msgstr "" + +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: %s is the version of StatusNet that is being used. +#: lib/action.php:856 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +msgid "Site content license" +msgstr "A webhely tartalmára vonatkozó licenc" + +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:879 +#, 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:886 +#, 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:890 +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:904 +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" + +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +msgid "Pagination" +msgstr "" + +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +#: lib/action.php:1259 +msgid "After" +msgstr "Utána" + +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1269 +msgid "Before" +msgstr "Előtte" + +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +#: lib/activity.php:122 +msgid "Expecting a root feed element but got a whole XML document." +msgstr "" + +#. TRANS: Client exception thrown when there is no source attribute. +#: lib/activityutils.php:203 +msgid "Can't handle remote content yet." +msgstr "" + +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +#: lib/activityutils.php:240 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +#: lib/activityutils.php:245 +msgid "Can't handle embedded Base64 content yet." +msgstr "" + +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "Nem tudsz változtatni ezen a webhelyen." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +msgid "Changes to that panel are not allowed." +msgstr "Azon a panelen nem szabad változtatni." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +msgid "showForm() not implemented." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +msgid "saveSettings() not implemented." +msgstr "" + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +msgid "Unable to delete design setting." +msgstr "Nem sikerült törölni a megjelenés beállításait." + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +msgid "Basic site configuration" +msgstr "A webhely elemi beállításai" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +msgctxt "MENU" +msgid "Site" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +msgid "Design configuration" +msgstr "A megjelenés beállításai" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +msgctxt "MENU" +msgid "Design" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +msgid "User configuration" +msgstr "A felhasználók beállításai" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Felhasználó" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +msgid "Access configuration" +msgstr "A jogosultságok beállításai" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +msgid "Paths configuration" +msgstr "Az útvonalak beállításai" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +msgid "Sessions configuration" +msgstr "Munkamenetek beállításai" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +msgid "Edit site notice" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +msgid "Snapshots configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:401 +msgid "Set site license" +msgstr "" + +#. TRANS: Client error 401. +#: lib/apiauth.php:111 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +#: lib/apiauth.php:175 +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +#: lib/apiauth.php:212 +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:217 +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:258 lib/apiauth.php:290 +msgid "Could not authenticate you." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +#: lib/apioauthstore.php:178 +msgid "Tried to revoke unknown token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +#: lib/apioauthstore.php:182 +msgid "Failed to delete revoked token." +msgstr "" + +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +msgid "Edit application" +msgstr "" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +msgid "Icon for this application" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:204 +msgid "Describe your application" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +msgid "URL of the homepage of this application" +msgstr "" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +msgid "URL for the homepage of the organization" +msgstr "A szervezet honlapjának URL-je" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:242 +msgid "URL to redirect to after authentication" +msgstr "Hitelesítés után átirányítás erre az URL-re" + +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:270 +msgid "Browser" +msgstr "Böngésző" + +#. TRANS: Radio button label for application type +#: lib/applicationeditform.php:287 +msgid "Desktop" +msgstr "Asztal" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:289 +msgid "Type of application, browser or desktop" +msgstr "" + +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:313 +msgid "Read-only" +msgstr "Csak olvasható" + +#. TRANS: Radio button label for access type. +#: lib/applicationeditform.php:333 +msgid "Read-write" +msgstr "Írható-olvasható" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:335 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#. TRANS: Submit button title. +#: lib/applicationeditform.php:352 +msgid "Cancel" +msgstr "Mégse" + +#. TRANS: Application access type +#: lib/applicationlist.php:135 +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +#: lib/applicationlist.php:137 +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:143 +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Button label +#: lib/applicationlist.php:158 +msgctxt "BUTTON" +msgid "Revoke" +msgstr "" + +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +msgid "Attachments" +msgstr "Csatolmányok" + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Szerző" + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 +msgid "Provider" +msgstr "Szolgáltató" + +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 +msgid "Notices where this attachment appears" +msgstr "Hírek, ahol ez a melléklet megjelenik" + +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +msgid "Tags for this attachment" +msgstr "Címkék ehhez a melléklethez" + +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +msgid "Password changing failed" +msgstr "A jelszó megváltoztatása sikertelen" + +#: lib/authenticationplugin.php:236 +msgid "Password changing is not allowed" +msgstr "A jelszó megváltoztatása nem engedélyezett" + +#. TRANS: Title for the form to block a user. +#: lib/blockform.php:70 +msgid "Block" +msgstr "Blokkolás" + +#: lib/channel.php:157 lib/channel.php:177 +msgid "Command results" +msgstr "" + +#: lib/channel.php:229 lib/mailhandler.php:142 +msgid "Command complete" +msgstr "" + +#: lib/channel.php:240 +msgid "Command failed" +msgstr "" + +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +msgid "User has no last notice." +msgstr "" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#: lib/command.php:150 +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + +#. TRANS: Error text shown when an unimplemented command is given. +#: lib/command.php:185 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#. TRANS: Command exception text shown when a user tries to nudge themselves. +#: lib/command.php:231 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, php-format +msgid "Nudge sent to %s." +msgstr "" + +#. TRANS: User statistics text. +#. TRANS: %1$s is the number of other user the user is subscribed to. +#. TRANS: %2$s is the number of users that are subscribed to the user. +#. TRANS: %3$s is the number of notices the user has sent. +#: lib/command.php:270 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Figyelemmel követ: %1$s\n" +"Figyelemmel követik: %2$s\n" +"Hírek: %3$s" + +#. TRANS: Text shown when a notice has been marked as favourite successfully. +#: lib/command.php:314 +msgid "Notice marked as fave." +msgstr "A hír kedveltként van megjelölve." + +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:360 +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: lib/command.php:408 +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + +#. TRANS: Whois output. %s is the full name of the queried user. +#: lib/command.php:434 +#, php-format +msgid "Fullname: %s" +msgstr "Teljes név: %s" + +#. TRANS: Whois output. %s is the location of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:438 lib/mail.php:268 +#, php-format +msgid "Location: %s" +msgstr "Helyszín: %s" + +#. TRANS: Whois output. %s is the homepage of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:442 lib/mail.php:271 +#, php-format +msgid "Homepage: %s" +msgstr "Honlap: %s" + +#. TRANS: Whois output. %s is the bio information of the queried user. +#: lib/command.php:446 +#, php-format +msgid "About: %s" +msgstr "" + +#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). +#: lib/command.php:474 +#, php-format +msgid "" +"%s is a remote profile; you can only send direct messages to users on the " +"same server." +msgstr "" + +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +#: lib/command.php:517 +msgid "Error sending direct message." +msgstr "Hiba a közvetlen üzenet küldése közben." + +#. 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:554 +#, php-format +msgid "Notice from %s repeated." +msgstr "" + +#. TRANS: Error text shown when repeating a notice fails with an unknown reason. +#: lib/command.php:557 +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. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" + +#. 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:603 +#, 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:606 +msgid "Error saving notice." +msgstr "Hiba a hír elmentésekor." + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +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:664 +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:672 +#, 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:694 lib/command.php:804 +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:705 +#, 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:724 lib/command.php:750 +msgid "Command not yet implemented." +msgstr "" + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +msgid "Notification off." +msgstr "Ne legyenek értesítések." + +#. TRANS: Error text shown when the command "off" fails for an unknown reason. +#: lib/command.php:731 +msgid "Can't turn off notification." +msgstr "" + +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +msgid "Notification on." +msgstr "Legyenek értesítések." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +msgid "Can't turn on notification." +msgstr "" + +#. TRANS: Error text shown when issuing the login command while login is disabled. +#: lib/command.php:771 +msgid "Login command is disabled." +msgstr "" + +#. TRANS: Text shown after issuing the login command successfully. +#. TRANS: %s is a logon link.. +#: lib/command.php:784 +#, 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:813 +#, 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:831 +msgid "You are not subscribed to anyone." +msgstr "Senkinek sem iratkoztál fel a híreire." + +#. 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:836 +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Ezen személy híreire iratkoztál fel:" +msgstr[1] "Ezen emberek híreire iratkoztál fel:" + +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +msgid "No one is subscribed to you." +msgstr "Senki sem követ figyelemmel." + +#. 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:863 +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Ez a személy iratkozott fel a híreidre:" +msgstr[1] "Ezek az emberek iratkoztak fel a híreidre:" + +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +msgid "You are not a member of any groups." +msgstr "Nem vagy tagja semmilyen csoportnak." + +#. 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:890 +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Ennek a csoportnak vagy tagja:" +msgstr[1] "Ezeknek a csoportoknak vagy tagja:" + +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. +#: lib/command.php:905 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"groups - lists the groups you have joined\n" +"subscriptions - list the people you follow\n" +"subscribers - list the people that follow you\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"lose - force user to stop following you\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"repeat # - repeat a notice with a given id\n" +"repeat - repeat the last notice from user\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:135 +msgid "No configuration file found. " +msgstr "Nem találtunk konfigurációs fájlt. " + +#: lib/common.php:136 +msgid "I looked for configuration files in the following places: " +msgstr "A következő helyeken kerestem konfigurációs fájlokat: " + +#: lib/common.php:138 +msgid "You may wish to run the installer to fix this." +msgstr "A telepítő futtatása kijavíthatja ezt." + +#: lib/common.php:139 +msgid "Go to the installer." +msgstr "Menj a telepítőhöz." + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "Kapcsolatok" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "Adatbázishiba" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "Fájl feltöltése" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "" + +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "Nem kedvelem ezt a hírt" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "Kedvelem ezt a hírt" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/feedlist.php:64 +msgid "Feeds" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Szűrjük a címkéket" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Összes" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "Válassz egy címkét amire szűrjünk" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Címke" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Válassz egy címkét hogy szűkítsük a listát" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Menjünk" + +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "A csoporthoz vagy témához tartozó honlap illetve blog URL-je" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "Jellemezd a csoportot vagy a témát" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Jellemezd a csoportot vagy a témát %d karakterben" + +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"A csoport földrajzi elhelyezkedése, ha van ilyen, pl. \"Város, Megye, Ország" +"\"" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" +"Extra becenevek a csoport számára, vesszővel vagy szóközökkel elválasztva, " +"legfeljebb %d" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:86 +msgctxt "MENU" +msgid "Group" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:89 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: lib/groupnav.php:95 +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:98 +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:108 +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:111 +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:120 +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/groupnav.php:126 +msgctxt "MENU" +msgid "Logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:129 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#: lib/groupnav.php:138 +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s design" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "A legtöbb tagból álló csoportok" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "A legtöbb hírt küldött csoportok" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "Címkék a(z) %s csoport híreiben" + +#. TRANS: Client exception 406 +#: lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: lib/imagefile.php:72 +msgid "Unsupported image file format." +msgstr "Nem támogatott képformátum." + +#: lib/imagefile.php:88 +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Az a fájl túl nagy. A maximális fájlméret %s." + +#: lib/imagefile.php:93 +msgid "Partial upload." +msgstr "Részleges feltöltés." + +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#: lib/imagefile.php:101 lib/mediafile.php:179 +msgid "System error uploading file." +msgstr "" + +#: lib/imagefile.php:109 +msgid "Not an image or corrupt file." +msgstr "" + +#: lib/imagefile.php:122 +msgid "Lost our file." +msgstr "Elvesztettük a fájlt." + +#: lib/imagefile.php:163 lib/imagefile.php:224 +msgid "Unknown file type" +msgstr "Ismeretlen fájltípus" + +#: lib/imagefile.php:244 +msgid "MB" +msgstr "MB" + +#: lib/imagefile.php:246 +msgid "kB" +msgstr "kB" + +#: lib/jabber.php:387 +#, php-format +msgid "[%s]" +msgstr "[%s]" + +#: lib/jabber.php:567 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Távozzunk" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "Bejelentkezés felhasználónévvel és jelszóval" + +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "Új kontó igénylése" + +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 +msgid "Email address confirmation" +msgstr "E-mail cím megerősítése" + +#. TRANS: Body for address confirmation email. +#: lib/mail.php:177 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Heló, %s.\n" +"\n" +"Valaki épp most adta meg ezt az email címet a %s webhelyen.\n" +"\n" +"Ha te voltál, és meg szeretnéd erősíteni a bejegyzésed, használt ezt az URL-" +"t:\n" +"\n" +"%s\n" +"\n" +"Ha nem te voltál, egyszerűen hagyd ezt figyelmen kívül.\n" +"\n" +"Köszönjük a türelmed, \n" +"%s\n" + +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + +#: lib/mail.php:248 +#, php-format +msgid "" +"If you believe this account is being used abusively, you can block them from " +"your subscribers list and report as spam to site administrators at %s" +msgstr "" + +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s feliratkozott a híreidre a %2$s webhelyen.\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Őszinte híved,\n" +"%7$s.\n" +"\n" +"----\n" +"Az email címed és az üzenetekre vonatkozó beállításaid itt változtathatod " +"meg: %8$s\n" + +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:274 +#, php-format +msgid "Bio: %s" +msgstr "Bemutatkozás: %s" + +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:304 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:308 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#. TRANS: Subject line for SMS-by-email notification messages +#: lib/mail.php:433 +#, php-format +msgid "%s status" +msgstr "%s állapota" + +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:460 +msgid "SMS confirmation" +msgstr "SMS megerősítés" + +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email +#: lib/mail.php:484 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s megbökött téged." + +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:489 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" +"%1$s (%2$s) azon tűnődött, mi lehet veled mostanában, és arra hív, küldj " +"valami hírt.\n" +"\n" +"Úgyhogy hadd halljunk felőled :)\n" +"\n" +"%3$s\n" +"\n" +"Ne erre az email-re válaszolj; az nem jut el a címzetthez.\n" +"\n" +"Mély tisztelettel,\n" +"%4$s\n" + +#. TRANS: Subject for direct-message notification email +#: lib/mail.php:536 +#, php-format +msgid "New private message from %s" +msgstr "Új privát üzenetet küldött neked %s" + +#. TRANS: Body for direct-message notification email +#: lib/mail.php:541 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) privát üzenetet küldött neked:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Itt válaszolhatsz az üzenetre:\n" +"\n" +"%4$s\n" +"\n" +"Ne erre az email-re válaszolj; az nem jut el a címzetthez.\n" +"\n" +"Mély tisztelettel,\n" +"%5$s\n" + +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez" + +#. TRANS: Body for favorite notification email +#: lib/mail.php:592 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s (@%7$s) hozzáadta azt a hírt a kedvenceihez, amit innen küldtél: %2$s.\n" +"\n" +"Az általad küldött hír URL-je:\n" +"\n" +"%3$s\n" +"\n" +"És így szólt:\n" +"\n" +"%4$s\n" +"\n" +"%1$s kedvenceinek listáját itt láthatod:\n" +"\n" +"%5$s\n" +"\n" +"Őszinte híved,\n" +"%6$s\n" + +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#: lib/mail.php:651 +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#: lib/mail.php:657 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "%s (@%s) figyelmedbe ajánlott egy hírt" + +#. TRANS: Body of @-reply notification e-mail. +#: lib/mail.php:660 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %8$s\n" +msgstr "" + +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "Csak a felhasználó láthatja a saját postaládáját." + +#: lib/mailbox.php:139 +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 "" +"Nem jött személyes üzeneted. Küldhetsz privát üzeneteket, hogy párbeszédbe " +"keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit " +"csak te láthatsz." + +#: lib/mailbox.php:228 lib/noticelist.php:506 +msgid "from" +msgstr "írta" + +#: lib/mailhandler.php:37 +msgid "Could not parse message." +msgstr "Nem sikerült az üzenetet feldolgozni." + +#: lib/mailhandler.php:42 +msgid "Not a registered user." +msgstr "Nem egy regisztrált felhasználó." + +#: lib/mailhandler.php:46 +msgid "Sorry, that is not your incoming email address." +msgstr "Sajnos az nem a te bejövő email-címed." + +#: lib/mailhandler.php:50 +msgid "Sorry, no incoming email allowed." +msgstr "Sajnos a bejövő email nincs engedélyezve." + +#: lib/mailhandler.php:228 +#, php-format +msgid "Unsupported message type: %s" +msgstr "Nem támogatott üzenet-típus: %s" + +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +#: lib/mediafile.php:99 lib/mediafile.php:125 +msgid "There was a database error while saving your file. Please try again." +msgstr "Adatbázis-hiba történt a fájlod elmentése közben. Kérlek próbáld újra." + +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +#: lib/mediafile.php:145 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +#: lib/mediafile.php:151 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +#: lib/mediafile.php:157 +msgid "The uploaded file was only partially uploaded." +msgstr "A feltöltött fájl csak részben van feltöltve." + +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +#: lib/mediafile.php:165 +msgid "Missing a temporary folder." +msgstr "Hiányzik egy ideiglenes mappa." + +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +#: lib/mediafile.php:169 +msgid "Failed to write file to disk." +msgstr "Nem sikerült a fájlt lemezre írni." + +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +#: lib/mediafile.php:173 +msgid "File upload stopped by extension." +msgstr "A fájl feltöltése megszakadt a kiterjedése/kiterjesztése miatt." + +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +#: lib/mediafile.php:189 lib/mediafile.php:232 +msgid "File exceeds user's quota." +msgstr "A fájl mérete meghaladja a felhasználónak megengedettet." + +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +#: lib/mediafile.php:209 lib/mediafile.php:251 +msgid "File could not be moved to destination directory." +msgstr "Nem sikerült a fájlt áthelyezni a célkönyvtárba." + +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +msgid "Could not determine file's MIME type." +msgstr "Nem sikerült a fájl MIME-típusát megállapítani." + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#: lib/mediafile.php:340 +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#: lib/mediafile.php:345 +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "Küldjünk egy üzenetet közvetlenül" + +#: lib/messageform.php:146 +msgid "To" +msgstr "Címzett" + +#: lib/messageform.php:159 lib/noticeform.php:186 +msgid "Available characters" +msgstr "Használható karakterek" + +#: lib/messageform.php:178 lib/noticeform.php:237 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + +#: lib/noticeform.php:160 +msgid "Send a notice" +msgstr "Küldjünk egy hírt" + +#: lib/noticeform.php:174 +#, php-format +msgid "What's up, %s?" +msgstr "Mi hír, %s?" + +#: lib/noticeform.php:193 +msgid "Attach" +msgstr "Csatolás" + +#: lib/noticeform.php:197 +msgid "Attach a file" +msgstr "Csatoljunk egy állományt" + +#: lib/noticeform.php:213 +msgid "Share my location" +msgstr "Tegyük közzé a hollétemet" + +#: lib/noticeform.php:216 +msgid "Do not share my location" +msgstr "Ne tegyük közzé a hollétemet" + +#: lib/noticeform.php:217 +msgid "" +"Sorry, retrieving your geo location is taking longer than expected, please " +"try again later" +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +msgid "N" +msgstr "É" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:438 +msgid "S" +msgstr "D" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:440 +msgid "E" +msgstr "K" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:442 +msgid "W" +msgstr "Ny" + +#: lib/noticelist.php:444 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:453 +msgid "at" +msgstr "" + +#: lib/noticelist.php:502 +msgid "web" +msgstr "" + +#: lib/noticelist.php:568 +msgid "in context" +msgstr "előzmény" + +#: lib/noticelist.php:603 +msgid "Repeated by" +msgstr "Megismételte:" + +#: lib/noticelist.php:630 +msgid "Reply to this notice" +msgstr "Válaszoljunk erre a hírre" + +#: lib/noticelist.php:631 +msgid "Reply" +msgstr "Válasz" + +#: lib/noticelist.php:675 +msgid "Notice repeated" +msgstr "A hírt megismételtük" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Bökjük meg ezt a felhasználót" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Megbök" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Bökjük meg ezt a felhasználót" + +#: lib/oauthstore.php:283 +msgid "Error inserting new profile." +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar." +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +#: lib/oauthstore.php:346 +msgid "Duplicate notice." +msgstr "" + +#: lib/oauthstore.php:491 +msgid "Couldn't insert new subscription." +msgstr "" + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Személyes" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Válaszok" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Kedvencek" + +#: lib/personalgroupnav.php:125 +msgid "Inbox" +msgstr "" + +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "A bejövő üzeneteid" + +#: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "" + +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "A küldött üzeneteid" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "Címkék %s híreiben" + +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +msgid "Unknown" +msgstr "" + +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Feliratkozások" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "Összes feliratkozás" + +#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Feliratkozók" + +#: lib/profileaction.php:161 +msgid "All subscribers" +msgstr "Minden feliratkozott" + +#: lib/profileaction.php:191 +msgid "User ID" +msgstr "Felhasználói azonosító" + +#: lib/profileaction.php:196 +msgid "Member since" +msgstr "Tagság kezdete:" + +#. TRANS: Average count of posts made per day since account registration +#: lib/profileaction.php:235 +msgid "Daily average" +msgstr "" + +#: lib/profileaction.php:264 +msgid "All groups" +msgstr "Összes csoport" + +#: lib/profileformaction.php:123 +msgid "Unimplemented method." +msgstr "" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "A felhasználó csoportjai" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Népszerű" + +#: lib/redirectingaction.php:95 +msgid "No return-to arguments." +msgstr "" + +#: lib/repeatform.php:107 +msgid "Repeat this notice?" +msgstr "Megismételjük ezt a hírt?" + +#: lib/repeatform.php:132 +msgid "Yes" +msgstr "Igen" + +#: lib/repeatform.php:132 +msgid "Repeat this notice" +msgstr "Ismételjük meg ezt a hírt" + +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:711 +msgid "No single user defined for single-user mode." +msgstr "" + +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "Homokozó" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +msgid "Search site" +msgstr "" + +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +#: lib/searchaction.php:129 +msgid "Keyword(s)" +msgstr "" + +#: lib/searchaction.php:130 +msgctxt "BUTTON" +msgid "Search" +msgstr "" + +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +msgid "Search help" +msgstr "" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Emberek keresése az oldalon" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Keressünk a hírek tartalmában" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Csoportok keresése az oldalon" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "Névtelen szakasz" + +#: lib/section.php:106 +msgid "More..." +msgstr "Tovább…" + +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "" + +#: lib/silenceform.php:78 +msgid "Silence this user" +msgstr "" + +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Meghívás" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/themeuploader.php:50 +msgid "This server cannot handle theme uploads without ZIP support." +msgstr "" + +#: lib/themeuploader.php:58 lib/themeuploader.php:61 +msgid "The theme file is missing or the upload failed." +msgstr "" + +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +msgid "Failed saving theme." +msgstr "" + +#: lib/themeuploader.php:147 +msgid "Invalid theme: bad directory structure." +msgstr "" + +#: lib/themeuploader.php:166 +#, php-format +msgid "Uploaded theme is too large; must be less than %d bytes uncompressed." +msgstr "" + +#: lib/themeuploader.php:178 +msgid "Invalid theme archive: missing file css/display.css" +msgstr "" + +#: lib/themeuploader.php:218 +msgid "" +"Theme contains invalid file or folder name. Stick with ASCII letters, " +"digits, underscore, and minus sign." +msgstr "" + +#: lib/themeuploader.php:224 +msgid "Theme contains unsafe file extension names; may be unsafe." +msgstr "" + +#: lib/themeuploader.php:241 +#, php-format +msgid "Theme contains file of type '.%s', which is not allowed." +msgstr "" + +#: lib/themeuploader.php:259 +msgid "Error opening theme archive." +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +msgid "Unsandbox this user" +msgstr "" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +msgid "Unsilence this user" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: lib/userprofile.php:117 +msgid "Edit Avatar" +msgstr "" + +#: lib/userprofile.php:234 lib/userprofile.php:248 +msgid "User actions" +msgstr "Felhasználói műveletek" + +#: lib/userprofile.php:237 +msgid "User deletion in progress..." +msgstr "" + +#: lib/userprofile.php:263 +msgid "Edit profile settings" +msgstr "" + +#: lib/userprofile.php:264 +msgid "Edit" +msgstr "Szerkesztés" + +#: lib/userprofile.php:287 +msgid "Send a direct message to this user" +msgstr "" + +#: lib/userprofile.php:288 +msgid "Message" +msgstr "Üzenet" + +#: lib/userprofile.php:326 +msgid "Moderate" +msgstr "Moderálás" + +#: lib/userprofile.php:364 +msgid "User role" +msgstr "Felhasználói szerepkör" + +#: lib/userprofile.php:366 +msgctxt "role" +msgid "Administrator" +msgstr "Adminisztrátor" + +#: lib/userprofile.php:367 +msgctxt "role" +msgid "Moderator" +msgstr "Moderátor" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1126 +msgid "a few seconds ago" +msgstr "pár másodperce" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1129 +msgid "about a minute ago" +msgstr "körülbelül egy perce" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1133 +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1136 +msgid "about an hour ago" +msgstr "körülbelül egy órája" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1140 +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1143 +msgid "about a day ago" +msgstr "körülbelül egy napja" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1147 +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1150 +msgid "about a month ago" +msgstr "körülbelül egy hónapja" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1154 +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#: lib/util.php:1157 +msgid "about a year ago" +msgstr "körülbelül egy éve" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: scripts/restoreuser.php:82 +#, php-format +msgid "Backup file for user %s (%s)\n" +msgstr "" + +#: scripts/restoreuser.php:88 +msgid "No user specified; using backup user.\n" +msgstr "" + +#: scripts/restoreuser.php:94 +#, php-format +msgid "%d entries in backup.\n" +msgstr "" From 10379e8ddbebfca8a989dacd28e202312a17a297 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 20 Apr 2010 18:49:07 +0200 Subject: [PATCH 197/310] initial work on yammer importer code --- plugins/YammerImport/YammerImportPlugin.php | 77 ++++++++++ plugins/YammerImport/yamdump.php | 157 ++++++++++++++++++++ 2 files changed, 234 insertions(+) create mode 100644 plugins/YammerImport/YammerImportPlugin.php create mode 100644 plugins/YammerImport/yamdump.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php new file mode 100644 index 0000000000..02923493fb --- /dev/null +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -0,0 +1,77 @@ +. + */ + +/** + * @package YammerImportPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } + +set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/'); + +class YammerImportPlugin extends Plugin +{ + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('admin/import/yammer', + array('action' => 'importyammer')); + return true; + } + + /** + * Set up queue handlers for import processing + * @param QueueManager $qm + * @return boolean hook return + */ + function onEndInitializeQueueManager(QueueManager $qm) + { + $qm->connect('importym', 'ImportYmQueueHandler'); + + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($cls) { + case 'yammerimqueuehandler': + case 'importyammeraction': + require_once $base . $lower . '.php'; + return false; + default: + return true; + } + } +} diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php new file mode 100644 index 0000000000..60be81ca5d --- /dev/null +++ b/plugins/YammerImport/yamdump.php @@ -0,0 +1,157 @@ +consumerKey = $consumerKey; + $this->consumerSecret = $consumerSecret; + $this->token = $token; + $this->tokenSecret = $tokenSecret; + } + + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return array + * + * @throws Exception for HTTP error + */ + protected function fetch($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + $headers = array('Authorization: ' . $this->authHeader()); + var_dump($headers); + + $client = HTTPClient::start(); + $response = $client->get($url, $headers); + + if ($response->isOk()) { + return $response->getBody(); + } else { + throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); + } + } + + /** + * Hit the main Yammer API point and decode returned JSON data. + * + * @param string $method + * @param array $params + * @return array from JSON data + * + * @throws Exception for HTTP error or bad JSON return + */ + protected function api($method, $params=array()) + { + $body = $this->fetch("api/v1/$method.json", $params); + $data = json_decode($body, true); + if (!$data) { + throw new Exception("Invalid JSON response from Yammer API"); + } + return $data; + } + + /** + * Build an Authorization header value from the keys we have available. + */ + protected function authHeader() + { + // token + // token_secret + $params = array('realm' => '', + 'oauth_consumer_key' => $this->consumerKey, + 'oauth_signature_method' => 'PLAINTEXT', + 'oauth_timestamp' => time(), + 'oauth_nonce' => time(), + 'oauth_version' => '1.0'); + if ($this->token) { + $params['oauth_token'] = $this->token; + } + if ($this->tokenSecret) { + $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; + } else { + $params['oauth_signature'] = $this->consumerSecret . '&'; + } + if ($this->verifier) { + $params['oauth_verifier'] = $this->verifier; + } + $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); + return 'OAuth ' . implode(', ', $parts); + } + + /** + * @param string $key + * @param string $val + */ + protected function authHeaderChunk($key, $val) + { + return urlencode($key) . '="' . urlencode($val) . '"'; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function requestToken() + { + if ($this->token || $this->tokenSecret) { + throw new Exception("Requesting a token, but already set up with a token"); + } + $data = $this->fetch('oauth/request_token'); + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function accessToken($verifier) + { + $this->verifier = $verifier; + $data = $this->fetch('oauth/access_token'); + $this->verifier = null; + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * Give the URL to send users to to authorize a new app setup + * + * @param string $token as returned from accessToken() + * @return string URL + */ + public function authorizeUrl($token) + { + return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); + } + + public function messages($params) + { + return $this->api('messages', $params); + } +} + + +// temp stuff +require 'yam-config.php'; +$yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); +var_dump($yam->messages()); \ No newline at end of file From 6d0ac28460e4227a357ee253566364ef50c298bf Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 13:29:44 -0700 Subject: [PATCH 198/310] Split SN_YammerClient out to own class file --- plugins/YammerImport/sn_yammerclient.php | 165 +++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 plugins/YammerImport/sn_yammerclient.php diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php new file mode 100644 index 0000000000..c77fc4ce36 --- /dev/null +++ b/plugins/YammerImport/sn_yammerclient.php @@ -0,0 +1,165 @@ +. + */ + +/** + * Basic client class for Yammer's OAuth/JSON API. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class SN_YammerClient +{ + protected $apiBase = "https://www.yammer.com"; + protected $consumerKey, $consumerSecret; + protected $token, $tokenSecret; + + public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) + { + $this->consumerKey = $consumerKey; + $this->consumerSecret = $consumerSecret; + $this->token = $token; + $this->tokenSecret = $tokenSecret; + } + + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return array + * + * @throws Exception for HTTP error + */ + protected function fetch($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + $headers = array('Authorization: ' . $this->authHeader()); + + $client = HTTPClient::start(); + $response = $client->get($url, $headers); + + if ($response->isOk()) { + return $response->getBody(); + } else { + throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); + } + } + + /** + * Hit the main Yammer API point and decode returned JSON data. + * + * @param string $method + * @param array $params + * @return array from JSON data + * + * @throws Exception for HTTP error or bad JSON return + */ + protected function api($method, $params=array()) + { + $body = $this->fetch("api/v1/$method.json", $params); + $data = json_decode($body, true); + if (!$data) { + throw new Exception("Invalid JSON response from Yammer API"); + } + return $data; + } + + /** + * Build an Authorization header value from the keys we have available. + */ + protected function authHeader() + { + // token + // token_secret + $params = array('realm' => '', + 'oauth_consumer_key' => $this->consumerKey, + 'oauth_signature_method' => 'PLAINTEXT', + 'oauth_timestamp' => time(), + 'oauth_nonce' => time(), + 'oauth_version' => '1.0'); + if ($this->token) { + $params['oauth_token'] = $this->token; + } + if ($this->tokenSecret) { + $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; + } else { + $params['oauth_signature'] = $this->consumerSecret . '&'; + } + if ($this->verifier) { + $params['oauth_verifier'] = $this->verifier; + } + $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); + return 'OAuth ' . implode(', ', $parts); + } + + /** + * @param string $key + * @param string $val + */ + protected function authHeaderChunk($key, $val) + { + return urlencode($key) . '="' . urlencode($val) . '"'; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function requestToken() + { + if ($this->token || $this->tokenSecret) { + throw new Exception("Requesting a token, but already set up with a token"); + } + $data = $this->fetch('oauth/request_token'); + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * @return array of oauth return data; should contain nice things + */ + public function accessToken($verifier) + { + $this->verifier = $verifier; + $data = $this->fetch('oauth/access_token'); + $this->verifier = null; + $arr = array(); + parse_str($data, $arr); + return $arr; + } + + /** + * Give the URL to send users to to authorize a new app setup + * + * @param string $token as returned from accessToken() + * @return string URL + */ + public function authorizeUrl($token) + { + return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); + } + + public function messages($params) + { + return $this->api('messages', $params); + } +} From 599f4fe121f41629a1760b205747e6aec7f72fee Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 13:56:30 -0700 Subject: [PATCH 199/310] Beginning stub of Yammer message->notice import --- plugins/YammerImport/YammerImportPlugin.php | 6 +- plugins/YammerImport/yamdump.php | 162 +++----------------- plugins/YammerImport/yammerimporter.php | 68 ++++++++ 3 files changed, 90 insertions(+), 146 deletions(-) create mode 100644 plugins/YammerImport/yammerimporter.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 02923493fb..a3520d8a86 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -65,10 +65,12 @@ class YammerImportPlugin extends Plugin { $base = dirname(__FILE__); $lower = strtolower($cls); - switch ($cls) { + switch ($lower) { + case 'sn_yammerclient': + case 'yammerimporter': case 'yammerimqueuehandler': case 'importyammeraction': - require_once $base . $lower . '.php'; + require_once "$base/$lower.php"; return false; default: return true; diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 60be81ca5d..953b7d1a62 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -8,150 +8,24 @@ define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); require INSTALLDIR . "/scripts/commandline.inc"; -class SN_YammerClient -{ - protected $apiBase = "https://www.yammer.com"; - protected $consumerKey, $consumerSecret; - protected $token, $tokenSecret; - - public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) - { - $this->consumerKey = $consumerKey; - $this->consumerSecret = $consumerSecret; - $this->token = $token; - $this->tokenSecret = $tokenSecret; - } - - /** - * Make an HTTP hit with OAuth headers and return the response body on success. - * - * @param string $path URL chunk for the API method - * @param array $params - * @return array - * - * @throws Exception for HTTP error - */ - protected function fetch($path, $params=array()) - { - $url = $this->apiBase . '/' . $path; - if ($params) { - $url .= '?' . http_build_query($params, null, '&'); - } - $headers = array('Authorization: ' . $this->authHeader()); - var_dump($headers); - - $client = HTTPClient::start(); - $response = $client->get($url, $headers); - - if ($response->isOk()) { - return $response->getBody(); - } else { - throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); - } - } - - /** - * Hit the main Yammer API point and decode returned JSON data. - * - * @param string $method - * @param array $params - * @return array from JSON data - * - * @throws Exception for HTTP error or bad JSON return - */ - protected function api($method, $params=array()) - { - $body = $this->fetch("api/v1/$method.json", $params); - $data = json_decode($body, true); - if (!$data) { - throw new Exception("Invalid JSON response from Yammer API"); - } - return $data; - } - - /** - * Build an Authorization header value from the keys we have available. - */ - protected function authHeader() - { - // token - // token_secret - $params = array('realm' => '', - 'oauth_consumer_key' => $this->consumerKey, - 'oauth_signature_method' => 'PLAINTEXT', - 'oauth_timestamp' => time(), - 'oauth_nonce' => time(), - 'oauth_version' => '1.0'); - if ($this->token) { - $params['oauth_token'] = $this->token; - } - if ($this->tokenSecret) { - $params['oauth_signature'] = $this->consumerSecret . '&' . $this->tokenSecret; - } else { - $params['oauth_signature'] = $this->consumerSecret . '&'; - } - if ($this->verifier) { - $params['oauth_verifier'] = $this->verifier; - } - $parts = array_map(array($this, 'authHeaderChunk'), array_keys($params), array_values($params)); - return 'OAuth ' . implode(', ', $parts); - } - - /** - * @param string $key - * @param string $val - */ - protected function authHeaderChunk($key, $val) - { - return urlencode($key) . '="' . urlencode($val) . '"'; - } - - /** - * @return array of oauth return data; should contain nice things - */ - public function requestToken() - { - if ($this->token || $this->tokenSecret) { - throw new Exception("Requesting a token, but already set up with a token"); - } - $data = $this->fetch('oauth/request_token'); - $arr = array(); - parse_str($data, $arr); - return $arr; - } - - /** - * @return array of oauth return data; should contain nice things - */ - public function accessToken($verifier) - { - $this->verifier = $verifier; - $data = $this->fetch('oauth/access_token'); - $this->verifier = null; - $arr = array(); - parse_str($data, $arr); - return $arr; - } - - /** - * Give the URL to send users to to authorize a new app setup - * - * @param string $token as returned from accessToken() - * @return string URL - */ - public function authorizeUrl($token) - { - return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); - } - - public function messages($params) - { - return $this->api('messages', $params); - } -} - - // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -var_dump($yam->messages()); \ No newline at end of file +$imp = new YammerImporter(); + +$data = $yam->messages(); +/* + ["messages"]=> + ["meta"]=> // followed_user_ids, current_user_id, etc + ["threaded_extended"]=> // empty! + ["references"]=> // lists the users, threads, replied messages, tags +*/ + +// 1) we're getting messages in descending order, but we'll want to process ascending +// 2) we'll need to pull out all those referenced items too? +// 3) do we need to page over or anything? + +foreach ($data['messages'] as $message) { + $notice = $imp->messageToNotice($message); + var_dump($notice); +} diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php new file mode 100644 index 0000000000..b322c9b64e --- /dev/null +++ b/plugins/YammerImport/yammerimporter.php @@ -0,0 +1,68 @@ +. + */ + +/** + * Basic client class for Yammer's OAuth/JSON API. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerImporter +{ + function messageToNotice($message) + { + $messageId = $message['id']; + $messageUrl = $message['url']; + + $profile = $this->findImportedProfile($message['sender_id']); + $content = $message['body']['plain']; + $source = 'yammer'; + $options = array(); + + if ($message['replied_to_id']) { + $replyto = $this->findImportedNotice($message['replied_to_id']); + if ($replyto) { + $options['replyto'] = $replyto; + } + } + $options['created'] = common_sql_date(strtotime($message['created_at'])); + + // Parse/save rendered text? + // Save liked info? + // @todo attachments? + + return array('orig_id' => $messageId, + 'profile' => $profile, + 'content' => $content, + 'source' => $source, + 'options' => $options); + } + + function findImportedProfile($userId) + { + // @fixme + return $userId; + } + + function findImportedNotice($messageId) + { + // @fixme + return $messageId; + } +} \ No newline at end of file From 7a81bc371309aee0d45dfcec35466557cc6a1ba1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 14:56:20 -0700 Subject: [PATCH 200/310] YammerImport: initial processing code for users, groups, and messages --- plugins/YammerImport/yamdump.php | 33 ++++- plugins/YammerImport/yammerimporter.php | 169 ++++++++++++++++++++++-- 2 files changed, 189 insertions(+), 13 deletions(-) diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 953b7d1a62..ad739760a8 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -25,7 +25,36 @@ $data = $yam->messages(); // 2) we'll need to pull out all those referenced items too? // 3) do we need to page over or anything? -foreach ($data['messages'] as $message) { - $notice = $imp->messageToNotice($message); +// 20 qualifying messages per hit... +// use older_than to grab more +// (better if we can go in reverse though!) +// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. + +foreach ($data['references'] as $item) { + if ($item['type'] == 'user') { + $user = $imp->prepUser($item); + var_dump($user); + } else if ($item['type'] == 'group') { + $group = $imp->prepGroup($item); + var_dump($group); + } else if ($item['type'] == 'tag') { + // could need these if we work from the parsed message text + // otherwise, the #blarf in orig text is fine. + } else if ($item['type'] == 'thread') { + // Shouldn't need thread info; we'll reconstruct conversations + // from the reply-to chains. + } else if ($item['type'] == 'message') { + // If we're processing everything, then we don't need the refs here. + } else { + echo "(skipping unknown ref: " . $item['type'] . ")\n"; + } +} + +// Process in reverse chron order... +// @fixme follow paging +$messages = $data['messages']; +array_reverse($messages); +foreach ($messages as $message) { + $notice = $imp->prepNotice($message); var_dump($notice); } diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index b322c9b64e..7710d41b52 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -25,29 +25,160 @@ */ class YammerImporter { - function messageToNotice($message) - { - $messageId = $message['id']; - $messageUrl = $message['url']; - $profile = $this->findImportedProfile($message['sender_id']); - $content = $message['body']['plain']; + /** + * Load or create an imported profile from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return Profile + */ + function importUserProfile($item) + { + $data = $this->prepUser($item); + + $profileId = $this->findImportedProfile($data['orig_id']); + if ($profileId) { + return Profile::staticGet('id', $profileId); + } else { + $user = User::register($data['options']); + // @fixme set avatar! + return $user->getProfile(); + } + } + + /** + * Load or create an imported group from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return User_group + */ + function importGroup($item) + { + $data = $this->prepGroup($item); + + $groupId = $this->findImportedGroup($data['orig_id']); + if ($groupId) { + return User_group::staticGet('id', $groupId); + } else { + $group = User_group::register($data['options']); + // @fixme set avatar! + return $group; + } + } + + /** + * Load or create an imported notice from Yammer data. + * + * @param object $item loaded JSON data for Yammer importer + * @return Notice + */ + function importNotice($item) + { + $data = $this->prepNotice($item); + + $noticeId = $this->findImportedNotice($data['orig_id']); + if ($noticeId) { + return Notice::staticGet('id', $noticeId); + } else { + $notice = Notice::saveNew($data['profile'], + $data['content'], + $data['source'], + $data['options']); + // @fixme attachments? + return $notice; + } + } + + function prepUser($item) + { + if ($item['type'] != 'user') { + throw new Exception('Wrong item type sent to Yammer user import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + // @fixme check username rules? + + $options['nickname'] = $item['name']; + $options['fullname'] = trim($item['full_name']); + + // We don't appear to have full bio avail here! + $options['bio'] = $item['job_title']; + + // What about other data like emails? + + // Avatar... this will be the "_small" variant. + // Remove that (pre-extension) suffix to get the orig-size image. + $avatar = $item['mugshot_url']; + + // Warning: we don't have following state for other users? + + return array('orig_id' => $origId, + 'orig_url' => $origUrl, + 'avatar' => $avatar, + 'options' => $options); + + } + + function prepGroup($item) + { + if ($item['type'] != 'group') { + throw new Exception('Wrong item type sent to Yammer group import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + $privacy = $item['privacy']; // Warning! only public groups in SN so far + + $options['nickname'] = $item['name']; + $options['fullname'] = $item['full_name']; + $options['created'] = $this->timestamp($item['created_at']); + + $avatar = $item['mugshot_url']; // as with user profiles... + + + $options['mainpage'] = common_local_url('showgroup', + array('nickname' => $options['nickname'])); + + // @fixme what about admin user for the group? + // bio? homepage etc? aliases? + + $options['local'] = true; + return array('orig_id' => $origId, + 'orig_url' => $origUrl, + 'options' => $options); + } + + function prepNotice($item) + { + if (isset($item['type']) && $item['type'] != 'message') { + throw new Exception('Wrong item type sent to Yammer message import processing.'); + } + + $origId = $item['id']; + $origUrl = $item['url']; + + $profile = $this->findImportedProfile($item['sender_id']); + $content = $item['body']['plain']; $source = 'yammer'; $options = array(); - if ($message['replied_to_id']) { - $replyto = $this->findImportedNotice($message['replied_to_id']); + if ($item['replied_to_id']) { + $replyto = $this->findImportedNotice($item['replied_to_id']); if ($replyto) { $options['replyto'] = $replyto; } } - $options['created'] = common_sql_date(strtotime($message['created_at'])); + $options['created'] = $this->timestamp($item['created_at']); // Parse/save rendered text? // Save liked info? // @todo attachments? - return array('orig_id' => $messageId, + return array('orig_id' => $origId, + 'orig_url' => $origUrl, 'profile' => $profile, 'content' => $content, 'source' => $source, @@ -60,9 +191,25 @@ class YammerImporter return $userId; } + function findImportedGroup($groupId) + { + // @fixme + return $groupId; + } + function findImportedNotice($messageId) { // @fixme return $messageId; } -} \ No newline at end of file + + /** + * Normalize timestamp format. + * @param string $ts + * @return string + */ + function timestamp($ts) + { + return common_sql_date(strtotime($ts)); + } +} From 7c53c1a462a5c6b13370f66c09706624f472056a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:24:14 -0700 Subject: [PATCH 201/310] Poking around at import funcs... --- plugins/YammerImport/yammerimporter.php | 75 ++++++++++++++++++++----- 1 file changed, 62 insertions(+), 13 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 7710d41b52..2c8d09b9b8 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -26,22 +26,27 @@ class YammerImporter { + protected $users=array(); + protected $groups=array(); + protected $notices=array(); + /** * Load or create an imported profile from Yammer data. * * @param object $item loaded JSON data for Yammer importer * @return Profile */ - function importUserProfile($item) + function importUser($item) { $data = $this->prepUser($item); - $profileId = $this->findImportedProfile($data['orig_id']); + $profileId = $this->findImportedUser($data['orig_id']); if ($profileId) { return Profile::staticGet('id', $profileId); } else { $user = User::register($data['options']); // @fixme set avatar! + $this->recordImportedUser($data['orig_id'], $user->id); return $user->getProfile(); } } @@ -62,6 +67,7 @@ class YammerImporter } else { $group = User_group::register($data['options']); // @fixme set avatar! + $this->recordImportedGroup($data['orig_id'], $group->id); return $group; } } @@ -85,10 +91,17 @@ class YammerImporter $data['source'], $data['options']); // @fixme attachments? + $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; } } + /** + * Pull relevant info out of a Yammer data record for a user import. + * + * @param array $item + * @return array + */ function prepUser($item) { if ($item['type'] != 'user') { @@ -121,6 +134,12 @@ class YammerImporter } + /** + * Pull relevant info out of a Yammer data record for a group import. + * + * @param array $item + * @return array + */ function prepGroup($item) { if ($item['type'] != 'group') { @@ -151,6 +170,12 @@ class YammerImporter 'options' => $options); } + /** + * Pull relevant info out of a Yammer data record for a notice import. + * + * @param array $item + * @return array + */ function prepNotice($item) { if (isset($item['type']) && $item['type'] != 'message') { @@ -160,7 +185,7 @@ class YammerImporter $origId = $item['id']; $origUrl = $item['url']; - $profile = $this->findImportedProfile($item['sender_id']); + $profile = $this->findImportedUser($item['sender_id']); $content = $item['body']['plain']; $source = 'yammer'; $options = array(); @@ -185,22 +210,46 @@ class YammerImporter 'options' => $options); } - function findImportedProfile($userId) + private function findImportedUser($origId) { - // @fixme - return $userId; + if (isset($this->users[$origId])) { + return $this->users[$origId]; + } else { + return false; + } } - function findImportedGroup($groupId) + private function findImportedGroup($origId) { - // @fixme - return $groupId; + if (isset($this->groups[$origId])) { + return $this->groups[$origId]; + } else { + return false; + } } - function findImportedNotice($messageId) + private function findImportedNotice($origId) { - // @fixme - return $messageId; + if (isset($this->notices[$origId])) { + return $this->notices[$origId]; + } else { + return false; + } + } + + private function recordImportedUser($origId, $userId) + { + $this->users[$origId] = $userId; + } + + private function recordImportedGroup($origId, $groupId) + { + $this->groups[$origId] = $groupId; + } + + private function recordImportedNotice($origId, $noticeId) + { + $this->notices[$origId] = $noticeId; } /** @@ -208,7 +257,7 @@ class YammerImporter * @param string $ts * @return string */ - function timestamp($ts) + private function timestamp($ts) { return common_sql_date(strtotime($ts)); } From 7a197405be2a69e8b3d9031b77b769a4ad99bd6c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:29:04 -0700 Subject: [PATCH 202/310] fix notices in SN_YammerClient --- plugins/YammerImport/sn_yammerclient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index c77fc4ce36..21caa7b7ca 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -27,7 +27,7 @@ class SN_YammerClient { protected $apiBase = "https://www.yammer.com"; protected $consumerKey, $consumerSecret; - protected $token, $tokenSecret; + protected $token, $tokenSecret, $verifier; public function __construct($consumerKey, $consumerSecret, $token=null, $tokenSecret=null) { @@ -158,7 +158,7 @@ class SN_YammerClient return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); } - public function messages($params) + public function messages($params=array()) { return $this->api('messages', $params); } From 907cb6558cc996f3f776659c6fc906e94088e8e8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 15:54:39 -0700 Subject: [PATCH 203/310] Initial semi-working yammer import :D * no avatars * no details of user accounts or their auth info * no group memberships or subscriptions * no attachments * will probably esplode if >20 messages in your network *whistle innocently* --- plugins/YammerImport/yammer-import.php | 59 ++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 plugins/YammerImport/yammer-import.php diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php new file mode 100644 index 0000000000..d6ec975132 --- /dev/null +++ b/plugins/YammerImport/yammer-import.php @@ -0,0 +1,59 @@ +messages(); +/* + ["messages"]=> + ["meta"]=> // followed_user_ids, current_user_id, etc + ["threaded_extended"]=> // empty! + ["references"]=> // lists the users, threads, replied messages, tags +*/ + +// 1) we're getting messages in descending order, but we'll want to process ascending +// 2) we'll need to pull out all those referenced items too? +// 3) do we need to page over or anything? + +// 20 qualifying messages per hit... +// use older_than to grab more +// (better if we can go in reverse though!) +// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. +foreach ($data['references'] as $item) { + if ($item['type'] == 'user') { + $user = $imp->importUser($item); + echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; + } else if ($item['type'] == 'group') { + $group = $imp->importGroup($item); + echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; + } else if ($item['type'] == 'tag') { + // could need these if we work from the parsed message text + // otherwise, the #blarf in orig text is fine. + } else if ($item['type'] == 'thread') { + // Shouldn't need thread info; we'll reconstruct conversations + // from the reply-to chains. + } else if ($item['type'] == 'message') { + // If we're processing everything, then we don't need the refs here. + } else { + echo "(skipping unknown ref: " . $item['type'] . ")\n"; + } +} + +// Process in reverse chron order... +// @fixme follow paging +$messages = $data['messages']; +$messages = array_reverse($messages); +foreach ($messages as $item) { + $notice = $imp->importNotice($item); + echo "Imported Yammer notice " . $item['id'] . " as $notice->id\n"; +} From 4b2089dc5228a6aeea656ea131bf6538a54a3870 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:10:44 -0700 Subject: [PATCH 204/310] Avatars for Yammer import --- plugins/YammerImport/yammerimporter.php | 61 +++++++++++++++++++++++-- 1 file changed, 57 insertions(+), 4 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 2c8d09b9b8..15970d0729 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -45,9 +45,14 @@ class YammerImporter return Profile::staticGet('id', $profileId); } else { $user = User::register($data['options']); - // @fixme set avatar! - $this->recordImportedUser($data['orig_id'], $user->id); - return $user->getProfile(); + $profile = $user->getProfile(); + try { + $this->saveAvatar($data['avatar'], $profile); + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + } + $this->recordImportedUser($data['orig_id'], $profile->id); + return $profile; } } @@ -66,7 +71,11 @@ class YammerImporter return User_group::staticGet('id', $groupId); } else { $group = User_group::register($data['options']); - // @fixme set avatar! + try { + $this->saveAvatar($data['avatar'], $group); + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + } $this->recordImportedGroup($data['orig_id'], $group->id); return $group; } @@ -261,4 +270,48 @@ class YammerImporter { return common_sql_date(strtotime($ts)); } + + /** + * Download and update given avatar image + * + * @param string $url + * @param mixed $dest either a Profile or User_group object + * @throws Exception in various failure cases + */ + private function saveAvatar($url, $dest) + { + // Yammer API data mostly gives us the small variant. + // Try hitting the source image if we can! + // @fixme no guarantee of this URL scheme I think. + $url = preg_replace('/_small(\..*?)$/', '$1', $url); + + if (!common_valid_http_url($url)) { + throw new ServerException(sprintf(_m("Invalid avatar URL %s."), $url)); + } + + // @fixme this should be better encapsulated + // ripped from oauthstore.php (for old OMB client) + $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); + if (!copy($url, $temp_filename)) { + throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + } + + $id = $dest->id; + // @fixme should we be using different ids? + $imagefile = new ImageFile($id, $temp_filename); + $filename = Avatar::filename($id, + image_type_to_extension($imagefile->type), + null, + common_timestamp()); + rename($temp_filename, Avatar::path($filename)); + // @fixme hardcoded chmod is lame, but seems to be necessary to + // keep from accidentally saving images from command-line (queues) + // that can't be read from web server, which causes hard-to-notice + // problems later on: + // + // http://status.net/open-source/issues/2663 + chmod(Avatar::path($filename), 0644); + + $dest->setOriginal($filename); + } } From 271b553e6e46518d38049bdd834f158ddecec9c0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:19:02 -0700 Subject: [PATCH 205/310] Fix for replies in Yammer import --- plugins/YammerImport/yammerimporter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 15970d0729..ae0037ffee 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -200,9 +200,9 @@ class YammerImporter $options = array(); if ($item['replied_to_id']) { - $replyto = $this->findImportedNotice($item['replied_to_id']); - if ($replyto) { - $options['replyto'] = $replyto; + $replyTo = $this->findImportedNotice($item['replied_to_id']); + if ($replyTo) { + $options['reply_to'] = $replyTo; } } $options['created'] = $this->timestamp($item['created_at']); From f36a062f3a6292a19b576e69478234a46d4f81ee Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:27:10 -0700 Subject: [PATCH 206/310] Full dump of input data in yamdump also for my reference... --- plugins/YammerImport/yamdump.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index ad739760a8..96127dd176 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -14,6 +14,8 @@ $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter(); $data = $yam->messages(); +var_dump($data); + /* ["messages"]=> ["meta"]=> // followed_user_ids, current_user_id, etc From b18c7ee3eb4b9615636f79327e0d09b85393a900 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 16:27:26 -0700 Subject: [PATCH 207/310] Copy favorites in Yammer importer --- plugins/YammerImport/yammerimporter.php | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index ae0037ffee..08cbbf790b 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -99,6 +99,12 @@ class YammerImporter $data['content'], $data['source'], $data['options']); + foreach ($data['faves'] as $nickname) { + $user = User::staticGet('nickname', $nickname); + if ($user) { + Fave::addNew($user->getProfile(), $notice); + } + } // @fixme attachments? $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; @@ -207,8 +213,13 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); + $faves = array(); + foreach ($item['liked_by']['names'] as $liker) { + // "permalink" is the username. wtf? + $faves[] = $liker['permalink']; + } + // Parse/save rendered text? - // Save liked info? // @todo attachments? return array('orig_id' => $origId, @@ -216,7 +227,8 @@ class YammerImporter 'profile' => $profile, 'content' => $content, 'source' => $source, - 'options' => $options); + 'options' => $options, + 'faves' => $faves); } private function findImportedUser($origId) From e357e13d69c75a55369c6495d09792f3e19269e2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:08:40 -0700 Subject: [PATCH 208/310] Image file attachment support for Yammer import --- plugins/YammerImport/sn_yammerclient.php | 51 ++++++++++++---- plugins/YammerImport/yamdump.php | 2 +- plugins/YammerImport/yammer-import.php | 2 +- plugins/YammerImport/yammerimporter.php | 78 +++++++++++++++++++++--- 4 files changed, 112 insertions(+), 21 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index 21caa7b7ca..f7382abae1 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -38,25 +38,34 @@ class SN_YammerClient } /** - * Make an HTTP hit with OAuth headers and return the response body on success. + * Make an HTTP GET request with OAuth headers and return an HTTPResponse + * with the returned body and codes. * - * @param string $path URL chunk for the API method - * @param array $params - * @return array + * @param string $url + * @return HTTPResponse * - * @throws Exception for HTTP error + * @throws Exception on low-level network error */ - protected function fetch($path, $params=array()) + protected function httpGet($url) { - $url = $this->apiBase . '/' . $path; - if ($params) { - $url .= '?' . http_build_query($params, null, '&'); - } $headers = array('Authorization: ' . $this->authHeader()); $client = HTTPClient::start(); - $response = $client->get($url, $headers); + return $client->get($url, $headers); + } + /** + * Make an HTTP GET request with OAuth headers and return the response body + * on success. + * + * @param string $url + * @return string + * + * @throws Exception on low-level network or HTTP error + */ + public function fetchUrl($url) + { + $response = $this->httpGet($url); if ($response->isOk()) { return $response->getBody(); } else { @@ -64,6 +73,24 @@ class SN_YammerClient } } + /** + * Make an HTTP hit with OAuth headers and return the response body on success. + * + * @param string $path URL chunk for the API method + * @param array $params + * @return string + * + * @throws Exception on low-level network or HTTP error + */ + protected function fetchApi($path, $params=array()) + { + $url = $this->apiBase . '/' . $path; + if ($params) { + $url .= '?' . http_build_query($params, null, '&'); + } + return $this->fetchUrl($url); + } + /** * Hit the main Yammer API point and decode returned JSON data. * @@ -75,7 +102,7 @@ class SN_YammerClient */ protected function api($method, $params=array()) { - $body = $this->fetch("api/v1/$method.json", $params); + $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); if (!$data) { throw new Exception("Invalid JSON response from Yammer API"); diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index 96127dd176..ef39275981 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -11,7 +11,7 @@ require INSTALLDIR . "/scripts/commandline.inc"; // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter(); +$imp = new YammerImporter($yam); $data = $yam->messages(); var_dump($data); diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index d6ec975132..da99c48e90 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -11,7 +11,7 @@ require INSTALLDIR . "/scripts/commandline.inc"; // temp stuff require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter(); +$imp = new YammerImporter($yam); $data = $yam->messages(); /* diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 08cbbf790b..48bb5dda29 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -25,11 +25,16 @@ */ class YammerImporter { - + protected $client; protected $users=array(); protected $groups=array(); protected $notices=array(); + function __construct(SN_YammerClient $client) + { + $this->client = $client; + } + /** * Load or create an imported profile from Yammer data. * @@ -95,17 +100,39 @@ class YammerImporter if ($noticeId) { return Notice::staticGet('id', $noticeId); } else { - $notice = Notice::saveNew($data['profile'], - $data['content'], + $content = $data['content']; + $user = User::staticGet($data['profile']); + + // Fetch file attachments and add the URLs... + $uploads = array(); + foreach ($data['attachments'] as $url) { + try { + $upload = $this->saveAttachment($url, $user); + $content .= ' ' . $upload->shortUrl(); + $uploads[] = $upload; + } catch (Exception $e) { + common_log(LOG_ERROR, "Error importing Yammer attachment: " . $e->getMessage()); + } + } + + // Here's the meat! Actually save the dang ol' notice. + $notice = Notice::saveNew($user->id, + $content, $data['source'], $data['options']); + + // Save "likes" as favorites... foreach ($data['faves'] as $nickname) { $user = User::staticGet('nickname', $nickname); if ($user) { Fave::addNew($user->getProfile(), $notice); } } - // @fixme attachments? + + // And finally attach the upload records... + foreach ($uploads as $upload) { + $upload->attachToNotice($notice); + } $this->recordImportedNotice($data['orig_id'], $notice->id); return $notice; } @@ -219,8 +246,14 @@ class YammerImporter $faves[] = $liker['permalink']; } - // Parse/save rendered text? - // @todo attachments? + $attachments = array(); + foreach ($item['attachments'] as $attach) { + if ($attach['type'] == 'image') { + $attachments[] = $attach['image']['url']; + } else { + common_log(LOG_WARNING, "Unrecognized Yammer attachment type: " . $attach['type']); + } + } return array('orig_id' => $origId, 'orig_url' => $origUrl, @@ -228,7 +261,8 @@ class YammerImporter 'content' => $content, 'source' => $source, 'options' => $options, - 'faves' => $faves); + 'faves' => $faves, + 'attachments' => $attachments); } private function findImportedUser($origId) @@ -326,4 +360,34 @@ class YammerImporter $dest->setOriginal($filename); } + + /** + * Fetch an attachment from Yammer and save it into our system. + * Unlike avatars, the attachment URLs are guarded by authentication, + * so we need to run the HTTP hit through our OAuth API client. + * + * @param string $url + * @param User $user + * @return MediaFile + * + * @throws Exception on low-level network or HTTP error + */ + private function saveAttachment($url, User $user) + { + // Fetch the attachment... + // WARNING: file must fit in memory here :( + $body = $this->client->fetchUrl($url); + + // Save to a temporary file and shove it into our file-attachment space... + $temp = tmpfile(); + fwrite($temp, $body); + try { + $upload = MediaFile::fromFileHandle($temp, $user); + fclose($temp); + return $upload; + } catch (Exception $e) { + fclose($temp); + throw $e; + } + } } From 7ffaf823486c05659379599752ae88a4c7d3339b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:25:02 -0700 Subject: [PATCH 209/310] Pull group descriptions in Yammer import --- plugins/YammerImport/yammerimporter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 48bb5dda29..fb88fc5069 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -195,6 +195,7 @@ class YammerImporter $options['nickname'] = $item['name']; $options['fullname'] = $item['full_name']; + $options['description'] = $item['description']; $options['created'] = $this->timestamp($item['created_at']); $avatar = $item['mugshot_url']; // as with user profiles... From 37c67c3f9ff7af942c3fa629724589e4de31f94e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 17:35:32 -0700 Subject: [PATCH 210/310] Yammer import: mark group posts with the proper group inbox (should we append a !foo or leave them as is, as current?) --- plugins/YammerImport/yammerimporter.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index fb88fc5069..bb6db73528 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -241,6 +241,13 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); + if ($item['group_id']) { + $groupId = $this->findImportedGroup($item['group_id']); + if ($groupId) { + $options['groups'] = array($groupId); + } + } + $faves = array(); foreach ($item['liked_by']['names'] as $liker) { // "permalink" is the username. wtf? From 1685c8a4fa0c5e2eab514b5eea23ddc963255cbb Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 18:15:32 -0700 Subject: [PATCH 211/310] Fetch more user data in Yammer imports, including the primary email address (preconfirmed, so we can do stuff like tell people to reset their passwords and log in!) and some bio info. --- plugins/YammerImport/sn_yammerclient.php | 28 ++++++++++ plugins/YammerImport/yamdump.php | 48 ++++------------- plugins/YammerImport/yammer-import.php | 42 +++++---------- plugins/YammerImport/yammerimporter.php | 68 +++++++++++++++++++++--- 4 files changed, 112 insertions(+), 74 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index f7382abae1..0f244ced6a 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -185,8 +185,36 @@ class SN_YammerClient return $this->apiBase . '/oauth/authorize?oauth_token=' . urlencode($token); } + /** + * High-level API hit: fetch all messages in the network (up to 20 at a time). + * Return data is the full JSON array returned, including meta and references + * sections. + * + * The matching messages themselves will be in the 'messages' item within. + * + * @param array $options optional set of additional params for the request. + * @return array + * + * @throws Exception on low-level or HTTP error + */ public function messages($params=array()) { return $this->api('messages', $params); } + + /** + * High-level API hit: fetch all users in the network (up to 50 at a time). + * Return data is the full JSON array returned, listing user items. + * + * The matching messages themselves will be in the 'users' item within. + * + * @param array $options optional set of additional params for the request. + * @return array of JSON-sourced user data arrays + * + * @throws Exception on low-level or HTTP error + */ + public function users($params=array()) + { + return $this->api('users', $params); + } } diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/yamdump.php index ef39275981..809baa1223 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/yamdump.php @@ -13,50 +13,22 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); -$data = $yam->messages(); +$data = $yam->users(); var_dump($data); - -/* - ["messages"]=> - ["meta"]=> // followed_user_ids, current_user_id, etc - ["threaded_extended"]=> // empty! - ["references"]=> // lists the users, threads, replied messages, tags -*/ - -// 1) we're getting messages in descending order, but we'll want to process ascending -// 2) we'll need to pull out all those referenced items too? -// 3) do we need to page over or anything? - -// 20 qualifying messages per hit... -// use older_than to grab more -// (better if we can go in reverse though!) -// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. - -foreach ($data['references'] as $item) { - if ($item['type'] == 'user') { - $user = $imp->prepUser($item); - var_dump($user); - } else if ($item['type'] == 'group') { - $group = $imp->prepGroup($item); - var_dump($group); - } else if ($item['type'] == 'tag') { - // could need these if we work from the parsed message text - // otherwise, the #blarf in orig text is fine. - } else if ($item['type'] == 'thread') { - // Shouldn't need thread info; we'll reconstruct conversations - // from the reply-to chains. - } else if ($item['type'] == 'message') { - // If we're processing everything, then we don't need the refs here. - } else { - echo "(skipping unknown ref: " . $item['type'] . ")\n"; - } +// @fixme follow paging +foreach ($data as $item) { + $user = $imp->prepUser($item); + var_dump($user); } -// Process in reverse chron order... +/* +$data = $yam->messages(); +var_dump($data); // @fixme follow paging $messages = $data['messages']; -array_reverse($messages); +$messages = array_reverse($messages); foreach ($messages as $message) { $notice = $imp->prepNotice($message); var_dump($notice); } +*/ diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index da99c48e90..7241809ba0 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -13,44 +13,26 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); +// First, import all the users! +// @fixme follow paging -- we only get 50 at a time +$data = $yam->users(); +foreach ($data as $item) { + $user = $imp->importUser($item); + echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; +} + $data = $yam->messages(); -/* - ["messages"]=> - ["meta"]=> // followed_user_ids, current_user_id, etc - ["threaded_extended"]=> // empty! - ["references"]=> // lists the users, threads, replied messages, tags -*/ - -// 1) we're getting messages in descending order, but we'll want to process ascending -// 2) we'll need to pull out all those referenced items too? -// 3) do we need to page over or anything? - -// 20 qualifying messages per hit... -// use older_than to grab more -// (better if we can go in reverse though!) -// meta: The older-available element indicates whether messages older than those shown are available to be fetched. See the older_than parameter mentioned above. +// @fixme pull the full group list; this'll be a partial list with less data +// and only for groups referenced in the message set. foreach ($data['references'] as $item) { - if ($item['type'] == 'user') { - $user = $imp->importUser($item); - echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; - } else if ($item['type'] == 'group') { + if ($item['type'] == 'group') { $group = $imp->importGroup($item); echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; - } else if ($item['type'] == 'tag') { - // could need these if we work from the parsed message text - // otherwise, the #blarf in orig text is fine. - } else if ($item['type'] == 'thread') { - // Shouldn't need thread info; we'll reconstruct conversations - // from the reply-to chains. - } else if ($item['type'] == 'message') { - // If we're processing everything, then we don't need the refs here. - } else { - echo "(skipping unknown ref: " . $item['type'] . ")\n"; } } // Process in reverse chron order... -// @fixme follow paging +// @fixme follow paging -- we only get 20 at a time, and start at the most recent! $messages = $data['messages']; $messages = array_reverse($messages); foreach ($messages as $item) { diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index bb6db73528..583ed3a8c1 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -158,16 +158,60 @@ class YammerImporter $options['nickname'] = $item['name']; $options['fullname'] = trim($item['full_name']); - // We don't appear to have full bio avail here! - $options['bio'] = $item['job_title']; - - // What about other data like emails? - // Avatar... this will be the "_small" variant. // Remove that (pre-extension) suffix to get the orig-size image. $avatar = $item['mugshot_url']; - // Warning: we don't have following state for other users? + // The following info is only available in full data, not in the reference version. + + // There can be extensive contact info, but for now we'll only pull the primary email. + if (isset($item['contact'])) { + foreach ($item['contact']['email_addresses'] as $addr) { + if ($addr['type'] == 'primary') { + $options['email'] = $addr['address']; + $options['email_confirmed'] = true; + break; + } + } + } + + // There can be multiple external URLs; for now pull the first one as home page. + if (isset($item['external_urls'])) { + foreach ($item['external_urls'] as $url) { + if (common_valid_http_url($url)) { + $options['homepage'] = $url; + break; + } + } + } + + // Combine a few bits into the bio... + $bio = array(); + if (!empty($item['job_title'])) { + $bio[] = $item['job_title']; + } + if (!empty($item['summary'])) { + $bio[] = $item['summary']; + } + if (!empty($item['expertise'])) { + $bio[] = _m('Expertise:') . ' ' . $item['expertise']; + } + $options['bio'] = implode("\n\n", $bio); + + // Pull raw location string, may be lookupable + if (!empty($item['location'])) { + $options['location'] = $item['location']; + } + + // Timezone is in format like 'Pacific Time (US & Canada)' + // We need to convert that to a zone id. :P + // @fixme timezone not yet supported at registration time :) + if (!empty($item['timezone'])) { + $tz = $this->timezone($item['timezone']); + if ($tz) { + $options['timezone'] = $tz; + } + } return array('orig_id' => $origId, 'orig_url' => $origUrl, @@ -325,6 +369,18 @@ class YammerImporter return common_sql_date(strtotime($ts)); } + private function timezone($tz) + { + // Blaaaaaarf! + $known = array('Pacific Time (US & Canada)' => 'America/Los_Angeles', + 'Eastern Time (US & Canada)' => 'America/New_York'); + if (array_key_exists($known, $tz)) { + return $known[$tz]; + } else { + return false; + } + } + /** * Download and update given avatar image * From b3210ee64c84c9e8224b0c1e40217bf920a9a0a1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 18:21:36 -0700 Subject: [PATCH 212/310] Add group link on Yammer import (won't work until memberships are fixed) --- plugins/YammerImport/yammerimporter.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 583ed3a8c1..6dc72f4766 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -289,6 +289,12 @@ class YammerImporter $groupId = $this->findImportedGroup($item['group_id']); if ($groupId) { $options['groups'] = array($groupId); + + // @fixme if we see a group link inline, don't add this? + $group = User_group::staticGet('id', $groupId); + if ($group) { + $content .= ' !' . $group->nickname; + } } } From 6bc3f5aacbdefcd2bb2d46998bc439903ffa3a1d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 22:00:25 -0700 Subject: [PATCH 213/310] Support non-image file uploads in Yammer import --- plugins/YammerImport/yammerimporter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index 6dc72f4766..bfe486770c 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -306,8 +306,8 @@ class YammerImporter $attachments = array(); foreach ($item['attachments'] as $attach) { - if ($attach['type'] == 'image') { - $attachments[] = $attach['image']['url']; + if ($attach['type'] == 'image' || $attach['type'] == 'file') { + $attachments[] = $attach[$attach['type']]['url']; } else { common_log(LOG_WARNING, "Unrecognized Yammer attachment type: " . $attach['type']); } From e6e8a16f1c22294770a653047f50aa0a126395c6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 21 Sep 2010 23:19:36 -0700 Subject: [PATCH 214/310] Fixes for Yammer groups import: pulling explicit list, fixed avatar fetch --- plugins/YammerImport/sn_yammerclient.php | 18 ++++++++++++++++- plugins/YammerImport/yammer-import.php | 16 +++++++-------- plugins/YammerImport/yammerimporter.php | 25 ++++++++++++++---------- 3 files changed, 40 insertions(+), 19 deletions(-) diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/sn_yammerclient.php index 0f244ced6a..8f9f1d4131 100644 --- a/plugins/YammerImport/sn_yammerclient.php +++ b/plugins/YammerImport/sn_yammerclient.php @@ -100,7 +100,7 @@ class SN_YammerClient * * @throws Exception for HTTP error or bad JSON return */ - protected function api($method, $params=array()) + public function api($method, $params=array()) { $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); @@ -217,4 +217,20 @@ class SN_YammerClient { return $this->api('users', $params); } + + /** + * High-level API hit: fetch all groups in the network (up to 20 at a time). + * Return data is the full JSON array returned, listing user items. + * + * The matching messages themselves will be in the 'users' item within. + * + * @param array $options optional set of additional params for the request. + * @return array of JSON-sourced user data arrays + * + * @throws Exception on low-level or HTTP error + */ + public function groups($params=array()) + { + return $this->api('groups', $params); + } } diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/yammer-import.php index 7241809ba0..4931d1bc52 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/yammer-import.php @@ -21,18 +21,18 @@ foreach ($data as $item) { echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; } -$data = $yam->messages(); -// @fixme pull the full group list; this'll be a partial list with less data -// and only for groups referenced in the message set. -foreach ($data['references'] as $item) { - if ($item['type'] == 'group') { - $group = $imp->importGroup($item); - echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; - } +// Groups! +// @fixme follow paging -- we only get 20 at a time +$data = $yam->groups(); +foreach ($data as $item) { + $group = $imp->importGroup($item); + echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; } +// Messages! // Process in reverse chron order... // @fixme follow paging -- we only get 20 at a time, and start at the most recent! +$data = $yam->messages(); $messages = $data['messages']; $messages = array_reverse($messages); foreach ($messages as $item) { diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/yammerimporter.php index bfe486770c..9ce0d1e588 100644 --- a/plugins/YammerImport/yammerimporter.php +++ b/plugins/YammerImport/yammerimporter.php @@ -51,10 +51,12 @@ class YammerImporter } else { $user = User::register($data['options']); $profile = $user->getProfile(); - try { - $this->saveAvatar($data['avatar'], $profile); - } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + if ($data['avatar']) { + try { + $this->saveAvatar($data['avatar'], $profile); + } catch (Exception $e) { + common_log(LOG_ERR, "Error importing Yammer avatar: " . $e->getMessage()); + } } $this->recordImportedUser($data['orig_id'], $profile->id); return $profile; @@ -76,10 +78,12 @@ class YammerImporter return User_group::staticGet('id', $groupId); } else { $group = User_group::register($data['options']); - try { - $this->saveAvatar($data['avatar'], $group); - } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer avatar: " . $e->getMessage()); + if ($data['avatar']) { + try { + $this->saveAvatar($data['avatar'], $group); + } catch (Exception $e) { + common_log(LOG_ERR, "Error importing Yammer avatar: " . $e->getMessage()); + } } $this->recordImportedGroup($data['orig_id'], $group->id); return $group; @@ -111,7 +115,7 @@ class YammerImporter $content .= ' ' . $upload->shortUrl(); $uploads[] = $upload; } catch (Exception $e) { - common_log(LOG_ERROR, "Error importing Yammer attachment: " . $e->getMessage()); + common_log(LOG_ERR, "Error importing Yammer attachment: " . $e->getMessage()); } } @@ -254,7 +258,8 @@ class YammerImporter $options['local'] = true; return array('orig_id' => $origId, 'orig_url' => $origUrl, - 'options' => $options); + 'options' => $options, + 'avatar' => $avatar); } /** From ec648fb71748fa15872eacc66144b2960800d897 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 12:52:34 -0700 Subject: [PATCH 215/310] Split Yammer importer files into subdirs before I get too lost adding UI --- plugins/YammerImport/YammerImportPlugin.php | 4 +--- plugins/YammerImport/{ => lib}/sn_yammerclient.php | 0 plugins/YammerImport/{ => lib}/yammerimporter.php | 0 plugins/YammerImport/{ => scripts}/yamdump.php | 2 +- plugins/YammerImport/{ => scripts}/yammer-import.php | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) rename plugins/YammerImport/{ => lib}/sn_yammerclient.php (100%) rename plugins/YammerImport/{ => lib}/yammerimporter.php (100%) rename plugins/YammerImport/{ => scripts}/yamdump.php (90%) rename plugins/YammerImport/{ => scripts}/yammer-import.php (94%) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index a3520d8a86..79b8260b69 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -68,9 +68,7 @@ class YammerImportPlugin extends Plugin switch ($lower) { case 'sn_yammerclient': case 'yammerimporter': - case 'yammerimqueuehandler': - case 'importyammeraction': - require_once "$base/$lower.php"; + require_once "$base/lib/$lower.php"; return false; default: return true; diff --git a/plugins/YammerImport/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php similarity index 100% rename from plugins/YammerImport/sn_yammerclient.php rename to plugins/YammerImport/lib/sn_yammerclient.php diff --git a/plugins/YammerImport/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php similarity index 100% rename from plugins/YammerImport/yammerimporter.php rename to plugins/YammerImport/lib/yammerimporter.php diff --git a/plugins/YammerImport/yamdump.php b/plugins/YammerImport/scripts/yamdump.php similarity index 90% rename from plugins/YammerImport/yamdump.php rename to plugins/YammerImport/scripts/yamdump.php index 809baa1223..a358777ad1 100644 --- a/plugins/YammerImport/yamdump.php +++ b/plugins/YammerImport/scripts/yamdump.php @@ -4,7 +4,7 @@ if (php_sapi_name() != 'cli') { die('no'); } -define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); +define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; diff --git a/plugins/YammerImport/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php similarity index 94% rename from plugins/YammerImport/yammer-import.php rename to plugins/YammerImport/scripts/yammer-import.php index 4931d1bc52..ac258e1c7d 100644 --- a/plugins/YammerImport/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -4,7 +4,7 @@ if (php_sapi_name() != 'cli') { die('no'); } -define('INSTALLDIR', dirname(dirname(dirname(__FILE__)))); +define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; From 22434a5daeb535b72d4797877bacad9eb6a74f2e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 13:12:39 -0700 Subject: [PATCH 216/310] Initial README for yammer importer --- plugins/YammerImport/README | 75 +++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 plugins/YammerImport/README diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README new file mode 100644 index 0000000000..5ab080647a --- /dev/null +++ b/plugins/YammerImport/README @@ -0,0 +1,75 @@ +Yammer Import Plugin +==================== + +This plugin allows a one-time import pulling user accounts, groups, and +public messages from an existing Yammer instance, using Yammer's public API. + +Requirements +------------ + +* An account on the Yammer network you wish to import from +* An administrator account on the target StatusNet instance +* This YammerImport plugin enabled on your StatusNet instance + +Setup +----- + +The import process will be runnable through an administration panel on +your StatusNet site. + +The user interface and OAuth setup has not yet been completed, you will +have to manually initiate the OAuth authentication to get a token. + +Be patient, there will be a UI soon. ;) + + +Limitations +----------- + +Paging has not yet been added, so the importer will only pull up to: +* first 50 users +* first 20 groups +* last 20 public messages + + +Subscriptions and group memberships +----------------------------------- + +Yammer's API does not expose user/tag subscriptions or group memberships +except for the authenticating user. As a result, users will need to re-join +groups and re-follow their fellow users after the import. + +(This limitation may be lifted in future for sites on the Silver or Gold +plans where the import is done by a verified admin, as it should be possible +to fetch the information for each user via the admin account.) + + +Authentication +-------------- + +Account passwords cannot be retrieved, but the primary e-mail address is +retained so users can reset their passwords by mail if you're not using a +custom authentication system like LDAP. + + +Private messages and groups +--------------------------- + +At this time, only public messages are imported; private direct and group +messages are ignored. (This may change with Silver and Gold plans in future.) + +Yammer groups may be either public or private. Groups in StatusNet currently +have no privacy option, so any private groups will become public groups in the +imported site. + + +Attachments +----------- + +Attached image and document files will be copied in as if they had been +uploaded to the StatusNet site. Currently images do not display inline like +they do on Yammer; they will be linked instead. + +File type and size limitations on attachments will be applied, so beware some +attachments may not make it through. + From 472dab4a86c0ba365404b0994c3eb7e9979a80c2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 17:51:50 -0700 Subject: [PATCH 217/310] WORK IN PROGRESS: Starting infrastructure to initiate Yammer import from web UI and process it in the background queues. Totally not complete yet. --- plugins/YammerImport/YammerImportPlugin.php | 61 +++++- .../YammerImport/actions/yammeradminpanel.php | 153 +++++++++++++++ plugins/YammerImport/actions/yammerauth.php | 17 ++ .../YammerImport/classes/Yammer_common.php | 165 +++++++++++++++++ plugins/YammerImport/classes/Yammer_group.php | 79 ++++++++ .../YammerImport/classes/Yammer_notice.php | 79 ++++++++ .../classes/Yammer_notice_stub.php | 174 ++++++++++++++++++ plugins/YammerImport/classes/Yammer_state.php | 37 ++++ plugins/YammerImport/classes/Yammer_user.php | 79 ++++++++ plugins/YammerImport/lib/yammerimporter.php | 27 +-- .../YammerImport/lib/yammerqueuehandler.php | 47 +++++ 11 files changed, 892 insertions(+), 26 deletions(-) create mode 100644 plugins/YammerImport/actions/yammeradminpanel.php create mode 100644 plugins/YammerImport/actions/yammerauth.php create mode 100644 plugins/YammerImport/classes/Yammer_common.php create mode 100644 plugins/YammerImport/classes/Yammer_group.php create mode 100644 plugins/YammerImport/classes/Yammer_notice.php create mode 100644 plugins/YammerImport/classes/Yammer_notice_stub.php create mode 100644 plugins/YammerImport/classes/Yammer_state.php create mode 100644 plugins/YammerImport/classes/Yammer_user.php create mode 100644 plugins/YammerImport/lib/yammerqueuehandler.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 79b8260b69..f55169a55b 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -22,9 +22,7 @@ * @maintainer Brion Vibber */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - -set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/'); +if (!defined('STATUSNET')) { exit(1); } class YammerImportPlugin extends Plugin { @@ -36,8 +34,8 @@ class YammerImportPlugin extends Plugin */ function onRouterInitialized($m) { - $m->connect('admin/import/yammer', - array('action' => 'importyammer')); + $m->connect('admin/yammer', + array('action' => 'yammeradminpanel')); return true; } @@ -53,6 +51,56 @@ class YammerImportPlugin extends Plugin return true; } + /** + * Set up all our tables... + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $tables = array('Yammer_state', + 'Yammer_user', + 'Yammer_group', + 'Yammer_notice', + 'Yammer_notice_stub'); + foreach ($tables as $table) { + $schema->ensureTable($table, $table::schemaDef()); + } + + return true; + } + + /** + * If the plugin's installed, this should be accessible to admins. + */ + function onAdminPanelCheck($name, &$isOK) + { + if ($name == 'yammer') { + $isOK = true; + return false; + } + + return true; + } + + /** + * Add the Yammer admin panel to the list... + */ + function onEndAdminPanelNav($nav) + { + if (AdminPanelAction::canAdmin('yammer')) { + $action_name = $nav->action->trimmed('action'); + + $nav->out->menuItem(common_local_url('yammeradminpanel'), + _m('Yammer'), + _m('Yammer import'), + $action_name == 'yammeradminpanel', + 'nav_yammer_admin_panel'); + } + + return true; + } + /** * Automatically load the actions and libraries used by the plugin * @@ -70,6 +118,9 @@ class YammerImportPlugin extends Plugin case 'yammerimporter': require_once "$base/lib/$lower.php"; return false; + case 'yammeradminpanelaction': + require_once "$base/actions/yammeradminpanel.php"; + return false; default: return true; } diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php new file mode 100644 index 0000000000..875debac92 --- /dev/null +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -0,0 +1,153 @@ +. + * + * @category Settings + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +class YammeradminpanelAction extends AdminPanelAction +{ + /** + * Returns the page title + * + * @return string page title + */ + function title() + { + return _m('Yammer Import'); + } + + /** + * Instructions for using this form. + * + * @return string instructions + */ + function getInstructions() + { + return _m('Yammer import tool'); + } + + /** + * Show the Yammer admin panel form + * + * @return void + */ + function showForm() + { + $form = new YammerAdminPanelForm($this); + $form->show(); + return; + } +} + +class YammerAdminPanelForm extends AdminForm +{ + /** + * ID of the form + * + * @return string ID of the form + */ + function id() + { + return 'yammeradminpanel'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('yammeradminpanel'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $this->out->element('p', array(), 'yammer import IN DA HOUSE'); + + /* + Possible states of the yammer import process: + - null (not doing any sort of import) + - requesting-auth + - authenticated + - import-users + - import-groups + - fetch-messages + - import-messages + - done + */ + $yammerState = Yammer_state::staticGet('id', 1); + $state = $yammerState ? $yammerState->state || null; + + switch($state) + { + case null: + $this->out->element('p', array(), 'Time to start auth:'); + $this->showAuthForm(); + break; + case 'requesting-auth': + $this->out->element('p', array(), 'Need to finish auth!'); + $this->showAuthForm(); + break; + case 'import-users': + case 'import-groups': + case 'import-messages': + case 'save-messages': + $this->showImportState(); + break; + + } + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // No submit buttons needed at bottom + } +} diff --git a/plugins/YammerImport/actions/yammerauth.php b/plugins/YammerImport/actions/yammerauth.php new file mode 100644 index 0000000000..7e6e7204ae --- /dev/null +++ b/plugins/YammerImport/actions/yammerauth.php @@ -0,0 +1,17 @@ +requestToken(); + $url = $yam->authorizeUrl($token); + + // We're going to try doing this in an iframe; if that's not happy + // we can redirect but there doesn't seem to be a way to get Yammer's + // oauth to call us back instead of the manual copy. :( + + //common_redirect($url, 303); + $this->element('iframe', array('id' => 'yammer-oauth', + 'src' => $url)); +} + diff --git a/plugins/YammerImport/classes/Yammer_common.php b/plugins/YammerImport/classes/Yammer_common.php new file mode 100644 index 0000000000..81e302ab29 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_common.php @@ -0,0 +1,165 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Common base class for the Yammer import mappings for users, groups, and notices. + * + * Child classes must override these static methods, since we need to run + * on PHP 5.2.x which has no late static binding: + * - staticGet (as our other classes) + * - schemaDef (call self::doSchemaDef) + * - record (call self::doRecord) + */ + +class Yammer_common extends Memcached_DataObject +{ + public $__table = 'yammer_XXXX'; // table name + public $__field = 'XXXX_id'; // field name to save into + public $id; // int primary_key not_null + public $user_id; // int(4) + public $created; // datetime + + /** + * @fixme add a 'references' thing for the foreign key when we support that + */ + protected static function doSchemaDef($field) + { + return array(new ColumnDef('id', 'bigint', null, + false, 'PRI'), + new ColumnDef($field, 'integer', null, + false, 'UNI'), + new ColumnDef('created', 'datetime', null, + false)); + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + $this->__field => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K', $this->__field => 'U'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $user_id ID of the status in StatusNet + * @param integer $orig_id ID of the notice in Yammer + * + * @return Yammer_common new object for this value + */ + + protected static function doRecord($class, $field, $orig_id, $local_id) + { + $map = self::staticGet('id', $orig_id); + + if (!empty($map)) { + return $map; + } + + $map = self::staticGet($field, $local_id); + + if (!empty($map)) { + return $map; + } + + common_debug("Mapping Yammer $field {$orig_id} to local $field {$local_id}"); + + $map = new $class(); + + $map->id = $orig_id; + $map->$field = $local_id; + $map->created = common_sql_now(); + + $map->insert(); + + return $map; + } +} diff --git a/plugins/YammerImport/classes/Yammer_group.php b/plugins/YammerImport/classes/Yammer_group.php new file mode 100644 index 0000000000..4e7a6ebd03 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_group.php @@ -0,0 +1,79 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_group extends Yammer_common +{ + public $__table = 'yammer_group'; // table name + public $__field = 'group_id'; // field to map to + public $group_id; // int + + /** + * 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 Yammer_group object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_group', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('group_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported group. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $group_id ID of the status in StatusNet + * + * @return Yammer_group new object for this value + */ + + static function record($orig_id, $group_id) + { + return self::doRecord('Yammer_group', 'group_id', $orig_id, $group_id); + } +} diff --git a/plugins/YammerImport/classes/Yammer_notice.php b/plugins/YammerImport/classes/Yammer_notice.php new file mode 100644 index 0000000000..0f63db6303 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_notice.php @@ -0,0 +1,79 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_notice extends Yammer_common +{ + public $__table = 'yammer_notice'; // table name + public $__field = 'notice_id'; // field to map to + public $notice_id; // int + + /** + * 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 Yammer_notice object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_notice', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('notice_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported notice. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $notice_id ID of the status in StatusNet + * + * @return Yammer_notice new object for this value + */ + + static function record($orig_id, $notice_id) + { + return self::doRecord('Yammer_notice', 'notice_id', $orig_id, $notice_id); + } +} diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php new file mode 100644 index 0000000000..98a5e2cf77 --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -0,0 +1,174 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Temporary storage for imported Yammer messages between fetching and saving + * as local notices. + * + * The Yammer API only allows us to page down from the most recent items; in + * order to start saving the oldest notices first, we have to pull them all + * down in reverse chronological order, then go back over them from oldest to + * newest and actually save them into our notice table. + */ + +class Yammer_notice_stub extends Memcached_DataObject +{ + public $__table = 'yammer_notice_stub'; // table name + public $id; // int primary_key not_null + public $json_data; // text + public $created; // datetime + + /** + * Return schema definition to set this table up in onCheckSchema + */ + static function schemaDef($field) + { + return array(new ColumnDef('id', 'bigint', null, + false, 'PRI'), + new ColumnDef('json_data', 'text', null, + false), + new ColumnDef('created', 'datetime', null, + false)); + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'json_data' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Save the native Yammer API representation of a message for the pending + * import. Since they come in in reverse chronological order, we need to + * record them all as stubs and then go through from the beginning and + * save them as native notices, or we'll lose ordering and threading + * data. + * + * @param integer $orig_id ID of the notice on Yammer + * @param array $data the message record fetched out of Yammer API returnd data + * + * @return Yammer_notice_stub new object for this value + */ + + static function record($orig_id, $data) + { + common_debug("Recording Yammer message stub {$orig_id} for pending import..."); + + $stub = new Yammer_notice_stub(); + + $stub->id = $orig_id; + $stub->json_data = json_encode($data); + $stub->created = common_sql_now(); + + $stub->insert(); + + return $stub; + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $user_id ID of the status in StatusNet + * + * @return Yammer_notice_stub new object for this value + */ + + static function retrieve($orig_id) + { + $stub = self::staticGet('id', $orig_id); + if ($stub) { + return json_decode($stub->json_data, true); + } else { + return false; + } + } +} diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php new file mode 100644 index 0000000000..a476fd3bec --- /dev/null +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -0,0 +1,37 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +class Yammer_user extends Yammer_common +{ + public $__table = 'yammer_user'; // table name + public $__field = 'user_id'; // field to map to + public $user_id; // int + + /** + * 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 Yammer_user object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_user', $k, $v); + } + + /** + * Return schema definition to set this table up in onCheckSchema + */ + + static function schemaDef() + { + return self::doSchemaDef('user_id'); + } + + /** + * Save a mapping between a remote Yammer and local imported user. + * + * @param integer $orig_id ID of the notice in Yammer + * @param integer $user_id ID of the status in StatusNet + * + * @return Yammer_user new object for this value + */ + + static function record($orig_id, $user_id) + { + return self::doRecord('Yammer_user', 'user_id', $orig_id, $user_id); + } +} diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 9ce0d1e588..b1d2815b9e 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -26,9 +26,6 @@ class YammerImporter { protected $client; - protected $users=array(); - protected $groups=array(); - protected $notices=array(); function __construct(SN_YammerClient $client) { @@ -330,44 +327,32 @@ class YammerImporter private function findImportedUser($origId) { - if (isset($this->users[$origId])) { - return $this->users[$origId]; - } else { - return false; - } + return Yammer_user::staticGet('id', $origId); } private function findImportedGroup($origId) { - if (isset($this->groups[$origId])) { - return $this->groups[$origId]; - } else { - return false; - } + return Yammer_group::staticGet('id', $origId); } private function findImportedNotice($origId) { - if (isset($this->notices[$origId])) { - return $this->notices[$origId]; - } else { - return false; - } + return Yammer_notice::staticGet('id', $origId); } private function recordImportedUser($origId, $userId) { - $this->users[$origId] = $userId; + Yammer_user::record($origId, $userId); } private function recordImportedGroup($origId, $groupId) { - $this->groups[$origId] = $groupId; + Yammer_group::record($origId, $groupId); } private function recordImportedNotice($origId, $noticeId) { - $this->notices[$origId] = $noticeId; + Yammer_notice::record($origId, $noticeId); } /** diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php new file mode 100644 index 0000000000..ca81cbb344 --- /dev/null +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -0,0 +1,47 @@ +. + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * Queue handler for bumping the next chunk of Yammer import activity! + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerQueueHandler extends QueueHandler +{ + function transport() + { + return 'yammer'; + } + + function handle($notice) + { + $importer = new YammerImporter(); + if ($importer->hasWork()) { + return $importer->iterate(); + } else { + // We're done! + return true; + } + } +} From e8526b2e1f7ed269c84c93e72fda6c4f98e6d49b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 22 Sep 2010 17:53:38 -0700 Subject: [PATCH 218/310] More doc comments on SN_YammerClient --- plugins/YammerImport/lib/sn_yammerclient.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php index 8f9f1d4131..830f9dabb8 100644 --- a/plugins/YammerImport/lib/sn_yammerclient.php +++ b/plugins/YammerImport/lib/sn_yammerclient.php @@ -139,8 +139,11 @@ class SN_YammerClient } /** + * Encode a key-value pair for use in an authentication header. + * * @param string $key * @param string $val + * @return string */ protected function authHeaderChunk($key, $val) { @@ -148,6 +151,9 @@ class SN_YammerClient } /** + * Ask the Yammer server for a request token, which can be passed on + * to authorizeUrl() for the user to start the authentication process. + * * @return array of oauth return data; should contain nice things */ public function requestToken() @@ -162,6 +168,9 @@ class SN_YammerClient } /** + * Get a final access token from the verifier/PIN code provided to + * the user from Yammer's auth pages. + * * @return array of oauth return data; should contain nice things */ public function accessToken($verifier) @@ -175,7 +184,7 @@ class SN_YammerClient } /** - * Give the URL to send users to to authorize a new app setup + * Give the URL to send users to to authorize a new app setup. * * @param string $token as returned from accessToken() * @return string URL From a78f184652beb0fc84afbbfb6ec5a407e9409cc8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 12:52:58 -0700 Subject: [PATCH 219/310] A little more cleanup... --- plugins/YammerImport/YammerImportPlugin.php | 10 +- .../classes/Yammer_notice_stub.php | 4 +- plugins/YammerImport/classes/Yammer_state.php | 155 ++++++++++++++---- plugins/YammerImport/scripts/yamdump.php | 6 +- 4 files changed, 141 insertions(+), 34 deletions(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index f55169a55b..58fc8b772a 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -64,7 +64,7 @@ class YammerImportPlugin extends Plugin 'Yammer_notice', 'Yammer_notice_stub'); foreach ($tables as $table) { - $schema->ensureTable($table, $table::schemaDef()); + $schema->ensureTable(strtolower($table), $table::schemaDef()); } return true; @@ -121,6 +121,14 @@ class YammerImportPlugin extends Plugin case 'yammeradminpanelaction': require_once "$base/actions/yammeradminpanel.php"; return false; + case 'yammer_state': + case 'yammer_notice_stub': + case 'yammer_common': + case 'yammer_user': + case 'yammer_group': + case 'yammer_notice': + require_once "$base/classes/$cls.php"; + return false; default: return true; } diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php index 98a5e2cf77..cc52554dea 100644 --- a/plugins/YammerImport/classes/Yammer_notice_stub.php +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -51,7 +51,7 @@ class Yammer_notice_stub extends Memcached_DataObject /** * Return schema definition to set this table up in onCheckSchema */ - static function schemaDef($field) + static function schemaDef() { return array(new ColumnDef('id', 'bigint', null, false, 'PRI'), @@ -73,7 +73,7 @@ class Yammer_notice_stub extends Memcached_DataObject function table() { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, - 'json_data' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'json_data' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index a476fd3bec..98a656bfc5 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -1,37 +1,136 @@ + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} -yammer_state - id - state - request_token - oauth_token - users_page - groups_page - messages_oldest - created - modified +class Yammer_state extends Memcached_DataObject +{ + public $__table = 'yammer_state'; // table name + public $id; // int primary_key not_null + public $state; // import state key + public $request_token; // oauth request token; clear when auth is complete. + public $oauth_token; // actual oauth token! clear when import is done? + public $users_page; // last page of users we've fetched + public $groups_page; // last page of groups we've fetched + public $messages_oldest; // oldest message ID we've fetched + public $messages_newest; // newest message ID we've imported + public $created; // datetime + public $modified; // datetime -yammer_user - id - user_id - created + /** + * Return schema definition to set this table up in onCheckSchema + */ + static function schemaDef() + { + return array(new ColumnDef('id', 'int', null, + false, 'PRI'), + new ColumnDef('state', 'text'), + new ColumnDef('request_token', 'text'), + new ColumnDef('oauth_token', 'text'), + new ColumnDef('users_page', 'int'), + new ColumnDef('groups_page', 'int'), + new ColumnDef('messages_oldest', 'bigint'), + new ColumnDef('messages_newest', 'bigint'), + new ColumnDef('created', 'datetime'), + new ColumnDef('modified', 'datetime')); + } -yammer_group - id - group_id - created + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ -yammer_notice - id - notice_id - created + function table() + { + return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'state' => DB_DATAOBJECT_STR, + 'request_token' => DB_DATAOBJECT_STR, + 'oauth_token' => DB_DATAOBJECT_STR, + 'users_page' => DB_DATAOBJECT_INT, + 'groups_page' => DB_DATAOBJECT_INT, + 'messages_oldest' => DB_DATAOBJECT_INT, + 'messages_newest' => DB_DATAOBJECT_INT, + 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL); + } -yammer_notice_stub - id - json_data - created + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ -*/ + function keys() + { + return array_keys($this->keyTypes()); + } + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() + { + return array('id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } +} diff --git a/plugins/YammerImport/scripts/yamdump.php b/plugins/YammerImport/scripts/yamdump.php index a358777ad1..944ee2e499 100644 --- a/plugins/YammerImport/scripts/yamdump.php +++ b/plugins/YammerImport/scripts/yamdump.php @@ -13,6 +13,7 @@ require 'yam-config.php'; $yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); $imp = new YammerImporter($yam); +/* $data = $yam->users(); var_dump($data); // @fixme follow paging @@ -20,9 +21,9 @@ foreach ($data as $item) { $user = $imp->prepUser($item); var_dump($user); } +*/ -/* -$data = $yam->messages(); +$data = $yam->messages(array('newer_than' => 1)); var_dump($data); // @fixme follow paging $messages = $data['messages']; @@ -31,4 +32,3 @@ foreach ($messages as $message) { $notice = $imp->prepNotice($message); var_dump($notice); } -*/ From e8ad436a99401c36cc7fcf7e8d14d3bc00cdd3d3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 15:23:56 -0700 Subject: [PATCH 220/310] Work in progress: YammerRunner state machine wrapper for running the Yammer import in chunks. --- plugins/YammerImport/YammerImportPlugin.php | 1 + .../YammerImport/actions/yammeradminpanel.php | 2 +- plugins/YammerImport/classes/Yammer_state.php | 3 + plugins/YammerImport/lib/yammerrunner.php | 198 ++++++++++++++++++ 4 files changed, 203 insertions(+), 1 deletion(-) create mode 100644 plugins/YammerImport/lib/yammerrunner.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 58fc8b772a..85eab74c04 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -116,6 +116,7 @@ class YammerImportPlugin extends Plugin switch ($lower) { case 'sn_yammerclient': case 'yammerimporter': + case 'yammerrunner': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 875debac92..9f935bbefb 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -133,7 +133,7 @@ class YammerAdminPanelForm extends AdminForm break; case 'import-users': case 'import-groups': - case 'import-messages': + case 'fetch-messages': case 'save-messages': $this->showImportState(); break; diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 98a656bfc5..0174ead15d 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -38,6 +38,7 @@ class Yammer_state extends Memcached_DataObject public $state; // import state key public $request_token; // oauth request token; clear when auth is complete. public $oauth_token; // actual oauth token! clear when import is done? + public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched public $groups_page; // last page of groups we've fetched public $messages_oldest; // oldest message ID we've fetched @@ -55,6 +56,7 @@ class Yammer_state extends Memcached_DataObject new ColumnDef('state', 'text'), new ColumnDef('request_token', 'text'), new ColumnDef('oauth_token', 'text'), + new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), new ColumnDef('groups_page', 'int'), new ColumnDef('messages_oldest', 'bigint'), @@ -78,6 +80,7 @@ class Yammer_state extends Memcached_DataObject 'state' => DB_DATAOBJECT_STR, 'request_token' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, + 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, 'groups_page' => DB_DATAOBJECT_INT, 'messages_oldest' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php new file mode 100644 index 0000000000..e229b2acbe --- /dev/null +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -0,0 +1,198 @@ +. + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * State machine for running through Yammer import. + * + * @package YammerImportPlugin + * @author Brion Vibber + */ +class YammerRunner +{ + private $state; + private $client; + private $importer; + + function __construct() + { + $state = Yammer_state::staticGet('id', 1); + if (!$state) { + common_log(LOG_ERR, "No YammerImport state during import run. Should not happen!"); + throw new ServerException('No YammerImport state during import run.'); + } + + $this->state = $state; + $this->client = new SN_YammerClient( + common_config('yammer', 'consumer_key'), + common_config('yammer', 'consumer_secret'), + $this->state->oauth_token, + $this->state->oauth_secret); + $this->importer = new YammerImporter($client); + } + + public function iterate() + { + + switch($state->state) + { + case null: + case 'requesting-auth': + // Neither of these should reach our background state! + common_log(LOG_ERR, "Non-background YammerImport state '$state->state' during import run!"); + return false; + case 'import-users': + return $this->iterateUsers(); + case 'import-groups': + return $this->iterateGroups(); + case 'fetch-messages': + return $this->iterateFetchMessages(); + case 'save-messages': + return $this->iterateSaveMessages(); + default: + common_log(LOG_ERR, "Invalid YammerImport state '$state->state' during import run!"); + return false; + } + } + + /** + * Trundle through one 'page' return of up to 50 user accounts retrieved + * from the Yammer API, importing them as we go. + * + * When we run out of users, move on to groups. + * + * @return boolean success + */ + private function iterateUsers() + { + $old = clone($this->state); + + $page = intval($this->state->users_page) + 1; + $data = $this->client->users(array('page' => $page)); + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished importing Yammer users; moving on to groups."); + $this->state->state = 'import-groups'; + } else { + foreach ($data as $item) { + $user = $imp->importUser($item); + common_log(LOG_INFO, "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)"); + } + $this->state->users_page = $page; + } + $this->state->update($old); + return true; + } + + /** + * Trundle through one 'page' return of up to 20 user groups retrieved + * from the Yammer API, importing them as we go. + * + * When we run out of groups, move on to messages. + * + * @return boolean success + */ + private function iterateGroups() + { + $old = clone($this->state); + + $page = intval($this->state->groups_page) + 1; + $data = $this->client->groups(array('page' => $page)); + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished importing Yammer groups; moving on to messages."); + $this->state->state = 'import-messages'; + } else { + foreach ($data as $item) { + $group = $imp->importGroup($item); + common_log(LOG_INFO, "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)"); + } + $this->state->groups_page = $page; + } + $this->state->update($old); + return true; + } + + /** + * Trundle through one 'page' return of up to 20 public messages retrieved + * from the Yammer API, saving them to our stub table for future import in + * correct chronological order. + * + * When we run out of messages to fetch, move on to saving the messages. + * + * @return boolean success + */ + private function iterateFetchMessages() + { + $old = clone($this->state); + + $oldest = intval($this->state->messages_oldest); + if ($oldest) { + $params = array('older_than' => $oldest); + } else { + $params = array(); + } + $data = $this->client->messages($params); + $messages = $data['messages']; + + if (count($data) == 0) { + common_log(LOG_INFO, "Finished fetching Yammer messages; moving on to save messages."); + $this->state->state = 'save-messages'; + } else { + foreach ($data as $item) { + Yammer_notice_stub::record($item['id'], $item); + $oldest = $item['id']; + } + $this->state->messages_oldest = $oldest; + } + $this->state->update($old); + return true; + } + + private function iterateSaveMessages() + { + $old = clone($this->state); + + $newest = intval($this->state->messages_newest); + if ($newest) { + $stub->addWhere('id > ' . $newest); + } + $stub->limit(20); + $stub->find(); + + if ($stub->N == 0) { + common_log(LOG_INFO, "Finished saving Yammer messages; import complete!"); + $this->state->state = 'done'; + } else { + while ($stub->fetch()) { + $item = json_decode($stub->json_data); + $notice = $this->importer->importNotice($item); + common_log(LOG_INFO, "Imported Yammer notice " . $item['id'] . " as $notice->id"); + $newest = $item['id']; + } + $this->state->messages_newest = $newest; + } + $this->state->update($old); + return true; + } + +} From ae507b04856804acb41256a00a9cd2c8e7136c96 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 16:40:22 -0700 Subject: [PATCH 221/310] Work in progress: most of the infrastructure for running import via BG queues or CLI script is now in place (untested, no UI, needs tweaks & fixes) --- plugins/YammerImport/README | 42 ++++++++ .../YammerImport/lib/yammerqueuehandler.php | 18 +++- plugins/YammerImport/lib/yammerrunner.php | 102 +++++++++++++++++- .../YammerImport/scripts/yammer-import.php | 59 +++++----- 4 files changed, 186 insertions(+), 35 deletions(-) diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README index 5ab080647a..1bac69a243 100644 --- a/plugins/YammerImport/README +++ b/plugins/YammerImport/README @@ -73,3 +73,45 @@ they do on Yammer; they will be linked instead. File type and size limitations on attachments will be applied, so beware some attachments may not make it through. + + + +Code structure +============== + +Standalone classes +------------------ + +YammerRunner: encapsulates the iterative process of retrieving the various users, + groups, and messages via SN_YammerClient and saving them locally + via YammerImporter. + +SN_YammerClient: encapsulates HTTP+OAuth interface to Yammer API, returns data + as straight decoded JSON object trees. + +YammerImporter: encapsulates logic to pull information from the returned API data + and convert them to native StatusNet users, groups, and messages. + +Web UI actions +------------- + +YammeradminpanelAction: web panel for site administrator to initiate and monitor + the import process. + +Command-line scripts +-------------------- + +yammer-import.php: CLI script to start a Yammer import run in one go. + +Database objects +---------------- + +Yammer_state: data object storing YammerRunner's state between iterations. + +Yammer_notice_stub: data object for temporary storage of fetched Yammer messages + between fetching them (reverse chron order) and saving them + to local messages (forward chron order). +Yammer_user, +Yammer_group, +Yammer_notice: data objects mapping original Yammer item IDs to their local copies. + diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index ca81cbb344..5fc3777835 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -36,11 +36,23 @@ class YammerQueueHandler extends QueueHandler function handle($notice) { - $importer = new YammerImporter(); - if ($importer->hasWork()) { - return $importer->iterate(); + $runner = YammerRunner::init(); + if ($runner->hasWork()) { + if ($runner->iterate()) { + if ($runner->hasWork()) { + // More to do? Shove us back on the queue... + $qm = QueueManager::get(); + $qm->enqueue('YammerImport', 'yammer'); + } + return true; + } else { + // Something failed? + // @fixme should we be trying again here, or should we give warning? + return false; + } } else { // We're done! + common_log(LOG_INFO, "Yammer import has no work to do at this time; discarding."); return true; } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e229b2acbe..95ff783714 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -33,29 +33,123 @@ class YammerRunner private $client; private $importer; - function __construct() + public static function init() { $state = Yammer_state::staticGet('id', 1); if (!$state) { - common_log(LOG_ERR, "No YammerImport state during import run. Should not happen!"); - throw new ServerException('No YammerImport state during import run.'); + $state = new Yammer_state(); + $state->id = 1; + $state->state = 'init'; + $state->insert(); } + return new YammerRunner($state); + } + private function __construct($state) + { $this->state = $state; + $this->client = new SN_YammerClient( common_config('yammer', 'consumer_key'), common_config('yammer', 'consumer_secret'), $this->state->oauth_token, $this->state->oauth_secret); + $this->importer = new YammerImporter($client); } + /** + * Check which state we're in + * + * @return string + */ + public function state() + { + return $this->state->state; + } + + /** + * Is the import done, finished, complete, finito? + * + * @return boolean + */ + public function isDone() + { + $workStates = array('import-users', 'import-groups', 'fetch-messages', 'save-messages'); + return ($this->state() == 'done'); + } + + /** + * Check if we have work to do in iterate(). + */ + public function hasWork() + { + $workStates = array('import-users', 'import-groups', 'fetch-messages', 'save-messages'); + return in_array($this->state(), $workStates); + } + + /** + * Start the authentication process! If all goes well, we'll get back a URL. + * Have the user visit that URL, log in on Yammer and verify the importer's + * permissions. They'll get back a verification code, which needs to be passed + * on to saveAuthToken(). + * + * @return string URL + */ + public function requestAuth() + { + if ($this->state->state != 'init') { + throw ServerError("Cannot request Yammer auth; already there!"); + } + + $old = clone($this->state); + $this->state->state = 'requesting-auth'; + $this->state->request_token = $client->requestToken(); + $this->state->update($old); + + return $this->client->authorizeUrl($this->state->request_token); + } + + /** + * Now that the user's given us this verification code from Yammer, we can + * request a final OAuth token/secret pair which we can use to access the + * API. + * + * After success here, we'll be ready to move on and run through iterate() + * until the import is complete. + * + * @param string $verifier + * @return boolean success + */ + public function saveAuthToken($verifier) + { + if ($this->state->state != 'requesting-auth') { + throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); + } + + $old = clone($this->state); + list($token, $secret) = $this->client->getAuthToken($verifier); + $this->state->verifier = ''; + $this->state->oauth_token = $token; + $this->state->oauth_secret = $secret; + + $this->state->update($old); + + return true; + } + + /** + * Once authentication is complete, we need to call iterate() a bunch of times + * until state() returns 'done'. + * + * @return boolean success + */ public function iterate() { switch($state->state) { - case null: + case 'init': case 'requesting-auth': // Neither of these should reach our background state! common_log(LOG_ERR, "Non-background YammerImport state '$state->state' during import run!"); diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index ac258e1c7d..24307d6cd4 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -8,34 +8,37 @@ define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); require INSTALLDIR . "/scripts/commandline.inc"; -// temp stuff -require 'yam-config.php'; -$yam = new SN_YammerClient($consumerKey, $consumerSecret, $token, $tokenSecret); -$imp = new YammerImporter($yam); +$runner = YammerRunner::init(); -// First, import all the users! -// @fixme follow paging -- we only get 50 at a time -$data = $yam->users(); -foreach ($data as $item) { - $user = $imp->importUser($item); - echo "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)\n"; -} +switch ($runner->state()) +{ + case 'init': + $url = $runner->requestAuth(); + echo "Log in to Yammer at the following URL and confirm permissions:\n"; + echo "\n"; + echo " $url\n"; + echo "\n"; + echo "Pass the resulting code back by running:\n" + echo "\n" + echo " php yammer-import.php --auth=####\n"; + echo "\n"; + break; -// Groups! -// @fixme follow paging -- we only get 20 at a time -$data = $yam->groups(); -foreach ($data as $item) { - $group = $imp->importGroup($item); - echo "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)\n"; -} + case 'requesting-auth': + if (empty($options['auth'])) { + echo "Please finish authenticating!\n"; + break; + } + $runner->saveAuthToken($options['auth']); + // Fall through... -// Messages! -// Process in reverse chron order... -// @fixme follow paging -- we only get 20 at a time, and start at the most recent! -$data = $yam->messages(); -$messages = $data['messages']; -$messages = array_reverse($messages); -foreach ($messages as $item) { - $notice = $imp->importNotice($item); - echo "Imported Yammer notice " . $item['id'] . " as $notice->id\n"; -} + default: + while (true) { + echo "... {$runner->state->state}\n"; + if (!$runner->iterate()) { + echo "... done.\n"; + break; + } + } + break; +} \ No newline at end of file From 8f438da254defa35d9e066fb29947da208d14319 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2010 17:55:13 -0700 Subject: [PATCH 222/310] Ok, command-line workflow for YammerImportPlugin seems to mostly work, at least on tiny test site :D --- .../YammerImport/classes/Yammer_common.php | 4 +- .../classes/Yammer_notice_stub.php | 45 ++++++----- plugins/YammerImport/classes/Yammer_state.php | 20 ++++- plugins/YammerImport/lib/sn_yammerclient.php | 7 +- plugins/YammerImport/lib/yammerimporter.php | 11 ++- plugins/YammerImport/lib/yammerrunner.php | 77 ++++++++++++++----- .../YammerImport/scripts/yammer-import.php | 43 ++++++++--- 7 files changed, 144 insertions(+), 63 deletions(-) diff --git a/plugins/YammerImport/classes/Yammer_common.php b/plugins/YammerImport/classes/Yammer_common.php index 81e302ab29..6ec6fc9041 100644 --- a/plugins/YammerImport/classes/Yammer_common.php +++ b/plugins/YammerImport/classes/Yammer_common.php @@ -138,13 +138,13 @@ class Yammer_common extends Memcached_DataObject protected static function doRecord($class, $field, $orig_id, $local_id) { - $map = self::staticGet('id', $orig_id); + $map = parent::staticGet($class, 'id', $orig_id); if (!empty($map)) { return $map; } - $map = self::staticGet($field, $local_id); + $map = parent::staticGet($class, $field, $local_id); if (!empty($map)) { return $map; diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php index cc52554dea..e10300c4c7 100644 --- a/plugins/YammerImport/classes/Yammer_notice_stub.php +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -48,6 +48,23 @@ class Yammer_notice_stub extends Memcached_DataObject public $json_data; // 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 Yammer_notice_stub object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_notice_stub', $k, $v); + } + /** * Return schema definition to set this table up in onCheckSchema */ @@ -126,6 +143,16 @@ class Yammer_notice_stub extends Memcached_DataObject return array(false, false, false); } + /** + * Decode the stored data structure. + * + * @return mixed + */ + public function getData() + { + return json_decode($this->json_data, true); + } + /** * Save the native Yammer API representation of a message for the pending * import. Since they come in in reverse chronological order, we need to @@ -153,22 +180,4 @@ class Yammer_notice_stub extends Memcached_DataObject return $stub; } - - /** - * Save a mapping between a remote Yammer and local imported user. - * - * @param integer $user_id ID of the status in StatusNet - * - * @return Yammer_notice_stub new object for this value - */ - - static function retrieve($orig_id) - { - $stub = self::staticGet('id', $orig_id); - if ($stub) { - return json_decode($stub->json_data, true); - } else { - return false; - } - } } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 0174ead15d..2f1fd7780b 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -36,7 +36,6 @@ class Yammer_state extends Memcached_DataObject public $__table = 'yammer_state'; // table name public $id; // int primary_key not_null public $state; // import state key - public $request_token; // oauth request token; clear when auth is complete. public $oauth_token; // actual oauth token! clear when import is done? public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched @@ -46,6 +45,23 @@ class Yammer_state extends Memcached_DataObject public $created; // datetime public $modified; // 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 Yammer_state object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Yammer_state', $k, $v); + } + /** * Return schema definition to set this table up in onCheckSchema */ @@ -54,7 +70,6 @@ class Yammer_state extends Memcached_DataObject return array(new ColumnDef('id', 'int', null, false, 'PRI'), new ColumnDef('state', 'text'), - new ColumnDef('request_token', 'text'), new ColumnDef('oauth_token', 'text'), new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), @@ -78,7 +93,6 @@ class Yammer_state extends Memcached_DataObject { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, 'state' => DB_DATAOBJECT_STR, - 'request_token' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/lib/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php index 830f9dabb8..5da1cc5e7e 100644 --- a/plugins/YammerImport/lib/sn_yammerclient.php +++ b/plugins/YammerImport/lib/sn_yammerclient.php @@ -104,7 +104,8 @@ class SN_YammerClient { $body = $this->fetchApi("api/v1/$method.json", $params); $data = json_decode($body, true); - if (!$data) { + if ($data === null) { + common_log(LOG_ERR, "Invalid JSON response from Yammer API: " . $body); throw new Exception("Invalid JSON response from Yammer API"); } return $data; @@ -161,7 +162,7 @@ class SN_YammerClient if ($this->token || $this->tokenSecret) { throw new Exception("Requesting a token, but already set up with a token"); } - $data = $this->fetch('oauth/request_token'); + $data = $this->fetchApi('oauth/request_token'); $arr = array(); parse_str($data, $arr); return $arr; @@ -176,7 +177,7 @@ class SN_YammerClient public function accessToken($verifier) { $this->verifier = $verifier; - $data = $this->fetch('oauth/access_token'); + $data = $this->fetchApi('oauth/access_token'); $this->verifier = null; $arr = array(); parse_str($data, $arr); diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index b1d2815b9e..0425b8b04e 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -327,17 +327,20 @@ class YammerImporter private function findImportedUser($origId) { - return Yammer_user::staticGet('id', $origId); + $map = Yammer_user::staticGet('id', $origId); + return $map ? $map->user_id : null; } private function findImportedGroup($origId) { - return Yammer_group::staticGet('id', $origId); + $map = Yammer_group::staticGet('id', $origId); + return $map ? $map->group_id : null; } private function findImportedNotice($origId) { - return Yammer_notice::staticGet('id', $origId); + $map = Yammer_notice::staticGet('id', $origId); + return $map ? $map->notice_id : null; } private function recordImportedUser($origId, $userId) @@ -370,7 +373,7 @@ class YammerImporter // Blaaaaaarf! $known = array('Pacific Time (US & Canada)' => 'America/Los_Angeles', 'Eastern Time (US & Canada)' => 'America/New_York'); - if (array_key_exists($known, $tz)) { + if (array_key_exists($tz, $known)) { return $known[$tz]; } else { return false; diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index 95ff783714..c4db48399c 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -33,18 +33,31 @@ class YammerRunner private $client; private $importer; + /** + * Normalize our singleton state and give us a YammerRunner object to play with! + * + * @return YammerRunner + */ public static function init() { $state = Yammer_state::staticGet('id', 1); if (!$state) { - $state = new Yammer_state(); - $state->id = 1; - $state->state = 'init'; - $state->insert(); + $state = self::initState(); } return new YammerRunner($state); } + private static function initState() + { + $state = new Yammer_state(); + $state->id = 1; + $state->state = 'init'; + $state->created = common_sql_now(); + $state->modified = common_sql_now(); + $state->insert(); + return $state; + } + private function __construct($state) { $this->state = $state; @@ -55,7 +68,7 @@ class YammerRunner $this->state->oauth_token, $this->state->oauth_secret); - $this->importer = new YammerImporter($client); + $this->importer = new YammerImporter($this->client); } /** @@ -81,6 +94,8 @@ class YammerRunner /** * Check if we have work to do in iterate(). + * + * @return boolean */ public function hasWork() { @@ -88,6 +103,15 @@ class YammerRunner return in_array($this->state(), $workStates); } + /** + * Blow away any current state! + */ + public function reset() + { + $this->state->delete(); + $this->state = self::initState(); + } + /** * Start the authentication process! If all goes well, we'll get back a URL. * Have the user visit that URL, log in on Yammer and verify the importer's @@ -102,12 +126,16 @@ class YammerRunner throw ServerError("Cannot request Yammer auth; already there!"); } + $data = $this->client->requestToken(); + $old = clone($this->state); $this->state->state = 'requesting-auth'; - $this->state->request_token = $client->requestToken(); + $this->state->oauth_token = $data['oauth_token']; + $this->state->oauth_secret = $data['oauth_token_secret']; + $this->state->modified = common_sql_now(); $this->state->update($old); - return $this->client->authorizeUrl($this->state->request_token); + return $this->client->authorizeUrl($this->state->oauth_token); } /** @@ -127,12 +155,13 @@ class YammerRunner throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); } - $old = clone($this->state); - list($token, $secret) = $this->client->getAuthToken($verifier); - $this->state->verifier = ''; - $this->state->oauth_token = $token; - $this->state->oauth_secret = $secret; + $data = $this->client->accessToken($verifier); + $old = clone($this->state); + $this->state->state = 'import-users'; + $this->state->oauth_token = $data['oauth_token']; + $this->state->oauth_secret = $data['oauth_token_secret']; + $this->state->modified = common_sql_now(); $this->state->update($old); return true; @@ -146,8 +175,7 @@ class YammerRunner */ public function iterate() { - - switch($state->state) + switch($this->state()) { case 'init': case 'requesting-auth': @@ -188,11 +216,12 @@ class YammerRunner $this->state->state = 'import-groups'; } else { foreach ($data as $item) { - $user = $imp->importUser($item); + $user = $this->importer->importUser($item); common_log(LOG_INFO, "Imported Yammer user " . $item['id'] . " as $user->nickname ($user->id)"); } $this->state->users_page = $page; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -214,14 +243,15 @@ class YammerRunner if (count($data) == 0) { common_log(LOG_INFO, "Finished importing Yammer groups; moving on to messages."); - $this->state->state = 'import-messages'; + $this->state->state = 'fetch-messages'; } else { foreach ($data as $item) { - $group = $imp->importGroup($item); + $group = $this->importer->importGroup($item); common_log(LOG_INFO, "Imported Yammer group " . $item['id'] . " as $group->nickname ($group->id)"); } $this->state->groups_page = $page; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -248,16 +278,17 @@ class YammerRunner $data = $this->client->messages($params); $messages = $data['messages']; - if (count($data) == 0) { + if (count($messages) == 0) { common_log(LOG_INFO, "Finished fetching Yammer messages; moving on to save messages."); $this->state->state = 'save-messages'; } else { - foreach ($data as $item) { + foreach ($messages as $item) { Yammer_notice_stub::record($item['id'], $item); $oldest = $item['id']; } $this->state->messages_oldest = $oldest; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } @@ -267,10 +298,13 @@ class YammerRunner $old = clone($this->state); $newest = intval($this->state->messages_newest); + + $stub = new Yammer_notice_stub(); if ($newest) { - $stub->addWhere('id > ' . $newest); + $stub->whereAdd('id > ' . $newest); } $stub->limit(20); + $stub->orderBy('id'); $stub->find(); if ($stub->N == 0) { @@ -278,13 +312,14 @@ class YammerRunner $this->state->state = 'done'; } else { while ($stub->fetch()) { - $item = json_decode($stub->json_data); + $item = $stub->getData(); $notice = $this->importer->importNotice($item); common_log(LOG_INFO, "Imported Yammer notice " . $item['id'] . " as $notice->id"); $newest = $item['id']; } $this->state->messages_newest = $newest; } + $this->state->modified = common_sql_now(); $this->state->update($old); return true; } diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index 24307d6cd4..1491cfd308 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -4,41 +4,60 @@ if (php_sapi_name() != 'cli') { die('no'); } + define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); +$longoptions = array('verify=', 'reset'); require INSTALLDIR . "/scripts/commandline.inc"; +echo "Checking current state...\n"; $runner = YammerRunner::init(); +if (have_option('reset')) { + echo "Resetting Yammer import state...\n"; + $runner->reset(); +} + switch ($runner->state()) { case 'init': + echo "Requesting authentication to Yammer API...\n"; $url = $runner->requestAuth(); echo "Log in to Yammer at the following URL and confirm permissions:\n"; echo "\n"; echo " $url\n"; echo "\n"; - echo "Pass the resulting code back by running:\n" - echo "\n" - echo " php yammer-import.php --auth=####\n"; + echo "Pass the resulting code back by running:\n"; + echo "\n"; + echo " php yammer-import.php --verify=####\n"; echo "\n"; break; case 'requesting-auth': - if (empty($options['auth'])) { - echo "Please finish authenticating!\n"; - break; + if (!have_option('verify')) { + echo "Awaiting authentication...\n"; + echo "\n"; + echo "If you need to start over, reset the state:\n"; + echo "\n"; + echo " php yammer-import.php --reset\n"; + echo "\n"; + exit(1); } - $runner->saveAuthToken($options['auth']); + echo "Saving final authentication token for Yammer API...\n"; + $runner->saveAuthToken(get_option_value('verify')); // Fall through... default: - while (true) { - echo "... {$runner->state->state}\n"; + while ($runner->hasWork()) { + echo "... {$runner->state()}\n"; if (!$runner->iterate()) { - echo "... done.\n"; - break; + echo "FAIL??!?!?!\n"; } } + if ($runner->isDone()) { + echo "... done.\n"; + } else { + echo "... no more import work scheduled.\n"; + } break; -} \ No newline at end of file +} From 69cb47ccf445008bfb37d9a52f31da18dd5cdcaa Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 14:52:51 -0700 Subject: [PATCH 223/310] Initial progress display of Yammer import state in admin panel --- .../YammerImport/actions/yammeradminpanel.php | 123 +++++++++++++----- plugins/YammerImport/css/admin.css | 11 ++ plugins/YammerImport/lib/yammerrunner.php | 47 +++++++ 3 files changed, 151 insertions(+), 30 deletions(-) create mode 100644 plugins/YammerImport/css/admin.css diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 9f935bbefb..2c9f412a24 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -64,6 +64,12 @@ class YammeradminpanelAction extends AdminPanelAction $form->show(); return; } + + function showStylesheets() + { + parent::showStylesheets(); + $this->cssLink('plugins/YammerImport/css/admin.css', null, 'screen, projection, tv'); + } } class YammerAdminPanelForm extends AdminForm @@ -105,40 +111,97 @@ class YammerAdminPanelForm extends AdminForm */ function formData() { - $this->out->element('p', array(), 'yammer import IN DA HOUSE'); - - /* - Possible states of the yammer import process: - - null (not doing any sort of import) - - requesting-auth - - authenticated - - import-users - - import-groups - - fetch-messages - - import-messages - - done - */ - $yammerState = Yammer_state::staticGet('id', 1); - $state = $yammerState ? $yammerState->state || null; - - switch($state) + $runner = YammerRunner::init(); + + switch($runner->state()) { - case null: - $this->out->element('p', array(), 'Time to start auth:'); - $this->showAuthForm(); - break; + case 'init': case 'requesting-auth': - $this->out->element('p', array(), 'Need to finish auth!'); $this->showAuthForm(); - break; - case 'import-users': - case 'import-groups': - case 'fetch-messages': - case 'save-messages': - $this->showImportState(); - break; - + default: } + $this->showImportState($runner); + } + + private function showAuthForm() + { + $this->out->element('p', array(), 'show an auth form'); + } + + private function showImportState(YammerRunner $runner) + { + $userCount = $runner->countUsers(); + $groupCount = $runner->countGroups(); + $fetchedCount = $runner->countFetchedNotices(); + $savedCount = $runner->countSavedNotices(); + + $labels = array( + 'init' => array( + 'label' => _m("Initialize"), + 'progress' => _m('No import running'), + 'complete' => _m('Initiated Yammer server connection...'), + ), + 'requesting-auth' => array( + 'label' => _m('Connect to Yammer'), + 'progress' => _m('Awaiting authorization...'), + 'complete' => _m('Connected.'), + ), + 'import-users' => array( + 'label' => _m('Import user accounts'), + 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), + 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), + ), + 'import-groups' => array( + 'label' => _m('Import user groups'), + 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), + 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), + ), + 'fetch-messages' => array( + 'label' => _m('Prepare public notices for import'), + 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), + 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), + ), + 'save-messages' => array( + 'label' => _m('Import public notices'), + 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), + 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), + ), + 'done' => array( + 'label' => _m('Done'), + 'progress' => sprintf(_m("Import is complete!")), + 'complete' => sprintf(_m("Import is complete!")), + ) + ); + $steps = array_keys($labels); + $currentStep = array_search($runner->state(), $steps); + + foreach ($steps as $step => $state) { + if ($step < $currentStep) { + // This step is done + $this->progressBar($labels[$state]['label'], + $labels[$state]['complete'], + 'complete'); + } else if ($step == $currentStep) { + // This step is in progress + $this->progressBar($labels[$state]['label'], + $labels[$state]['progress'], + 'progress'); + } else { + // This step has not yet been done. + $this->progressBar($labels[$state]['label'], + _m("Waiting..."), + 'waiting'); + } + } + } + + private function progressBar($label, $status, $class) + { + // @fixme prettify ;) + $this->out->elementStart('div', array('class' => $class)); + $this->out->element('p', array(), $label); + $this->out->element('p', array(), $status); + $this->out->elementEnd('div'); } /** diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css new file mode 100644 index 0000000000..c1462237a5 --- /dev/null +++ b/plugins/YammerImport/css/admin.css @@ -0,0 +1,11 @@ +.waiting { + color: #888; +} + +.progress { + color: blue; +} + +.done { + color: black; +} diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index c4db48399c..e0aadff2c3 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -324,4 +324,51 @@ class YammerRunner return true; } + /** + * Count the number of Yammer users we've mapped into our system! + * + * @return int + */ + public function countUsers() + { + $map = new Yammer_user(); + return $map->count(); + } + + + /** + * Count the number of Yammer groups we've mapped into our system! + * + * @return int + */ + public function countGroups() + { + $map = new Yammer_group(); + return $map->count(); + } + + + /** + * Count the number of Yammer notices we've pulled down for pending import... + * + * @return int + */ + public function countFetchedNotices() + { + $map = new Yammer_notice_stub(); + return $map->count(); + } + + + /** + * Count the number of Yammer notices we've mapped into our system! + * + * @return int + */ + public function countSavedNotices() + { + $map = new Yammer_notice(); + return $map->count(); + } + } From 89dc215d9b00df49ba930acf47dc33c8acc8f909 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 16:15:45 -0700 Subject: [PATCH 224/310] Pretty up the Yammer import status display a bit --- .../YammerImport/actions/yammeradminpanel.php | 31 ++++++----- plugins/YammerImport/css/admin.css | 49 +++++++++++++++++- plugins/YammerImport/css/done.png | Bin 0 -> 991 bytes plugins/YammerImport/css/icon_processing.gif | Bin 0 -> 673 bytes 4 files changed, 66 insertions(+), 14 deletions(-) create mode 100644 plugins/YammerImport/css/done.png create mode 100644 plugins/YammerImport/css/icon_processing.gif diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 2c9f412a24..12df3c2022 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -175,32 +175,37 @@ class YammerAdminPanelForm extends AdminForm $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); + $this->out->elementStart('div', array('class' => 'yammer-import')); foreach ($steps as $step => $state) { if ($step < $currentStep) { // This step is done - $this->progressBar($labels[$state]['label'], - $labels[$state]['complete'], - 'complete'); + $this->progressBar($state, + 'complete', + $labels[$state]['label'], + $labels[$state]['complete']); } else if ($step == $currentStep) { // This step is in progress - $this->progressBar($labels[$state]['label'], - $labels[$state]['progress'], - 'progress'); + $this->progressBar($state, + 'progress', + $labels[$state]['label'], + $labels[$state]['progress']); } else { // This step has not yet been done. - $this->progressBar($labels[$state]['label'], - _m("Waiting..."), - 'waiting'); + $this->progressBar($state, + 'waiting', + $labels[$state]['label'], + _m("Waiting...")); } } + $this->out->elementEnd('div'); } - private function progressBar($label, $status, $class) + private function progressBar($state, $class, $label, $status) { // @fixme prettify ;) - $this->out->elementStart('div', array('class' => $class)); - $this->out->element('p', array(), $label); - $this->out->element('p', array(), $status); + $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); + $this->out->element('div', array('class' => 'import-label'), $label); + $this->out->element('div', array('class' => 'import-status'), $status); $this->out->elementEnd('div'); } diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index c1462237a5..28d52d07c6 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -1,11 +1,58 @@ +.yammer-import { + background-color: #eee; + + border: solid 1px; + border-radius: 8px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + -opera-border-radius: 8px; + + padding: 16px; +} + +.import-step { + padding: 8px; +} +.import-label { + font-weight: bold; +} +.import-status { + margin-left: 20px; + padding-left: 20px; +} + + .waiting { color: #888; } .progress { + background-color: #fff; + border-radius: 8px; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + -opera-border-radius: 8px; +} + +.progress .import-label { color: blue; } -.done { +.progress .import-status { + background-image: url(icon_processing.gif); + background-repeat: no-repeat; +} + +.complete { color: black; } + +.complete .import-status { + background-image: url(done.png); + background-repeat: no-repeat; +} + +.import-step-done .import-status { + /* override */ + background: none !important; +} diff --git a/plugins/YammerImport/css/done.png b/plugins/YammerImport/css/done.png new file mode 100644 index 0000000000000000000000000000000000000000..1f3f4115014653df14a79c51bfaa86340bbe2e03 GIT binary patch literal 991 zcmV<510ei~P)ma9mi6K=}4q%MH*rRO%S0%qN!987bXUXNm5K>%x*)bti$qbxQsm#HQYf{pojXVOj=;2xg`66+g6X-tY=34?vtNI^>FN)E^#V!& zv~F;_1A8Xp%QA)lVHyYvOxwVYiz>T?xNY0)?dYN7u^sGq`RzB-tIX8^LYP>q*XMT? zrmpMR>Ziqh0x2cF?-K+8XRm$3WTnsmU@1u;r9?@Hq{h*4UR}GNxShl>3>p#{ zx;Gs`YfThIl*?sGr6R}A_t5vtQC#t`1cV4Zt}7L(NNS=`<5fHke7=oKg>xvS&|0IE zA`C-{#UfMFcRAeu4*i#o;+P4h?-a)XWy*OfxwXlz$n=&=xgb|RoM&+KEAs9d>YNAg zJdaYT#GjKlIrQyYT)K6RDAZ)!CN2+7d{UfH7fitL{Bqd#Z1$C6aSkOH8Xkl`L!&3j z)U2e|bQv4J$e~kjQkc9-B*978Bt-4h&%M)oR6u9~x;&+RYg}n>P3IC>-}jM$Mo9?6 zkdZ%5Q}N0i8~Tu$;uMAf@uWp_QymX zsL*Ob)WTd)c|2*+Soa_oPELF}db-k$W*$&xb>5uFCo23@8i*y$M_bw&bG6HC>>6-V zCN=dIDK}0!vkbgMW$?4{k8XVL_W(W+0>&aE0mOkCAd_5fbmZ67bUyTWvMo_>x++4> zP6XpOFZ?}x`(pTo^tcSn0rP-dER7{QNdOiQtGZQnRRsh~!Bva`_y_%#tFU>{Dfj>Y N002ovPDHLkV1mlL*&P4? literal 0 HcmV?d00001 diff --git a/plugins/YammerImport/css/icon_processing.gif b/plugins/YammerImport/css/icon_processing.gif new file mode 100644 index 0000000000000000000000000000000000000000..d0bce1542342e912da81a2c260562df172f30d73 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nnmm28Kh24mmkF0U1e2Nli^nlO|14{Lk&@8WQa67~pE8 zXTZz|lvDgC+Z`3#dv5h=E26FfcG1 zbL_hF&)}42ws10s6^G;;cE1^EoUR)U5A70}d2pLv!jVIT7j&Z~EblI3x0K*v_sV|m z0kj3v921Z^em#l`(k(o@H$3ZdDRc@9NidXDNbqrumReCGv$gd8+e8WW28HVqkJ_9i zH>s*<31KtHjANIPvi2#*6BEu%3Dak5O_t&NBI)H?V$TxT}#l{vOTn5naXTfF^&~Hhq+NX@#Ccc>y7T?;vjI&jdhsDsPJyAw*m0Qz>i}K7# zL9w50Ng{fT}A5JUe8lRK1h7_Y2;BWJDd=c6f&i?Wv5(5q?6|P zQw{>maxZP<537OA37Uk}7@%_$4o$EWe_Zl>&#id|lE-BpDC#+Fn|msJ%_2h{Hg1vP z#N8WAzfWasG}yq|xqE)DrWaOofX=z|?*pgc%{ig5vl!pqDlC|q&~Z0$&Rvsft&VO- z4MZj+%-+Vx%W}v;V76hyp=;+R;x+~t^Q%*xuFTQAF2})fSfTHDAs>sO!OBw`)&)o$ c0!CNZt))x~rAZP^^P&YOFfdqy5)K#u0POD40{{R3 literal 0 HcmV?d00001 From e4b084f093dd7e8697616058874ec4ab15aacf2b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 16:27:33 -0700 Subject: [PATCH 225/310] Pretty it up a bit more --- plugins/YammerImport/actions/yammeradminpanel.php | 5 +++-- plugins/YammerImport/css/admin.css | 11 ++--------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 12df3c2022..13c95e37f7 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -175,7 +175,8 @@ class YammerAdminPanelForm extends AdminForm $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); - $this->out->elementStart('div', array('class' => 'yammer-import')); + $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $this->out->element('legend', array(), _m('Import status')); foreach ($steps as $step => $state) { if ($step < $currentStep) { // This step is done @@ -197,7 +198,7 @@ class YammerAdminPanelForm extends AdminForm _m("Waiting...")); } } - $this->out->elementEnd('div'); + $this->out->elementEnd('fieldset'); } private function progressBar($state, $class, $label, $status) diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 28d52d07c6..4c1aaacd64 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -1,12 +1,4 @@ .yammer-import { - background-color: #eee; - - border: solid 1px; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; - -opera-border-radius: 8px; - padding: 16px; } @@ -27,7 +19,8 @@ } .progress { - background-color: #fff; + background-color: white; + border: solid 1px blue; border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px; From 698f5c7a20d5792b629404ce513d2fa2c2bab907 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 24 Sep 2010 17:22:44 -0700 Subject: [PATCH 226/310] Work in progress on getting the frontend Yammer import form going.... --- plugins/YammerImport/YammerImportPlugin.php | 8 +- .../YammerImport/actions/yammeradminpanel.php | 205 +++++------------- plugins/YammerImport/actions/yammerauth.php | 88 ++++++-- .../YammerImport/lib/yammerauthinitform.php | 71 ++++++ .../YammerImport/lib/yammerauthverifyform.php | 82 +++++++ .../YammerImport/lib/yammerprogressform.php | 128 +++++++++++ 6 files changed, 420 insertions(+), 162 deletions(-) create mode 100644 plugins/YammerImport/lib/yammerauthinitform.php create mode 100644 plugins/YammerImport/lib/yammerauthverifyform.php create mode 100644 plugins/YammerImport/lib/yammerprogressform.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 85eab74c04..bb1e976186 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -36,6 +36,8 @@ class YammerImportPlugin extends Plugin { $m->connect('admin/yammer', array('action' => 'yammeradminpanel')); + $m->connect('admin/yammer/auth', + array('action' => 'yammerauth')); return true; } @@ -117,10 +119,14 @@ class YammerImportPlugin extends Plugin case 'sn_yammerclient': case 'yammerimporter': case 'yammerrunner': + case 'yammerauthinitform': + case 'yammerauthverifyform': + case 'yammerprogressform': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': - require_once "$base/actions/yammeradminpanel.php"; + $crop = substr($lower, 0, strlen($lower) - strlen('action')); + require_once "$base/actions/$crop.php"; return false; case 'yammer_state': case 'yammer_notice_stub': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 13c95e37f7..56e721d03c 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -53,6 +53,43 @@ class YammeradminpanelAction extends AdminPanelAction return _m('Yammer import tool'); } + function prepare($args) + { + $ok = parent::prepare($args); + + $this->init_auth = $this->trimmed('init_auth'); + $this->verify_token = $this->trimmed('verify_token'); + + return $ok; + } + + function handle($args) + { + if ($this->init_auth) { + $url = $runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $url); + return $this->showAjaxForm($form); + } else if ($this->verify_token) { + $runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + return $this->showAjaxForm($form); + } + + return parent::handle($args); + } + + function showAjaxForm($form) + { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Yammer import')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } + /** * Show the Yammer admin panel form * @@ -60,9 +97,24 @@ class YammeradminpanelAction extends AdminPanelAction */ function showForm() { - $form = new YammerAdminPanelForm($this); + $this->elementStart('fieldset'); + + $runner = YammerRunner::init(); + + switch($runner->state()) + { + case 'init': + $form = new YammerAuthInitForm($this); + break; + case 'requesting-auth': + $form = new YammerAuthVerifyForm($this, $runner); + break; + default: + $form = new YammerProgressForm($this, $runner); + } $form->show(); - return; + + $this->elementEnd('fieldset'); } function showStylesheets() @@ -70,153 +122,10 @@ class YammeradminpanelAction extends AdminPanelAction parent::showStylesheets(); $this->cssLink('plugins/YammerImport/css/admin.css', null, 'screen, projection, tv'); } -} -class YammerAdminPanelForm extends AdminForm -{ - /** - * ID of the form - * - * @return string ID of the form - */ - function id() + function showScripts() { - return 'yammeradminpanel'; - } - - /** - * class of the form - * - * @return string class of the form - */ - function formClass() - { - return 'form_settings'; - } - - /** - * Action of the form - * - * @return string URL of the action - */ - function action() - { - return common_local_url('yammeradminpanel'); - } - - /** - * Data elements of the form - * - * @return void - */ - function formData() - { - $runner = YammerRunner::init(); - - switch($runner->state()) - { - case 'init': - case 'requesting-auth': - $this->showAuthForm(); - default: - } - $this->showImportState($runner); - } - - private function showAuthForm() - { - $this->out->element('p', array(), 'show an auth form'); - } - - private function showImportState(YammerRunner $runner) - { - $userCount = $runner->countUsers(); - $groupCount = $runner->countGroups(); - $fetchedCount = $runner->countFetchedNotices(); - $savedCount = $runner->countSavedNotices(); - - $labels = array( - 'init' => array( - 'label' => _m("Initialize"), - 'progress' => _m('No import running'), - 'complete' => _m('Initiated Yammer server connection...'), - ), - 'requesting-auth' => array( - 'label' => _m('Connect to Yammer'), - 'progress' => _m('Awaiting authorization...'), - 'complete' => _m('Connected.'), - ), - 'import-users' => array( - 'label' => _m('Import user accounts'), - 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), - 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), - ), - 'import-groups' => array( - 'label' => _m('Import user groups'), - 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), - 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), - ), - 'fetch-messages' => array( - 'label' => _m('Prepare public notices for import'), - 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), - 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), - ), - 'save-messages' => array( - 'label' => _m('Import public notices'), - 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), - 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), - ), - 'done' => array( - 'label' => _m('Done'), - 'progress' => sprintf(_m("Import is complete!")), - 'complete' => sprintf(_m("Import is complete!")), - ) - ); - $steps = array_keys($labels); - $currentStep = array_search($runner->state(), $steps); - - $this->out->elementStart('fieldset', array('class' => 'yammer-import')); - $this->out->element('legend', array(), _m('Import status')); - foreach ($steps as $step => $state) { - if ($step < $currentStep) { - // This step is done - $this->progressBar($state, - 'complete', - $labels[$state]['label'], - $labels[$state]['complete']); - } else if ($step == $currentStep) { - // This step is in progress - $this->progressBar($state, - 'progress', - $labels[$state]['label'], - $labels[$state]['progress']); - } else { - // This step has not yet been done. - $this->progressBar($state, - 'waiting', - $labels[$state]['label'], - _m("Waiting...")); - } - } - $this->out->elementEnd('fieldset'); - } - - private function progressBar($state, $class, $label, $status) - { - // @fixme prettify ;) - $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); - $this->out->element('div', array('class' => 'import-label'), $label); - $this->out->element('div', array('class' => 'import-status'), $status); - $this->out->elementEnd('div'); - } - - /** - * Action elements - * - * @return void - */ - function formActions() - { - // No submit buttons needed at bottom + parent::showScripts(); + $this->script('plugins/YammerImport/js/yammer-admin.js'); } } diff --git a/plugins/YammerImport/actions/yammerauth.php b/plugins/YammerImport/actions/yammerauth.php index 7e6e7204ae..d0d4b40c71 100644 --- a/plugins/YammerImport/actions/yammerauth.php +++ b/plugins/YammerImport/actions/yammerauth.php @@ -1,17 +1,79 @@ . + * + * @category Settings + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ - -function showYammerAuth() -{ - $token = $yam->requestToken(); - $url = $yam->authorizeUrl($token); - - // We're going to try doing this in an iframe; if that's not happy - // we can redirect but there doesn't seem to be a way to get Yammer's - // oauth to call us back instead of the manual copy. :( - - //common_redirect($url, 303); - $this->element('iframe', array('id' => 'yammer-oauth', - 'src' => $url)); +if (!defined('STATUSNET')) { + exit(1); +} + +class YammerauthAction extends AdminPanelAction +{ + + /** + * Show the Yammer admin panel form + * + * @return void + */ + function prepare($args) + { + parent::prepare($args); + + $this->verify_token = $this->trim('verify_token'); + } + + /** + * Handle request + * + * Does the subscription and returns results. + * + * @param Array $args unused. + * + * @return void + */ + + function handle($args) + { + if ($this->verify_token) { + $runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + } else { + $url = $runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $url); + } + + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Connect to Yammer')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } } diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php new file mode 100644 index 0000000000..559ec4e7cc --- /dev/null +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -0,0 +1,71 @@ +out->element('legend', null, _m('Connect to Yammer')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->submit('submit', _m('Connect to Yammer'), 'submit', null, _m('Request authorization to connect to Yammer account')); + } +} diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php new file mode 100644 index 0000000000..488b5b8d1f --- /dev/null +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -0,0 +1,82 @@ +verify_url = $auth_url; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + + function id() + { + return 'yammer-auth-verify-form'; + } + + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_yammer_auth_verify'; + } + + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('yammeradminpanel'); + } + + + /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _m('Connect to Yammer')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + $this->out->input('verify-code', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); + $this->element('iframe', array('id' => 'yammer-oauth', + 'src' => $this->auth_url)); + } +} diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php new file mode 100644 index 0000000000..776efa100f --- /dev/null +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -0,0 +1,128 @@ +countUsers(); + $groupCount = $runner->countGroups(); + $fetchedCount = $runner->countFetchedNotices(); + $savedCount = $runner->countSavedNotices(); + + $labels = array( + 'init' => array( + 'label' => _m("Initialize"), + 'progress' => _m('No import running'), + 'complete' => _m('Initiated Yammer server connection...'), + ), + 'requesting-auth' => array( + 'label' => _m('Connect to Yammer'), + 'progress' => _m('Awaiting authorization...'), + 'complete' => _m('Connected.'), + ), + 'import-users' => array( + 'label' => _m('Import user accounts'), + 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), + 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), + ), + 'import-groups' => array( + 'label' => _m('Import user groups'), + 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), + 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), + ), + 'fetch-messages' => array( + 'label' => _m('Prepare public notices for import'), + 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), + 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), + ), + 'save-messages' => array( + 'label' => _m('Import public notices'), + 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), + 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), + ), + 'done' => array( + 'label' => _m('Done'), + 'progress' => sprintf(_m("Import is complete!")), + 'complete' => sprintf(_m("Import is complete!")), + ) + ); + $steps = array_keys($labels); + $currentStep = array_search($runner->state(), $steps); + + $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $this->out->element('legend', array(), _m('Import status')); + foreach ($steps as $step => $state) { + if ($state == 'init') { + // Don't show 'init', it's boring. + continue; + } + if ($step < $currentStep) { + // This step is done + $this->progressBar($state, + 'complete', + $labels[$state]['label'], + $labels[$state]['complete']); + } else if ($step == $currentStep) { + // This step is in progress + $this->progressBar($state, + 'progress', + $labels[$state]['label'], + $labels[$state]['progress']); + } else { + // This step has not yet been done. + $this->progressBar($state, + 'waiting', + $labels[$state]['label'], + _m("Waiting...")); + } + } + $this->out->elementEnd('fieldset'); + } + + private function progressBar($state, $class, $label, $status) + { + // @fixme prettify ;) + $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); + $this->out->element('div', array('class' => 'import-label'), $label); + $this->out->element('div', array('class' => 'import-status'), $status); + $this->out->elementEnd('div'); + } + +} From a57d67c91548482c74e07034c7717fa4e1057d3b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 12:24:10 -0700 Subject: [PATCH 227/310] Work in progress on fixing auth... looks like the iframe doesn't work though. Sigh. --- .../YammerImport/actions/yammeradminpanel.php | 38 +++++++++++-------- .../YammerImport/lib/yammerauthinitform.php | 1 + .../YammerImport/lib/yammerauthverifyform.php | 12 +++--- plugins/YammerImport/lib/yammerrunner.php | 21 ++++++++-- .../YammerImport/scripts/yammer-import.php | 2 + 5 files changed, 49 insertions(+), 25 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 56e721d03c..71651cdf56 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -33,6 +33,8 @@ if (!defined('STATUSNET')) { class YammeradminpanelAction extends AdminPanelAction { + private $runner; + /** * Returns the page title * @@ -59,23 +61,29 @@ class YammeradminpanelAction extends AdminPanelAction $this->init_auth = $this->trimmed('init_auth'); $this->verify_token = $this->trimmed('verify_token'); + $this->runner = YammerRunner::init(); return $ok; } function handle($args) { - if ($this->init_auth) { - $url = $runner->requestAuth(); - $form = new YammerAuthVerifyForm($this, $url); - return $this->showAjaxForm($form); - } else if ($this->verify_token) { - $runner->saveAuthToken($this->verify_token); - $form = new YammerAuthProgressForm(); - return $this->showAjaxForm($form); + if ($_SERVER['REQUEST_METHOD'] == 'POST') { + $this->checkSessionToken(); + if ($this->init_auth) { + $url = $this->runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $this->runner); + return $this->showAjaxForm($form); + } else if ($this->verify_token) { + $this->runner->saveAuthToken($this->verify_token); + $form = new YammerAuthProgressForm(); + return $this->showAjaxForm($form); + } else { + throw new ClientException('Invalid POST'); + } + } else { + return parent::handle($args); } - - return parent::handle($args); } function showAjaxForm($form) @@ -99,18 +107,16 @@ class YammeradminpanelAction extends AdminPanelAction { $this->elementStart('fieldset'); - $runner = YammerRunner::init(); - - switch($runner->state()) + switch($this->runner->state()) { case 'init': - $form = new YammerAuthInitForm($this); + $form = new YammerAuthInitForm($this, $this->runner); break; case 'requesting-auth': - $form = new YammerAuthVerifyForm($this, $runner); + $form = new YammerAuthVerifyForm($this, $this->runner); break; default: - $form = new YammerProgressForm($this, $runner); + $form = new YammerProgressForm($this, $this->runner); } $form->show(); diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php index 559ec4e7cc..5a83a06c21 100644 --- a/plugins/YammerImport/lib/yammerauthinitform.php +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -56,6 +56,7 @@ class YammerAuthInitForm extends Form function formData() { + $this->out->hidden('init_auth', '1'); } /** diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 488b5b8d1f..dc9d2ce1b2 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -2,12 +2,12 @@ class YammerAuthVerifyForm extends Form { - private $verify_url; + private $runner; - function __construct($out, $auth_url) + function __construct($out, YammerRunner $runner) { parent::__construct($out); - $this->verify_url = $auth_url; + $this->runner = $runner; } /** @@ -64,6 +64,9 @@ class YammerAuthVerifyForm extends Form function formData() { + $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->element('iframe', array('id' => 'yammer-oauth', + 'src' => $this->runner->getAuthUrl())); } /** @@ -74,9 +77,6 @@ class YammerAuthVerifyForm extends Form function formActions() { - $this->out->input('verify-code', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); - $this->element('iframe', array('id' => 'yammer-oauth', - 'src' => $this->auth_url)); } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e0aadff2c3..aee6b17e15 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -123,7 +123,7 @@ class YammerRunner public function requestAuth() { if ($this->state->state != 'init') { - throw ServerError("Cannot request Yammer auth; already there!"); + throw new ServerException("Cannot request Yammer auth; already there!"); } $data = $this->client->requestToken(); @@ -135,7 +135,22 @@ class YammerRunner $this->state->modified = common_sql_now(); $this->state->update($old); - return $this->client->authorizeUrl($this->state->oauth_token); + return $this->getAuthUrl(); + } + + /** + * When already in requesting-auth state, grab the URL to send the user to + * to complete OAuth setup. + * + * @return string URL + */ + function getAuthUrl() + { + if ($this->state() == 'requesting-auth') { + return $this->client->authorizeUrl($this->state->oauth_token); + } else { + throw new ServerException('Cannot get Yammer auth URL when not in requesting-auth state!'); + } } /** @@ -152,7 +167,7 @@ class YammerRunner public function saveAuthToken($verifier) { if ($this->state->state != 'requesting-auth') { - throw ServerError("Cannot save auth token in Yammer import state {$this->state->state}"); + throw new ServerException("Cannot save auth token in Yammer import state {$this->state->state}"); } $data = $this->client->accessToken($verifier); diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index 1491cfd308..b4aa921e50 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -16,6 +16,8 @@ $runner = YammerRunner::init(); if (have_option('reset')) { echo "Resetting Yammer import state...\n"; $runner->reset(); + echo "done.\n"; + exit(0); } switch ($runner->state()) From c2de0a74072433ad0cc356694a03971e890ebb76 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 12:34:01 -0700 Subject: [PATCH 228/310] Ok, got the AJAX clicky-throughs working for yammer auth (if app is already registered), but needs prettification. Yammer ignores callback URLs unless they're pre-registered with the app, and this apparently requires manual intervention to become a 'trusted' app, you don't get it on those you register yourself. Sigh. Also can't use an iframe since it breaks out of the frame (fair 'nuff) --- plugins/YammerImport/actions/yammeradminpanel.php | 2 +- plugins/YammerImport/lib/yammerauthverifyform.php | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 71651cdf56..fdf7a084f4 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -76,7 +76,7 @@ class YammeradminpanelAction extends AdminPanelAction return $this->showAjaxForm($form); } else if ($this->verify_token) { $this->runner->saveAuthToken($this->verify_token); - $form = new YammerAuthProgressForm(); + $form = new YammerProgressForm($this, $this->runner); return $this->showAjaxForm($form); } else { throw new ClientException('Invalid POST'); diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index dc9d2ce1b2..96decea102 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -65,8 +65,17 @@ class YammerAuthVerifyForm extends Form function formData() { $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + + // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O + /* $this->out->element('iframe', array('id' => 'yammer-oauth', 'src' => $this->runner->getAuthUrl())); + */ + // yeah, it ignores the callback_url + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + 'clicky click'); } /** From 7d51cda25d7a056ffdf8e7928b4dfa958597067f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 13:34:35 -0700 Subject: [PATCH 229/310] Yammer import (work run via background queues) now can be started from the admin panel! :DDDD Still requires that the app be registered on your network manually first. --- plugins/YammerImport/YammerImportPlugin.php | 3 ++- .../YammerImport/actions/yammeradminpanel.php | 4 ++++ .../YammerImport/lib/yammerauthverifyform.php | 19 ++++++++++++++----- .../YammerImport/lib/yammerqueuehandler.php | 3 +-- plugins/YammerImport/lib/yammerrunner.php | 9 +++++++++ 5 files changed, 30 insertions(+), 8 deletions(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index bb1e976186..547870936b 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -48,7 +48,7 @@ class YammerImportPlugin extends Plugin */ function onEndInitializeQueueManager(QueueManager $qm) { - $qm->connect('importym', 'ImportYmQueueHandler'); + $qm->connect('yammer', 'YammerQueueHandler'); return true; } @@ -122,6 +122,7 @@ class YammerImportPlugin extends Plugin case 'yammerauthinitform': case 'yammerauthverifyform': case 'yammerprogressform': + case 'yammerqueuehandler': require_once "$base/lib/$lower.php"; return false; case 'yammeradminpanelaction': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index fdf7a084f4..04ef26d512 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -76,6 +76,10 @@ class YammeradminpanelAction extends AdminPanelAction return $this->showAjaxForm($form); } else if ($this->verify_token) { $this->runner->saveAuthToken($this->verify_token); + + // Haho! Now we can make THE FUN HAPPEN + $this->runner->startBackgroundImport(); + $form = new YammerProgressForm($this, $this->runner); return $this->showAjaxForm($form); } else { diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 96decea102..2b3efbcb1a 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -64,7 +64,20 @@ class YammerAuthVerifyForm extends Form function formData() { - $this->out->input('verify_token', _m('Verification code:'), '', _m("Click through and paste the code it gives you below...")); + $this->out->elementStart('p'); + $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:')); + $this->out->elementEnd('p'); + + $this->out->elementStart('blockquote'); + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + _m('Open Yammer authentication window')); + $this->out->elementEnd('blockquote'); + + $this->out->element('p', array(), _m('Copy the verification code you are given into the form below:')); + + $this->out->input('verify_token', _m('Verification code:')); // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O /* @@ -72,10 +85,6 @@ class YammerAuthVerifyForm extends Form 'src' => $this->runner->getAuthUrl())); */ // yeah, it ignores the callback_url - $this->out->element('a', - array('href' => $this->runner->getAuthUrl(), - 'target' => '_blank'), - 'clicky click'); } /** diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index 5fc3777835..acc8073115 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -41,8 +41,7 @@ class YammerQueueHandler extends QueueHandler if ($runner->iterate()) { if ($runner->hasWork()) { // More to do? Shove us back on the queue... - $qm = QueueManager::get(); - $qm->enqueue('YammerImport', 'yammer'); + $runner->startBackgroundImport(); } return true; } else { diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index aee6b17e15..e0aec0d166 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -386,4 +386,13 @@ class YammerRunner return $map->count(); } + /** + * Start running import work in the background queues... + */ + public function startBackgroundImport() + { + $qm = QueueManager::get(); + $qm->enqueue('YammerImport', 'yammer'); + } + } From 61fde6c8fff5201393db4496918fe193fe960c01 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 16:56:48 -0700 Subject: [PATCH 230/310] Yammer import API keys can now be overridden by the admin. --- plugins/YammerImport/YammerImportPlugin.php | 1 + .../YammerImport/actions/yammeradminpanel.php | 89 +++++++++----- plugins/YammerImport/css/admin.css | 4 + plugins/YammerImport/lib/yammerapikeyform.php | 112 ++++++++++++++++++ .../YammerImport/lib/yammerauthinitform.php | 10 +- .../YammerImport/lib/yammerauthverifyform.php | 37 ++++-- plugins/YammerImport/scripts/yamdump.php | 34 ------ 7 files changed, 209 insertions(+), 78 deletions(-) create mode 100644 plugins/YammerImport/lib/yammerapikeyform.php delete mode 100644 plugins/YammerImport/scripts/yamdump.php diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 547870936b..98c6ecd0ab 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -119,6 +119,7 @@ class YammerImportPlugin extends Plugin case 'sn_yammerclient': case 'yammerimporter': case 'yammerrunner': + case 'yammerapikeyform': case 'yammerauthinitform': case 'yammerauthverifyform': case 'yammerprogressform': diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 04ef26d512..13960d9051 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -52,15 +52,18 @@ class YammeradminpanelAction extends AdminPanelAction */ function getInstructions() { - return _m('Yammer import tool'); + return _m('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.'); } function prepare($args) { $ok = parent::prepare($args); - $this->init_auth = $this->trimmed('init_auth'); - $this->verify_token = $this->trimmed('verify_token'); + $this->subaction = $this->trimmed('subaction'); $this->runner = YammerRunner::init(); return $ok; @@ -68,26 +71,48 @@ class YammeradminpanelAction extends AdminPanelAction function handle($args) { + // @fixme move this to saveSettings and friends? if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->checkSessionToken(); - if ($this->init_auth) { - $url = $this->runner->requestAuth(); - $form = new YammerAuthVerifyForm($this, $this->runner); - return $this->showAjaxForm($form); - } else if ($this->verify_token) { - $this->runner->saveAuthToken($this->verify_token); - + if ($this->subaction == 'change-apikey') { + $form = new YammerApiKeyForm($this); + } else if ($this->subaction == 'apikey') { + if ($this->saveKeys()) { + $form = new YammerAuthInitForm($this, $this->runner); + } else { + $form = new YammerApiKeyForm($this); + } + } else if ($this->subaction == 'authinit') { + // hack + if ($this->arg('change-apikey')) { + $form = new YammerApiKeyForm($this); + } else { + $url = $this->runner->requestAuth(); + $form = new YammerAuthVerifyForm($this, $this->runner); + } + } else if ($this->subaction == 'authverify') { + $this->runner->saveAuthToken($this->trimmed('verify_token')); + // Haho! Now we can make THE FUN HAPPEN $this->runner->startBackgroundImport(); - + $form = new YammerProgressForm($this, $this->runner); - return $this->showAjaxForm($form); } else { throw new ClientException('Invalid POST'); } - } else { - return parent::handle($args); + return $this->showAjaxForm($form); } + return parent::handle($args); + } + + function saveKeys() + { + $key = $this->trimmed('consumer_key'); + $secret = $this->trimmed('consumer_secret'); + Config::save('yammer', 'consumer_key', $key); + Config::save('yammer', 'consumer_secret', $secret); + + return !empty($key) && !empty($secret); } function showAjaxForm($form) @@ -102,6 +127,27 @@ class YammeradminpanelAction extends AdminPanelAction $this->elementEnd('html'); } + /** + * Fetch the appropriate form for our current state. + * @return Form + */ + function statusForm() + { + if (!(common_config('yammer', 'consumer_key')) + || !(common_config('yammer', 'consumer_secret'))) { + return new YammerApiKeyForm($this); + } + switch($this->runner->state()) + { + case 'init': + return new YammerAuthInitForm($this, $this->runner); + case 'requesting-auth': + return new YammerAuthVerifyForm($this, $this->runner); + default: + return new YammerProgressForm($this, $this->runner); + } + } + /** * Show the Yammer admin panel form * @@ -110,20 +156,7 @@ class YammeradminpanelAction extends AdminPanelAction function showForm() { $this->elementStart('fieldset'); - - switch($this->runner->state()) - { - case 'init': - $form = new YammerAuthInitForm($this, $this->runner); - break; - case 'requesting-auth': - $form = new YammerAuthVerifyForm($this, $this->runner); - break; - default: - $form = new YammerProgressForm($this, $this->runner); - } - $form->show(); - + $this->statusForm()->show(); $this->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 4c1aaacd64..9c99a0b880 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -49,3 +49,7 @@ /* override */ background: none !important; } + +.magiclink { + margin-left: 40px; +} \ No newline at end of file diff --git a/plugins/YammerImport/lib/yammerapikeyform.php b/plugins/YammerImport/lib/yammerapikeyform.php new file mode 100644 index 0000000000..b2acec4ede --- /dev/null +++ b/plugins/YammerImport/lib/yammerapikeyform.php @@ -0,0 +1,112 @@ +runner = $runner; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + + function id() + { + return 'yammer-apikey-form'; + } + + + /** + * class of the form + * + * @return string of the form class + */ + + function formClass() + { + return 'form_yammer_apikey form_settings'; + } + + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('yammeradminpanel'); + } + + + /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _m('Yammer API registration')); + } + + /** + * Data elements of the form + * + * @return void + */ + + function formData() + { + $this->out->hidden('subaction', 'apikey'); + + $this->out->elementStart('fieldset'); + + $this->out->elementStart('p'); + $this->out->text(_m('Before we can connect to your Yammer network, ' . + 'you will need to register the importer as an ' . + 'application authorized to pull data on your behalf. ' . + '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:')); + $this->out->elementEnd('p'); + + $this->out->elementStart('p', array('class' => 'magiclink')); + $this->out->element('a', + array('href' => 'https://www.yammer.com/client_applications/new', + 'target' => '_blank'), + _m('Open Yammer application registration form')); + $this->out->elementEnd('p'); + + $this->out->element('p', array(), _m('Copy the consumer key and secret you are given into the form below:')); + + $this->out->elementStart('ul', array('class' => 'form_data')); + $this->out->elementStart('li'); + $this->out->input('consumer_key', _m('Consumer key:'), common_config('yammer', 'consumer_key')); + $this->out->elementEnd('li'); + $this->out->elementStart('li'); + $this->out->input('consumer_secret', _m('Consumer secret:'), common_config('yammer', 'consumer_secret')); + $this->out->elementEnd('li'); + $this->out->elementEnd('ul'); + + $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save these consumer keys')); + + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + + function formActions() + { + } +} diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php index 5a83a06c21..9f48fd82a5 100644 --- a/plugins/YammerImport/lib/yammerauthinitform.php +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -22,7 +22,7 @@ class YammerAuthInitForm extends Form function formClass() { - return 'form_yammer_auth_init'; + return 'form_yammer_auth_init form_settings'; } @@ -56,7 +56,12 @@ class YammerAuthInitForm extends Form function formData() { - $this->out->hidden('init_auth', '1'); + $this->out->hidden('subaction', 'authinit'); + + $this->out->elementStart('fieldset'); + $this->out->submit('submit', _m('Start authentication'), 'submit', null, _m('Request authorization to connect to Yammer account')); + $this->out->submit('change-apikey', _m('Change API key')); + $this->out->elementEnd('fieldset'); } /** @@ -67,6 +72,5 @@ class YammerAuthInitForm extends Form function formActions() { - $this->out->submit('submit', _m('Connect to Yammer'), 'submit', null, _m('Request authorization to connect to Yammer account')); } } diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index 2b3efbcb1a..e119be96f7 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -30,7 +30,7 @@ class YammerAuthVerifyForm extends Form function formClass() { - return 'form_yammer_auth_verify'; + return 'form_yammer_auth_verify form_settings'; } @@ -64,27 +64,39 @@ class YammerAuthVerifyForm extends Form function formData() { + $this->out->hidden('subaction', 'authverify'); + + $this->out->elementStart('fieldset'); + $this->out->elementStart('p'); $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:')); $this->out->elementEnd('p'); - $this->out->elementStart('blockquote'); - $this->out->element('a', - array('href' => $this->runner->getAuthUrl(), - 'target' => '_blank'), - _m('Open Yammer authentication window')); - $this->out->elementEnd('blockquote'); - - $this->out->element('p', array(), _m('Copy the verification code you are given into the form below:')); - - $this->out->input('verify_token', _m('Verification code:')); - // iframe would be nice to avoid leaving -- since they don't seem to have callback url O_O /* $this->out->element('iframe', array('id' => 'yammer-oauth', 'src' => $this->runner->getAuthUrl())); */ // yeah, it ignores the callback_url + // soo... crappy link. :( + + $this->out->elementStart('p', array('class' => 'magiclink')); + $this->out->element('a', + array('href' => $this->runner->getAuthUrl(), + 'target' => '_blank'), + _m('Open Yammer authentication window')); + $this->out->elementEnd('p'); + + $this->out->element('p', array(), _m('Copy the verification code you are given below:')); + + $this->out->elementStart('ul', array('class' => 'form_data')); + $this->out->elementStart('li'); + $this->out->input('verify_token', _m('Verification code:')); + $this->out->elementEnd('li'); + $this->out->elementEnd('ul'); + + $this->out->submit('submit', _m('Continue'), 'submit', null, _m('Save code and begin import')); + $this->out->elementEnd('fieldset'); } /** @@ -95,6 +107,5 @@ class YammerAuthVerifyForm extends Form function formActions() { - $this->out->submit('submit', _m('Verify code'), 'submit', null, _m('Verification code')); } } diff --git a/plugins/YammerImport/scripts/yamdump.php b/plugins/YammerImport/scripts/yamdump.php deleted file mode 100644 index 944ee2e499..0000000000 --- a/plugins/YammerImport/scripts/yamdump.php +++ /dev/null @@ -1,34 +0,0 @@ -users(); -var_dump($data); -// @fixme follow paging -foreach ($data as $item) { - $user = $imp->prepUser($item); - var_dump($user); -} -*/ - -$data = $yam->messages(array('newer_than' => 1)); -var_dump($data); -// @fixme follow paging -$messages = $data['messages']; -$messages = array_reverse($messages); -foreach ($messages as $message) { - $notice = $imp->prepNotice($message); - var_dump($notice); -} From 5b3de9aaa465b217e857bc651cce6c86212de0b6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 17:12:06 -0700 Subject: [PATCH 231/310] update README for YammerImport --- plugins/YammerImport/README | 97 +++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 16 deletions(-) diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README index 1bac69a243..975faa2132 100644 --- a/plugins/YammerImport/README +++ b/plugins/YammerImport/README @@ -8,28 +8,93 @@ Requirements ------------ * An account on the Yammer network you wish to import from -* An administrator account on the target StatusNet instance +* An administrator account on the target StatusNet instance, or + command-line administrative access * This YammerImport plugin enabled on your StatusNet instance -Setup ------ - -The import process will be runnable through an administration panel on -your StatusNet site. - -The user interface and OAuth setup has not yet been completed, you will -have to manually initiate the OAuth authentication to get a token. - -Be patient, there will be a UI soon. ;) - Limitations ----------- -Paging has not yet been added, so the importer will only pull up to: -* first 50 users -* first 20 groups -* last 20 public messages +Yammer API key registrations only work for your own network unless you make +arrangements for a 'trusted app' key, so for now users will need to register +the app themselves. There is a helper in the admin panel for this. + +In theory any number of users, groups, and messages should be supported, but +it hasn't been fully tested on non-trivial-sized sites. + +No provision has yet been made for dealing with conflicting usernames or +group names, or names which are not considered valid by StatusNet. Errors +are possible. + +Running via the web admin interface requires having queueing enabled, and is +fairly likely to have problems with the application key registration step in +a small installation at this time. + + +Web setup +--------- + +The import process is runnable through an administration panel on your +StatusNet site. The user interface is still a bit flaky, however, and if +errors occur during import the process may stop with no way to restart it +visible. + +The admin interface will probably kinda blow up if JS/AJAX isn't working. + +You'll be prompted to register the application and authenticate into Yammer, +after which a progress screen will display. + +Two big warnings: +* The progress display does not currently auto-refresh. +* If anything fails once actual import has begun, it'll just keep showing + the current state. You won't see an error message, and there's no way + to reset or restart from the web UI yet. + +You can continue or reset the import state using the command-line script. + + +CLI setup +--------- + +You'll need to register an application consumer key to allow the importer +to connect to your Yammer network; this requires logging into Yammer: + + https://www.yammer.com/client_applications/new + +Check all the 'read' options; no 'write' options are required, but Yammer +seems to end up setting them anyway. + +You can set the resulting keys directly in config.php: + + $config['yammer']['consumer_key'] = '#####'; + $config['yammer']['consumer_secret'] = '##########'; + +Initiate authentication by starting up the importer script: + + php plugins/YammerImport/scripts/yammer-import.php + +Since you haven't yet authenticated, this will request an auth token and +give you a URL to open in your web browser. Once logged in and authorized +there, you'll be given a confirmation code. Pass this back: + + php plugins/YammerImport/scripts/yammer-import.php --verify=#### + +If all is well, the import process will begin and run through the end. + +In case of error or manual abort, you should be able to continue the +import from where you left off by running the script again: + + php plugins/YammerImport/scripts/yammer-import.php + +To reset the Yammer import state -- without removing any of the items +that have already been imported -- you can pass the --reset option: + + php plugins/YammerImport/scripts/yammer-import.php --reset + +This'll let you start over from the requesting-authentication stage. +Any users, groups, or notices that have already been imported will be +retained. Subscriptions and group memberships From 4e5a69ad6f201ea83820be63eb60fc0af3e077a7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 27 Sep 2010 14:23:10 -0700 Subject: [PATCH 232/310] Enhanced OStatus fixup-shadow.php cleanup script to check for direct matches against user.uri and user_group.uri (for local groups). This should catch cases that were missed before because we were only doing pattern-matching checks, and the pattern didn't match because the site has been renamed and the old URI no longer matches the current domain / path structure. Could use some more thorough testing in practice! --- plugins/OStatus/scripts/fixup-shadow.php | 56 +++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/plugins/OStatus/scripts/fixup-shadow.php b/plugins/OStatus/scripts/fixup-shadow.php index 4b6ad08a31..3e2c18e02f 100644 --- a/plugins/OStatus/scripts/fixup-shadow.php +++ b/plugins/OStatus/scripts/fixup-shadow.php @@ -35,6 +35,58 @@ require_once INSTALLDIR.'/scripts/commandline.inc'; $dry = have_option('dry-run'); +// Look for user.uri matches... These may not match up with the current +// URL schema if the site has changed names. +echo "Checking for bogus ostatus_profile entries matching user.uri...\n"; + +$user = new User(); +$oprofile = new Ostatus_profile(); +$user->joinAdd($oprofile, 'INNER', 'oprofile', 'uri'); +$user->find(); +$count = $user->N; +echo "Found $count...\n"; + +while ($user->fetch()) { + $uri = $user->uri; + echo "user $user->id ($user->nickname) hidden by $uri"; + if ($dry) { + echo " - skipping\n"; + } else { + echo " - removing bogus ostatus_profile entry..."; + $evil = Ostatus_profile::staticGet('uri', $uri); + $evil->delete(); + echo " ok\n"; + } +} +echo "\n"; + +// Also try user_group.uri matches for local groups. +// Not all group entries will have this filled out, though, as it's new! +echo "Checking for bogus ostatus_profile entries matching local user_group.uri...\n"; +$group = new User_group(); +$group->joinAdd(array('uri', 'ostatus_profile:uri')); +$group->joinAdd(array('id', 'local_group:group_id')); +$group->find(); +$count = $group->N; +echo "Found $count...\n"; + +while ($group->fetch()) { + $uri = $group->uri; + echo "group $group->id ($group->nickname) hidden by $uri"; + if ($dry) { + echo " - skipping\n"; + } else { + echo " - removing bogus ostatus_profile entry..."; + $evil = Ostatus_profile::staticGet('uri', $uri); + $evil->delete(); + echo " ok\n"; + } +} +echo "\n"; + + +// Fallback? +echo "Checking for bogus profiles blocking local users/groups by URI pattern match...\n"; $oprofile = new Ostatus_profile(); $marker = mt_rand(31337, 31337000); @@ -42,16 +94,18 @@ $marker = mt_rand(31337, 31337000); $profileTemplate = common_local_url('userbyid', array('id' => $marker)); $encProfile = $oprofile->escape($profileTemplate, true); $encProfile = str_replace($marker, '%', $encProfile); +echo " LIKE '$encProfile'\n"; $groupTemplate = common_local_url('groupbyid', array('id' => $marker)); $encGroup = $oprofile->escape($groupTemplate, true); $encGroup = str_replace($marker, '%', $encGroup); +echo " LIKE '$encGroup'\n"; $sql = "SELECT * FROM ostatus_profile WHERE uri LIKE '%s' OR uri LIKE '%s'"; $oprofile->query(sprintf($sql, $encProfile, $encGroup)); $count = $oprofile->N; -echo "Found $count bogus ostatus_profile entries shadowing local users and groups:\n"; +echo "Found $count...\n"; while ($oprofile->fetch()) { $uri = $oprofile->uri; From c20cfe2d8ed519913c524b77428e5fa08949d905 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 11:52:19 -0700 Subject: [PATCH 233/310] PHP 5.2 compat fix in YammerPlugin (can't call $var::staticFunction() directly until PHP 5.3) --- plugins/YammerImport/YammerImportPlugin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 98c6ecd0ab..2ce5af21b0 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -66,7 +66,8 @@ class YammerImportPlugin extends Plugin 'Yammer_notice', 'Yammer_notice_stub'); foreach ($tables as $table) { - $schema->ensureTable(strtolower($table), $table::schemaDef()); + $schemaDef = call_user_func(array($table, 'schemaDef')); + $schema->ensureTable(strtolower($table), $schemaDef); } return true; From f6c1b8aa496619c1740438f52c054d9b8be4036b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 21:06:47 +0200 Subject: [PATCH 234/310] Localisation updates from http://translatewiki.net * adding the fuzzy messages back now that translatewiki.net processes them properly again. --- locale/af/LC_MESSAGES/statusnet.po | 1712 ++++++++++- locale/ar/LC_MESSAGES/statusnet.po | 884 +++++- locale/arz/LC_MESSAGES/statusnet.po | 1527 +++++++++- locale/bg/LC_MESSAGES/statusnet.po | 1095 ++++++- locale/br/LC_MESSAGES/statusnet.po | 837 +++++- locale/ca/LC_MESSAGES/statusnet.po | 19 +- locale/cs/LC_MESSAGES/statusnet.po | 20 +- locale/de/LC_MESSAGES/statusnet.po | 311 +- locale/en_GB/LC_MESSAGES/statusnet.po | 347 ++- locale/eo/LC_MESSAGES/statusnet.po | 34 +- locale/es/LC_MESSAGES/statusnet.po | 37 +- locale/fa/LC_MESSAGES/statusnet.po | 192 +- locale/fi/LC_MESSAGES/statusnet.po | 1846 +++++++++++- locale/fr/LC_MESSAGES/statusnet.po | 21 +- locale/ga/LC_MESSAGES/statusnet.po | 2577 ++++++++++++++++- locale/gl/LC_MESSAGES/statusnet.po | 17 +- locale/hsb/LC_MESSAGES/statusnet.po | 752 ++++- locale/hu/LC_MESSAGES/statusnet.po | 18 +- locale/ia/LC_MESSAGES/statusnet.po | 103 +- locale/is/LC_MESSAGES/statusnet.po | 2079 ++++++++++++- locale/it/LC_MESSAGES/statusnet.po | 75 +- locale/ja/LC_MESSAGES/statusnet.po | 808 +++++- locale/ka/LC_MESSAGES/statusnet.po | 17 +- locale/ko/LC_MESSAGES/statusnet.po | 1092 ++++++- locale/mk/LC_MESSAGES/statusnet.po | 110 +- locale/nb/LC_MESSAGES/statusnet.po | 577 +++- locale/nl/LC_MESSAGES/statusnet.po | 87 +- locale/nn/LC_MESSAGES/statusnet.po | 2116 +++++++++++++- locale/pl/LC_MESSAGES/statusnet.po | 19 +- locale/pt/LC_MESSAGES/statusnet.po | 21 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 19 +- locale/ru/LC_MESSAGES/statusnet.po | 19 +- locale/statusnet.pot | 8 +- locale/sv/LC_MESSAGES/statusnet.po | 23 +- locale/te/LC_MESSAGES/statusnet.po | 1004 ++++++- locale/tr/LC_MESSAGES/statusnet.po | 1878 +++++++++++- locale/uk/LC_MESSAGES/statusnet.po | 101 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 111 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 27 + .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 27 + .../locale/mk/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/tl/LC_MESSAGES/BlogspamNet.po | 28 + .../locale/uk/LC_MESSAGES/BlogspamNet.po | 27 + plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 26 + plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 28 + plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 28 + .../locale/mk/LC_MESSAGES/DiskCache.po | 26 + .../locale/tl/LC_MESSAGES/DiskCache.po | 28 + .../locale/uk/LC_MESSAGES/DiskCache.po | 27 + .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 43 + .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 43 + .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 44 + plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 10 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 32 + .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 10 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 38 + .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 40 + .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 41 + .../locale/tl/LC_MESSAGES/MobileProfile.po | 80 + .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 14 +- plugins/YammerImport/locale/YammerImport.pot | 239 ++ 63 files changed, 22762 insertions(+), 735 deletions(-) create mode 100644 plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/Comet/locale/mk/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/tl/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/uk/LC_MESSAGES/Comet.po create mode 100644 plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po create mode 100644 plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po create mode 100644 plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po create mode 100644 plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po create mode 100644 plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po create mode 100644 plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po create mode 100644 plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po create mode 100644 plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po create mode 100644 plugins/YammerImport/locale/YammerImport.pot diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 0c745cd0c9..b52613afae 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:11+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:34+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -382,6 +382,16 @@ msgstr "U kan nie ophou om uself te volg nie." msgid "Two valid IDs or screen_names must be supplied." msgstr "" +#: actions/apifriendshipsshow.php:134 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kon nie die gebruiker opdateer nie." + +#: actions/apifriendshipsshow.php:142 +#, fuzzy +msgid "Could not find target user." +msgstr "Kon nie die gebruiker opdateer nie." + #: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 @@ -433,6 +443,11 @@ msgstr "Ligging is te lank is (maksimum 255 karakters)." msgid "Too many aliases! Maximum %d." msgstr "Te veel aliasse! Die maksimum aantal is %d." +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Ongeldige alias: \"%s\"" + #: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format @@ -460,10 +475,25 @@ msgstr "U is reeds 'n lid van die groep." msgid "You have been blocked from that group by the admin." msgstr "" +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Dit was nie moontlik om die groep by te werk nie." + #: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "U is nie 'n lid van die groep nie." +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupleave.php:126 actions/leavegroup.php:129 +#: lib/command.php:401 +#, fuzzy, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "Kon nie die groep skep nie." + #. TRANS: %s is a user name #: actions/apigrouplist.php:98 #, php-format @@ -488,6 +518,11 @@ msgstr "%s groepe" msgid "groups on %s" msgstr "groepe op %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Die deblokkering van die gebruiker het gefaal." + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" @@ -518,6 +553,11 @@ msgstr "" msgid "Invalid nickname / password!" msgstr "Ongeldige gebruikersnaam of wagwoord!" +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Moenie die applikasie verwyder nie" + #: actions/apioauthauthorize.php:185 msgid "Database error inserting OAuth application user." msgstr "" @@ -652,11 +692,26 @@ msgstr "Nie-ondersteunde formaat." msgid "%1$s / Favorites from %2$s" msgstr "%1$s / Gunstelinge van %2$s" +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%1$s / Gunstelinge van %2$s" + +#: actions/apitimelinementions.php:118 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Gunstelinge van %2$s" + #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" +#: actions/apitimelinepublic.php:197 actions/publicrss.php:103 +#, fuzzy, php-format +msgid "%s public timeline" +msgstr "%s tydlyn" + #: actions/apitimelinepublic.php:202 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" @@ -672,6 +727,21 @@ msgstr "Na %s herhaal" msgid "Repeats of %s" msgstr "Herhalings van %s" +#: actions/apitimelinetag.php:105 actions/tag.php:67 +#, fuzzy, php-format +msgid "Notices tagged with %s" +msgstr "met die etiket %s" + +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Opdaterings van %1$s op %2$s." + +#: actions/apitrends.php:87 +#, fuzzy +msgid "API method under construction." +msgstr "Die API-funksie is nie gevind nie." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "Die aanhangsel bestaan nie." @@ -702,6 +772,13 @@ msgstr "Avatar" msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:108 +#, fuzzy +msgid "User without matching profile." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 msgid "Avatar settings" @@ -825,6 +902,21 @@ msgstr "" msgid "No such group." msgstr "Die groep bestaan nie." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "%s geblokkeerde gebruikers" + +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%1$s en vriende, bladsy %2$d" + +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Blok hierdie gebruiker van hierdie groep" + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Gee gebruiker weer toegang tot die groep" @@ -849,12 +941,28 @@ msgstr "groepe op %s" msgid "No confirmation code." msgstr "Geen bevestigingskode." +#: actions/confirmaddress.php:80 +#, fuzzy +msgid "Confirmation code not found." +msgstr "Geen bevestigingskode." + +#: actions/confirmaddress.php:85 +#, fuzzy +msgid "That confirmation code is not for you!" +msgstr "Geen bevestigingskode." + #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 #, php-format msgid "Unrecognized address type %s." msgstr "" +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 +#, fuzzy +msgid "That address has already been confirmed." +msgstr "Die E-posadres bestaan reeds." + #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1036,6 +1144,11 @@ msgstr "Werf se tema" msgid "Theme for the site." msgstr "Tema vir die werf." +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Werf se tema" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -1066,6 +1179,16 @@ msgstr "Aan" msgid "Off" msgstr "Af" +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +#, fuzzy +msgid "Turn background image on or off." +msgstr "Verander die agtergrond-prent" + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Verander die agtergrond-prent" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Verander kleure" @@ -1098,6 +1221,11 @@ msgstr "" msgid "Use defaults" msgstr "Gebruik verstekwaardes" +#: actions/designadminpanel.php:690 lib/designsettings.php:248 +#, fuzzy +msgid "Restore default designs" +msgstr "Gebruik verstekwaardes" + #: actions/designadminpanel.php:696 lib/designsettings.php:254 msgid "Reset back to default" msgstr "Stel terug na standaard" @@ -1366,6 +1494,12 @@ msgstr "" msgid "I want to post notices by email." msgstr "" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:223 +#, fuzzy +msgid "Publish a MicroID for my email address." +msgstr "Dit is nie u e-posadres nie." + #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:338 msgid "Email preferences saved." @@ -1376,6 +1510,12 @@ msgstr "E-posadresse" msgid "No email address." msgstr "Geen e-posadres." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "Dit was nie moontlik om die Jabber-ID te normaliseer nie" + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 @@ -1387,6 +1527,12 @@ msgstr "Nie 'n geldige e-posadres nie." msgid "That is already your email address." msgstr "Dit is al reeds u e-posadres." +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:378 +#, fuzzy +msgid "That email address already belongs to another user." +msgstr "Die Jabber-ID word reeds deur 'n ander gebruiker gebruik." + #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. @@ -1402,6 +1548,21 @@ msgid "" "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +#, fuzzy +msgid "No pending confirmation to cancel." +msgstr "Geen bevestigingskode." + +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Dit is die verkeerde IM-adres." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1434,6 +1595,22 @@ msgstr "Kon nie gebruikersdata opdateer nie." msgid "Incoming email address removed." msgstr "Inkomende e-posadres is verwyder." +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +#, fuzzy +msgid "New incoming email address added." +msgstr "Geen inkomende e-posadres." + +#: actions/favor.php:79 +#, fuzzy +msgid "This notice is already a favorite!" +msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" + +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "Voeg by gunstelinge" + #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" @@ -1471,6 +1648,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "%s se gunsteling kennisgewings" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Opdaterings van %1$s op %2$s." + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1498,6 +1680,11 @@ msgstr "Geen kennisgewing." msgid "No attachments." msgstr "Geen aanhangsels." +#: actions/file.php:51 +#, fuzzy +msgid "No uploaded attachments." +msgstr "Geen aanhangsels." + #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" @@ -1506,6 +1693,11 @@ msgstr "" msgid "User being listened to does not exist." msgstr "" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#, fuzzy +msgid "You can use the local subscription!" +msgstr "U kan slegs lokale gebruikers verwyder." + #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." msgstr "" @@ -1522,6 +1714,11 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Kon nie die profiel stoor nie." + #: actions/getfile.php:79 msgid "No such file." msgstr "Die lêer bestaan nie." @@ -1538,6 +1735,16 @@ msgstr "Ongeldige rol." msgid "This role is reserved and cannot be set." msgstr "" +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Hierdie gebruiker is reeds stilgemaak." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1559,6 +1766,16 @@ msgstr "Geen groep verskaf nie." msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Hierdie gebruiker is reeds stilgemaak." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "U is nie 'n lid van die groep nie." + #: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" msgstr "Blok gebruiker toegang tot die groep" @@ -1571,21 +1788,53 @@ msgid "" "the group in the future." msgstr "" +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Blok hierdie gebruiker van hierdie groep" + #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" msgstr "Blok hierdie gebruiker van hierdie groep" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "Gee gebruiker weer toegang tot die groep" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "Geen ID." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "U moet aangeteken wees alvorens u 'n groep kan skep." + +#: actions/groupdesignsettings.php:144 +#, fuzzy +msgid "Group design" +msgstr "Groepe" + #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Dit was nie moontlik om u ontwerp by te werk nie." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Voorkeure is gestoor." + #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Groepslogo" @@ -1615,6 +1864,18 @@ msgstr "Die opdatering van die logo het gefaal." msgid "%s group members" msgstr "lede van die groep %s" +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#: actions/groupmembers.php:107 +#, fuzzy, php-format +msgid "%1$s group members, page %2$d" +msgstr "%1$s groepe, bladsy %2$d" + +#: actions/groupmembers.php:122 +#, fuzzy +msgid "A list of the users in this group." +msgstr "Blok hierdie gebruiker van hierdie groep" + #: actions/groupmembers.php:186 msgid "Admin" msgstr "Administrateur" @@ -1631,6 +1892,11 @@ msgctxt "TOOLTIP" msgid "Block this user" msgstr "" +#: actions/groupmembers.php:498 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "U moet 'n administrateur wees alvorens u 'n groep kan wysig." + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1652,6 +1918,12 @@ msgstr "" msgid "%s timeline" msgstr "%s tydlyn" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Opdaterings van %1$s op %2$s." + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1683,6 +1955,11 @@ msgid "" "Separate the terms by spaces; they must be 3 characters or more." msgstr "" +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Soek gebruikers" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." @@ -1706,6 +1983,11 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Gee gebruiker weer toegang tot die groep" + #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." msgstr "" @@ -1736,6 +2018,11 @@ msgstr "IM is nie beskikbaar nie." msgid "IM address" msgstr "IP-adres" +#: actions/imsettings.php:113 +#, fuzzy +msgid "Current confirmed Jabber/GTalk address." +msgstr "Huidige bevestigde e-posadres." + #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:124 @@ -1847,6 +2134,16 @@ msgstr "Dit is nie u Jabber-ID nie." msgid "The IM address was removed." msgstr "Inkomende e-posadres is verwyder." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%1$s, bladsy %2$d" + +#: actions/inbox.php:62 +#, fuzzy, php-format +msgid "Inbox for %s" +msgstr "Vriend van 'n vriend (FOAF) vir %s" + #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." msgstr "" @@ -1855,15 +2152,30 @@ msgstr "" msgid "Invites have been disabled." msgstr "" +#: actions/invite.php:41 +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "U moet aanteken alvorens u by groep kan aansluit." + #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ongeldige e-posadres: %s" +#: actions/invite.php:110 +#, fuzzy +msgid "Invitation(s) sent" +msgstr "Uitnodigings" + #: actions/invite.php:112 msgid "Invite new users" msgstr "Nooi nuwe gebruikers" +#: actions/invite.php:128 +#, fuzzy +msgid "You are already subscribed to these users:" +msgstr "U volg hierdie gebruiker:" + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 @@ -2024,7 +2336,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privaat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2120,6 +2432,11 @@ msgid "" "changing your settings." msgstr "" +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "Verkeerde gebruikersnaam of wagwoord." + #: actions/login.php:295 #, php-format msgid "" @@ -2130,6 +2447,11 @@ msgstr "" msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s het die groep %2$s verlaat" + #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." @@ -2148,6 +2470,16 @@ msgstr "Geen resultate nie." msgid "New Application" msgstr "Nuwe appplikasie" +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "U moet aangeteken wees alvorens u 'n applikasie kan wysig." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Gebruik die vorm om u applikasie te wysig." + #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "'n Bron-URL is verpligtend." @@ -2160,6 +2492,11 @@ msgstr "Dit was nie moontlik om die applikasie te skep nie." msgid "New group" msgstr "Nuwe groep" +#: actions/newgroup.php:110 +#, fuzzy +msgid "Use this form to create a new group." +msgstr "Gebruik hierdie vorm om die groep te wysig." + #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nuwe boodskap" @@ -2190,10 +2527,27 @@ msgstr "" msgid "Message sent" msgstr "Boodskap is gestuur." +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Direkte boodskappe aan %s" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Ajax-fout" +#: actions/newnotice.php:69 +#, fuzzy +msgid "New notice" +msgstr "Geen kennisgewing." + +#: actions/newnotice.php:227 +#, fuzzy +msgid "Notice posted" +msgstr "Hierdie kennisgewing is verwyder." + #: actions/noticesearch.php:68 #, php-format msgid "" @@ -2205,6 +2559,11 @@ msgstr "" msgid "Text search" msgstr "Teks soektog" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "Opdaterings van %1$s op %2$s." + #: actions/noticesearch.php:121 #, php-format msgid "" @@ -2224,6 +2583,11 @@ msgstr "" msgid "Updates with \"%s\"" msgstr "Opdaterings met \"%s\"" +#: actions/noticesearchrss.php:98 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Opdaterings van %1$s op %2$s." + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -2237,14 +2601,39 @@ msgstr "Die por is gestuur" msgid "Nudge sent!" msgstr "Die por is gestuur!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "U moet aangeteken wees alvorens u 'n applikasie kan wysig." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Die applikasie bestaan nie." + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, fuzzy, php-format +msgid "You have not registered any applications yet." +msgstr "Dit was nie moontlik om die applikasie te skep nie." + +#: actions/oauthconnectionssettings.php:72 +#, fuzzy +msgid "Connected applications" +msgstr "Skrap applikasie" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "U is nie die eienaar van hierdie applikasie nie." + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -2258,6 +2647,11 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" +#: actions/oembed.php:80 actions/shownotice.php:100 +#, fuzzy +msgid "Notice has no profile." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + #: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" @@ -2275,10 +2669,27 @@ msgstr "" msgid "Only %s URLs over plain HTTP please." msgstr "" +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#, fuzzy +msgid "Not a supported data format." +msgstr "Nie-ondersteunde formaat." + #: actions/opensearch.php:64 msgid "People Search" msgstr "Mense soek" +#: actions/opensearch.php:67 +#, fuzzy +msgid "Notice Search" +msgstr "Mense soek" + +#: actions/othersettings.php:60 +#, fuzzy +msgid "Other settings" +msgstr "Avatar-instellings" + #: actions/othersettings.php:71 msgid "Manage various other options." msgstr "" @@ -2295,14 +2706,54 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Wysig profiel-instellings" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Ligging is te lank is (maksimum 255 karakters)." + +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Geen groep verskaf nie." + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Geen profiel verskaf nie." + #: actions/otp.php:90 msgid "No login token requested." msgstr "" +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Ongeldige token." + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Teken aan" + +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%1$s, bladsy %2$d" + +#: actions/outbox.php:61 +#, fuzzy, php-format +msgid "Outbox for %s" +msgstr "Vriend van 'n vriend (FOAF) vir %s" + #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -2392,6 +2843,11 @@ msgstr "Tema-gids" msgid "Background directory not writable: %s." msgstr "Tema-gids" +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Tema-gids" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2412,6 +2868,11 @@ msgstr "" msgid "Path" msgstr "Pad" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Werf se tema" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2508,6 +2969,11 @@ msgstr "SSL-bediener" msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Tema-pad" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2519,16 +2985,31 @@ msgstr "" msgid "People search" msgstr "Soek gebruikers" +#: actions/peopletag.php:68 +#, fuzzy, php-format +msgid "Not a valid people tag: %s." +msgstr "Nie 'n geldige e-posadres nie." + #: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "" +#: actions/postnotice.php:95 +#, fuzzy +msgid "Invalid notice content." +msgstr "Ongeldige token." + #: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#: actions/profilesettings.php:60 +#, fuzzy +msgid "Profile settings" +msgstr "Wysig profiel-instellings" + #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." @@ -2538,6 +3019,13 @@ msgstr "" msgid "Profile information" msgstr "" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"Die gebruikersnaam mag slegs uit kleinletters en syfers bestaan en mag geen " +"spasies bevat nie." + #: actions/profilesettings.php:111 actions/register.php:455 #: actions/showgroup.php:256 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 @@ -2614,15 +3102,45 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" +#: actions/profilesettings.php:228 actions/register.php:230 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Die beskrywing is te lank (die maksimum is %d karakters)." + #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" +#: actions/profilesettings.php:241 +#, fuzzy +msgid "Language is too long (max 50 chars)." +msgstr "Die naam is te lank (maksimum 255 karakters)." + #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ongeldige etiket: \"$s\"" +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "Kon nie gebruikersdata opdateer nie." + +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Dit was nie moontlik om die applikasie by te werk nie." + +#: actions/profilesettings.php:375 +#, fuzzy +msgid "Couldn't save profile." +msgstr "Kon nie die profiel stoor nie." + +#: actions/profilesettings.php:383 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Kon nie gebruiker opdateer nie." + #. TRANS: Message after successful saving of administrative settings. #: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." @@ -2633,6 +3151,21 @@ msgstr "Voorkeure is gestoor." msgid "Beyond the page limit (%s)." msgstr "" +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "Dit was nie moontlik om die aliasse te skep nie." + +#: actions/public.php:130 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Populêre kennisgewings, bladsy %d" + +#: actions/public.php:132 lib/publicgroupnav.php:79 +#, fuzzy +msgid "Public timeline" +msgstr "%s tydlyn" + #: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" msgstr "" @@ -2645,6 +3178,15 @@ msgstr "" msgid "Public Stream Feed (Atom)" msgstr "" +#: actions/public.php:188 +#, fuzzy, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" +"Hierdie is die tydslyn vir %s en vriende, maar niemand het nog iets gepos " +"nie." + #: actions/public.php:191 msgid "Be the first to post!" msgstr "U kan die eerste een wees om 'n boodskap te plaas!" @@ -2686,6 +3228,11 @@ msgstr "" msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" +#: actions/publictagcloud.php:72 +#, fuzzy +msgid "Be the first to post one!" +msgstr "U kan die eerste een wees om 'n boodskap te plaas!" + #: actions/publictagcloud.php:75 #, php-format msgid "" @@ -2693,14 +3240,44 @@ msgid "" "one!" msgstr "" +#: actions/publictagcloud.php:134 +#, fuzzy +msgid "Tag cloud" +msgstr "Verander kleure" + +#: actions/recoverpassword.php:36 +#, fuzzy +msgid "You are already logged in!" +msgstr "U is reeds aangeteken." + +#: actions/recoverpassword.php:62 +#, fuzzy +msgid "No such recovery code." +msgstr "Die kennisgewing bestaan nie." + +#: actions/recoverpassword.php:66 +#, fuzzy +msgid "Not a recovery code." +msgstr "Nie 'n geregistreerde gebruiker nie." + #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "" +#: actions/recoverpassword.php:86 +#, fuzzy +msgid "Error with confirmation code." +msgstr "Geen bevestigingskode." + #: actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" +#: actions/recoverpassword.php:111 +#, fuzzy +msgid "Could not update user with confirmed email address." +msgstr "Huidige bevestigde e-posadres." + #: actions/recoverpassword.php:152 msgid "" "If you have forgotten or lost your password, you can get a new one sent to " @@ -2711,10 +3288,25 @@ msgstr "" msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Verander wagwoord" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "Geen e-posadres." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +#, fuzzy +msgid "Recover" +msgstr "Verwyder" + #: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Herstel wagwoord" @@ -2731,10 +3323,20 @@ msgstr "" msgid "Unknown action" msgstr "Onbekende aksie" +#: actions/recoverpassword.php:236 +#, fuzzy +msgid "6 or more characters, and don't forget it!" +msgstr "6 of meer karakters" + #: actions/recoverpassword.php:243 msgid "Reset" msgstr "Herstel" +#: actions/recoverpassword.php:252 +#, fuzzy +msgid "Enter a nickname or email address." +msgstr "Dit is nie u e-posadres nie." + #: actions/recoverpassword.php:282 msgid "No user with that email address or username." msgstr "" @@ -2743,12 +3345,37 @@ msgstr "" msgid "No registered email address for that user." msgstr "" +#: actions/recoverpassword.php:313 +#, fuzzy +msgid "Error saving address confirmation." +msgstr "Fout tydens stoor van gebruiker; ongeldig." + #: actions/recoverpassword.php:338 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" +#: actions/recoverpassword.php:357 +#, fuzzy +msgid "Unexpected password reset." +msgstr "Die vorm is onverwags ingestuur." + +#: actions/recoverpassword.php:365 +#, fuzzy +msgid "Password must be 6 chars or more." +msgstr "Wagwoord moet 6 of meer karakters bevat." + +#: actions/recoverpassword.php:369 +#, fuzzy +msgid "Password and confirmation do not match." +msgstr "Wagwoorde is nie dieselfde nie." + +#: actions/recoverpassword.php:388 actions/register.php:255 +#, fuzzy +msgid "Error setting user." +msgstr "Fout tydens stoor van gebruiker; ongeldig." + #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -2795,6 +3422,16 @@ msgstr "" msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters. Required." +msgstr "6 of meer karakters" + +#: actions/register.php:441 +#, fuzzy +msgid "Same as password above. Required." +msgstr "Dieselfde as wagwoord hierbo" + #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 @@ -2879,10 +3516,20 @@ msgstr "" msgid "Subscribe to a remote user" msgstr "" +#: actions/remotesubscribe.php:129 +#, fuzzy +msgid "User nickname" +msgstr "Geen gebruikersnaam nie." + #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" +#: actions/remotesubscribe.php:133 +#, fuzzy +msgid "Profile URL" +msgstr "Profiel" + #: actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2912,6 +3559,21 @@ msgstr "" msgid "Only logged-in users can repeat notices." msgstr "" +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Geen profiel verskaf nie." + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "U kan nie u eie kennisgewings herhaal nie." + +#: actions/repeat.php:90 +#, fuzzy +msgid "You already repeated that notice." +msgstr "U het reeds die kennisgewing herhaal." + #: actions/repeat.php:114 lib/noticelist.php:676 msgid "Repeated" msgstr "Herhalend" @@ -2920,6 +3582,41 @@ msgstr "Herhalend" msgid "Repeated!" msgstr "Herhaal!" +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, fuzzy, php-format +msgid "Replies to %s" +msgstr "Herhalings van %s" + +#: actions/replies.php:128 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%1$s, bladsy %2$d" + +#: actions/replies.php:145 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/replies.php:152 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Voer vir vriende van %s (RSS 2.0)" + +#: actions/replies.php:159 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Voer vir vriende van %s (Atom)" + +#: actions/replies.php:199 +#, fuzzy, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to them yet." +msgstr "" +"Hierdie is die tydslyn vir %s en vriende, maar niemand het nog iets gepos " +"nie." + #: actions/replies.php:204 #, php-format msgid "" @@ -2934,6 +3631,16 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Opdaterings van %1$s op %2$s." + +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + #: actions/revokerole.php:82 msgid "User doesn't have this role." msgstr "" @@ -2942,6 +3649,16 @@ msgstr "" msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Hierdie gebruiker is reeds stilgemaak." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2952,6 +3669,11 @@ msgstr "Sessies" msgid "Session settings for this StatusNet site" msgstr "" +#: actions/sessionsadminpanel.php:175 +#, fuzzy +msgid "Handle sessions" +msgstr "Sessies" + #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." msgstr "" @@ -2964,6 +3686,21 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#, fuzzy +msgid "Save site settings" +msgstr "Stoor toegangsinstellings" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "U moet aangeteken wees alvorens u 'n applikasie kan wysig." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Die applikasie is nie gevind nie." + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" @@ -2996,10 +3733,20 @@ msgstr "Statistieke" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +#, fuzzy +msgid "Application actions" +msgstr "Die applikasie is nie gevind nie." + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +#, fuzzy +msgid "Application info" +msgstr "Die applikasie is nie gevind nie." + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -3016,12 +3763,47 @@ msgstr "" msgid "Access token URL" msgstr "" +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Outeur" + #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Is u seker u wil hierdie kennisgewing verwyder?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s se gunsteling kennisgewings" + +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." + +#: actions/showfavorites.php:171 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/showfavorites.php:178 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Voer vir vriende van %s (RSS 2.0)" + +#: actions/showfavorites.php:185 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Voer vir vriende van %s (Atom)" + #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -3079,6 +3861,21 @@ msgstr "Aliasse" msgid "Group actions" msgstr "Groepsaksies" +#: actions/showgroup.php:338 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/showgroup.php:344 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Voer vir vriende van %s (RSS 2.0)" + +#: actions/showgroup.php:350 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Voer vir vriende van %s (Atom)" + #: actions/showgroup.php:355 #, php-format msgid "FOAF for %s group" @@ -3133,6 +3930,16 @@ msgstr "Die boodskap bestaan nie." msgid "Only the sender and recipient may read this message." msgstr "" +#: actions/showmessage.php:108 +#, fuzzy, php-format +msgid "Message to %1$s on %2$s" +msgstr "Opdaterings van %1$s op %2$s." + +#: actions/showmessage.php:113 +#, fuzzy, php-format +msgid "Message from %1$s on %2$s" +msgstr "Opdaterings van %1$s op %2$s." + #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "Hierdie kennisgewing is verwyder." @@ -3147,11 +3954,38 @@ msgstr "met die etiket %s" msgid "%1$s, page %2$d" msgstr "%1$s, bladsy %2$d" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Voer vir vriende van %s (RSS 2.0)" + +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Voer vir vriende van %s (Atom)" + #: actions/showstream.php:148 #, php-format msgid "FOAF for %s" msgstr "Vriend van 'n vriend (FOAF) vir %s" +#: actions/showstream.php:200 +#, fuzzy, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "" +"Hierdie is die tydslyn vir %s en vriende, maar niemand het nog iets gepos " +"nie." + #: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " @@ -3203,6 +4037,11 @@ msgstr "" msgid "Site name must have non-zero length." msgstr "" +#: actions/siteadminpanel.php:141 +#, fuzzy +msgid "You must have a valid contact email address." +msgstr "Nie 'n geldige e-posadres nie." + #: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." @@ -3220,6 +4059,11 @@ msgstr "" msgid "General" msgstr "Algemeen" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Werf se tema" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -3240,6 +4084,11 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Inkomende e-posadres is verwyder." + #: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokaal" @@ -3252,6 +4101,11 @@ msgstr "Standaardtydsone" msgid "Default timezone for the site; usually UTC." msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Standaardtydsone" + #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" @@ -3276,14 +4130,39 @@ msgstr "Duplikaatlimiet" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Kennisgewings" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nuwe boodskap" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie." + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Verwyder kennisgewing" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Verwyder kennisgewing" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3296,16 +4175,47 @@ msgstr "SMS-instellings" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +#, fuzzy +msgid "SMS is not available." +msgstr "IM is nie beskikbaar nie." + +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IP-adres" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +#, fuzzy +msgid "Current confirmed SMS-enabled phone number." +msgstr "Huidige bevestigde e-posadres." + #. TRANS: Form guide in IM settings form. #: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 +#, fuzzy +msgid "Confirmation code" +msgstr "Geen bevestigingskode." + #. TRANS: Form field instructions in SMS settings form. #: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Bevestig" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3328,11 +4238,35 @@ msgid "" "from my carrier." msgstr "" +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Voorkeure is gestoor." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." msgstr "Geen telefoonnommer." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "Hierdie kennisgewing is verwyder." + +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +#, fuzzy +msgid "That is already your phone number." +msgstr "Dit is al reeds u Jabber-ID." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 +#, fuzzy +msgid "That phone number already belongs to another user." +msgstr "Die Jabber-ID word reeds deur 'n ander gebruiker gebruik." + #. TRANS: Message given saving valid SMS phone number that is to be confirmed. #: actions/smssettings.php:384 msgid "" @@ -3340,11 +4274,24 @@ msgid "" "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:413 +#, fuzzy +msgid "That is the wrong confirmation number." +msgstr "Dit is die verkeerde IM-adres." + #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 msgid "SMS confirmation cancelled." msgstr "SMS-bevestiging" +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 +#, fuzzy +msgid "That is not your phone number." +msgstr "Dit is nie u Jabber-ID nie." + #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 msgid "The SMS phone number was removed." @@ -3369,6 +4316,12 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +#, fuzzy +msgid "No code entered" +msgstr "Geen inhoud nie!" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 #: lib/adminpanelaction.php:395 @@ -3379,10 +4332,20 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "" +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "Ongeldige rol." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "Die logo-URL is ongeldig." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3415,10 +4378,31 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Stoor toegangsinstellings" + +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "U volg hierdie gebruiker:" + +#. TRANS: Exception thrown when a subscription could not be stored on the server. +#: actions/subedit.php:83 classes/Subscription.php:136 +#, fuzzy +msgid "Could not save subscription." +msgstr "Kon nie die profiel stoor nie." + #: actions/subscribe.php:77 msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Die lêer bestaan nie." + #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -3432,6 +4416,11 @@ msgstr "" msgid "%s subscribers" msgstr "" +#: actions/subscribers.php:52 +#, fuzzy, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "%1$s en vriende, bladsy %2$d" + #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" @@ -3459,6 +4448,16 @@ msgid "" "%) and be the first?" msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Beskrywing" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "%1$s groepe, bladsy %2$d" + #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" @@ -3491,6 +4490,26 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" +#: actions/tag.php:69 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%1$s, bladsy %2$d" + +#: actions/tag.php:87 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Voer vir vriende van %s (RSS 1.0)" + +#: actions/tag.php:93 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Voer vir vriende van %s (RSS 2.0)" + +#: actions/tag.php:99 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Voer vir vriende van %s (Atom)" + #: actions/tagother.php:39 msgid "No ID argument." msgstr "Geen ID-argument." @@ -3528,10 +4547,35 @@ msgstr "" msgid "Could not save tags." msgstr "Kon nie die etikette stoor nie." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Gebruik die vorm om u applikasie te wysig." + #: actions/tagrss.php:35 msgid "No such tag." msgstr "Onbekende etiket." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "U het reeds die gebruiker geblokkeer." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Hierdie gebruiker is reeds stilgemaak." + +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "Daar is geen profiel met daardie ID nie." + #: actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" @@ -3583,10 +4627,35 @@ msgstr "" msgid "New users" msgstr "Nuwe gebruikers" +#: actions/useradminpanel.php:236 +#, fuzzy +msgid "New user welcome" +msgstr "Nuwe gebruikers" + +#: actions/useradminpanel.php:237 +#, fuzzy +msgid "Welcome text for new users (Max 255 chars)." +msgstr "Die naam is te lank (maksimum 255 karakters)." + +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Beskrywing" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + #: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Uitnodigings" +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "Uitnodigings" + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -3595,6 +4664,11 @@ msgstr "" msgid "Save user settings" msgstr "" +#: actions/userauthorization.php:105 +#, fuzzy +msgid "Authorize subscription" +msgstr "Beskrywing" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -3612,10 +4686,21 @@ msgstr "Lisensie" msgid "Accept" msgstr "Aanvaar" +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +#, fuzzy +msgid "Subscribe to this user" +msgstr "U volg hierdie gebruiker:" + #: actions/userauthorization.php:219 msgid "Reject" msgstr "Verwerp" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "Verwyder die gebruiker" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "" @@ -3631,6 +4716,11 @@ msgid "" "subscription. Your subscription token is:" msgstr "" +#: actions/userauthorization.php:266 +#, fuzzy +msgid "Subscription rejected" +msgstr "Beskrywing word vereis." + #: actions/userauthorization.php:268 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -3658,11 +4748,26 @@ msgstr "" msgid "Profile URL ‘%s’ is for a local user." msgstr "" +#: actions/userauthorization.php:345 +#, fuzzy, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "Die \"callback\"-URL is nie geldig nie." + #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan nie die avatar-URL \"%s\" lees nie." +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kan nie die avatar-URL \"%s\" lees nie." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profiel" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3683,6 +4788,11 @@ msgstr "%1$s groepe, bladsy %2$d" msgid "Search for more groups" msgstr "Soek vir meer groepe" +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "U is nie 'n lid van enige groep nie." + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -3751,6 +4861,11 @@ msgstr "Weergawe" msgid "Author(s)" msgstr "Outeur(s)" +#: classes/Fave.php:147 lib/favorform.php:140 +#, fuzzy +msgid "Favor" +msgstr "Gunstelinge" + #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." @@ -3790,11 +4905,29 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Ongeldige grootte." + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Groepsprofiel" + #. TRANS: Exception thrown when trying to leave a group the user is not a member of. #: classes/Group_member.php:55 msgid "Not part of group." msgstr "Nie lid van die groep nie." +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Groepsprofiel" + #: classes/Group_member.php:108 lib/joinform.php:114 msgid "Join" msgstr "Aansluit" @@ -3806,11 +4939,42 @@ msgstr "Aansluit" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Dit was nie moontlik om die groep by te werk nie." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Dit was nie moontlik om die aliasse te skep nie." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "U inkomende boodskappe" + +#. TRANS: Message given when a message could not be stored on the server. +#: classes/Message.php:63 +#, fuzzy +msgid "Could not insert message." +msgstr "Kan nie boodskap verwerk nie." + +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "Kan nie boodskap verwerk nie." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -3847,6 +5011,12 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +msgid "You are banned from posting notices on this site." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -3884,6 +5054,18 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." @@ -3894,11 +5076,38 @@ msgstr "" msgid "Already subscribed!" msgstr "" +#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. +#: classes/Subscription.php:85 +#, fuzzy +msgid "User has blocked you." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + #. TRANS: Exception thrown when trying to unsibscribe without a subscription. #: classes/Subscription.php:171 msgid "Not subscribed!" msgstr "" +#. TRANS: Exception thrown when trying to unsubscribe a user from themselves. +#: classes/Subscription.php:178 +#, fuzzy +msgid "Could not delete self-subscription." +msgstr "" +"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +#: classes/Subscription.php:206 +#, fuzzy +msgid "Could not delete subscription OMB token." +msgstr "" +"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." + +#. TRANS: Exception thrown when a subscription could not be deleted on the server. +#: classes/Subscription.php:218 +#, fuzzy +msgid "Could not delete subscription." +msgstr "" +"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." + #: classes/Subscription.php:254 msgid "Follow" msgstr "" @@ -3920,11 +5129,35 @@ msgstr "Welkom by %1$s, @%2$s!" msgid "Could not create group." msgstr "Kon nie die groep skep nie." +#. TRANS: Server exception thrown when updating a group URI failed. +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not set group URI." +msgstr "Kon nie die groep skep nie." + +#. TRANS: Server exception thrown when setting group membership failed. +#: classes/User_group.php:529 +#, fuzzy +msgid "Could not set group membership." +msgstr "Kon nie die groep skep nie." + +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "Kon nie die profiel stoor nie." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Verander u profiel gegewens" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 +#, fuzzy +msgid "Upload an avatar" +msgstr "Die opdatering van die avatar het gefaal." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:123 msgid "Change your password" @@ -3978,6 +5211,13 @@ msgctxt "MENU" msgid "Personal" msgstr "Persoonlik" +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Verander u wagwoord" + #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:465 msgctxt "TOOLTIP" @@ -4015,6 +5255,13 @@ msgctxt "MENU" msgid "Invite" msgstr "Uitnodig" +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:487 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "Meld by die webwerf aan" + #. TRANS: Main menu option when logged in to log out the current user #: lib/action.php:490 msgctxt "MENU" @@ -4066,6 +5313,25 @@ msgctxt "MENU" msgid "Search" msgstr "Soek" +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +#, fuzzy +msgid "Site notice" +msgstr "Verwyder kennisgewing" + +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:605 +#, fuzzy +msgid "Local views" +msgstr "Lokaal" + +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +#, fuzzy +msgid "Page notice" +msgstr "Populêre kennisgewings" + #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 msgid "Secondary site navigation" @@ -4106,6 +5372,11 @@ msgstr "Bron" msgid "Contact" msgstr "Kontak" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "Aanpor" + #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" @@ -4171,6 +5442,12 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +#, fuzzy +msgid "Pagination" +msgstr "Registratie" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1259 @@ -4203,6 +5480,18 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Registrasie nie toegelaat nie." + #. TRANS: Client error message. #: lib/adminpanelaction.php:222 msgid "showForm() not implemented." @@ -4213,12 +5502,31 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Dit was nie moontlik om u ontwerp-instellings te stoor nie." + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "SMS-bevestiging" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Webtuiste" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "SMS-bevestiging" + #. TRANS: Menu item for site administration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/adminpanelaction.php:347 lib/groupnav.php:135 @@ -4226,11 +5534,47 @@ msgctxt "MENU" msgid "Design" msgstr "Ontwerp" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "SMS-bevestiging" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "SMS-bevestiging" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "SMS-bevestiging" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS-bevestiging" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "Verwyder kennisgewing" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS-bevestiging" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4272,12 +5616,48 @@ msgstr "" msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +#, fuzzy +msgid "Edit application" +msgstr "Wysig applikasie" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +#, fuzzy +msgid "Icon for this application" +msgstr "Moenie die applikasie verwyder nie" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:200 #, php-format msgid "Describe your application in %d characters" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:204 +#, fuzzy +msgid "Describe your application" +msgstr "Skrap applikasie" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "U is nie die eienaar van hierdie applikasie nie." + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Bron" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "U is nie die eienaar van hierdie applikasie nie." + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" @@ -4323,6 +5703,18 @@ msgstr "" msgid "Cancel" msgstr "Kanselleer" +#. TRANS: Application access type +#: lib/applicationlist.php:135 +#, fuzzy +msgid "read-write" +msgstr "Lees-skryf" + +#. TRANS: Application access type +#: lib/applicationlist.php:137 +#, fuzzy +msgid "read-only" +msgstr "Lees-alleen" + #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #: lib/applicationlist.php:143 #, php-format @@ -4350,6 +5742,12 @@ msgstr "Outeur" msgid "Provider" msgstr "Verskaffer" +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 +#, fuzzy +msgid "Notices where this attachment appears" +msgstr "Etikette vir hierdie aanhangsel" + #. TRANS: Title. #: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" @@ -4376,6 +5774,11 @@ msgstr "Opdragresultate" msgid "Command complete" msgstr "Opdrag voltooi" +#: lib/channel.php:240 +#, fuzzy +msgid "Command failed" +msgstr "Opdrag voltooi" + #. TRANS: Command exception text shown when a notice ID is requested that does not exist. #: lib/command.php:84 lib/command.php:108 msgid "Notice with that id does not exist." @@ -4504,6 +5907,12 @@ msgstr "" msgid "Notice from %s repeated." msgstr "" +#. TRANS: Error text shown when repeating a notice fails with an unknown reason. +#: lib/command.php:557 +#, fuzzy +msgid "Error repeating notice." +msgstr "U kan nie u eie kennisgewings herhaal nie." + #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -4518,6 +5927,12 @@ msgstr "" msgid "Reply to %s sent." msgstr "" +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Fout tydens stoor van gebruiker; ongeldig." + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -4548,11 +5963,36 @@ msgstr "" 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:724 lib/command.php:750 +#, fuzzy +msgid "Command not yet implemented." +msgstr "Opdrag voltooi" + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +#, fuzzy +msgid "Notification off." +msgstr "Geen bevestigingskode." + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +#, fuzzy +msgid "Notification on." +msgstr "Geen bevestigingskode." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +#, fuzzy +msgid "Can't turn on notification." +msgstr "U kan nie u eie kennisgewings herhaal nie." + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -4572,6 +6012,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "U volg hierdie gebruiker:" + #. 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. @@ -4581,6 +6027,13 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "U volg hierdie gebruiker:" msgstr[1] "U volg hierdie gebruikers:" +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Hierdie gebruiker volg u:" + #. 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. @@ -4648,6 +6101,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Geen bevestigingskode." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4672,10 +6130,25 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Konnekteer" + +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "Skrap applikasie" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Databasisfout" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Oplaai" + #: lib/designsettings.php:109 msgid "" "You can upload your personal background image. The maximum file size is 2MB." @@ -4685,6 +6158,16 @@ msgstr "" msgid "Design defaults restored." msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "Verwyder hierdie kennisgewing" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Verwyder hierdie kennisgewing" + #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -4829,6 +6312,11 @@ msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" +#: lib/groupsbymemberssection.php:71 +#, fuzzy +msgid "Groups with most members" +msgstr "Groepe waarvan %s lid is" + #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" msgstr "" @@ -4843,6 +6331,21 @@ msgstr "Etikette in groepsaankondigings van %s" msgid "This page is not available in a media type you accept" msgstr "" +#: lib/imagefile.php:72 +#, fuzzy +msgid "Unsupported image file format." +msgstr "Nie-ondersteunde formaat." + +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." + +#: lib/imagefile.php:93 +#, fuzzy +msgid "Partial upload." +msgstr "Geen lêer opgelaai nie." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." @@ -4852,6 +6355,11 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" +#: lib/imagefile.php:122 +#, fuzzy +msgid "Lost our file." +msgstr "Die lêer bestaan nie." + #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" msgstr "Onbekende lêertipe" @@ -4869,14 +6377,30 @@ msgstr "kB" msgid "[%s]" msgstr "[%s]" +#: lib/jabber.php:567 +#, fuzzy, php-format +msgid "Unknown inbox source %d." +msgstr "Onbekende taal \"%s\"." + #: lib/leaveform.php:114 msgid "Leave" msgstr "Verlaat" +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Ongeldige gebruikersnaam of wagwoord." + #: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" +#. TRANS: Subject for address confirmation email +#: lib/mail.php:174 +#, fuzzy +msgid "Email address confirmation" +msgstr "E-posadres" + #. TRANS: Body for address confirmation email. #: lib/mail.php:177 #, php-format @@ -4895,6 +6419,12 @@ msgid "" "%s\n" msgstr "" +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, fuzzy, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "%s volg niemand nie." + #: lib/mail.php:248 #, php-format msgid "" @@ -5010,6 +6540,12 @@ msgid "" "%5$s\n" msgstr "" +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" + #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -5104,6 +6640,11 @@ msgstr "Jammer, dit is nie u inkomende e-posadres nie." msgid "Sorry, no incoming email allowed." msgstr "Jammer, inkomende e-pos word nie toegelaat nie." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Nie-ondersteunde formaat." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5152,6 +6693,14 @@ msgstr "" msgid "File could not be moved to destination directory." msgstr "" +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +#, fuzzy +msgid "Could not determine file's MIME type." +msgstr "" +"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." + #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of #. TRANS: the MIME type that was denied. @@ -5169,6 +6718,11 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#: lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "Stuur 'n direkte boodskap aan hierdie gebruiker" + #: lib/messageform.php:146 msgid "To" msgstr "Aan" @@ -5182,6 +6736,11 @@ msgctxt "Send button for sending notice" msgid "Send" msgstr "Stuur" +#: lib/noticeform.php:160 +#, fuzzy +msgid "Send a notice" +msgstr "Verwyder kennisgewing" + #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -5199,6 +6758,11 @@ msgstr "Heg 'n lêer aan" msgid "Share my location" msgstr "" +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Moenie die applikasie verwyder nie" + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -5246,14 +6810,34 @@ msgstr "in konteks" msgid "Repeated by" msgstr "Herhaal deur" +#: lib/noticelist.php:630 +#, fuzzy +msgid "Reply to this notice" +msgstr "Verwyder hierdie kennisgewing" + #: lib/noticelist.php:631 msgid "Reply" msgstr "Antwoord" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Hierdie kennisgewing is verwyder." + +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "Verwyder die gebruiker" + #: lib/nudgeform.php:128 msgid "Nudge" msgstr "Aanpor" +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "Stuur 'n direkte boodskap aan hierdie gebruiker" + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -5271,6 +6855,11 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#: lib/oauthstore.php:491 +#, fuzzy +msgid "Couldn't insert new subscription." +msgstr "Kon nie e-posbevestiging verwyder nie." + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoonlik" @@ -5295,6 +6884,11 @@ msgstr "U inkomende boodskappe" msgid "Outbox" msgstr "" +#: lib/personalgroupnav.php:131 +#, fuzzy +msgid "Your sent messages" +msgstr "U inkomende boodskappe" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" @@ -5305,10 +6899,25 @@ msgstr "Etikette in die aankondigings van %s" msgid "Unknown" msgstr "Onbekend" +#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 +#, fuzzy +msgid "Subscriptions" +msgstr "Beskrywing" + +#: lib/profileaction.php:126 +#, fuzzy +msgid "All subscriptions" +msgstr "Beskrywing" + #: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" +#: lib/profileaction.php:161 +#, fuzzy +msgid "All subscribers" +msgstr "Alle lede" + #: lib/profileaction.php:191 msgid "User ID" msgstr "Gebruikers-ID" @@ -5350,10 +6959,30 @@ msgstr "Uitgelig" msgid "Popular" msgstr "Gewild" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Geen ID-argument." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Verwyder hierdie kennisgewing" + #: lib/repeatform.php:132 msgid "Yes" msgstr "Ja" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Verwyder hierdie kennisgewing" + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blok hierdie gebruiker van hierdie groep" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5362,6 +6991,17 @@ msgstr "" msgid "Sandbox" msgstr "" +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Deblokkeer hierdie gebruiker" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Soek" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -5373,6 +7013,12 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Soek" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Gebruikers" @@ -5385,6 +7031,11 @@ msgstr "" msgid "Find content of notices" msgstr "" +#: lib/searchgroupnav.php:85 +#, fuzzy +msgid "Find groups on this site" +msgstr "groepe op %s" + #: lib/section.php:89 msgid "Untitled section" msgstr "" @@ -5401,6 +7052,16 @@ msgstr "Maak stil" msgid "Silence this user" msgstr "Maak die gebruikers stil" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Hierdie gebruiker volg u:" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "U volg hierdie gebruiker:" + #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -5437,6 +7098,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Die opdatering van die avatar het gefaal." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5465,6 +7133,11 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "Kon nie die profiel stoor nie." + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "Mees aktiewe gebruikers" @@ -5473,6 +7146,26 @@ msgstr "Mees aktiewe gebruikers" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Deblokkeer hierdie gebruiker" + +#: lib/unsilenceform.php:67 +#, fuzzy +msgid "Unsilence" +msgstr "Maak stil" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Maak die gebruikers stil" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Deblokkeer hierdie gebruiker" + #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "" @@ -5598,14 +7291,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Geen groep verskaf nie." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 19a7da540b..404488ab3f 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:12+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:35+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -175,11 +175,28 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "" +"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." +"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" + #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" msgstr "أنت والأصدقاء" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:216 +#: actions/apitimelinehome.php:122 +#, fuzzy, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + #: actions/apiaccountratelimitstatus.php:72 #: actions/apiaccountupdatedeliverydevice.php:95 #: actions/apiaccountupdateprofile.php:98 @@ -257,6 +274,17 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "تعذّر حذف إعدادات التصميم." + #: actions/apiaccountupdateprofilebackgroundimage.php:188 #: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." @@ -298,6 +326,11 @@ msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" msgid "No message text!" msgstr "لا نص في الرسالة!" +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." + #: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "لم يُعثر على المستخدم المستلم." @@ -306,6 +339,12 @@ msgstr "لم يُعثر على المستخدم المستلم." msgid "Can't send direct messages to users who aren't your friend." msgstr "" +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 +#: actions/apistatusesdestroy.php:121 +#, fuzzy +msgid "No status found with that ID." +msgstr "لا حالة وُجدت بهذه الهوية." + #: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "هذه الحالة مفضلة بالفعل." @@ -323,6 +362,21 @@ msgstr "تلك الحالة ليست مفضلة." msgid "Could not delete favorite." msgstr "تعذّر حذف المفضلة." +#: actions/apifriendshipscreate.php:110 +#, fuzzy +msgid "Could not follow user: profile not found." +msgstr "لم يمكن حفظ الملف." + +#: actions/apifriendshipscreate.php:119 +#, fuzzy, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." + +#: actions/apifriendshipsdestroy.php:110 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "لا يمكنك عدم متابعة نفسك." + #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "لا يمكنك عدم متابعة نفسك." @@ -339,6 +393,13 @@ msgstr "تعذّر تحديد المستخدم المصدر." msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/newgroup.php:126 actions/profilesettings.php:215 +#: actions/register.php:212 +#, fuzzy +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" + #: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 @@ -364,6 +425,19 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "المنظمة طويلة جدا (الأقصى %d حرفا)." + +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 +#: actions/newgroup.php:148 actions/profilesettings.php:232 +#: actions/register.php:234 +#, fuzzy +msgid "Location is too long (max 255 chars)." +msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." + #: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format @@ -375,6 +449,12 @@ msgstr "كنيات كيرة! العدد الأقصى هو %d." msgid "Invalid alias: \"%s\"." msgstr "كنية غير صالحة: \"%s\"." +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." + #: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." @@ -386,6 +466,18 @@ msgstr "" msgid "Group not found." msgstr "المجموعة غير موجودة." +#. TRANS: Error text shown a user tries to join a group they already are a member of. +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#, fuzzy +msgid "You are already a member of that group." +msgstr "أنت بالفعل عضو في هذه المجموعة" + +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#, fuzzy +msgid "You have been blocked from that group by the admin." +msgstr "لم تمنع هذا المستخدم." + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 @@ -429,10 +521,20 @@ msgstr "مجموعات %s" msgid "groups on %s" msgstr "مجموعات %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "ارفع ملفًا" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "حجم غير صالح." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -534,6 +636,16 @@ msgstr "اسمح" msgid "Allow or deny access to your account information." msgstr "" +#: actions/apistatusesdestroy.php:112 +#, fuzzy +msgid "This method requires a POST or DELETE." +msgstr "تتطلب هذه الطريقة POST." + +#: actions/apistatusesdestroy.php:135 +#, fuzzy +msgid "You may not delete another user's status." +msgstr "لا يمكنك حذف المستخدمين." + #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." @@ -580,6 +692,21 @@ msgstr "" msgid "Unsupported format." msgstr "نسق غير مدعوم." +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s انضم للمجموعة %2$s" + +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + +#: actions/apitimelinementions.php:118 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "حالة %1$s في يوم %2$s" + #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -610,6 +737,16 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومة ب%s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + +#: actions/apitrends.php:87 +#, fuzzy +msgid "API method under construction." +msgstr "لم يتم العثور على وسيلة API." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." @@ -670,6 +807,11 @@ msgstr "احذف" msgid "Upload" msgstr "ارفع" +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#, fuzzy +msgid "Crop" +msgstr "مجموعات" + #: actions/avatarsettings.php:305 msgid "No file uploaded." msgstr "لم يُرفع ملف." @@ -765,11 +907,21 @@ msgstr "فشل حفظ معلومات المنع." msgid "No such group." msgstr "لا مجموعة كهذه." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" + #: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s ملفات ممنوعة, الصفحة %2$d" +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "قائمة بمستخدمي هذه المجموعة." + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" @@ -808,6 +960,12 @@ msgstr "رمز التأكيد ليس لك!" msgid "Unrecognized address type %s." msgstr "" +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 +#, fuzzy +msgid "That address has already been confirmed." +msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." + #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -1027,6 +1185,11 @@ msgstr "عطّل" msgid "Turn background image on or off." msgstr "مكّن صورة الخلفية أو عطّلها." +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "تغيير صورة الخلفية" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" @@ -1121,6 +1284,11 @@ msgstr "الاسم مطلوب." msgid "Name is too long (max 255 chars)." msgstr "الاسم طويل جدا (الأقصى 255 حرفا)." +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "الوصف مطلوب." @@ -1145,6 +1313,16 @@ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." msgid "Organization homepage is required." msgstr "صفحة المنظمة الرئيسية مطلوبة." +#: actions/editapplication.php:218 actions/newapplication.php:206 +#, fuzzy +msgid "Callback is too long." +msgstr "المسار المصدر طويل جدًا." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +#, fuzzy +msgid "Callback URL is not valid." +msgstr "مسار المصدر ليس صحيحا." + #: actions/editapplication.php:261 msgid "Could not update application." msgstr "لم يمكن تحديث التطبيق." @@ -1167,6 +1345,11 @@ msgstr "يجب أن تكون إداريا لتعدل المجموعة." msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعة." +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)." + #: actions/editgroup.php:228 actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" @@ -1329,6 +1512,12 @@ msgstr "حُفظت تفضيلات البريد الإلكرتوني." msgid "No email address." msgstr "لا عنوان بريد إلكتروني." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "عنوان البريد الإلكتروني المُؤكد الحالي." + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 @@ -1360,6 +1549,15 @@ msgid "" "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +#, fuzzy +msgid "No pending confirmation to cancel." +msgstr "أُلغي تأكيد المراسلة الفورية." + #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:428 msgid "That is the wrong email address." @@ -1392,6 +1590,18 @@ msgstr "لا عنوان بريد إلكتروني وارد." msgid "Couldn't update user record." msgstr "تعذّر تحديث سجل المستخدم." +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +#, fuzzy +msgid "Incoming email address removed." +msgstr "لا عنوان بريد إلكتروني وارد." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +#, fuzzy +msgid "New incoming email address added." +msgstr "لا عنوان بريد إلكتروني وارد." + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضلة مسبقًا!" @@ -1485,6 +1695,11 @@ msgstr "المستخدم الذي تستمع إليه غير موجود." msgid "You can use the local subscription!" msgstr "تستطيع استخدام الاشتراك المحلي!" +#: actions/finishremotesubscribe.php:99 +#, fuzzy +msgid "That user has blocked you from subscribing." +msgstr "لقد منعك المستخدم." + #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." msgstr "لا تملك تصريحًا." @@ -1509,6 +1724,11 @@ msgstr "لا ملف كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءة الملف." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "حجم غير صالح." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1542,6 +1762,11 @@ msgstr "لا مجموعة مُحدّدة." msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "المستخدم ليس ممنوعًا من المجموعة." + #: actions/groupblock.php:100 msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا في المجموعة." @@ -1584,6 +1809,13 @@ msgstr "يجب أن تلج لتُعدّل المجموعات." msgid "Group design" msgstr "تصميم المجموعة" +#: actions/groupdesignsettings.php:155 +#, fuzzy +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "خصّص أسلوب عرض ملفك بصورة خلفية ومخطط ألوان من اختيارك." + #: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 msgid "Couldn't update your design." @@ -1674,6 +1906,12 @@ msgstr "" msgid "%s timeline" msgstr "مسار %s الزمني" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1802,6 +2040,12 @@ msgstr "" msgid "IM preferences" msgstr "تفضيلات المحادثة الفورية" +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:163 +#, fuzzy +msgid "Send me notices through Jabber/GTalk." +msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني." + #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." @@ -1812,6 +2056,12 @@ msgstr "" msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:182 +#, fuzzy +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." + #. TRANS: Confirmation message for successful IM preferences save. #: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." @@ -1822,11 +2072,29 @@ msgstr "حُفِظت التفضيلات." msgid "No Jabber ID." msgstr "لا هوية جابر." +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:320 +#, fuzzy +msgid "Cannot normalize that Jabber ID" +msgstr "ليست هوية جابر صالحة" + #. TRANS: Message given saving IM address that not valid. #: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "ليست هوية جابر صالحة" +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:329 +#, fuzzy +msgid "That is already your Jabber ID." +msgstr "هذه ليست هويتك في جابر." + +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:333 +#, fuzzy +msgid "Jabber ID already belongs to another user." +msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." + #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:361 @@ -1880,6 +2148,11 @@ msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائ msgid "Invites have been disabled." msgstr "تم تعطيل الدعوات." +#: actions/invite.php:41 +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "يجب أن تلج لتُعدّل المجموعات." + #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" @@ -1893,6 +2166,11 @@ msgstr "أُرسلت الدعوة" msgid "Invite new users" msgstr "دعوة مستخدمين جدد" +#: actions/invite.php:128 +#, fuzzy +msgid "You are already subscribed to these users:" +msgstr "لست مشتركًا بأحد." + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 @@ -1942,6 +2220,12 @@ msgctxt "BUTTON" msgid "Send" msgstr "أرسل" +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 +#, fuzzy, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:231 #, php-format @@ -1978,6 +2262,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "يجب أن تلج لتنضم إلى مجموعة." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "لا اسم مستعار." + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" @@ -2043,7 +2332,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "خاص" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2140,6 +2429,11 @@ msgid "" msgstr "" "لأسباب أمنية، من فضلك أعد إدخال اسم مستخدمك وكلمة سرك قبل تغيير إعداداتك." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "لُج باسم مستخدم وكلمة سر" + #: actions/login.php:295 #, php-format msgid "" @@ -2150,6 +2444,11 @@ msgstr "" msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s." + #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." @@ -2176,6 +2475,11 @@ msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا." msgid "Use this form to register a new application." msgstr "استخدم هذا النموذج لتسجل تطبيقا جديدا." +#: actions/newapplication.php:176 +#, fuzzy +msgid "Source URL is required." +msgstr "مسار المصدر ليس صحيحا." + #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." msgstr "لم يمكن إنشاء التطبيق." @@ -2274,6 +2578,11 @@ msgstr "" msgid "Updates with \"%s\"" msgstr "" +#: actions/noticesearchrss.php:98 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -2299,6 +2608,16 @@ msgstr "تطبيقات OAuth" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, fuzzy, php-format +msgid "You have not registered any applications yet." +msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا." + +#: actions/oauthconnectionssettings.php:72 +#, fuzzy +msgid "Connected applications" +msgstr "احذف هذا التطبيق" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" @@ -2320,11 +2639,22 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" +#: actions/oembed.php:80 actions/shownotice.php:100 +#, fuzzy +msgid "Notice has no profile." +msgstr "ليس للمستخدم ملف شخصي." + #: actions/oembed.php:87 actions/shownotice.php:176 #, php-format msgid "%1$s's status on %2$s" msgstr "حالة %1$s في يوم %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "نوع المحتوى " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2373,6 +2703,11 @@ msgstr "اعرض تصاميم الملف الشخصي" msgid "Show or hide profile designs." msgstr "أظهر أو أخفِ تصاميم الملفات الشخصية." +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" + #: actions/otp.php:69 msgid "No user ID specified." msgstr "لا هوية مستخدم محددة." @@ -2497,6 +2832,11 @@ msgstr "لا يمكن الكتابة في دليل الخلفيات: %s." msgid "Locales directory not readable: %s." msgstr "لا يمكن قراءة دليل المحليات: %s." +#: actions/pathsadminpanel.php:183 +#, fuzzy +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." + #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 msgid "Site" msgstr "الموقع" @@ -2743,15 +3083,30 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" +#: actions/profilesettings.php:228 actions/register.php:230 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "الاسم طويل جدا (الأقصى %d حرفا)." + #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تُختر المنطقة الزمنية." +#: actions/profilesettings.php:241 +#, fuzzy +msgid "Language is too long (max 50 chars)." +msgstr "الاسم طويل جدا (الأقصى 255 حرفا)." + #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" msgstr "وسم غير صالح: \"%s\"" +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "تعذّر تحديث سجل المستخدم." + #: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." @@ -2774,6 +3129,11 @@ msgstr "حُفظت الإعدادات." msgid "Beyond the page limit (%s)." msgstr "بعد حد الصفحة (%s)." +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "تعذّر إنشاء الكنى." + #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" @@ -2888,6 +3248,11 @@ msgstr "خطأ في رمز التأكيد." msgid "This confirmation code is too old. Please start again." msgstr "رمز التأكيد هذا قديم جدًا. من فضلك ابدأ من جديد." +#: actions/recoverpassword.php:111 +#, fuzzy +msgid "Could not update user with confirmed email address." +msgstr "عنوان البريد الإلكتروني المُؤكد الحالي." + #: actions/recoverpassword.php:152 msgid "" "If you have forgotten or lost your password, you can get a new one sent to " @@ -2930,6 +3295,11 @@ msgstr "طُلبت استعادة كلمة السر" msgid "Unknown action" msgstr "إجراء غير معروف" +#: actions/recoverpassword.php:236 +#, fuzzy +msgid "6 or more characters, and don't forget it!" +msgstr "6 أحرف أو أكثر" + #: actions/recoverpassword.php:243 msgid "Reset" msgstr "أعد الضبط" @@ -2938,6 +3308,11 @@ msgstr "أعد الضبط" msgid "Enter a nickname or email address." msgstr "أدخل اسمًا مستعارًا أو عنوان بريد إلكتروني." +#: actions/recoverpassword.php:282 +#, fuzzy +msgid "No user with that email address or username." +msgstr "لا يوجد عنوان بريد إلكتروني مُسجّل لهذا المستخدم." + #: actions/recoverpassword.php:299 msgid "No registered email address for that user." msgstr "لا يوجد عنوان بريد إلكتروني مُسجّل لهذا المستخدم." @@ -2952,10 +3327,20 @@ msgid "" "address registered to your account." msgstr "" +#: actions/recoverpassword.php:357 +#, fuzzy +msgid "Unexpected password reset." +msgstr "أعد ضبط كلمة السر" + #: actions/recoverpassword.php:365 msgid "Password must be 6 chars or more." msgstr "يجب أن تكون كلمة السر 6 محارف أو أكثر." +#: actions/recoverpassword.php:369 +#, fuzzy +msgid "Password and confirmation do not match." +msgstr "كلمتا السر غير متطابقتين." + #: actions/recoverpassword.php:388 actions/register.php:255 msgid "Error setting user." msgstr "خطأ أثناء ضبط المستخدم." @@ -2984,6 +3369,11 @@ msgstr "سجّل" msgid "Registration not allowed." msgstr "لا يُسمح بالتسجيل." +#: actions/register.php:205 +#, fuzzy +msgid "You can't register if you don't agree to the license." +msgstr "لا يمكنك تكرار ملاحظتك الشخصية." + #: actions/register.php:219 msgid "Email address already exists." msgstr "عنوان البريد الإلكتروني موجود مسبقًا." @@ -2998,6 +3388,11 @@ msgid "" "link up to friends and colleagues. " msgstr "" +#: actions/register.php:432 +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" + #: actions/register.php:437 msgid "6 or more characters. Required." msgstr "6 حروف أو أكثر. مطلوب." @@ -3172,6 +3567,11 @@ msgstr "" msgid "Replies feed for %s (RSS 2.0)" msgstr "" +#: actions/replies.php:159 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "الردود على %s" + #: actions/replies.php:199 #, php-format msgid "" @@ -3193,6 +3593,11 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "الردود على %1$s، الصفحة %2$d" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "لا يمكنك سحب أدوار المستخدمين على هذا الموقع." @@ -3205,6 +3610,16 @@ msgstr "ليس للمستخدم هذا الدور." msgid "StatusNet" msgstr "ستاتس نت" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "المستخدم مسكت من قبل." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -3215,6 +3630,11 @@ msgstr "الجلسات" msgid "Session settings for this StatusNet site" msgstr "" +#: actions/sessionsadminpanel.php:175 +#, fuzzy +msgid "Handle sessions" +msgstr "الجلسات" + #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." msgstr "" @@ -3235,6 +3655,11 @@ msgstr "اذف إعدادت الموقع" msgid "You must be logged in to view an application." msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "معلومات التطبيق" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" @@ -3267,6 +3692,11 @@ msgstr "إحصاءات" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +#, fuzzy +msgid "Application actions" +msgstr "معلومات التطبيق" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" @@ -3310,6 +3740,11 @@ msgstr "أمتأكد من أنك تريد إعادة ضبط مفتاح المس msgid "%1$s's favorite notices, page %2$d" msgstr "إشعارات %1$s المُفضلة، الصفحة %2$d" +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "تعذّر إنشاء مفضلة." + #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" @@ -3331,6 +3766,25 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" +#: actions/showfavorites.php:208 +#, fuzzy, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" +"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى " +"مفضلته. :)" + +#: actions/showfavorites.php:212 +#, fuzzy, 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%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" + #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركة ما تحب." @@ -3363,6 +3817,11 @@ msgstr "ملاحظة" msgid "Aliases" msgstr "الكنى" +#: actions/showgroup.php:302 +#, fuzzy +msgid "Group actions" +msgstr "تصرفات المستخدم" + #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -3378,6 +3837,11 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "مجموعة %s" + #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "الأعضاء" @@ -3435,10 +3899,25 @@ msgstr "لا رسالة كهذه." msgid "Only the sender and recipient may read this message." msgstr "يحق للمُرسل والمستلم فقط قراءة هذه الرسالة." +#: actions/showmessage.php:108 +#, fuzzy, php-format +msgid "Message to %1$s on %2$s" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + +#: actions/showmessage.php:113 +#, fuzzy, php-format +msgid "Message from %1$s on %2$s" +msgstr "نتائج البحث ل\"%1$s\" على %2$s" + #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "حُذف الإشعار." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "الإشعارات الموسومة ب%s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -3464,6 +3943,11 @@ msgstr "" msgid "Notice feed for %s (Atom)" msgstr "" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "صندوق %s الصادر" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -3609,6 +4093,11 @@ msgstr "حد النص" msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف في الإشعارات." +#: actions/siteadminpanel.php:278 +#, fuzzy +msgid "Dupe limit" +msgstr "حد النص" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" @@ -3663,6 +4152,18 @@ msgstr "الرسائل القصيرة غير متوفرة." msgid "SMS address" msgstr "عنوان الرسائل القصيرة" +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +#, fuzzy +msgid "Current confirmed SMS-enabled phone number." +msgstr "عنوان البريد الإلكتروني المُؤكد الحالي." + +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 +#, fuzzy +msgid "Awaiting confirmation on this phone number." +msgstr "إن رقم التأكيد هذا خاطئ." + #. TRANS: Field label for SMS address input in SMS settings form. #: actions/smssettings.php:142 msgid "Confirmation code" @@ -3711,6 +4212,24 @@ msgstr "حُفظت تفضيلات الرسائل القصيرة." msgid "No phone number." msgstr "لا رقم هاتف." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "حُذف الإشعار." + +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +#, fuzzy +msgid "That is already your phone number." +msgstr "هذا ليس رقم هاتفك." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 +#, fuzzy +msgid "That phone number already belongs to another user." +msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." + #. TRANS: Message given saving valid SMS phone number that is to be confirmed. #: actions/smssettings.php:384 msgid "" @@ -3744,6 +4263,12 @@ msgstr "تمت إزالة رقم هاتف الرسائل القصيرة." msgid "Mobile carrier" msgstr "" +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 +#, fuzzy +msgid "Select a carrier" +msgstr "اختر وسمًا لترشيحه" + #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. #: actions/smssettings.php:525 @@ -3764,10 +4289,25 @@ msgstr "لم تدخل رمزًا" msgid "Snapshots" msgstr "" +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "غيّر ضبط الموقع" + +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "محتوى إشعار غير صالح." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "مسار شعار غير صالح." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3800,6 +4340,16 @@ msgstr "بلّغ عن المسار" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذف إعدادت الموقع" + +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "لست مُشتركًا بأي أحد." + #. TRANS: Exception thrown when a subscription could not be stored on the server. #: actions/subedit.php:83 classes/Subscription.php:136 msgid "Could not save subscription." @@ -3835,6 +4385,11 @@ msgstr "مشتركو %1$s, الصفحة %2$d" msgid "These are the people who listen to your notices." msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." +#: actions/subscribers.php:67 +#, fuzzy, php-format +msgid "These are the people who listen to %s's notices." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + #: actions/subscribers.php:108 msgid "" "You have no subscribers. Try subscribing to people you know and they might " @@ -3882,6 +4437,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "جابر" @@ -3914,6 +4474,11 @@ msgstr "" msgid "No ID argument." msgstr "لا مدخل هوية." +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "الوسوم" + #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" msgstr "ملف المستخدم الشخصي" @@ -3927,6 +4492,14 @@ msgstr "صورة" msgid "Tag user" msgstr "اوسم المستخدم" +#: actions/tagother.php:151 +#, fuzzy +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -3936,6 +4509,11 @@ msgstr "" msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "استخدم هذا النموذج لتعدل تطبيقك." + #: actions/tagrss.php:35 msgid "No such tag." msgstr "لا وسم كهذا." @@ -3952,6 +4530,11 @@ msgstr "المستخدم ليس في صندوق الرمل." msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "لا طلب استيثاق." + #: actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "غير مشترك" @@ -4035,6 +4618,11 @@ msgstr "" msgid "Save user settings" msgstr "" +#: actions/userauthorization.php:105 +#, fuzzy +msgid "Authorize subscription" +msgstr "جميع الاشتراكات" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -4069,6 +4657,11 @@ msgstr "ارفض هذا الاشتراك" msgid "No authorization request!" msgstr "لا طلب استيثاق!" +#: actions/userauthorization.php:254 +#, fuzzy +msgid "Subscription authorized" +msgstr "رُفض الاشتراك" + #: actions/userauthorization.php:256 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -4107,6 +4700,11 @@ msgstr "" msgid "Profile URL ‘%s’ is for a local user." msgstr "" +#: actions/userauthorization.php:345 +#, fuzzy, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "مسار المصدر ليس صحيحا." + #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." @@ -4151,6 +4749,17 @@ msgstr "%s ليس عضوًا في أي مجموعة." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) والانضمام إليها." +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: lib/atomusernoticefeed.php:76 +#, fuzzy, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "الإشعارات التي فضلها %1$s في %2$s!" + #: actions/version.php:75 #, php-format msgid "StatusNet %s" @@ -4248,6 +4857,12 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "حجم غير صالح." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -4301,6 +4916,12 @@ msgstr "أنت ممنوع من إرسال رسائل مباشرة." msgid "Could not insert message." msgstr "تعذّر إدراج الرسالة." +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "تعذّر تحليل الرسالة." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -4337,6 +4958,12 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +msgid "You are banned from posting notices on this site." +msgstr "أنت ممنوع من إرسال رسائل مباشرة." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -4348,6 +4975,12 @@ msgstr "مشكلة أثناء حفظ الإشعار." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "مشكلة أثناء حفظ الإشعار." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1824 @@ -4369,6 +5002,18 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "ليس للمستخدم ملف شخصي." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "تعذّر حفظ إشعار الموقع." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." @@ -4486,6 +5131,12 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صفحة غير مُعنونة" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "ضبط الموقع الأساسي" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -4614,6 +5265,12 @@ msgstr "المشاهدات المحلية" msgid "Page notice" msgstr "إشعار الصفحة" +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "ضبط الموقع الأساسي" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -4658,6 +5315,19 @@ msgstr "الجسر" msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." +"broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4710,6 +5380,12 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +#, fuzzy +msgid "Pagination" +msgstr "تسجيل" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1259 @@ -4752,6 +5428,18 @@ msgstr "لا يمكنك إجراء تغييرات على هذا الموقع." msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوحة غير مسموح بها." +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "الأمر لم يُجهزّ بعد." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "الأمر لم يُجهزّ بعد." + #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 @@ -4811,6 +5499,12 @@ msgstr "ضبط الجلسات" msgid "Edit site notice" msgstr "عدّل إشعار الموقع" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4862,6 +5556,12 @@ msgstr "عدّل التطبيق" msgid "Icon for this application" msgstr "أيقونة لهذا التطبيق" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "صف تطبيقك" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" @@ -4877,6 +5577,18 @@ msgstr "مسار صفحة هذا التطبيق" msgid "Source URL" msgstr "مسار المصدر" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "أيقونة لهذا التطبيق" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "مسار صفحة هذا التطبيق" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4954,6 +5666,12 @@ msgstr "المؤلف" msgid "Provider" msgstr "المزود" +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 +#, fuzzy +msgid "Notices where this attachment appears" +msgstr "وسوم هذا المرفق" + #. TRANS: Title. #: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" @@ -4984,6 +5702,26 @@ msgstr "اكتمل الأمر" msgid "Command failed" msgstr "فشل الأمر" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "لا ملف بهذه الهوية." + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "ليس للمستخدم إشعار أخير" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "تعذّر إيجاد المستخدم الهدف." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4991,11 +5729,24 @@ msgstr "فشل الأمر" msgid "Could not find a local user with nickname %s." msgstr "" +#. TRANS: Error text shown when an unimplemented command is given. +#: lib/command.php:185 +#, fuzzy +msgid "Sorry, this command is not yet implemented." +msgstr "الأمر لم يُجهزّ بعد." + #. TRANS: Command exception text shown when a user tries to nudge themselves. #: lib/command.php:231 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "أرسل التنبيه" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5011,6 +5762,12 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" +#. TRANS: Text shown when a notice has been marked as favourite successfully. +#: lib/command.php:314 +#, fuzzy +msgid "Notice marked as fave." +msgstr "هذا الإشعار مفضلة مسبقًا!" + #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:360 @@ -5066,6 +5823,19 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +#: lib/command.php:517 +#, fuzzy +msgid "Error sending direct message." +msgstr "أنت ممنوع من إرسال رسائل مباشرة." + +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "الإشعار من %s مكرر" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -5078,6 +5848,13 @@ msgstr "خطأ تكرار الإشعار." msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "رُد على رسالة %s" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -5295,6 +6072,11 @@ msgstr "" "tracks - لم يطبق بعد.\n" "tracking - لم يطبق بعد.\n" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "لا رمز تأكيد." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -5323,6 +6105,11 @@ msgstr "تحديثات عبر الرسائل القصيرة" msgid "Connections" msgstr "اتصالات" +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "تطبيقات OAuth" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "خطأ قاعدة بيانات" @@ -5397,10 +6184,26 @@ msgstr "اذهب" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "مسار صفحة هذا التطبيق" + #: lib/groupeditform.php:168 msgid "Describe the group or topic" msgstr "صِف المجموعة أو الموضوع" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "صِف المجموعة أو الموضوع" + +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" + #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" @@ -5496,11 +6299,21 @@ msgstr "وسوم في إشعارات مجموعة %s" msgid "This page is not available in a media type you accept" msgstr "" +#: lib/imagefile.php:72 +#, fuzzy +msgid "Unsupported image file format." +msgstr "نسق غير مدعوم." + #: lib/imagefile.php:88 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." +#: lib/imagefile.php:93 +#, fuzzy +msgid "Partial upload." +msgstr "لم يُرفع ملف." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." @@ -5510,6 +6323,11 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" +#: lib/imagefile.php:122 +#, fuzzy +msgid "Lost our file." +msgstr "لا ملف كهذا." + #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" msgstr "نوع ملف غير معروف" @@ -5780,6 +6598,11 @@ msgid "" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +#: lib/mailbox.php:89 +#, fuzzy +msgid "Only the user can read their own mailboxes." +msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات." + #: lib/mailbox.php:139 msgid "" "You have no private messages. You can send private message to engage other " @@ -5798,6 +6621,16 @@ msgstr "تعذّر تحليل الرسالة." msgid "Not a registered user." msgstr "ليس مستخدمًا مسجلًا." +#: lib/mailhandler.php:46 +#, fuzzy +msgid "Sorry, that is not your incoming email address." +msgstr "هذا ليس عنوان بريدك الإلكتروني." + +#: lib/mailhandler.php:50 +#, fuzzy +msgid "Sorry, no incoming email allowed." +msgstr "لا عنوان بريد إلكتروني وارد." + #: lib/mailhandler.php:228 #, php-format msgid "Unsupported message type: %s" @@ -5983,6 +6816,11 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -6115,6 +6953,11 @@ msgstr "نعم" msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6199,6 +7042,11 @@ msgstr "المجموعات التي %s عضو فيها" msgid "Invite" msgstr "ادعُ" +#: lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6221,6 +7069,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "فشل تحديث الأفتار." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6257,6 +7112,11 @@ msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." msgid "Top posters" msgstr "أعلى المرسلين" +#: lib/unsandboxform.php:69 +#, fuzzy +msgid "Unsandbox" +msgstr "أزل هذا المستخدم من صندوق الرمل" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "أزل هذا المستخدم من صندوق الرمل" @@ -6406,16 +7266,22 @@ msgstr "قبل سنة تقريبًا" msgid "%s is not a valid color!" msgstr "%s ليس لونًا صحيحًا!" +#: lib/webcolor.php:123 +#, fuzzy, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "%s ليس لونًا صحيحًا!" + #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "لا هوية مستخدم محددة." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 349e99b91f..50c8aa2a30 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: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:14+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:36+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -31,6 +31,18 @@ msgstr "" msgid "Access" msgstr "نفاذ" +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +#, fuzzy +msgid "Site access settings" +msgstr "اذف إعدادت الموقع" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Registration" +msgstr "سجّل" + #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" @@ -62,6 +74,24 @@ msgstr "عطّل التسجيل الجديد." msgid "Closed" msgstr "مُغلق" +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +#, fuzzy +msgid "Save access settings" +msgstr "اذف إعدادت الموقع" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "أرسل" + #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 @@ -149,11 +179,28 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "" +"%s لم يضف أى إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." +"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" + #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" msgstr "أنت والأصدقاء" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#: actions/allrss.php:121 actions/apitimelinefriends.php:216 +#: actions/apitimelinehome.php:122 +#, fuzzy, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "%1$s و الصحاب, صفحه %2$d" + #: actions/apiaccountratelimitstatus.php:72 #: actions/apiaccountupdatedeliverydevice.php:95 #: actions/apiaccountupdateprofile.php:98 @@ -231,6 +278,17 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "تعذّر حذف إعدادات التصميم." + #: actions/apiaccountupdateprofilebackgroundimage.php:188 #: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." @@ -253,15 +311,30 @@ msgstr "فشل إلغاء منع المستخدم." msgid "Direct messages from %s" msgstr "رسائل مباشره من %s" +#: actions/apidirectmessage.php:93 +#, fuzzy, php-format +msgid "All the direct messages sent from %s" +msgstr "رسائل مباشره من %s" + #: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "رساله مباشره %s" +#: actions/apidirectmessage.php:105 +#, fuzzy, php-format +msgid "All the direct messages sent to %s" +msgstr "رساله مباشره %s" + #: actions/apidirectmessagenew.php:119 msgid "No message text!" msgstr "لا نص فى الرسالة!" +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." + #: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "لم يُعثر على المستخدم المستلم." @@ -270,6 +343,12 @@ msgstr "لم يُعثر على المستخدم المستلم." msgid "Can't send direct messages to users who aren't your friend." msgstr "" +#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 +#: actions/apistatusesdestroy.php:121 +#, fuzzy +msgid "No status found with that ID." +msgstr "لا ملف شخصى بهذه الهويه." + #: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." msgstr "الحاله دى موجوده فعلا فى التفضيلات." @@ -287,6 +366,21 @@ msgstr "الحاله دى مش محطوطه فى التفضيلات." msgid "Could not delete favorite." msgstr "تعذّر حذف المفضله." +#: actions/apifriendshipscreate.php:110 +#, fuzzy +msgid "Could not follow user: profile not found." +msgstr "لم يمكن حفظ الملف." + +#: actions/apifriendshipscreate.php:119 +#, fuzzy, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "ما نفعش يضم %1$s للجروپ %2$s." + +#: actions/apifriendshipsdestroy.php:110 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "ما ينفعش عدم متابعة نفسك." + #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "ما ينفعش عدم متابعة نفسك." @@ -295,6 +389,11 @@ msgstr "ما ينفعش عدم متابعة نفسك." msgid "Two valid IDs or screen_names must be supplied." msgstr "" +#: actions/apifriendshipsshow.php:134 +#, fuzzy +msgid "Could not determine source user." +msgstr "تعذّر إيجاد المستخدم الهدف." + #: actions/apifriendshipsshow.php:142 msgid "Could not find target user." msgstr "تعذّر إيجاد المستخدم الهدف." @@ -330,12 +429,30 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." msgid "Full name is too long (max 255 chars)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" +#: actions/apigroupcreate.php:217 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "المنظمه طويله جدا (اكتر حاجه %d رمز)." + +#: actions/apigroupcreate.php:228 actions/editgroup.php:208 +#: actions/newgroup.php:148 actions/profilesettings.php:232 +#: actions/register.php:234 +#, fuzzy +msgid "Location is too long (max 255 chars)." +msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." + #: actions/apigroupcreate.php:247 actions/editgroup.php:219 #: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "كنيه غير صالحة: \"%s\"" + #: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format @@ -353,6 +470,18 @@ msgstr "" msgid "Group not found." msgstr "لم يوجد." +#. TRANS: Error text shown a user tries to join a group they already are a member of. +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#, fuzzy +msgid "You are already a member of that group." +msgstr "انت اصلا عضو فى الجروپ ده" + +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#, fuzzy +msgid "You have been blocked from that group by the admin." +msgstr "لم تمنع هذا المستخدم." + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 @@ -360,6 +489,11 @@ msgstr "لم يوجد." msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." +#: actions/apigroupleave.php:116 +#, fuzzy +msgid "You are not a member of this group." +msgstr "لست عضوا فى تلك المجموعه." + #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 @@ -374,6 +508,12 @@ msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." msgid "%s's groups" msgstr "مجموعات %s" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "المجموعات التى %s عضو فيها" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -386,10 +526,20 @@ msgstr "مجموعات %s" msgid "groups on %s" msgstr "مجموعات %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "ارفع ملفًا" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "حجم غير صالح." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -412,6 +562,16 @@ msgstr "" msgid "Invalid nickname / password!" msgstr "نيكنيم / پاسوورد مش مظبوطه!" +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "خطأ قاعده البيانات أثناء حذف المستخدم OAuth app" + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -483,6 +643,16 @@ msgstr "اسمح" msgid "Allow or deny access to your account information." msgstr "" +#: actions/apistatusesdestroy.php:112 +#, fuzzy +msgid "This method requires a POST or DELETE." +msgstr "تتطلب هذه الطريقه POST." + +#: actions/apistatusesdestroy.php:135 +#, fuzzy +msgid "You may not delete another user's status." +msgstr "لا يمكنك حذف المستخدمين." + #: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72 #: actions/deletenotice.php:52 actions/shownotice.php:92 msgid "No such notice." @@ -502,10 +672,21 @@ msgstr "الملاحظه اتكررت فعلا." msgid "Status deleted." msgstr "حُذِفت الحاله." +#: actions/apistatusesshow.php:145 +#, fuzzy +msgid "No status with that ID found." +msgstr "لا ملف شخصى بهذه الهويه." + #: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." msgstr "" +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." + #: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "لم يوجد." @@ -519,6 +700,11 @@ msgstr "" msgid "Unsupported format." msgstr "نسق غير مدعوم." +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s دخل جروپ %2$s" + #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." @@ -559,6 +745,16 @@ msgstr "تكرارات %s" msgid "Notices tagged with %s" msgstr "الإشعارات الموسومه ب%s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "الإشعارات الموسومه ب%s" + +#: actions/apitrends.php:87 +#, fuzzy +msgid "API method under construction." +msgstr "الـ API method مش موجوده." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "لا مرفق كهذا." @@ -584,6 +780,11 @@ msgstr "حجم غير صالح." msgid "Avatar" msgstr "أفتار" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب." + #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 @@ -614,6 +815,16 @@ msgstr "احذف" msgid "Upload" msgstr "ارفع" +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +#, fuzzy +msgid "Crop" +msgstr "مجموعات" + +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "لا ملف شخصى مُحدّد." + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -667,6 +878,19 @@ msgstr "ملاحظة" msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "نعم" + #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. #: actions/block.php:164 lib/blockform.php:82 @@ -693,11 +917,21 @@ msgstr "فشل حفظ معلومات المنع." msgid "No such group." msgstr "لا مجموعه كهذه." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" + #: actions/blockedfromgroup.php:100 #, php-format msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s فايلات معمول ليها بلوك, الصفحه %2$d" +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "قائمه بمستخدمى هذه المجموعه." + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "ألغ منع المستخدم من المجموعة" @@ -712,6 +946,12 @@ msgstr "ألغِ المنع" msgid "Unblock this user" msgstr "ألغِ منع هذا المستخدم" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "مجموعات %s" + #: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "لا رمز تأكيد." @@ -730,6 +970,12 @@ msgstr "رمز التأكيد ليس لك!" msgid "Unrecognized address type %s." msgstr "" +#. TRANS: Client error for an already confirmed email/jabbel/sms address. +#: actions/confirmaddress.php:96 +#, fuzzy +msgid "That address has already been confirmed." +msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." + #. TRANS: Server error thrown on database error updating e-mail preferences. #. TRANS: Server error thrown on database error removing a registered e-mail address. #. TRANS: Server error thrown on database error updating IM preferences. @@ -773,6 +1019,11 @@ msgstr "الإشعارات" msgid "You must be logged in to delete an application." msgstr "لازم يكون متسجل دخولك علشان تعدّل application." +#: actions/deleteapplication.php:71 +#, fuzzy +msgid "Application not found." +msgstr "لم يوجد رمز التأكيد." + #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 msgid "You are not the owner of this application." @@ -796,6 +1047,18 @@ msgid "" "connections." msgstr "" +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +#, fuzzy +msgid "Do not delete this application" +msgstr "لا تحذف هذا الإشعار" + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +#, fuzzy +msgid "Delete this application" +msgstr "احذف هذا الإشعار" + #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 @@ -897,6 +1160,11 @@ msgstr "سمه الموقع" msgid "Theme for the site." msgstr "سمه الموقع." +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "سمه الموقع" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -910,6 +1178,13 @@ msgstr "تغيير صوره الخلفية" msgid "Background" msgstr "الخلفية" +#: actions/designadminpanel.php:509 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب." + #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" @@ -924,6 +1199,11 @@ msgstr "عطّل" msgid "Turn background image on or off." msgstr "مكّن صوره الخلفيه أو عطّلها." +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "تغيير صوره الخلفية" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "تغيير الألوان" @@ -1026,18 +1306,38 @@ msgstr "" msgid "Description is required." msgstr "الوصف مطلوب." +#: actions/editapplication.php:194 +#, fuzzy +msgid "Source URL is too long." +msgstr "الSource URL مش مظبوط." + #: actions/editapplication.php:200 actions/newapplication.php:185 msgid "Source URL is not valid." msgstr "الSource URL مش مظبوط." +#: actions/editapplication.php:203 actions/newapplication.php:188 +#, fuzzy +msgid "Organization is required." +msgstr "الوصف مطلوب." + #: actions/editapplication.php:206 actions/newapplication.php:191 msgid "Organization is too long (max 255 chars)." msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." +#: actions/editapplication.php:209 actions/newapplication.php:194 +#, fuzzy +msgid "Organization homepage is required." +msgstr "الوصف مطلوب." + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" +#: actions/editapplication.php:225 actions/newapplication.php:215 +#, fuzzy +msgid "Callback URL is not valid." +msgstr "الSource URL مش مظبوط." + #: actions/editapplication.php:261 msgid "Could not update application." msgstr "ما نفعش تحديث الapplication." @@ -1060,6 +1360,11 @@ msgstr "لازم تكون ادارى علشان تعدّل الجروپ." msgid "Use this form to edit the group." msgstr "استخدم هذا النموذج لتعديل المجموعه." +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)." + #: actions/editgroup.php:228 actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" @@ -1119,6 +1424,17 @@ msgid "" "a message with further instructions." msgstr "" +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "ألغِ" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -1128,6 +1444,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "عنوان البريد الإلكترونى، مثل \"UserName@example.org\"" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "أضف" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -1146,6 +1472,14 @@ msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم." +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "جديد" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -1161,6 +1495,12 @@ msgstr "أرسل لى إشعارات بالاشتراكات الجديده عب msgid "Send me email when someone adds my notice as a favorite." msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:197 +#, fuzzy +msgid "Send me email when someone sends me a private message." +msgstr "أرسل لى بريدًا إلكترونيًا عندما يرسل لى أحدهم \"@-رد\"." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:203 msgid "Send me email when someone sends me an \"@-reply\"." @@ -1176,11 +1516,29 @@ msgstr "" msgid "I want to post notices by email." msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكترونى." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:223 +#, fuzzy +msgid "Publish a MicroID for my email address." +msgstr "هذا ليس عنوان بريدك الإلكترونى." + +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "حُفِظت التفضيلات." + #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 msgid "No email address." msgstr "لا عنوان بريد إلكترونى." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 @@ -1212,6 +1570,21 @@ msgid "" "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +#, fuzzy +msgid "No pending confirmation to cancel." +msgstr "لا رمز تأكيد." + +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "هذا عنوان محادثه فوريه خاطئ." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1228,6 +1601,31 @@ msgstr "هذا ليس عنوان بريدك الإلكترونى." msgid "The email address was removed." msgstr "لا عنوان بريد إلكترونى." +#: actions/emailsettings.php:497 actions/smssettings.php:568 +#, fuzzy +msgid "No incoming email address." +msgstr "لا عنوان بريد إلكترونى." + +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:508 actions/emailsettings.php:532 +#: actions/smssettings.php:578 actions/smssettings.php:602 +#, fuzzy +msgid "Couldn't update user record." +msgstr "تعذّر تحديث المستخدم." + +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +#, fuzzy +msgid "Incoming email address removed." +msgstr "لا عنوان بريد إلكترونى." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +#, fuzzy +msgid "New incoming email address added." +msgstr "لا عنوان بريد إلكترونى." + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضله مسبقًا!" @@ -1273,6 +1671,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "إشعارات %s المُفضلة" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1312,6 +1715,16 @@ msgstr "لم أتوقع هذا الرد!" msgid "User being listened to does not exist." msgstr "المستخدم الذى تستمع إليه غير موجود." +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#, fuzzy +msgid "You can use the local subscription!" +msgstr "تعذّر حفظ الاشتراك." + +#: actions/finishremotesubscribe.php:99 +#, fuzzy +msgid "That user has blocked you from subscribing." +msgstr "لقد منعك المستخدم." + #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." msgstr "لا تملك تصريحًا." @@ -1324,6 +1737,11 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "خطأ أثناء تحديث الملف الشخصى البعيد" + #: actions/getfile.php:79 msgid "No such file." msgstr "لا ملف كهذا." @@ -1332,10 +1750,25 @@ msgstr "لا ملف كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءه الملف." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "حجم غير صالح." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "المستخدم مسكت من قبل." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1357,6 +1790,11 @@ msgstr "لا مجموعه مُحدّده." msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "المستخدم ليس ممنوعًا من المجموعه." + #: actions/groupblock.php:100 msgid "User is not a member of group." msgstr "المستخدم ليس عضوًا فى المجموعه." @@ -1410,10 +1848,21 @@ msgstr "" msgid "Couldn't update your design." msgstr "تعذّر تحديث تصميمك." +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "حُفِظت التفضيلات." + #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "شعار المجموعة" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب." + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -1460,6 +1909,11 @@ msgctxt "TOOLTIP" msgid "Block this user" msgstr "" +#: actions/groupmembers.php:498 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "لازم تكون ادارى علشان تعدّل الجروپ." + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1579,6 +2033,11 @@ msgstr "المراسله الفوريه غير متوفره." msgid "IM address" msgstr "عنوان الرساله الفوريه" +#: actions/imsettings.php:113 +#, fuzzy +msgid "Current confirmed Jabber/GTalk address." +msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." + #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:124 @@ -1605,6 +2064,12 @@ msgstr "" msgid "IM preferences" msgstr "حُفِظت التفضيلات." +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:163 +#, fuzzy +msgid "Send me notices through Jabber/GTalk." +msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى." + #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:169 msgid "Post a notice when my Jabber/GTalk status changes." @@ -1630,11 +2095,29 @@ msgstr "حُفِظت التفضيلات." msgid "No Jabber ID." msgstr "لا هويه جابر." +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:320 +#, fuzzy +msgid "Cannot normalize that Jabber ID" +msgstr "ليست هويه جابر صالحة" + #. TRANS: Message given saving IM address that not valid. #: actions/imsettings.php:325 msgid "Not a valid Jabber ID" msgstr "ليست هويه جابر صالحة" +#. TRANS: Message given saving IM address that is already set. +#: actions/imsettings.php:329 +#, fuzzy +msgid "That is already your Jabber ID." +msgstr "هذه ليست هويتك فى جابر." + +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:333 +#, fuzzy +msgid "Jabber ID already belongs to another user." +msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." + #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:361 @@ -1649,6 +2132,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "هذا عنوان محادثه فوريه خاطئ." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "تعذّر حذف تأكيد البريد الإلكترونى." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1660,6 +2149,12 @@ msgstr "لا رمز تأكيد." msgid "That is not your Jabber ID." msgstr "هذه ليست هويتك فى جابر." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:450 +#, fuzzy +msgid "The IM address was removed." +msgstr "أزيل هذا العنوان." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1674,6 +2169,16 @@ msgstr "" msgid "This is your inbox, which lists your incoming private messages." msgstr "" +#: actions/invite.php:39 +#, fuzzy +msgid "Invites have been disabled." +msgstr "الدعوات مُفعلة" + +#: actions/invite.php:41 +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "يجب أن تلج لتُعدّل المجموعات." + #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" @@ -1687,6 +2192,11 @@ msgstr "أُرسلت الدعوة" msgid "Invite new users" msgstr "دعوه مستخدمين جدد" +#: actions/invite.php:128 +#, fuzzy +msgid "You are already subscribed to these users:" +msgstr "لست مشتركًا بأحد." + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 @@ -1730,6 +2240,13 @@ msgstr "رساله شخصية" msgid "Optionally add a personal message to the invitation." msgstr "" +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "أرسل" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1768,11 +2285,26 @@ msgid "" "Sincerely, %2$s\n" msgstr "" +#: actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." +msgstr "يجب أن تلج لتُعدّل المجموعات." + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "لا اسم مستعار." + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" msgstr "%1$s دخل جروپ %2$s" +#: actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "يجب أن تكون والجًا لتنشئ مجموعه." + #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. #: actions/leavegroup.php:100 lib/command.php:389 msgid "You are not a member of that group." @@ -1829,7 +2361,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "خاص" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -1925,6 +2457,11 @@ msgid "" "changing your settings." msgstr "" +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "اسم المستخدم أو كلمه السر غير صحيحان." + #: actions/login.php:295 #, php-format msgid "" @@ -1935,6 +2472,11 @@ msgstr "" msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s مش نافع يبقى ادارى لجروپ %2$s." + #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." @@ -1961,6 +2503,11 @@ msgstr "لازم تكون مسجل دخوللك علشان تسجل application. msgid "Use this form to register a new application." msgstr "استعمل الفورمه دى علشان تسجل application جديد." +#: actions/newapplication.php:176 +#, fuzzy +msgid "Source URL is required." +msgstr "الSource URL مش مظبوط." + #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." msgstr "مش ممكن إنشاء الapplication." @@ -1977,6 +2524,12 @@ msgstr "استخدم هذا النموذج لإنشاء مجموعه جديده. msgid "New message" msgstr "رساله جديدة" +#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#, fuzzy +msgid "You can't send a message to this user." +msgstr "أرسل رساله مباشره إلى هذا المستخدم" + #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. #: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 @@ -2082,6 +2635,16 @@ msgstr "OAuth applications" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, fuzzy, php-format +msgid "You have not registered any applications yet." +msgstr "لازم تكون مسجل دخوللك علشان تسجل application." + +#: actions/oauthconnectionssettings.php:72 +#, fuzzy +msgid "Connected applications" +msgstr "مش ممكن إنشاء الapplication." + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" @@ -2103,6 +2666,22 @@ msgstr "" msgid "Developers can edit the registration settings for their applications " msgstr "" +#: actions/oembed.php:80 actions/shownotice.php:100 +#, fuzzy +msgid "Notice has no profile." +msgstr "ليس للمستخدم ملف شخصى." + +#: actions/oembed.php:87 actions/shownotice.php:176 +#, fuzzy, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s ساب جروپ %2$s" + +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "نوع المحتوى " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2151,6 +2730,11 @@ msgstr "اعرض تصاميم الملف الشخصي" msgid "Show or hide profile designs." msgstr "أظهر أو أخفِ تصاميم الملفات الشخصيه." +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" + #: actions/otp.php:69 msgid "No user ID specified." msgstr "ما فيش ID متحدد لليوزر." @@ -2176,6 +2760,11 @@ msgstr "تاريخ صلاحية الاماره خلص." msgid "Outbox for %1$s - page %2$d" msgstr "" +#: actions/outbox.php:61 +#, fuzzy, php-format +msgid "Outbox for %s" +msgstr "صندوق الصادر" + #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" @@ -2200,6 +2789,11 @@ msgstr "كلمه السر القديمة" msgid "New password" msgstr "كلمه سر جديدة" +#: actions/passwordsettings.php:109 +#, fuzzy +msgid "6 or more characters" +msgstr "6 حروف أو أكثر. مطلوب." + #: actions/passwordsettings.php:112 actions/recoverpassword.php:239 #: actions/register.php:440 msgid "Confirm" @@ -2261,6 +2855,16 @@ msgstr "دليل الأفتار." msgid "Background directory not writable: %s." msgstr "دليل الخلفيات" +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "لا يمكن قراءه دليل المحليات: %s" + +#: actions/pathsadminpanel.php:183 +#, fuzzy +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف." + #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 msgid "Site" msgstr "الموقع" @@ -2444,6 +3048,11 @@ msgstr "الصفحه الرئيسية" msgid "URL of your homepage, blog, or profile on another site" msgstr "" +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "صِف نفسك واهتماماتك" + #: actions/profilesettings.php:125 actions/register.php:471 msgid "Describe yourself and your interests" msgstr "صِف نفسك واهتماماتك" @@ -2494,15 +3103,36 @@ msgstr "المنطقه الزمنية" msgid "What timezone are you normally in?" msgstr "ما المنطقه الزمنيه التى تتواجد فيها عادة؟" +#: actions/profilesettings.php:167 +#, fuzzy +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." + +#: actions/profilesettings.php:228 actions/register.php:230 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "الاسم طويل جدا (اكتر حاجه %d رمز)." + #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تُختر المنطقه الزمنيه." +#: actions/profilesettings.php:241 +#, fuzzy +msgid "Language is too long (max 50 chars)." +msgstr "الاسم طويل جدا (اكتر حاجه 255 رمز)." + #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" msgstr "وسم غير صالح: \"%s\"" +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "تعذّر تحديث المستخدم." + #: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." @@ -2520,6 +3150,16 @@ msgstr "تعذّر حفظ الوسوم." msgid "Settings saved." msgstr "حُفظت الإعدادات." +#: actions/public.php:83 +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." +msgstr "وراء حد الصفحه (%s)" + +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "تعذّر إنشاء الكنى." + #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" @@ -2634,6 +3274,11 @@ msgstr "خطأ فى رمز التأكيد." msgid "This confirmation code is too old. Please start again." msgstr "رمز التأكيد هذا قديم جدًا. من فضلك ابدأ من جديد." +#: actions/recoverpassword.php:111 +#, fuzzy +msgid "Could not update user with confirmed email address." +msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." + #: actions/recoverpassword.php:152 msgid "" "If you have forgotten or lost your password, you can get a new one sent to " @@ -2676,6 +3321,11 @@ msgstr "طُلبت استعاده كلمه السر" msgid "Unknown action" msgstr "إجراء غير معروف" +#: actions/recoverpassword.php:236 +#, fuzzy +msgid "6 or more characters, and don't forget it!" +msgstr "6 حروف أو أكثر. مطلوب." + #: actions/recoverpassword.php:243 msgid "Reset" msgstr "أعد الضبط" @@ -2684,6 +3334,16 @@ msgstr "أعد الضبط" msgid "Enter a nickname or email address." msgstr "أدخل اسمًا مستعارًا أو عنوان بريد إلكترونى." +#: actions/recoverpassword.php:282 +#, fuzzy +msgid "No user with that email address or username." +msgstr "عنوان البريد الإلكترونى للاتصال بموقعك" + +#: actions/recoverpassword.php:299 +#, fuzzy +msgid "No registered email address for that user." +msgstr "عنوان البريد الإلكترونى للاتصال بموقعك" + #: actions/recoverpassword.php:313 msgid "Error saving address confirmation." msgstr "خطأ أثناء حفظ تأكيد العنوان." @@ -2694,10 +3354,20 @@ msgid "" "address registered to your account." msgstr "" +#: actions/recoverpassword.php:357 +#, fuzzy +msgid "Unexpected password reset." +msgstr "أعد ضبط كلمه السر" + #: actions/recoverpassword.php:365 msgid "Password must be 6 chars or more." msgstr "يجب أن تكون كلمه السر 6 محارف أو أكثر." +#: actions/recoverpassword.php:369 +#, fuzzy +msgid "Password and confirmation do not match." +msgstr "كلمتا السر غير متطابقتين." + #: actions/recoverpassword.php:388 actions/register.php:255 msgid "Error setting user." msgstr "خطأ أثناء ضبط المستخدم." @@ -2726,6 +3396,11 @@ msgstr "سجّل" msgid "Registration not allowed." msgstr "لا يُسمح بالتسجيل." +#: actions/register.php:205 +#, fuzzy +msgid "You can't register if you don't agree to the license." +msgstr "ما ينفعش تكرر الملاحظه بتاعتك." + #: actions/register.php:219 msgid "Email address already exists." msgstr "عنوان البريد الإلكترونى موجود مسبقًا." @@ -2903,6 +3578,11 @@ msgstr "مكرر!" msgid "Replies to %s" msgstr "الردود على %s" +#: actions/replies.php:128 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "الردود على %s" + #: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -2913,6 +3593,11 @@ msgstr "" msgid "Replies feed for %s (RSS 2.0)" msgstr "" +#: actions/replies.php:159 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "الردود على %s" + #: actions/replies.php:199 #, php-format msgid "" @@ -2934,10 +3619,35 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "أهلا بكم فى %1$s يا @%2$s!" + +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "يوزر من-غير پروفايل زيّه." + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "المستخدم مسكت من قبل." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2948,6 +3658,11 @@ msgstr "الجلسات" msgid "Session settings for this StatusNet site" msgstr "" +#: actions/sessionsadminpanel.php:175 +#, fuzzy +msgid "Handle sessions" +msgstr "الجلسات" + #: actions/sessionsadminpanel.php:177 msgid "Whether to handle sessions ourselves." msgstr "" @@ -3004,10 +3719,20 @@ msgstr "إحصاءات" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +#, fuzzy +msgid "Application actions" +msgstr "OAuth applications" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +#, fuzzy +msgid "Application info" +msgstr "OAuth applications" + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -3034,6 +3759,21 @@ msgid "" "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "إشعارات %s المُفضلة" + +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "تعذّر إنشاء مفضله." + #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" @@ -3055,6 +3795,25 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" +#: actions/showfavorites.php:208 +#, fuzzy, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" +"%s لم يضف أى إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى " +"مفضلته. :)" + +#: actions/showfavorites.php:212 +#, fuzzy, 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%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" + #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "إنها إحدى وسائل مشاركه ما تحب." @@ -3087,6 +3846,11 @@ msgstr "ملاحظة" msgid "Aliases" msgstr "الكنى" +#: actions/showgroup.php:302 +#, fuzzy +msgid "Group actions" +msgstr "تصرفات المستخدم" + #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -3102,6 +3866,11 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "مجموعه %s" + #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "الأعضاء" @@ -3120,6 +3889,31 @@ msgstr "جميع الأعضاء" msgid "Created" msgstr "أنشئ" +#: actions/showgroup.php:455 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" +"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/). [انضم " +"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " +"([اقرأ المزيد](%%doc.help%%))" + +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" +"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)." + #: actions/showgroup.php:489 msgid "Admins" msgstr "الإداريون" @@ -3132,10 +3926,25 @@ msgstr "لا رساله كهذه." msgid "Only the sender and recipient may read this message." msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله." +#: actions/showmessage.php:108 +#, fuzzy, php-format +msgid "Message to %1$s on %2$s" +msgstr "أهلا بكم فى %1$s يا @%2$s!" + +#: actions/showmessage.php:113 +#, fuzzy, php-format +msgid "Message from %1$s on %2$s" +msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" + #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "حُذف الإشعار." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "الإشعارات الموسومه ب%s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -3184,6 +3993,29 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" +#: actions/showstream.php:243 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" +"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/). [انضم " +"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " +"([اقرأ المزيد](%%doc.help%%))" + +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" +"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)." + #: actions/showstream.php:305 #, php-format msgid "Repeat of %s" @@ -3197,6 +4029,11 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." +#: actions/siteadminpanel.php:69 +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "الإعدادات الأساسيه لموقع StatusNet هذا." + #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صفرًا." @@ -3210,6 +4047,11 @@ msgstr "لازم يكون عندك عنوان ايميل صالح." msgid "Unknown language \"%s\"." msgstr "لغه مش معروفه \"%s\"." +#: actions/siteadminpanel.php:165 +#, fuzzy +msgid "Minimum text limit is 0 (unlimited)." +msgstr "حد النص الأدنى هو 140 حرفًا." + #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." msgstr "" @@ -3278,18 +4120,48 @@ msgstr "حد النص" msgid "Maximum number of characters for notices." msgstr "أقصى عدد للحروف فى الإشعارات." +#: actions/siteadminpanel.php:278 +#, fuzzy +msgid "Dupe limit" +msgstr "حد النص" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "رساله جديدة" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "مشكله أثناء حفظ الإشعار." + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "إشعار الموقع" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "إشعار الموقع" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3307,6 +4179,24 @@ msgstr "لا يمكنك استلام رسائل قصيره عبر البريد msgid "SMS is not available." msgstr "الرسائل القصيره غير متوفره." +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "عنوان الرساله الفوريه" + +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +#, fuzzy +msgid "Current confirmed SMS-enabled phone number." +msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." + +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 +#, fuzzy +msgid "Awaiting confirmation on this phone number." +msgstr "هذا ليس رقم هاتفك." + #. TRANS: Field label for SMS address input in SMS settings form. #: actions/smssettings.php:142 msgid "Confirmation code" @@ -3317,6 +4207,13 @@ msgstr "رمز التأكيد" msgid "Enter the code you received on your phone." msgstr "" +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "أكّد" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3339,11 +4236,35 @@ msgid "" "from my carrier." msgstr "" +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "حُفِظت التفضيلات." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." msgstr "لا رقم هاتف." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "حُذف الإشعار." + +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +#, fuzzy +msgid "That is already your phone number." +msgstr "هذا ليس رقم هاتفك." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 +#, fuzzy +msgid "That phone number already belongs to another user." +msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل." + #. TRANS: Message given saving valid SMS phone number that is to be confirmed. #: actions/smssettings.php:384 msgid "" @@ -3351,6 +4272,12 @@ msgid "" "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:413 +#, fuzzy +msgid "That is the wrong confirmation number." +msgstr "هذا ليس رقم هاتفك." + #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 msgid "SMS confirmation cancelled." @@ -3362,11 +4289,23 @@ msgstr "لا رمز تأكيد." msgid "That is not your phone number." msgstr "هذا ليس رقم هاتفك." +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "نمرة تليفون الـSMS" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:516 +#, fuzzy +msgid "Select a carrier" +msgstr "اختر وسمًا لترشيحه" + #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. #: actions/smssettings.php:525 @@ -3376,6 +4315,12 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +#, fuzzy +msgid "No code entered" +msgstr "لا محتوى!" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 #: lib/adminpanelaction.php:395 @@ -3394,6 +4339,11 @@ msgstr "" msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "مسار شعار غير صالح." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3426,6 +4376,16 @@ msgstr "بلّغ عن المسار" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذف إعدادت الموقع" + +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "لست مُشتركًا بأى أحد." + #. TRANS: Exception thrown when a subscription could not be stored on the server. #: actions/subedit.php:83 classes/Subscription.php:136 msgid "Could not save subscription." @@ -3435,6 +4395,11 @@ msgstr "تعذّر حفظ الاشتراك." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "لا ملف كهذا." + #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -3457,6 +4422,11 @@ msgstr "%1$s مشتركين, صفحه %2$d" msgid "These are the people who listen to your notices." msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." +#: actions/subscribers.php:67 +#, fuzzy, php-format +msgid "These are the people who listen to %s's notices." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + #: actions/subscribers.php:108 msgid "" "You have no subscribers. Try subscribing to people you know and they might " @@ -3504,6 +4474,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "لست مُشتركًا بأى أحد." + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "جابر" @@ -3512,6 +4487,11 @@ msgstr "جابر" msgid "SMS" msgstr "رسائل قصيرة" +#: actions/tag.php:69 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "الإشعارات الموسومه ب%s" + #: actions/tag.php:87 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" @@ -3531,6 +4511,11 @@ msgstr "" msgid "No ID argument." msgstr "لا مدخل هويه." +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "الوسوم" + #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" msgstr "ملف المستخدم الشخصي" @@ -3559,6 +4544,11 @@ msgstr "" msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك." + #: actions/tagrss.php:35 msgid "No such tag." msgstr "لا وسم كهذا." @@ -3575,12 +4565,29 @@ msgstr "اليوزر مش فى السبوره." msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "ما فيش طلب تسجيل دخول مطلوب." + +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "ألغِ الاشتراك" + #: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "المستخدم" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -3648,6 +4655,11 @@ msgstr "" msgid "Save user settings" msgstr "" +#: actions/userauthorization.php:105 +#, fuzzy +msgid "Authorize subscription" +msgstr "جميع الاشتراكات" + #: actions/userauthorization.php:110 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -3682,6 +4694,11 @@ msgstr "ارفض هذا الاشتراك" msgid "No authorization request!" msgstr "لا طلب استيثاق!" +#: actions/userauthorization.php:254 +#, fuzzy +msgid "Subscription authorized" +msgstr "رُفض الاشتراك" + #: actions/userauthorization.php:256 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -3720,6 +4737,11 @@ msgstr "" msgid "Profile URL ‘%s’ is for a local user." msgstr "" +#: actions/userauthorization.php:345 +#, fuzzy, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "الSource URL مش مظبوط." + #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." @@ -3754,11 +4776,27 @@ msgstr "%1$s اعضاء الجروپ, صفحه %2$d" msgid "Search for more groups" msgstr "" +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "المستخدم ليس عضوًا فى المجموعه." + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." 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 in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: lib/atomusernoticefeed.php:76 +#, fuzzy, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" + #: actions/version.php:75 #, php-format msgid "StatusNet %s" @@ -3771,6 +4809,11 @@ msgid "" "Inc. and contributors." msgstr "" +#: actions/version.php:163 +#, fuzzy +msgid "Contributors" +msgstr "كونيكشونات (Connections)" + #: actions/version.php:170 msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " @@ -3850,6 +4893,12 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "حجم غير صالح." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -3876,6 +4925,12 @@ msgstr "انضم" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "تعذر تحديث المجموعه." + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -3898,6 +4953,12 @@ msgstr "أنت ممنوع من إرسال رسائل مباشره." msgid "Could not insert message." msgstr "تعذّر إدراج الرساله." +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "تعذّر تحليل الرساله." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -3934,6 +4995,12 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +msgid "You are banned from posting notices on this site." +msgstr "أنت ممنوع من إرسال رسائل مباشره." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -3945,6 +5012,12 @@ msgstr "مشكله أثناء حفظ الإشعار." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "مشكله أثناء حفظ الإشعار." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1824 @@ -3966,6 +5039,12 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "ليس للمستخدم ملف شخصى." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." @@ -4037,6 +5116,12 @@ msgstr "تعذّر إنشاء المجموعه." msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "تعذّر حفظ الاشتراك." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" @@ -4083,6 +5168,40 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صفحه غير مُعنونة" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "ضبط الموقع الأساسي" + +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "الملف الشخصى ومسار الأصدقاء الزمني" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "شخصية" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "غير كلمه سرّك" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "كونيكشونات (Connections)" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -4094,6 +5213,14 @@ msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "ضبط الموقع الأساسي" +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "إداري" + #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:478 #, php-format @@ -4101,6 +5228,13 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "ادعُ" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -4119,12 +5253,51 @@ msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ مجموعه جديدة" +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "سجّل" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:501 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "لُج إلى الموقع" + +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "لُج" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" msgid "Help me!" msgstr "مساعدة" +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "مساعدة" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "ابحث عن أشخاص أو نص" + +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "ابحث" + #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 @@ -4141,6 +5314,12 @@ msgstr "المشاهدات المحلية" msgid "Page notice" msgstr "إشعار الصفحة" +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "ضبط الموقع الأساسي" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -4176,6 +5355,30 @@ msgstr "المصدر" msgid "Contact" msgstr "اتصل" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "نبّه" + +#. TRANS: DT element for StatusNet software license. +#: lib/action.php:839 +#, fuzzy +msgid "StatusNet software license" +msgstr "رخصه محتوى الموقع" + +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." +"broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4228,6 +5431,12 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +#, fuzzy +msgid "Pagination" +msgstr "المنظمه" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1259 @@ -4260,6 +5469,12 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + #. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." @@ -4270,6 +5485,12 @@ msgstr "التغييرات مش مسموحه للـ لوحه دى." msgid "showForm() not implemented." msgstr "" +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "المستخدم ليس مُسكتًا." + #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 @@ -4281,21 +5502,66 @@ msgstr "تعذّر حذف إعدادات التصميم." msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "الموقع" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "ضبط التصميم" +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "التصميم" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "ضبط المسارات" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "ضبط التصميم" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "ضبط التصميم" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "إشعار الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4337,16 +5603,46 @@ msgstr "" msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +#, fuzzy +msgid "Edit application" +msgstr "OAuth applications" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +#, fuzzy +msgid "Icon for this application" +msgstr "ما فيش application زى كده." + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "اوصف الapplication بتاعتك" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "اوصف الapplication بتاعتك" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "انت مش بتملك الapplication دى." + #. TRANS: Form input field label. #: lib/applicationeditform.php:217 msgid "Source URL" msgstr "Source URL" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "انت مش بتملك الapplication دى." + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" @@ -4429,6 +5725,12 @@ msgstr "المؤلف" msgid "Provider" msgstr "المزود" +#. TRANS: Title. +#: lib/attachmentnoticesection.php:68 +#, fuzzy +msgid "Notices where this attachment appears" +msgstr "وسوم هذا المرفق" + #. TRANS: Title. #: lib/attachmenttagcloudsection.php:49 msgid "Tags for this attachment" @@ -4459,6 +5761,26 @@ msgstr "اكتمل الأمر" msgid "Command failed" msgstr "فشل الأمر" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "لا ملف بهذه الهويه." + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "ليس للمستخدم إشعار أخير" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "تعذّر إيجاد المستخدم الهدف." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4476,6 +5798,13 @@ msgstr "" msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "أرسل التنبيه" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4491,6 +5820,12 @@ msgstr "" "المشتركون: %2$s\n" "الإشعارات: %3$s" +#. TRANS: Text shown when a notice has been marked as favourite successfully. +#: lib/command.php:314 +#, fuzzy +msgid "Notice marked as fave." +msgstr "هذا الإشعار مفضله مسبقًا!" + #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:360 @@ -4546,6 +5881,19 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +#: lib/command.php:517 +#, fuzzy +msgid "Error sending direct message." +msgstr "أنت ممنوع من إرسال رسائل مباشره." + +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "الإشعار من %s مكرر" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -4558,6 +5906,13 @@ msgstr "خطأ تكرار الإشعار." msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "رُد على رساله %s" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -4593,11 +5948,36 @@ msgstr "" 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:724 lib/command.php:750 +#, fuzzy +msgid "Command not yet implemented." +msgstr "اكتمل الأمر" + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +#, fuzzy +msgid "Notification off." +msgstr "لا رمز تأكيد." + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +#, fuzzy +msgid "Notification on." +msgstr "لا رمز تأكيد." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +#, fuzzy +msgid "Can't turn on notification." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -4716,6 +6096,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "لا رمز تأكيد." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4744,6 +6129,11 @@ msgstr "" msgid "Connections" msgstr "كونيكشونات (Connections)" +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "OAuth applications" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "خطأ قاعده بيانات" @@ -4822,6 +6212,11 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "اوصف الapplication بتاعتك" + #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" @@ -4917,16 +6312,31 @@ msgstr "المجموعات الأكثر أعضاءً" msgid "Groups with most posts" msgstr "المجموعات الأكثر مرسلات" +#: lib/grouptagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s group's notices" +msgstr "عدّل خصائص مجموعه %s" + #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" +#: lib/imagefile.php:72 +#, fuzzy +msgid "Unsupported image file format." +msgstr "نسق غير مدعوم." + #: lib/imagefile.php:88 #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s." +#: lib/imagefile.php:93 +#, fuzzy +msgid "Partial upload." +msgstr "رُفع الأفتار." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." @@ -4936,6 +6346,11 @@ msgstr "" msgid "Not an image or corrupt file." msgstr "" +#: lib/imagefile.php:122 +#, fuzzy +msgid "Lost our file." +msgstr "لا ملف كهذا." + #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" msgstr "نوع ملف غير معروف" @@ -4962,6 +6377,11 @@ msgstr "مصدر الـinbox مش معروف %d." msgid "Leave" msgstr "غادر" +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "اسم مستخدم أو كلمه سر غير صالحه." + #: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4989,6 +6409,12 @@ msgid "" "%s\n" msgstr "" +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, fuzzy, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + #: lib/mail.php:248 #, php-format msgid "" @@ -5018,6 +6444,12 @@ msgstr "" msgid "Bio: %s" msgstr "عن نفسك: %s" +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:304 +#, fuzzy, php-format +msgid "New email address for posting to %s" +msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم." + #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -5038,6 +6470,12 @@ msgstr "" msgid "%s status" msgstr "حاله %s" +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:460 +#, fuzzy +msgid "SMS confirmation" +msgstr "لا رمز تأكيد." + #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:463 #, php-format @@ -5093,6 +6531,12 @@ msgid "" "%5$s\n" msgstr "" +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." + #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -5157,6 +6601,11 @@ msgid "" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +#: lib/mailbox.php:89 +#, fuzzy +msgid "Only the user can read their own mailboxes." +msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله." + #: lib/mailbox.php:139 msgid "" "You have no private messages. You can send private message to engage other " @@ -5175,6 +6624,11 @@ msgstr "تعذّر تحليل الرساله." msgid "Not a registered user." msgstr "ليس مستخدمًا مسجلًا." +#: lib/mailhandler.php:46 +#, fuzzy +msgid "Sorry, that is not your incoming email address." +msgstr "هذا ليس عنوان بريدك الإلكترونى." + #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." msgstr "" @@ -5267,6 +6721,12 @@ msgstr "إلى" msgid "Available characters" msgstr "المحارف المتوفرة" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "أرسل" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "أرسل إشعارًا" @@ -5359,6 +6819,11 @@ msgstr "نبّه هذا المستخدم" msgid "Nudge" msgstr "نبّه" +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "أرسل رساله مباشره إلى هذا المستخدم" + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -5408,6 +6873,11 @@ msgstr "صندوق الصادر" msgid "Your sent messages" msgstr "رسائلك المُرسلة" +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "ليس للمستخدم إشعار أخير" + #. TRANS: Displayed as version information for a plugin if no version information was found. #: lib/plugin.php:116 msgid "Unknown" @@ -5486,10 +6956,20 @@ msgstr "نعم" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "صندوق الوارد" + #: lib/sandboxform.php:78 msgid "Sandbox this user" msgstr "أضف هذا المستخدم إلى صندوق الرمل" @@ -5593,6 +7073,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "فشل تحديث الأفتار." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5629,6 +7116,11 @@ msgstr "خطأ أثناء منع الحجب." msgid "Top posters" msgstr "أعلى المرسلين" +#: lib/unsandboxform.php:69 +#, fuzzy +msgid "Unsandbox" +msgstr "أزل هذا المستخدم من صندوق الرمل" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "أزل هذا المستخدم من صندوق الرمل" @@ -5681,6 +7173,17 @@ msgstr "رسالة" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "ملف المستخدم الشخصي" + +#: lib/userprofile.php:366 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "الإداريون" + #: lib/userprofile.php:367 msgctxt "role" msgid "Moderator" @@ -5769,16 +7272,22 @@ msgstr "قبل سنه تقريبًا" msgid "%s is not a valid color!" msgstr "%s ليس لونًا صحيحًا!" +#: lib/webcolor.php:123 +#, fuzzy, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "%s ليس لونًا صحيحًا!" + #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "ما فيش ID متحدد لليوزر." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 8fa3289820..450230e476 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:15+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:37+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -269,6 +269,23 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "Грешка при записване настройките за Twitter" + +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Грешка при обновяване на потребителя." + #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Не можете да блокирате себе си!" @@ -359,6 +376,11 @@ msgstr "Грешка при спиране на проследяването — msgid "You cannot unfollow yourself." msgstr "Не можете да спрете да следите себе си." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "Трябва да се дадат два идентификатора или имена на потребители." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Целевият потребител не беше открит." @@ -445,6 +467,12 @@ msgstr "Групата не е открита." msgid "You are already a member of that group." msgstr "Вече членувате в тази група." +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#, fuzzy +msgid "You have been blocked from that group by the admin." +msgstr "Не сте блокирали този потребител." + #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 @@ -470,6 +498,12 @@ msgstr "Грешка при създаване на групата." msgid "%s's groups" msgstr "Групи на %s" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Групи, в които участва %s" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -482,10 +516,20 @@ msgstr "Групи на %s" msgid "groups on %s" msgstr "групи в %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Качване на файл" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Неправилен размер." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -512,6 +556,11 @@ msgstr "Неправилно име или парола!" msgid "Database error deleting OAuth application user." msgstr "Да не се изтрива приложението" +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Грешка в базата от данни — отговор при вмъкването: %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -682,6 +731,11 @@ msgstr "Повторения на %s" msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "Методът в API все още се разработва." @@ -856,6 +910,11 @@ msgstr "Блокирани за %s" msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s и приятели, страница %2$d" +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Списък с потребителите в тази група." + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" @@ -888,6 +947,12 @@ msgstr "Кодът за потвърждение не е открит." msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "Неразпознат вид адрес %s" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -1035,10 +1100,27 @@ msgstr "" msgid "Delete this user" msgstr "Изтриване на този потребител" +#. TRANS: Message used as title for design settings for the site. +#. TRANS: Link description in user account settings menu. +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#, fuzzy +msgid "Design" +msgstr "Версия" + #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" msgstr "" +#: actions/designadminpanel.php:331 +#, fuzzy +msgid "Invalid logo URL." +msgstr "Неправилен размер." + +#: actions/designadminpanel.php:335 +#, fuzzy, php-format +msgid "Theme not available: %s." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Смяна на логото" @@ -1047,10 +1129,25 @@ msgstr "Смяна на логото" msgid "Site logo" msgstr "Лого на сайта" +#: actions/designadminpanel.php:456 +#, fuzzy +msgid "Change theme" +msgstr "Промяна" + #: actions/designadminpanel.php:473 msgid "Site theme" msgstr "Път до сайта" +#: actions/designadminpanel.php:474 +#, fuzzy +msgid "Theme for the site." +msgstr "Излизане от сайта" + +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Нова бележка" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -1083,6 +1180,16 @@ msgstr "Вкл." msgid "Off" msgstr "Изкл." +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +#, fuzzy +msgid "Turn background image on or off." +msgstr "Смяна на изображението за фон" + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Смяна на изображението за фон" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Смяна на цветовете" @@ -1135,6 +1242,11 @@ msgstr "" msgid "Save" msgstr "Запазване" +#: actions/designadminpanel.php:699 lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Запазване настройките на сайта" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Тази бележка не е отбелязана като любима!" @@ -1161,10 +1273,25 @@ msgstr "За да редактирате приложение, трябва да msgid "No such application." msgstr "Няма такова приложение." +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Използвайте тази бланка за създаване на нова група." + #: actions/editapplication.php:177 actions/newapplication.php:159 msgid "Name is required." msgstr "Името е задължително." +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Пълното име е твърде дълго (макс. 255 знака)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "Описанието е задължително." @@ -1173,10 +1300,25 @@ msgstr "Описанието е задължително." msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Адресът на личната страница не е правилен URL." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +#, fuzzy +msgid "Organization is required." +msgstr "Описанието е задължително." + #: actions/editapplication.php:206 actions/newapplication.php:191 msgid "Organization is too long (max 255 chars)." msgstr "Името на организацията е твърде дълго (макс. 255 знака)." +#: actions/editapplication.php:209 actions/newapplication.php:194 +#, fuzzy +msgid "Organization homepage is required." +msgstr "Описанието е задължително." + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" @@ -1185,6 +1327,11 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +#, fuzzy +msgid "Could not update application." +msgstr "Грешка при обновяване на групата." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1199,6 +1346,11 @@ msgstr "За да създавате група, трябва да сте вле msgid "You must be an admin to edit the group." msgstr "За да редактирате група, трябва да сте влезли." +#: actions/editgroup.php:158 +#, fuzzy +msgid "Use this form to edit the group." +msgstr "Използвайте тази бланка за създаване на нова група." + #: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format msgid "description is too long (max %d chars)." @@ -1213,6 +1365,12 @@ msgstr "Неправилен псевдоним: \"%s\"" msgid "Could not update group." msgstr "Грешка при обновяване на групата." +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +#, fuzzy +msgid "Could not create aliases." +msgstr "Грешка при отбелязване като любима." + #: actions/editgroup.php:280 msgid "Options saved." msgstr "Настройките са запазени." @@ -1306,6 +1464,14 @@ msgstr "Изпратете писмо до този адрес за публик msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "Ново" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -1326,6 +1492,12 @@ msgstr "Изпращане на писмо при отбелязване на м msgid "Send me email when someone sends me a private message." msgstr "Изпращане на писмо при ново лично съобщение." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Изпращане на писмо при ново лично съобщение." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." @@ -1398,6 +1570,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Грешен IM адрес." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1480,6 +1658,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "Любими бележки на %s" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1515,6 +1698,11 @@ msgstr "Няма прикачени файлове." msgid "Not expecting this response!" msgstr "Неочакван отговор." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Потребителят, когото проследявате, не съществува. " + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Можете да ползвате локален абонамент!" @@ -1527,6 +1715,21 @@ msgstr "Потребителят е забранил да се абонират msgid "You are not authorized." msgstr "Не сте абонирани за никого." +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." + +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната версия на протокола OMB." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Грешка при обновяване на отдалечен профил" + #: actions/getfile.php:79 msgid "No such file." msgstr "Няма такъв файл." @@ -1535,6 +1738,11 @@ msgstr "Няма такъв файл." msgid "Cannot read file." msgstr "Грешка при четене на файла." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Неправилен размер." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1543,6 +1751,11 @@ msgstr "" msgid "You cannot grant user roles on this site." msgstr "Не можете да заглушавате потребители на този сайт." +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Потребителят вече е заглушен." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1594,6 +1807,11 @@ msgstr "Да не се блокира този потребител" msgid "Block this user from this group" msgstr "Разблокиране на потребителя от групата" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "Разблокиране на потребителя от групата" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "Липсва ID." @@ -1602,12 +1820,23 @@ msgstr "Липсва ID." msgid "You must be logged in to edit a group." msgstr "За да редактирате група, трябва да сте влезли." +#: actions/groupdesignsettings.php:144 +#, fuzzy +msgid "Group design" +msgstr "Групи" + #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Грешка при обновяване на потребителя." + #: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Настройките на е-поща са запазени." @@ -1623,6 +1852,11 @@ msgid "" msgstr "" "Можете да качите личен аватар тук. Максималната големина на файла е %s." +#: actions/grouplogo.php:365 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Изберете квадратна област от изображението за аватар" + #: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Лотого е обновено." @@ -1665,6 +1899,11 @@ msgctxt "TOOLTIP" msgid "Block this user" msgstr "" +#: actions/groupmembers.php:498 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "За да редактирате групата, трябва да сте й администратор." + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1686,6 +1925,12 @@ msgstr "" msgid "%s timeline" msgstr "Поток на %s" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1710,6 +1955,15 @@ msgstr "" msgid "Create a new group" msgstr "Създаване на нова група" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " + #: actions/groupsearch.php:58 msgid "Group search" msgstr "Търсене на групи" @@ -1733,6 +1987,11 @@ msgid "" "action.newgroup%%) yourself!" msgstr "" +#: actions/groupunblock.php:91 +#, fuzzy +msgid "Only an admin can unblock group members." +msgstr "Само администратор може да блокира членове от групата." + #: actions/groupunblock.php:95 msgid "User is not blocked from group." msgstr "Потребителят вече е блокиран за групата." @@ -1758,6 +2017,12 @@ msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 +#, fuzzy +msgid "IM is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1864,6 +2129,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Грешен IM адрес." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Грешка при изтриване потвърждението по е-поща." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1967,6 +2238,13 @@ msgstr "Лично съобщение" msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Прати" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -2035,6 +2313,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "За да се присъедините към група, трябва да сте влезли." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Няма псевдоним." + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" @@ -2100,7 +2383,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Частен" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2166,6 +2449,11 @@ msgstr "Вече сте влезли." msgid "Incorrect username or password." msgstr "Грешно име или парола." +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Забранено." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Вход" @@ -2194,6 +2482,44 @@ msgstr "" "За по-голяма сигурност, моля въведете отново потребителското си име и парола " "при промяна на настройките." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "Вход с име и парола" + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " + +#: actions/makeadmin.php:92 +#, fuzzy +msgid "Only an admin can make another user an admin." +msgstr "Само администратор може да блокира членове от групата." + +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "Потребителят вече е блокиран за групата." + +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/makeadmin.php:146 +#, fuzzy, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "За да редактирате групата, трябва да сте й администратор." + +#: actions/microsummary.php:69 +#, fuzzy +msgid "No current status." +msgstr "Няма резултати." + #: actions/newapplication.php:52 msgid "New Application" msgstr "Ново приложение" @@ -2202,6 +2528,21 @@ msgstr "Ново приложение" msgid "You must be logged in to register an application." msgstr "За да редактирате приложение, трябва да сте влезли." +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Използвайте тази бланка за създаване на нова група." + +#: actions/newapplication.php:176 +#, fuzzy +msgid "Source URL is required." +msgstr "Името е задължително." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Грешка при отбелязване като любима." + #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -2242,6 +2583,13 @@ msgstr "" msgid "Message sent" msgstr "Съобщението е изпратено" +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Прякото съобщение до %s е изпратено." + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Грешка в Ajax" @@ -2321,6 +2669,16 @@ msgstr "Няма такова приложение." msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, fuzzy, php-format +msgid "You have not registered any applications yet." +msgstr "Не сте собственик на това приложение." + +#: actions/oauthconnectionssettings.php:72 +#, fuzzy +msgid "Connected applications" +msgstr "Изтриване на приложението" + #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" @@ -2351,6 +2709,12 @@ msgstr "Потребителят няма профил." msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "вид съдържание " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2403,6 +2767,16 @@ msgstr "" msgid "URL shortening service is too long (max 50 chars)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Не е указана група." + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Не е указана бележка." + #: actions/otp.php:90 msgid "No login token requested." msgstr "Няма заявка за одобрение." @@ -2437,6 +2811,11 @@ msgstr "Смяна на паролата" msgid "Change your password." msgstr "Смяна на паролата." +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Паролата е записана." + #: actions/passwordsettings.php:104 msgid "Old password" msgstr "Стара парола" @@ -2495,11 +2874,26 @@ msgstr "Пътища" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #: actions/pathsadminpanel.php:163 #, php-format msgid "Avatar directory not writable: %s." msgstr "Директория на аватара" +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Директория на фона" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2544,6 +2938,21 @@ msgstr "" msgid "Theme" msgstr "" +#: actions/pathsadminpanel.php:264 +#, fuzzy +msgid "Theme server" +msgstr "SSL-сървър" + +#: actions/pathsadminpanel.php:268 +#, fuzzy +msgid "Theme path" +msgstr "Път до сайта" + +#: actions/pathsadminpanel.php:272 +#, fuzzy +msgid "Theme directory" +msgstr "Директория на аватара" + #: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Аватари" @@ -2630,6 +3039,11 @@ msgstr "Търсене на хора" msgid "Not a valid people tag: %s." msgstr "Неправилен адрес на е-поща." +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Бележки с етикет %s, страница %d" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Неправилен размер." @@ -2752,6 +3166,16 @@ msgstr "Името на езика е твърде дълго (може да е msgid "Invalid tag: \"%s\"" msgstr "Неправилен етикет: \"%s\"" +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "Грешка при обновяване записа на потребител." + +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Грешка при запазване етикетите." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." @@ -2854,6 +3278,11 @@ msgid "" "one!" msgstr "" +#: actions/publictagcloud.php:134 +#, fuzzy +msgid "Tag cloud" +msgstr "Смяна на цветовете" + #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Вече сте влезли!" @@ -2882,6 +3311,15 @@ msgstr "Кодът за потвърждение е твърде стар. За msgid "Could not update user with confirmed email address." msgstr "Грешка при обновяване на потребител с потвърден email адрес." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"На е-пощата, с която сте регистрирани са изпратени инструкции за " +"възстановяване на паролата." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" @@ -2974,6 +3412,11 @@ msgstr "Новата парола е запазена. Влязохте успе msgid "Sorry, only invited people can register." msgstr "" +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка в кода за потвърждение." + #: actions/register.php:119 msgid "Registration successful" msgstr "Записването е успешно." @@ -3053,6 +3496,14 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." + #: actions/register.php:583 #, php-format msgid "" @@ -3148,6 +3599,11 @@ msgstr "" msgid "That’s a local profile! Login to subscribe." msgstr "Това е локален профил! Влезте, за да се абонирате." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не е получен token за одобрение." + #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." msgstr "Само влезли потребители могат да повтарят бележки." @@ -3178,6 +3634,11 @@ msgstr "Повторено!" msgid "Replies to %s" msgstr "Отговори на %s" +#: actions/replies.php:128 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Отговори до %1$s в %2$s!" + #: actions/replies.php:145 #, php-format msgid "Replies feed for %s (RSS 1.0)" @@ -3219,6 +3680,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Отговори до %1$s в %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Не можете да заглушавате потребители на този сайт." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Потребител без съответстващ профил" + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -3301,6 +3772,11 @@ msgstr "Статистики" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +#, fuzzy +msgid "Application actions" +msgstr "Данни за приложението" + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" @@ -3325,12 +3801,22 @@ msgstr "" msgid "Access token URL" msgstr "" +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Автор" + #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Наистина ли искате да изтриете тази бележка?" + #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" @@ -3408,6 +3894,11 @@ msgstr "Бележка" msgid "Aliases" msgstr "Псевдоними" +#: actions/showgroup.php:302 +#, fuzzy +msgid "Group actions" +msgstr "Потребителски действия" + #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -3491,6 +3982,11 @@ msgstr "Съобщение от %1$s в %2$s" msgid "Notice deleted." msgstr "Бележката е изтрита." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Бележки с етикет %s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -3586,6 +4082,11 @@ msgstr "Неправилен адрес на е-поща." msgid "Unknown language \"%s\"." msgstr "Непознат език \"%s\"." +#: actions/siteadminpanel.php:165 +#, fuzzy +msgid "Minimum text limit is 0 (unlimited)." +msgstr "Минималното ограничение на текста е 140 знака." + #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." msgstr "" @@ -3622,6 +4123,11 @@ msgstr "" msgid "Contact email address for your site" msgstr "Адрес на е-поща за контакт със сайта" +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Местоположение" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Часови пояс по подразбиране" @@ -3662,6 +4168,16 @@ msgstr "" msgid "Site Notice" msgstr "Бележки" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ново съобщение" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Грешка при записване настройките за Twitter" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" @@ -3690,6 +4206,12 @@ msgstr "Настройки за SMS" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +#, fuzzy +msgid "SMS is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3715,6 +4237,13 @@ msgstr "Код за потвърждение" msgid "Enter the code you received on your phone." msgstr "Въведете кода, който получихте по телефона." +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Потвърждаване" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3739,6 +4268,12 @@ msgstr "" "Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " "такси от оператора." +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Настройките са запазени." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -3785,6 +4320,12 @@ msgstr "Потвърждение за SMS" msgid "That is not your phone number." msgstr "Това не е вашият телефонен номер." +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Телефонен номер за SMS" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -3817,6 +4358,11 @@ msgstr "Не е въведен код." msgid "Snapshots" msgstr "" +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Промяна настройките на сайта" + #: actions/snapshotadminpanel.php:127 msgid "Invalid snapshot run value." msgstr "" @@ -3861,6 +4407,11 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Запазване настройките на сайта" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Не сте абонирани за този профил" @@ -3878,6 +4429,16 @@ msgstr "" msgid "No such profile." msgstr "Няма такъв профил." +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Не сте абонирани за този профил" + +#: actions/subscribe.php:145 +#, fuzzy +msgid "Subscribed" +msgstr "Абониране" + #: actions/subscribers.php:50 #, php-format msgid "%s subscribers" @@ -3981,6 +4542,11 @@ msgstr "Емисия с бележки на %s (Atom)" msgid "No ID argument." msgstr "Липсват аргументи return-to." +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Етикети" + #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" msgstr "Потребителски профил" @@ -3990,6 +4556,11 @@ msgstr "Потребителски профил" msgid "Photo" msgstr "Снимка" +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "Етикети" + #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " @@ -4029,6 +4600,11 @@ msgstr "Потребителят не е заглушен." msgid "No profile ID in request." msgstr "Не е открит профил с такъв идентификатор." +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Отписване" + #: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" @@ -4064,6 +4640,11 @@ msgstr "" msgid "Profile" msgstr "Профил" +#: actions/useradminpanel.php:223 +#, fuzzy +msgid "Bio Limit" +msgstr "Ограничения" + #: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" @@ -4072,10 +4653,27 @@ msgstr "" msgid "New users" msgstr "Нови потребители" +#: actions/useradminpanel.php:236 +#, fuzzy +msgid "New user welcome" +msgstr "Нови потребители" + #: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Всички абонаменти" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"Автоматично абониране за всеки, който се абонира за мен (подходящо за " +"ботове)." + #: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Покани" @@ -4096,6 +4694,16 @@ msgstr "" msgid "Authorize subscription" msgstr "Одобряване на абонамента" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -4115,6 +4723,11 @@ msgstr "Абониране за този потребител" msgid "Reject" msgstr "Охвърляне" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "Абонаменти на %s" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Няма заявка за одобрение." @@ -4123,10 +4736,30 @@ msgstr "Няма заявка за одобрение." msgid "Subscription authorized" msgstr "Абонаментът е одобрен" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Абонаментът е отказан" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -4152,6 +4785,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Грешка при четене адреса на аватара '%s'" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Грешен вид изображение за '%s'" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки на профила" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -4288,6 +4936,30 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Неправилен размер." + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Профил на групата" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Грешка при обновяване на групата." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Профил на групата" + #: classes/Group_member.php:108 lib/joinform.php:114 msgid "Join" msgstr "Присъединяване" @@ -4299,11 +4971,30 @@ msgstr "Присъединяване" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Грешка при обновяване на групата." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Грешка при отбелязване като любима." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Грешка при изпращане на прякото съобщение" + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -4327,6 +5018,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Грешка при вмъкване на аватар" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблем при записване на бележката." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -4340,6 +5037,16 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +#: classes/Notice.php:283 +#, fuzzy +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:291 msgid "You are banned from posting notices on this site." @@ -4356,6 +5063,12 @@ msgstr "Проблем при записване на бележката." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Проблем при записване на бележката." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1824 @@ -4377,16 +5090,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Потребителят няма профил." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Грешка при запазване на етикетите." +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Потребителят е забранил да се абонирате за него." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Не сте абонирани!" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "Потребителят ви е блокирал." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Не сте абонирани!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -4458,6 +5195,12 @@ msgstr "Смяна на паролата" msgid "Change email handling" msgstr "Промяна обработката на писмата" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Потребителски профил" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -4479,6 +5222,12 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Неозаглавена страница" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "Основна настройка на сайта" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -4514,6 +5263,14 @@ msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Настройки" + #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:478 #, php-format @@ -4521,6 +5278,13 @@ msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Покани" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -4556,6 +5320,13 @@ msgctxt "MENU" msgid "Login" msgstr "Вход" +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:507 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Помощ" + #: lib/action.php:510 msgctxt "MENU" msgid "Help" @@ -4572,11 +5343,24 @@ msgctxt "MENU" msgid "Search" msgstr "Търсене" +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +#, fuzzy +msgid "Site notice" +msgstr "Нова бележка" + #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 msgid "Local views" msgstr "" +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +#, fuzzy +msgid "Page notice" +msgstr "Нова бележка" + #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:778 msgid "Secondary site navigation" @@ -4626,6 +5410,19 @@ msgstr "Табелка" msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." +"broughtby%%](%%site.broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4720,6 +5517,31 @@ msgstr "" msgid "You cannot make changes to this site." msgstr "Не можете да променяте този сайт." +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Записването не е позволено." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Командата все още не се поддържа." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Командата все още не се поддържа." + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Грешка при записване настройките за Twitter" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:337 msgid "Basic site configuration" @@ -4736,21 +5558,53 @@ msgstr "Сайт" msgid "Design configuration" msgstr "Настройка на оформлението" +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Версия" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "Настройка на пътищата" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "Настройка на оформлението" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:369 msgid "Paths configuration" msgstr "Настройка на пътищата" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "Настройка на оформлението" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Изтриване на бележката" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Настройка на пътищата" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4792,6 +5646,24 @@ msgstr "" msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +#, fuzzy +msgid "Edit application" +msgstr "Редактиране на приложението" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +#, fuzzy +msgid "Icon for this application" +msgstr "Да не се изтрива приложението" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Опишете групата или темата в до %d букви" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" @@ -4802,6 +5674,24 @@ msgstr "Изтриване на приложението" msgid "URL of the homepage of this application" msgstr "Не сте собственик на това приложение." +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Изходен код" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "Не сте собственик на това приложение." + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Адрес на страница, блог или профил в друг сайт на групата" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4858,6 +5748,19 @@ msgstr "" msgid "Approved %1$s - \"%2$s\" access." msgstr "" +#. TRANS: Button label +#: lib/applicationlist.php:158 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Премахване" + +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +#, fuzzy +msgid "Attachments" +msgstr "Няма прикачени файлове." + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:265 msgid "Author" @@ -4873,6 +5776,22 @@ msgstr "Доставчик" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "Няма прикачени файлове." + +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Паролата е записана." + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Паролата е записана." + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4890,6 +5809,26 @@ msgstr "Командата е изпълнена" msgid "Command failed" msgstr "Грешка при изпълнение на командата" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "Не е открита бележка с такъв идентификатор." + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Потребителят няма последна бележка" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Грешка при обновяване на потребител с потвърден email адрес." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4907,6 +5846,13 @@ msgstr "За съжаление тази команда все още не се msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Изпратено е побутване на %s" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4989,16 +5935,50 @@ msgstr "" msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Бележката от %s е повторена" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Грешка при повтаряне на бележката." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Отговорът до %s е изпратен" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." msgstr "Грешка при записване на бележката." +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +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:664 +#, fuzzy +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:672 @@ -5006,6 +5986,13 @@ msgstr "Грешка при записване на бележката." 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:694 lib/command.php:804 +#, fuzzy +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:705 @@ -5157,6 +6144,11 @@ msgstr "" msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "Влизане в сайта" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" @@ -5169,6 +6161,16 @@ msgstr "Бележки през месинджър (IM)" msgid "Updates by SMS" msgstr "Бележки през SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Свързване" + +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "Изтриване на приложението" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Грешка в базата от данни" @@ -5363,6 +6365,11 @@ msgstr "Страницата не е достъпна във вида медия msgid "Unsupported image file format." msgstr "Форматът на файла с изображението не се поддържа." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Може да качите лого за групата ви." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Частично качване на файла." @@ -5513,6 +6520,12 @@ msgstr "Състояние на %s" msgid "SMS confirmation" msgstr "Потвърждение за SMS" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Очаква се потвърждение за този телефонен номер." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -5599,6 +6612,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "%s (@%s) отбеляза бележката ви като любима" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -5657,6 +6675,11 @@ msgstr "Това не е вашият входящ адрес." msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Форматът на файла с изображението не се поддържа." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5740,6 +6763,12 @@ msgstr "До" msgid "Available characters" msgstr "Налични знаци" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Прати" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Изпращане на бележка" @@ -5796,6 +6825,11 @@ msgstr "З" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#: lib/noticelist.php:453 +#, fuzzy +msgid "at" +msgstr "Път" + #: lib/noticelist.php:502 msgid "web" msgstr "" @@ -5907,6 +6941,11 @@ msgstr "Абонати" msgid "All subscribers" msgstr "Всички абонати" +#: lib/profileaction.php:191 +#, fuzzy +msgid "User ID" +msgstr "Потребител" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Участник от" @@ -5960,10 +6999,25 @@ msgstr "Да" msgid "Repeat this notice" msgstr "Повтаряне на тази бележка" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Списък с потребителите в тази група." + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Входящи" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Разблокиране на този потребител" + #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" @@ -6063,6 +7117,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Неуспешно обновяване на аватара." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6103,6 +7164,16 @@ msgstr "Най-често пишещи" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Разблокиране на този потребител" + +#: lib/unsilenceform.php:67 +#, fuzzy +msgid "Unsilence" +msgstr "Заглушаване" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "Заглушаване на този потребител." @@ -6143,6 +7214,11 @@ msgstr "Изпращате на пряко съобщение до този по msgid "Message" msgstr "Съобщение" +#: lib/userprofile.php:326 +#, fuzzy +msgid "Moderate" +msgstr "Модератор" + #: lib/userprofile.php:364 msgid "User role" msgstr "Потребителска роля" @@ -6231,14 +7307,15 @@ msgstr "%s не е допустим цвят! Използвайте 3 или 6 #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Не е указана група." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index ca605d1a5c..b727faea9c 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:16+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -175,6 +175,15 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "" +"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " +"gentañ da embann un dra !" + #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" @@ -371,6 +380,11 @@ msgstr "" msgid "You cannot unfollow yourself." msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "Rankout a reoc'h reiñ daou id pe lesanv." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Diposubl eo termeniñ an implijer mammenn." @@ -379,6 +393,13 @@ msgstr "Diposubl eo termeniñ an implijer mammenn." msgid "Could not find target user." msgstr "Diposubl eo kavout an implijer pal." +#: actions/apigroupcreate.php:168 actions/editgroup.php:186 +#: actions/newgroup.php:126 actions/profilesettings.php:215 +#: actions/register.php:212 +#, fuzzy +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" + #: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 @@ -531,6 +552,11 @@ msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." msgid "Invalid nickname / password!" msgstr "Lesanv / ger tremen direizh !" +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Arabat eo dilemel ar poellad-mañ" + #: actions/apioauthauthorize.php:185 msgid "Database error inserting OAuth application user." msgstr "" @@ -675,6 +701,11 @@ msgstr "%1$s statud pennroll da %2$s / %2$s." msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Hizivadennoù a veneg %2$s" +#: actions/apitimelinementions.php:131 +#, fuzzy, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s statud pennroll da %2$s / %2$s." + #: actions/apitimelinepublic.php:197 actions/publicrss.php:103 #, php-format msgid "%s public timeline" @@ -1399,6 +1430,20 @@ msgstr "Ouzhpennañ" msgid "Incoming email" msgstr "Postel o tont" +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:159 actions/smssettings.php:178 +#, fuzzy +msgid "Send email to this address to post new notices." +msgstr "Chomlec'h postel nevez evit embann e %s" + +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:168 actions/smssettings.php:186 +#, fuzzy +msgid "Make a new email address for posting to; cancels the old one." +msgstr "Chomlec'h postel nevez evit embann e %s" + #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:172 actions/smssettings.php:189 @@ -1411,6 +1456,12 @@ msgstr "Nevez" msgid "Email preferences" msgstr "Penndibaboù ar posteloù" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:184 +#, fuzzy +msgid "Send me notices of new subscriptions through email." +msgstr "Kas din an alioù dre Jabber/GTalk." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." @@ -1451,6 +1502,12 @@ msgstr "Enrollet eo bet an arventennoù postel." msgid "No email address." msgstr "Chomlec'h postel ebet." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "Diposubl eo implijout an ID Jabber-mañ" + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 @@ -1462,6 +1519,12 @@ msgstr "N'eo ket ur chomlec'h postel reizh." msgid "That is already your email address." msgstr "Ho postel eo dija." +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:378 +#, fuzzy +msgid "That email address already belongs to another user." +msgstr "D'un implijer all eo an niverenn-mañ dija." + #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. @@ -1477,6 +1540,15 @@ msgid "" "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +#, fuzzy +msgid "No pending confirmation to cancel." +msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim." + #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:428 msgid "That is the wrong email address." @@ -1509,6 +1581,18 @@ msgstr "Chomlec'h postel ebet o tont." msgid "Couldn't update user record." msgstr "Dibosupl eo hizivaat doser an implijer." +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +#, fuzzy +msgid "Incoming email address removed." +msgstr "Chomlec'h postel ebet o tont." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +#, fuzzy +msgid "New incoming email address added." +msgstr "Chomlec'h postel ebet o tont." + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !" @@ -1541,6 +1625,15 @@ msgid "" "next to any notice you like." msgstr "" +#: actions/favorited.php:156 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" +"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " +"gentañ da embann un dra !" + #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 #, php-format @@ -1552,6 +1645,17 @@ msgstr "Alioù pennrollet eus %s" msgid "Updates favored by %1$s on %2$s!" msgstr "Hizivadennoù brientek gant %1$s war %2$s !" +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +#, fuzzy +msgid "Featured users" +msgstr "Diverkañ an implijer" + +#: actions/featured.php:71 +#, fuzzy, php-format +msgid "Featured users, page %d" +msgstr "Strollad, pajenn %d" + #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" @@ -1569,6 +1673,11 @@ msgstr "Ali ebet." msgid "No attachments." msgstr "N'eus restr stag ebet." +#: actions/file.php:51 +#, fuzzy +msgid "No uploaded attachments." +msgstr "N'eus restr stag ebet." + #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Ne oa ket gortozet ar respont-mañ !" @@ -1577,6 +1686,11 @@ msgstr "Ne oa ket gortozet ar respont-mañ !" msgid "User being listened to does not exist." msgstr "" +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#, fuzzy +msgid "You can use the local subscription!" +msgstr "Dibosupl eo dilemel ar c'houmanant." + #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." msgstr "An implijer-se en deus ho stanket evit en enskrivañ." @@ -1585,6 +1699,11 @@ msgstr "An implijer-se en deus ho stanket evit en enskrivañ." msgid "You are not authorized." msgstr "N'oc'h ket aotreet." +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Dibosupl eo kaout ur jedaouer reked." + #: actions/finishremotesubscribe.php:118 msgid "Remote service uses unknown version of OMB protocol." msgstr "" @@ -1668,10 +1787,20 @@ msgstr "Arabat stankañ an implijer-mañ eus ar strollad." msgid "Block this user from this group" msgstr "Stankañ an implijer-mañ eus ar strollad-se" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "Distankañ implijer ar strollad" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "ID ebet" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." + #: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "Design ar strollad" @@ -1701,6 +1830,11 @@ msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" +#: actions/grouplogo.php:365 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar" + #: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo hizivaet." @@ -1798,6 +1932,16 @@ msgstr "" msgid "Create a new group" msgstr "Krouiñ ur strollad nevez" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Klask tud e %%site.name%% dre o anv, o lec'hiadur pe o diduadennoù. " +"Dispartiañ termenoù ar c'hlask gant esaouennoù. Ret eo e vefe da nebeutañ 3 " +"arouezenn." + #: actions/groupsearch.php:58 msgid "Group search" msgstr "Klask strolladoù" @@ -1816,6 +1960,15 @@ msgstr "" "Ma ne gavoc'h ket ar strollad emaoc'h o klask, neuze e c'helloc'h [krouiñ " "anezhañ](%%action.newgroup%%)." +#: actions/groupsearch.php:85 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " +"gentañ da embann un dra !" + #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." msgstr "N'eus nemet ur merour a c'hell distankañ izili ur strollad." @@ -1889,6 +2042,18 @@ msgstr "Penndibaboù ar bostelerezh prim" msgid "Send me notices through Jabber/GTalk." msgstr "Kas din an alioù dre Jabber/GTalk." +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:169 +#, fuzzy +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:175 +#, fuzzy +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Kas din an alioù dre Jabber/GTalk." + #. TRANS: Checkbox label in IM preferences form. #: actions/imsettings.php:182 msgid "Publish a MicroID for my Jabber/GTalk address." @@ -1938,6 +2103,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "N'eo ket mat ar chomlec'h postelerezh prim." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -2018,6 +2189,12 @@ msgid "" "on the site. Thanks for growing the community!" msgstr "" +#: actions/invite.php:162 +#, fuzzy +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" + #: actions/invite.php:187 msgid "Email addresses" msgstr "Chomlec'hioù postel" @@ -2151,7 +2328,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Prevez" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2274,6 +2451,11 @@ msgstr "N'eus nemet ur merour a c'hall lakaat un implijer all da vezañ merour." msgid "%1$s is already an admin for group \"%2$s\"." msgstr "%1$s a zo dija merour ar strollad \"%2$s\"." +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Diposubl eo lakaat %1$s da merour ar strollad %2$s." + #: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." @@ -2362,6 +2544,16 @@ msgstr "Ali nevez" msgid "Notice posted" msgstr "Ali embannet" +#: actions/noticesearch.php:68 +#, fuzzy, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Klask tud e %%site.name%% dre o anv, o lec'hiadur pe o diduadennoù. " +"Dispartiañ termenoù ar c'hlask gant esaouennoù. Ret eo e vefe da nebeutañ 3 " +"arouezenn." + #: actions/noticesearch.php:78 msgid "Text search" msgstr "Klask testennoù" @@ -2378,11 +2570,25 @@ msgid "" "status_textarea=%s)!" msgstr "" +#: actions/noticesearch.php:124 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" +"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " +"gentañ da embann un dra !" + #: actions/noticesearchrss.php:96 #, php-format msgid "Updates with \"%s\"" msgstr "Hizivadenn gant \"%s\"" +#: actions/noticesearchrss.php:98 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Hizivadennoù merket gant %1$s e %2$s !" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -2425,6 +2631,16 @@ msgstr "" msgid "You are not a user of that application." msgstr "N'oc'h ket un implijer eus ar poellad-mañ." +#: actions/oauthconnectionssettings.php:186 +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." +msgstr "Dibosupl eo nullañ moned ar poellad : " + +#: actions/oauthconnectionssettings.php:198 +#, fuzzy +msgid "You have not authorized any applications to use your account." +msgstr "N'o peus enrollet poellad ebet evit poent." + #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" @@ -2438,12 +2654,25 @@ msgstr "N'en deus ket an ali a profil." msgid "%1$s's status on %2$s" msgstr "Statud %1$s war %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "seurt an danvez " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format msgid "Only %s URLs over plain HTTP please." msgstr "" +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#, fuzzy +msgid "Not a supported data format." +msgstr "Diembreget eo ar furmad-se." + #: actions/opensearch.php:64 msgid "People Search" msgstr "Klask tud" @@ -2472,14 +2701,44 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Design ar profil" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "Diskouez pe kuzhat designoù ar profil." +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." + #: actions/otp.php:69 msgid "No user ID specified." msgstr "N'eus bet diferet ID implijer ebet." +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "N'eus bet diferet ali ebet." + +#: actions/otp.php:90 +#, fuzzy +msgid "No login token requested." +msgstr "N'eus profil ID ebet er reked." + +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Fichenn direizh." + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Kevreañ d'al lec'hienn" + #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" @@ -2574,6 +2833,16 @@ msgstr "N'eus ket eus ar gaoz-se : %s." msgid "Avatar directory not writable: %s." msgstr "N'eus ket eus ar gaoz-se : %s." +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "N'eus ket eus ar gaoz-se : %s." + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "N'eus ket eus ar gaoz-se : %s." + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2654,6 +2923,16 @@ msgstr "Backgroundoù" msgid "Background server" msgstr "Servijer ar backgroundoù" +#: actions/pathsadminpanel.php:309 +#, fuzzy +msgid "Background path" +msgstr "Background" + +#: actions/pathsadminpanel.php:313 +#, fuzzy +msgid "Background directory" +msgstr "Servijer ar backgroundoù" + #: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" @@ -2833,6 +3112,11 @@ msgstr "Re hir eo ar bio (%d arouezenn d'ar muiañ)." msgid "Timezone not selected." msgstr "N'eo bet dibabet gwerzhid-eur ebet." +#: actions/profilesettings.php:241 +#, fuzzy +msgid "Language is too long (max 50 chars)." +msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." + #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" @@ -2909,6 +3193,17 @@ msgstr "" "Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " "gentañ da embann un dra !" +#: actions/public.php:242 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" +"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." + #: actions/public.php:247 #, php-format msgid "" @@ -3116,6 +3411,11 @@ msgid "" "link up to friends and colleagues. " msgstr "" +#: actions/register.php:432 +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" + #: actions/register.php:437 msgid "6 or more characters. Required." msgstr "6 arouezenn pe muioc'h. Rekis." @@ -3299,6 +3599,15 @@ msgstr "Gwazh respontoù evit %s (RSS 2.0)" msgid "Replies feed for %s (Atom)" msgstr "Gwazh respontoù evit %s (Atom)" +#: actions/replies.php:199 +#, fuzzy, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to them yet." +msgstr "" +"Hemañ eo al lanvad evit %s hag e vignoned met den n'en deus skrivet tra ebet " +"evit ar mare." + #: actions/replies.php:204 #, php-format msgid "" @@ -3330,6 +3639,11 @@ msgstr "n'en deus ket an implijer-mañ ar rol-se." msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, 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ñ." + #: actions/sandbox.php:72 msgid "User is already sandboxed." msgstr "Er poull-traezh emañ dija an implijer." @@ -3452,6 +3766,11 @@ msgstr "" msgid "%1$s's favorite notices, page %2$d" msgstr "Alioù karetañ %1$s, pajenn %2$d" +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "Diposupl eo krouiñ ar pennroll-mañ." + #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" @@ -3562,6 +3881,29 @@ msgstr "An holl izili" msgid "Created" msgstr "Krouet" +#: actions/showgroup.php:455 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" +"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." + +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" +"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." + #: actions/showgroup.php:489 msgid "Admins" msgstr "Merourien" @@ -3645,11 +3987,37 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" +#: actions/showstream.php:243 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" +"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." + +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" +"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." + #: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "Adkemeret eus %s" +#: actions/silence.php:65 actions/unsilence.php:65 +#, 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ñ." + #: actions/silence.php:72 msgid "User is already silenced." msgstr "Lakaet eo bet da mut an implijer-mañ dija." @@ -3662,6 +4030,11 @@ msgstr "Arventennoù diazez evit al lec'hienn StatusNet-mañ." msgid "Site name must have non-zero length." msgstr "Ne c'hell ket bezañ goullo anv al lec'hienn." +#: actions/siteadminpanel.php:141 +#, fuzzy +msgid "You must have a valid contact email address." +msgstr "N'eo ket ur chomlec'h postel reizh." + #: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." @@ -3711,6 +4084,11 @@ msgstr "Chomlec'h postel daremprediñ ho lec'hienn" msgid "Local" msgstr "Lec'hel" +#: actions/siteadminpanel.php:256 +#, fuzzy +msgid "Default timezone" +msgstr "Koumanantoù dre ziouer" + #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" @@ -3828,6 +4206,12 @@ msgstr "Kadarnaat" msgid "SMS phone number" msgstr "Niverenn bellgomz evit an SMS" +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" + #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 msgid "SMS preferences" @@ -3850,6 +4234,12 @@ msgstr "Penndibaboù an SMSoù enrollet." msgid "No phone number." msgstr "Niverenn bellgomz ebet." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "Ali dilammet." + #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." @@ -3918,10 +4308,25 @@ msgstr "N'eo bet lakaet kod ebet" msgid "Snapshots" msgstr "Prim" +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Kefluniadur ar primoù" + +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "Roll direizh." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "URL fall evit al logo." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3930,6 +4335,11 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +#, fuzzy +msgid "Data snapshots" +msgstr "Prim" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -3954,6 +4364,17 @@ msgstr "" msgid "Save snapshot settings" msgstr "Enrollañ arventennoù al lec'hienn" +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "N'hoc'h ket koumanantet da zen ebet." + +#. TRANS: Exception thrown when a subscription could not be stored on the server. +#: actions/subedit.php:83 classes/Subscription.php:136 +#, fuzzy +msgid "Could not save subscription." +msgstr "Dibosupl eo dilemel ar c'houmanant." + #: actions/subscribe.php:77 msgid "This action only accepts POST requests." msgstr "" @@ -3980,6 +4401,16 @@ msgstr "Koumanantet da %s" msgid "%1$s subscribers, page %2$d" msgstr "Koumanantet da %1$s, pajenn %2$d" +#: actions/subscribers.php:63 +#, fuzzy +msgid "These are the people who listen to your notices." +msgstr "Heuliañ a reoc'h alioù an dud-se." + +#: actions/subscribers.php:67 +#, fuzzy, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Heuliet eo alioù an den-mañ gant %s." + #: actions/subscribers.php:108 msgid "" "You have no subscribers. Try subscribing to people you know and they might " @@ -3992,6 +4423,15 @@ msgid "%s has no subscribers. Want to be the first?" msgstr "" "n'ez eus den ebet koumanantet da %s. Ha c'hoant o peus bezañ an hini gentañ ?" +#: actions/subscribers.php:114 +#, fuzzy, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" +"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " +"gentañ da embann un dra !" + #: actions/subscriptions.php:52 #, php-format msgid "%s subscriptions" @@ -4093,10 +4533,30 @@ msgstr "" msgid "Could not save tags." msgstr "Dibosupl eo enrollañ ar merkoù." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." + +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "N'eus ket eus ar bajenn-se." + #: actions/unblock.php:59 msgid "You haven't blocked that user." msgstr "N'o peus ket stanket an implijer-mañ." +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Er poull-traezh emañ dija an implijer." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Lakaet eo bet da mut an implijer-mañ dija." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "N'eus profil ID ebet er reked." @@ -4105,6 +4565,14 @@ msgstr "N'eus profil ID ebet er reked." msgid "Unsubscribed" msgstr "Digoumanantet" +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, 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: User admin panel title #: actions/useradminpanel.php:60 msgctxt "TITLE" @@ -4150,10 +4618,22 @@ msgstr "Implijerien nevez" msgid "New user welcome" msgstr "Degemer an implijerien nevez" +#: actions/useradminpanel.php:237 +#, fuzzy +msgid "Welcome text for new users (Max 255 chars)." +msgstr "Re hir eo an anv (255 arouezenn d'ar muiañ)." + #: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Koumanantoù dre ziouer" +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"En em enskrivañ ez emgefre d'an holl re hag en em goumanant din (erbedet " +"evit an implijerien nann-denel)" + #: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Pedadennoù" @@ -4162,6 +4642,11 @@ msgstr "Pedadennoù" msgid "Invitations enabled" msgstr "Pedadennoù gweredekaet" +#: actions/useradminpanel.php:259 +#, fuzzy +msgid "Whether to allow users to invite new users." +msgstr "Ma rankomp merañ an dalc'hoù hon unan." + #: actions/useradminpanel.php:295 msgid "Save user settings" msgstr "" @@ -4401,6 +4886,12 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Ment direizh." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -4427,11 +4918,30 @@ msgstr "Stagañ" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Diposubl eo hizivaat ar strollad." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Diposubl eo krouiñ an aliasoù." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -4449,6 +4959,12 @@ msgstr "Dibosupl eo hizivaat ar gemennadenn gant un URI nevez." msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:193 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" + #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 msgid "Problem saving notice. Too long." @@ -4472,6 +4988,12 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +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: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -4636,6 +5158,12 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pajenn hep anv" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "Arventennoù diazez al lec'hienn" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -4764,6 +5292,12 @@ msgstr "Selloù lec'hel" msgid "Page notice" msgstr "Ali ar bajenn" +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Arventennoù diazez al lec'hienn" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -4842,6 +5376,13 @@ msgstr "" msgid "Site content license" msgstr "Aotre-implijout diwar-benn danvez al lec'hienn" +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#: lib/action.php:879 +#, fuzzy, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s." + #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. #: lib/action.php:886 @@ -4898,6 +5439,12 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." + #. TRANS: Client error message throw when a certain panel's settings cannot be changed. #: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." @@ -5115,6 +5662,13 @@ msgstr "lenn hepken" msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprouet d'an %1$s - moned \"%2$s\"." +#. TRANS: Button label +#: lib/applicationlist.php:158 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Dilemel" + #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:88 msgid "Attachments" @@ -5135,6 +5689,12 @@ msgstr "Pourvezer" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "N'eo ket bet kavet ar restr stag." + #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 msgid "Password changing failed" msgstr "N'eo ket aet betek penn kemmañ ar ger-tremen" @@ -5292,6 +5852,12 @@ 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. +#: lib/command.php:557 +#, 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #: lib/command.php:592 @@ -5306,6 +5872,12 @@ msgstr "" msgid "Reply to %s sent." msgstr "" +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 msgid "Specify the name of the user to subscribe to." @@ -5336,6 +5908,13 @@ msgstr "" 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:724 lib/command.php:750 +#, fuzzy +msgid "Command not yet implemented." +msgstr "Digarezit, n'eo ket bet emplementet an urzhiad-mañ c'hoazh." + #. TRANS: Text shown when issuing the command "off" successfully. #: lib/command.php:728 msgid "Notification off." @@ -5380,18 +5959,48 @@ msgstr "" msgid "You are not subscribed to anyone." msgstr "N'hoc'h ket koumanantet da zen ebet." +#. 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:836 +#, fuzzy +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "You are subscribed to this person:" +msgstr[1] "You are subscribed to these people:" + #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. #: lib/command.php:858 msgid "No one is subscribed to you." msgstr "Den n'eo koumanantet deoc'h." +#. 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:863 +#, fuzzy +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "This person is subscribed to you:" +msgstr[1] "These people are subscribed to you:" + #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. #: lib/command.php:885 msgid "You are not a member of any groups." msgstr "N'oc'h ezel eus strollad ebet." +#. 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:890 +#, fuzzy +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "You are a member of this group:" +msgstr[1] "You are a member of these groups:" + #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:905 msgid "" @@ -5467,6 +6076,11 @@ msgstr "Hizivadennoù dre SMS" msgid "Connections" msgstr "Kevreadennoù" +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "Poeladoù kevreet." + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Fazi bank roadennoù" @@ -5480,6 +6094,11 @@ msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "Enrollet eo bet an arventennoù design." + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Tennañ eus ar pennrolloù" @@ -5516,6 +6135,11 @@ msgstr "Silañ ar balizennoù" msgid "All" msgstr "An holl" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Dibab un douger" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Balizenn" @@ -5533,6 +6157,27 @@ msgstr "Mont" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL pajenn degemer ar poellad-mañ" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Deskrivit ho poellad" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Diskrivit ho poellad gant %d arouezenn" + +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" + #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" @@ -5610,6 +6255,11 @@ msgctxt "TOOLTIP" msgid "Add or edit %s design" msgstr "" +#: lib/groupsbymemberssection.php:71 +#, fuzzy +msgid "Groups with most members" +msgstr "Ezel eo %s eus ar strolladoù" + #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" msgstr "" @@ -5624,6 +6274,21 @@ msgstr "" msgid "This page is not available in a media type you accept" msgstr "" +#: lib/imagefile.php:72 +#, fuzzy +msgid "Unsupported image file format." +msgstr "Diembreget eo ar furmad-se." + +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." + +#: lib/imagefile.php:93 +#, fuzzy +msgid "Partial upload." +msgstr "N'eus bet enporzhiet restr ebet." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." @@ -5654,10 +6319,20 @@ msgstr "Ko" msgid "[%s]" msgstr "[%s]" +#: lib/jabber.php:567 +#, fuzzy, php-format +msgid "Unknown inbox source %d." +msgstr "Yezh \"%s\" dizanv." + #: lib/leaveform.php:114 msgid "Leave" msgstr "Kuitaat" +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Kevreit gant ho anv implijer hag ho ker-tremen." + #: lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Digeriñ ur gont nevez" @@ -5685,6 +6360,12 @@ msgid "" "%s\n" msgstr "" +#. TRANS: Subject of new-subscriber notification e-mail +#: lib/mail.php:243 +#, fuzzy, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "Ne heuilh %s den ebet." + #: lib/mail.php:248 #, php-format msgid "" @@ -5708,6 +6389,12 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:274 +#, fuzzy, php-format +msgid "Bio: %s" +msgstr "Lec'hiadur : %s" + #. TRANS: Subject of notification mail for new posting email address #: lib/mail.php:304 #, php-format @@ -5739,6 +6426,12 @@ msgstr "Statud %s" msgid "SMS confirmation" msgstr "Kadarnadur SMS" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Niverenn pellgomz o c'hortoz bezañ kadarnaet." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -5788,6 +6481,12 @@ msgid "" "%5$s\n" msgstr "" +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." + #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -5855,6 +6554,11 @@ msgid "" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" +#: lib/mailbox.php:89 +#, fuzzy +msgid "Only the user can read their own mailboxes." +msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." + #: lib/mailbox.php:139 msgid "" "You have no private messages. You can send private message to engage other " @@ -5865,10 +6569,30 @@ msgstr "" msgid "from" msgstr "eus" +#: lib/mailhandler.php:37 +#, fuzzy +msgid "Could not parse message." +msgstr "Diposubl eo ensoc'hañ ur gemenadenn" + #: lib/mailhandler.php:42 msgid "Not a registered user." msgstr "N'eo ket un implijer enrollet." +#: lib/mailhandler.php:46 +#, fuzzy +msgid "Sorry, that is not your incoming email address." +msgstr "N'eo ket ho postel." + +#: lib/mailhandler.php:50 +#, fuzzy +msgid "Sorry, no incoming email allowed." +msgstr "Chomlec'h postel ebet o tont." + +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Diembreget eo ar furmad-se." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5917,6 +6641,13 @@ msgstr "" msgid "File could not be moved to destination directory." msgstr "" +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +#, fuzzy +msgid "Could not determine file's MIME type." +msgstr "Diposubl eo termeniñ an implijer mammenn." + #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of #. TRANS: the MIME type that was denied. @@ -5942,6 +6673,11 @@ msgstr "Kas ur gemennadenn war-eeun" msgid "To" msgstr "Da" +#: lib/messageform.php:159 lib/noticeform.php:186 +#, fuzzy +msgid "Available characters" +msgstr "6 arouezenn pe muioc'h" + #: lib/messageform.php:178 lib/noticeform.php:237 msgctxt "Send button for sending notice" msgid "Send" @@ -6060,6 +6796,11 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#: lib/oauthstore.php:491 +#, fuzzy +msgid "Couldn't insert new subscription." +msgstr "Dibosupl eo dilemel ar c'houmanant." + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Hiniennel" @@ -6088,6 +6829,11 @@ msgstr "Boest kas" msgid "Your sent messages" msgstr "Ar c'hemenadennoù kaset ganeoc'h" +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "N'eus ali nevez evit an implijer-mañ" + #. TRANS: Displayed as version information for a plugin if no version information was found. #: lib/plugin.php:116 msgid "Unknown" @@ -6142,10 +6888,20 @@ msgstr "Strolladoù implijerien" msgid "Recent tags" msgstr "Merkoù nevez" +#: lib/publicgroupnav.php:88 +#, fuzzy +msgid "Featured" +msgstr "Krouet" + #: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Poblek" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Arguzenn ID ebet." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Adkregiñ gant an ali-mañ ?" @@ -6158,6 +6914,11 @@ msgstr "Ya" msgid "Repeat this notice" msgstr "Adkregiñ gant an ali-mañ" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Stankañ an implijer-mañ eus ar strollad-se" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -6166,6 +6927,11 @@ msgstr "" msgid "Sandbox" msgstr "Poull-traezh" +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Distankañ an implijer-mañ" + #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" @@ -6215,6 +6981,21 @@ msgstr "Muioc'h..." msgid "Silence" msgstr "Didrouz" +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Diverkañ an implijer-mañ" + +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Koumanantet da %s" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Koumanantet da %s" + #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -6224,6 +7005,11 @@ msgstr "Ezel eo %s eus ar strolladoù" msgid "Invite" msgstr "Pediñ" +#: lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6246,6 +7032,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6274,10 +7067,35 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "Fazi en ur hizivaat ar profil a-bell." + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "An implijerien an efedusañ" +#: lib/unsandboxform.php:69 +#, fuzzy +msgid "Unsandbox" +msgstr "Poull-traezh" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Distankañ an implijer-mañ" + +#: lib/unsilenceform.php:67 +#, fuzzy +msgid "Unsilence" +msgstr "Didrouz" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Distankañ an implijer-mañ" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "En em zigoumanantiñ eus an implijer-mañ" @@ -6406,14 +7224,15 @@ msgstr "N'eo ket %s ul liv reizh ! Implijit 3 pe 6 arouezenn heksdekvedennel." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "N'eus bet diferet ID implijer ebet." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index a2f4b163df..f61b70ab60 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:17+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2402,7 +2402,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7505,14 +7505,15 @@ msgstr "%s no és un color vàlid! Feu servir 3 o 6 caràcters hexadecimals." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "No s'ha especificat cap ID d'usuari." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 45201471e3..0e345fbcb9 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:17+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2378,8 +2378,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Soukromí" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7437,14 +7438,15 @@ msgstr "%s není platná barva! Použijte 3 nebo 6 hex znaků." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Nebylo zadáno uživatelské ID." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 7e289ca165..d1edee32be 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:19+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -51,7 +51,7 @@ msgstr "Registrieren" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" -"Anonymen (nicht eingeloggten) Nutzern das Betrachten der Seite verbieten?" +"Anonymen (nicht eingeloggten) Benutzern das Betrachten der Seite verbieten?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 @@ -382,12 +382,13 @@ msgstr "Konnte Favoriten nicht löschen." #: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." -msgstr "Konnte Nutzer nicht folgen: Profil nicht gefunden" +msgstr "Konnte Benutzer nicht folgen: Profil nicht gefunden" #: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" +msgstr "" +"Kann Benutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" #: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." @@ -1144,7 +1145,7 @@ msgstr "Design" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Design-Einstellungen dieser StatusNet-Website" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1366,7 +1367,7 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." -msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" +msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten" #: actions/editgroup.php:158 msgid "Use this form to edit the group." @@ -1564,7 +1565,7 @@ msgstr "Dies ist bereits deine E-Mail-Adresse." #. TRANS: Message given saving e-mail address that is already set for another user. #: actions/emailsettings.php:378 msgid "That email address already belongs to another user." -msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." +msgstr "Diese E-Mail-Adresse gehört bereits einem anderen Benutzer." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. @@ -1727,7 +1728,7 @@ msgstr "Unerwartete Antwort!" #: actions/finishremotesubscribe.php:80 msgid "User being listened to does not exist." -msgstr "Aufgeführte Nutzer existiert nicht." +msgstr "Aufgeführter Benutzer existiert nicht." #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" @@ -1775,7 +1776,7 @@ msgstr "Auf dieser Seite können keine Benutzerrollen gewährt werden." #: actions/grantrole.php:82 msgid "User already has this role." -msgstr "Nutzer hat bereits diese Aufgabe" +msgstr "Benutzer hat bereits diese Aufgabe" #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 @@ -1796,15 +1797,15 @@ msgstr "Keine Gruppe angegeben" #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "Nur ein Administrator kann Mitglieder der Gruppe sperren." +msgstr "Nur ein Admin kann Mitglieder der Gruppe sperren." #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt" +msgstr "Dieser Benutzer ist bereits von der Gruppe gesperrt" #: actions/groupblock.php:100 msgid "User is not a member of group." -msgstr "Nutzer ist kein Mitglied dieser Gruppe." +msgstr "Benutzer ist kein Mitglied dieser Gruppe." #: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" @@ -1829,11 +1830,12 @@ msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" -msgstr "Diesen Nutzer von der Gruppe sperren" +msgstr "Diesen Benutzer von der Gruppe sperren" #: actions/groupblock.php:206 msgid "Database error blocking user from group." -msgstr "Datenbankfehler beim Versuch den Nutzer aus der Gruppe zu blockieren." +msgstr "" +"Datenbankfehler beim Versuch den Benutzer aus der Gruppe zu blockieren." #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." @@ -1930,13 +1932,13 @@ msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Zum Admin ernennen" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Diesen Benutzer zum Admin ernennen" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -1988,7 +1990,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Durchsuche die Namen, Orte oder Interessen der Nutzer von %%site.name%%. " +"Durchsuche die Namen, Orte oder Interessen der Benutzer von %%site.name%%. " "Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " "mindestens 3 Zeichen bestehen." @@ -2021,11 +2023,11 @@ msgstr "" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "Nur Administratoren können Gruppenmitglieder entsperren." +msgstr "Nur Admins können Gruppenmitglieder entsperren." #: actions/groupunblock.php:95 msgid "User is not blocked from group." -msgstr "Dieser Nutzer ist nicht von der Gruppe gesperrt." +msgstr "Dieser Benutzer ist nicht von der Gruppe gesperrt." #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." @@ -2323,7 +2325,7 @@ msgid "" msgstr "" "%1$s hat dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n" "\n" -"%2$s ist ein Microblogging-Service, der dich über deine Freunde auf dem " +"%2$s ist ein Mikroblogging-Service, der dich über deine Freunde auf dem " "Laufenden hält und deine Freunde über dich informiert. \n" "\n" "Du kannst Neuigkeiten über dich und deine Gedanken verbreiten. Lerne neue " @@ -2378,105 +2380,107 @@ msgstr "%1$s hat die Gruppe %2$s verlassen" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Lizenz" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Lizenz dieser StatusNet-Website" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Ungültige Lizenzauswahl." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Du musst den Besitzer des Inhalts angeben, wenn du „Alle Rechte vorbehalten“ " +"wählst." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Ungültiger Lizenztitel. Die maximale Länge liegt bei 255 Zeichen." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Ungültige Lizenz-URL." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Ungültige Lizenz-Bild-URL." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Lizenz-URL muss leer oder eine gültige URL sein." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Lizenz-Bild muss leer oder eine gültige URL sein." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Lizenzauswahl" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Alle Rechte vorbehalten" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Typ" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Lizenz auswählen" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Lizenz-Details" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Besitzer" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Name von dem Besitzer des Inhalts dieser Website (falls notwendig)" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Lizenz-Titel" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Der Titel der Lizenz." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Lizenz-URL" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL mit weiteren Informationen über die Lizenz." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Lizenz-Bild-URl" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL eines mit der Lizenz anzuzeigenden Bildes." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Lizenz-Einstellungen speichern" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2533,12 +2537,12 @@ msgstr "" #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." -msgstr "Nur Administratoren können andere Nutzer zu Administratoren ernennen." +msgstr "Nur Admins können andere Benutzer zu Admins ernennen." #: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%1$s ist bereits Administrator der Gruppe „%2$s“." +msgstr "%1$s ist bereits Admin der Gruppe „%2$s“." #: actions/makeadmin.php:133 #, php-format @@ -2548,7 +2552,7 @@ msgstr "Konnte keinen Mitgliedseintrag für %1$s aus Gruppe %2$s empfangen." #: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Konnte %1$s nicht zum Administrator der Gruppe %2$s machen" +msgstr "Konnte %1$s nicht zum Admin der Gruppe %2$s machen" #: actions/microsummary.php:69 msgid "No current status." @@ -2719,6 +2723,7 @@ msgstr "Verbundene Programme" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +"Du hast den folgenden Programmen erlaubt, auf dein Benutzerkonto zuzugreifen." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2732,7 +2737,7 @@ msgstr "Kann Zugang dieses Programm nicht entfernen: %s." #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." msgstr "" -"Du hast noch keinem Programm die Erlaubnis gegeben dein Profil zu benutzen." +"Du hast noch keinem Programm die Erlaubnis gegeben, dein Profil zu benutzen." #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " @@ -2796,7 +2801,7 @@ msgstr "URL-Auto-Kürzungs-Dienst." #: actions/othersettings.php:122 msgid "View profile designs" -msgstr "Profil-Einstellungen ansehen" +msgstr "Profil-Designs ansehen" #: actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -2909,7 +2914,7 @@ msgstr "Pfad" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Pfad- und Servereinstellungen dieser StatusNet-Website" #: actions/pathsadminpanel.php:157 #, php-format @@ -3061,7 +3066,7 @@ 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 "" -"Durchsuche die Namen, Orte oder Interessen der Nutzer von %%site.name%%. " +"Durchsuche die Namen, Orte oder Interessen der Benutzer von %%site.name%%. " "Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " "mindestens 3 Zeichen bestehen." @@ -3124,7 +3129,8 @@ msgstr "Homepage" #: actions/profilesettings.php:117 actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "" -"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" +"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen " +"Website" #: actions/profilesettings.php:122 actions/register.php:468 #, php-format @@ -3301,8 +3307,8 @@ msgid "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"Dies ist %%site.name%%, ein [Mikro-blogging-Dienst](http://de.wikipedia.org/" -"wiki/Mikro-blogging) basierend auf der freien Software [StatusNet](http://" +"Dies ist %%site.name%%, ein [Mikroblogging](http://de.wikipedia.org/wiki/" +"Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" "status.net/)." #: actions/publictagcloud.php:57 @@ -3352,7 +3358,7 @@ msgstr "Kein Wiederherstellungscode." #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." -msgstr "Wiederherstellungscode für unbekannten Nutzer." +msgstr "Wiederherstellungscode für unbekannten Benutzer." #: actions/recoverpassword.php:86 msgid "Error with confirmation code." @@ -3428,7 +3434,7 @@ msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." #: actions/recoverpassword.php:299 msgid "No registered email address for that user." -msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse." +msgstr "Der Benutzer hat keine registrierte E-Mail-Adresse." #: actions/recoverpassword.php:313 msgid "Error saving address confirmation." @@ -3614,7 +3620,7 @@ msgid "" msgstr "" "Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " "ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " -"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " +"auf einer [kompatiblen Mikrobloggingsite](%%doc.openmublog%%) hast, dann gib " "deine Profil-URL unten an." #: actions/remotesubscribe.php:112 @@ -3639,7 +3645,7 @@ msgstr "Profil-URL" #: actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" +msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: lib/userprofile.php:406 @@ -3665,7 +3671,7 @@ msgstr "Konnte keinen Anfrage-Token bekommen." #: actions/repeat.php:57 msgid "Only logged-in users can repeat notices." -msgstr "Nur angemeldete Nutzer können Nachrichten wiederholen." +msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen." #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." @@ -3728,7 +3734,7 @@ msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -"Du kannst andere Nutzer ansprechen, mehr Leuten folgen oder [Gruppen " +"Du kannst andere Benutzer ansprechen, mehr Leuten folgen oder [Gruppen " "beitreten](%%action.groups%%)." #: actions/replies.php:206 @@ -3773,7 +3779,7 @@ msgstr "Sitzung" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Sitzungs-Einstellungen dieser StatusNet-Website" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3793,7 +3799,7 @@ msgstr "Fehleruntersuchung für Sitzungen aktivieren" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 msgid "Save site settings" -msgstr "Site-Einstellungen speichern" +msgstr "Website-Einstellungen speichern" #: actions/showapplication.php:82 msgid "You must be logged in to view an application." @@ -3828,7 +3834,7 @@ msgstr "Beschreibung" #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 msgid "Statistics" -msgstr "Statistiken" +msgstr "Statistik" #: actions/showapplication.php:203 #, php-format @@ -3939,7 +3945,7 @@ msgstr "Dies ist ein Weg, Dinge zu teilen, die dir gefallen." #: actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "%s Gruppe" +msgstr "%s-Gruppe" #: actions/showgroup.php:84 #, php-format @@ -4015,8 +4021,8 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** ist eine Gruppe auf %%%%site.name%%%%, einem [micro-blogging](http://" -"en.wikipedia.org/wiki/Micro-blogging) Dienst auf Basis der freien Software " +"**%s** ist eine Gruppe auf %%%%site.name%%%%, einem [Mikroblogging](http://" +"de.wikipedia.org/wiki/Mikroblogging)-Dienst auf Basis der freien Software " "[StatusNet](http://status.net/). [Werde Mitglied](%%%%action.register%%%%) " "und werde Teil der Gruppe und vielen anderen! ([Mehr Informationen](%%%%doc." "help%%%%))" @@ -4029,14 +4035,14 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikro-blogging-" -"Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) basierend auf der " -"freien Software [StatusNet](http://status.net/). Seine Mitglieder erstellen " -"kurze Nachrichten über ihr Leben und Interessen. " +"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" +"(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " +"Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " +"Nachrichten über ihr Leben und Interessen. " #: actions/showgroup.php:489 msgid "Admins" -msgstr "Administratoren" +msgstr "Admins" #: actions/showmessage.php:81 msgid "No such message." @@ -4127,8 +4133,8 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** ist Mitglied bei %%%%site.name%%%%, einem [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) Dienst auf Basis der freien Software " +"**%s** ist Mitglied bei %%%%site.name%%%%, einem [Mikroblogging](http://de." +"wikipedia.org/wiki/Mikroblogging)-Dienst auf Basis der freien Software " "[StatusNet](http://status.net/). [Werde Mitglied](%%%%action.register%%%%) " "um **%s**'s und vielen anderen zu folgen! ([Mehr Informationen](%%%%doc.help%" "%%%))" @@ -4140,9 +4146,9 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** hat ein Konto auf %%%%site.name%%%%, einem [Mikro-blogging-Dienst]" -"(http://de.wikipedia.org/wiki/Mikro-blogging) basierend auf der freien " -"Software [StatusNet](http://status.net/). " +"**%s** hat ein Konto auf %%%%site.name%%%%, einem [Mikroblogging](http://de." +"wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien Software " +"[StatusNet](http://status.net/). " #: actions/showstream.php:305 #, php-format @@ -4151,11 +4157,11 @@ msgstr "Wiederholung von %s" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." -msgstr "Du kannst Nutzer dieser Seite nicht ruhig stellen." +msgstr "Du kannst Benutzer dieser Seite nicht ruhig stellen." #: actions/silence.php:72 msgid "User is already silenced." -msgstr "Nutzer ist bereits ruhig gestellt." +msgstr "Benutzer ist bereits ruhig gestellt." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" @@ -4192,7 +4198,7 @@ msgstr "Seitenname" #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" -msgstr "Der Name deiner Seite, sowas wie „DeinUnternehmen-Microblog“" +msgstr "Der Name deiner Seite, sowas wie „DeinUnternehmen-Mikroblog“" #: actions/siteadminpanel.php:229 msgid "Brought by" @@ -4214,7 +4220,7 @@ msgstr "" #: actions/siteadminpanel.php:239 msgid "Contact email address for your site" -msgstr "Kontakt-E-Mail-Adresse für deine Site." +msgstr "Kontakt-E-Mail-Adresse für deine Website." #: actions/siteadminpanel.php:245 msgid "Local" @@ -4721,7 +4727,7 @@ msgstr "Benutzer" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Benutzer-Einstellungen dieser StatusNet-Website" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4752,7 +4758,7 @@ msgstr "Maximale Länge in Zeichen der Profil-Bio." #: actions/useradminpanel.php:232 msgid "New users" -msgstr "Neue Nutzer" +msgstr "Neue Benutzer" #: actions/useradminpanel.php:236 msgid "New user welcome" @@ -4760,7 +4766,7 @@ msgstr "Neue Benutzer empfangen" #: actions/useradminpanel.php:237 msgid "Welcome text for new users (Max 255 chars)." -msgstr "Willkommens-Nachricht für neue Nutzer (maximal 255 Zeichen)." +msgstr "Willkommens-Nachricht für neue Benutzer (maximal 255 Zeichen)." #: actions/useradminpanel.php:242 msgid "Default subscription" @@ -4768,7 +4774,7 @@ msgstr "Standard-Abonnement" #: actions/useradminpanel.php:243 msgid "Automatically subscribe new users to this user." -msgstr "Neue Nutzer abonnieren automatisch diesen Nutzer" +msgstr "Neue Benutzer abonnieren automatisch diesen Benutzer" #: actions/useradminpanel.php:252 msgid "Invitations" @@ -4784,7 +4790,7 @@ msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Benutzer-Einstellungen speichern" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5009,7 +5015,7 @@ msgstr "Zu Favoriten hinzufügen" #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." -msgstr "" +msgstr "%s markierte Nachricht %s als Favorit." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 @@ -5078,7 +5084,7 @@ msgstr "Beitreten" #: classes/Group_member.php:112 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5225,6 +5231,12 @@ msgstr "Bereits abonniert!" msgid "User has blocked you." msgstr "Dieser Benutzer hat dich blockiert." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Nicht abonniert!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -5242,12 +5254,12 @@ msgstr "Konnte Abonnement nicht löschen." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "Folgen" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s folgt nun %s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5367,7 +5379,7 @@ msgstr "Seiteneinstellung ändern" #: lib/action.php:474 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" -msgstr "Administrator" +msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:478 @@ -5514,14 +5526,14 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" +"**%%site.name%%** ist ein Mikrobloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%** ist ein Microbloggingdienst." +msgstr "**%%site.name%%** ist ein Mikrobloggingdienst." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -5534,7 +5546,7 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) " +"Es wird mit der Mikrobloggingsoftware [StatusNet](http://status.net/) " "(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." @@ -5650,7 +5662,7 @@ msgstr "Seite" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:345 msgid "Design configuration" -msgstr "Motiv-Konfiguration" +msgstr "Design-Konfiguration" #. TRANS: Menu item for site administration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. @@ -5697,7 +5709,7 @@ msgstr "Snapshot-Konfiguration" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Website-Lizenz einstellen" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5906,14 +5918,14 @@ msgstr "Benutzer hat keine letzte Nachricht" #: lib/command.php:130 #, php-format msgid "Could not find a user with nickname %s." -msgstr "Konnte keinen Nutzer mit dem Namen %s finden" +msgstr "Konnte keinen Benutzer mit dem Namen %s finden" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 #, php-format msgid "Could not find a local user with nickname %s." -msgstr "Konnte keinen lokalen Nutzer mit dem Nick %s finden" +msgstr "Konnte keinen lokalen Benutzer mit dem Nick %s finden" #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:185 @@ -5999,8 +6011,8 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -"%s ist ein entferntes Profil; man kann direkte Nachrichten nur an Nutzer auf " -"dem selben Server senden." +"%s ist ein entferntes Profil; man kann direkte Nachrichten nur an Benutzer " +"auf dem selben Server senden." #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -6212,40 +6224,40 @@ msgstr "" "on - Benachrichtigung einschalten\n" "off - Benachrichtigung ausschalten\n" "help - diese Hilfe anzeigen\n" -"follow - einem Nutzer folgen\n" +"follow - einem Benutzer folgen\n" "groups - Gruppen auflisten in denen du Mitglied bist\n" "subscriptions - Leute auflisten denen du folgst\n" "subscribers - Leute auflisten die dir folgen\n" -"leave - einem Nutzer nicht mehr folgen\n" -"d - Direkte Nachricht an einen Nutzer schicken\n" -"get - letzte Nachricht eines Nutzers abrufen\n" -"whois - Profil eines Nutzers abrufen\n" -"lose - Nutzer zwingen dir nicht mehr zu folgen\n" -"fav - letzte Nachricht eines Nutzers als Favorit markieren\n" +"leave - einem Benutzer nicht mehr folgen\n" +"d - Direkte Nachricht an einen Benutzer schicken\n" +"get - letzte Nachricht eines Benutzers abrufen\n" +"whois - Profil eines Benutzers abrufen\n" +"lose - Benutzer zwingen dir nicht mehr zu folgen\n" +"fav - letzte Nachricht eines Benutzers als Favorit markieren\n" "fav # - Nachricht mit bestimmter ID als Favorit markieren\n" "repeat # - Nachricht mit bestimmter ID wiederholen\n" -"repeat - letzte Nachricht eines Nutzers wiederholen\n" +"repeat - letzte Nachricht eines Benutzers wiederholen\n" "reply # - Nachricht mit bestimmter ID beantworten\n" -"reply - letzte Nachricht eines Nutzers beantworten\n" +"reply - letzte Nachricht eines Benutzers beantworten\n" "join - Gruppe beitreten\n" "login - Link zum Anmelden auf der Webseite anfordern\n" "drop - Gruppe verlassen\n" "stats - deine Statistik abrufen\n" -"stop - Äquivalent zu 'off'\n" -"quit - Äquivalent zu 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +"stop - Äquivalent zu „off“\n" +"quit - Äquivalent zu „off“\n" +"sub - Äquivalent zu „follow“\n" +"unsub - Äquivalent zu „leave“\n" +"last - Äquivalent zu „get“\n" +"on - noch nicht implementiert\n" +"off - noch nicht implementiert\n" +"nudge - einen Benutzer ans Aktualisieren erinnern\n" +"invite - noch nicht implementiert\n" +"track - noch nicht implementiert\n" +"untrack - noch nicht implementiert\n" +"track off - noch nicht implementiert\n" +"untrack all - noch nicht implementiert\n" +"tracks - noch nicht implementiert\n" +"tracking - noch nicht implementiert\n" #: lib/common.php:135 msgid "No configuration file found. " @@ -6328,7 +6340,7 @@ msgstr "FOAF" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Feeds" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6388,7 +6400,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Gruppe" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6396,13 +6408,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "%s-Gruppe" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Mitglieder" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6410,7 +6422,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "%s-Gruppen-Mitglieder" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 @@ -6432,13 +6444,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "%s-Gruppen-Einstellungen bearbeiten" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6870,7 +6882,7 @@ msgstr "Konnte Nachricht nicht parsen." #: lib/mailhandler.php:42 msgid "Not a registered user." -msgstr "Kein registrierter Nutzer." +msgstr "Kein registrierter Benutzer." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." @@ -6962,7 +6974,7 @@ msgstr "" #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "„%s“ ist kein unterstütztes Dateiformat auf diesem Server." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -7081,20 +7093,20 @@ msgstr "Sende diesem Benutzer einen Stups" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Neues Profil konnte nicht angelegt werden." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Fehler beim Einfügen des Avatars." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Fehler beim Einfügen des entfernten Profils." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Doppelte Nachricht." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7156,7 +7168,7 @@ msgstr "Alle Abonnenten" #: lib/profileaction.php:191 msgid "User ID" -msgstr "Nutzer ID" +msgstr "Benutzer-ID" #: lib/profileaction.php:196 msgid "Member since" @@ -7218,7 +7230,7 @@ msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" #: lib/router.php:711 msgid "No single user defined for single-user mode." -msgstr "Kein einzelner Nutzer für den Ein-Benutzer-Modus ausgewählt." +msgstr "Kein einzelner Benutzer für den Ein-Benutzer-Modus ausgewählt." #: lib/sandboxform.php:67 msgid "Sandbox" @@ -7226,12 +7238,12 @@ msgstr "Spielwiese" #: lib/sandboxform.php:78 msgid "Sandbox this user" -msgstr "Diesen Nutzer auf die Spielwiese setzen" +msgstr "Diesen Benutzer auf die Spielwiese setzen" #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" -msgstr "Site durchsuchen" +msgstr "Website durchsuchen" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. @@ -7242,7 +7254,7 @@ msgstr "Suchbegriff" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Suchen" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7279,7 +7291,7 @@ msgstr "Stummschalten" #: lib/silenceform.php:78 msgid "Silence this user" -msgstr "Nutzer verstummen lassen" +msgstr "Benutzer verstummen lassen" #: lib/subgroupnav.php:83 #, php-format @@ -7515,14 +7527,15 @@ msgstr "%s ist keine gültige Farbe! Verwenden Sie 3 oder 6 Hex-Zeichen." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Keine Benutzer ID angegeben" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 0bb8e5d235..d394864fb3 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:19+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:41+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -250,6 +250,11 @@ msgstr "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Couldn't update user." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -260,6 +265,11 @@ msgstr "" msgid "User has no profile." msgstr "User has no profile." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Couldn't save profile." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -513,6 +523,11 @@ msgstr "%s groups" msgid "groups on %s" msgstr "groups on %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Upload file" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "No oauth_token parameter provided." @@ -1142,6 +1157,11 @@ msgstr "Site theme" msgid "Theme for the site." msgstr "Theme for the site." +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Site theme" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -2149,6 +2169,11 @@ msgstr "Inbox for %s" msgid "This is your inbox, which lists your incoming private messages." msgstr "This is your inbox, which lists your incoming private messages." +#: actions/invite.php:39 +#, fuzzy +msgid "Invites have been disabled." +msgstr "Invitations enabled" + #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s." @@ -2361,7 +2386,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Private" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2733,6 +2758,11 @@ msgstr "Automatic shortening service to use." msgid "View profile designs" msgstr "View profile designs" +#: actions/othersettings.php:123 +#, fuzzy +msgid "Show or hide profile designs." +msgstr "View profile designs" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL shortening service is too long (max 50 chars)." @@ -2905,6 +2935,21 @@ msgstr "" msgid "Theme" msgstr "" +#: actions/pathsadminpanel.php:264 +#, fuzzy +msgid "Theme server" +msgstr "SSL server" + +#: actions/pathsadminpanel.php:268 +#, fuzzy +msgid "Theme path" +msgstr "Site path" + +#: actions/pathsadminpanel.php:272 +#, fuzzy +msgid "Theme directory" +msgstr "Avatar directory" + #: actions/pathsadminpanel.php:279 msgid "Avatars" msgstr "Avatars" @@ -2921,6 +2966,26 @@ msgstr "Avatar path" msgid "Avatar directory" msgstr "Avatar directory" +#: actions/pathsadminpanel.php:301 +#, fuzzy +msgid "Backgrounds" +msgstr "Background" + +#: actions/pathsadminpanel.php:305 +#, fuzzy +msgid "Background server" +msgstr "Background" + +#: actions/pathsadminpanel.php:309 +#, fuzzy +msgid "Background path" +msgstr "Background" + +#: actions/pathsadminpanel.php:313 +#, fuzzy +msgid "Background directory" +msgstr "Background directory not writable: %s." + #: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" @@ -2937,6 +3002,11 @@ msgstr "Sometimes" msgid "Always" msgstr "" +#: actions/pathsadminpanel.php:329 +#, fuzzy +msgid "Use SSL" +msgstr "SSL" + #: actions/pathsadminpanel.php:330 msgid "When to use SSL" msgstr "" @@ -3150,10 +3220,26 @@ msgstr "Public Stream Feed (RSS 2.0)" msgid "Public Stream Feed (Atom)" msgstr "Public Stream Feed (Atom)" +#: actions/public.php:188 +#, fuzzy, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" +"This is the timeline for %s and friends but no one has posted anything yet." + #: actions/public.php:191 msgid "Be the first to post!" msgstr "" +#: actions/public.php:195 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favourites!" + #: actions/public.php:242 #, php-format msgid "" @@ -3196,6 +3282,15 @@ msgstr "" msgid "Be the first to post one!" msgstr "" +#: actions/publictagcloud.php:75 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favourites!" + #: actions/publictagcloud.php:134 msgid "Tag cloud" msgstr "Tag cloud" @@ -3240,6 +3335,11 @@ msgstr "" msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Password recovery requested" + #: actions/recoverpassword.php:191 msgid "Nickname or email address" msgstr "Nickname or e-mail address" @@ -3612,6 +3712,13 @@ msgstr "You cannot sandbox users on this site." msgid "User is already sandboxed." msgstr "User is already sandboxed." +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:379 +#, fuzzy +msgid "Sessions" +msgstr "Version" + #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" msgstr "" @@ -3676,10 +3783,20 @@ msgstr "Statistics" msgid "Created by %1$s - %2$s access by default - %3$d users" msgstr "" +#: actions/showapplication.php:213 +#, fuzzy +msgid "Application actions" +msgstr "Application not found." + #: actions/showapplication.php:236 msgid "Reset key & secret" msgstr "" +#: actions/showapplication.php:261 +#, fuzzy +msgid "Application info" +msgstr "Application not found." + #: actions/showapplication.php:263 msgid "Consumer key" msgstr "" @@ -3945,6 +4062,19 @@ msgstr "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." +#: actions/showstream.php:243 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" + #: actions/showstream.php:248 #, php-format msgid "" @@ -4030,6 +4160,11 @@ msgstr "Contact e-mail address for your site" msgid "Local" msgstr "Local" +#: actions/siteadminpanel.php:256 +#, fuzzy +msgid "Default timezone" +msgstr "Default subscription" + #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" @@ -4253,10 +4388,20 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Manage snapshot configuration" +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "Invalid role." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "nvalid logo URL." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -4265,6 +4410,11 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +#, fuzzy +msgid "Data snapshots" +msgstr "Save snapshot settings" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -4277,6 +4427,11 @@ msgstr "" msgid "Snapshots will be sent once every N web hits" msgstr "" +#: actions/snapshotadminpanel.php:226 +#, fuzzy +msgid "Report URL" +msgstr "Source URL" + #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" msgstr "" @@ -4529,6 +4684,16 @@ msgstr "" msgid "New users" msgstr "New users" +#: actions/useradminpanel.php:236 +#, fuzzy +msgid "New user welcome" +msgstr "New users" + +#: actions/useradminpanel.php:237 +#, fuzzy +msgid "Welcome text for new users (Max 255 chars)." +msgstr "Name is too long (max 255 chars)." + #: actions/useradminpanel.php:242 msgid "Default subscription" msgstr "Default subscription" @@ -4642,6 +4807,11 @@ msgstr "" msgid "Profile URL ‘%s’ is for a local user." msgstr "" +#: actions/userauthorization.php:345 +#, fuzzy, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "Callback URL is not valid." + #: actions/userauthorization.php:350 #, php-format msgid "Can’t read avatar URL ‘%s’." @@ -4711,6 +4881,11 @@ msgid "" "Inc. and contributors." msgstr "" +#: actions/version.php:163 +#, fuzzy +msgid "Contributors" +msgstr "Connections" + #: actions/version.php:170 msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " @@ -4800,6 +4975,12 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Invalid size." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -4939,16 +5120,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "User has no profile." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "Unable to save site notice." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "You have been banned from subscribing." +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Not subscribed!" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "User has blocked you." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Not subscribed!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -5455,6 +5660,18 @@ msgstr "" msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +#, fuzzy +msgid "Edit application" +msgstr "Edit Application" + +#. TRANS: Form guide. +#: lib/applicationeditform.php:178 +#, fuzzy +msgid "Icon for this application" +msgstr "Do not delete this application" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:200 #, php-format @@ -5548,6 +5765,18 @@ msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +#, fuzzy +msgid "Attachments" +msgstr "No attachments." + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 +#, fuzzy +msgid "Author" +msgstr "Authorise URL" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:279 msgid "Provider" @@ -5558,6 +5787,12 @@ msgstr "Provider" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "No such attachment." + #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 msgid "Password changing failed" msgstr "Password changing failed" @@ -5583,6 +5818,26 @@ msgstr "Command complete" msgid "Command failed" msgstr "Command failed" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "No profile with that id." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "User has no last notice" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Could not find a user with nickname %s" + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -5600,6 +5855,13 @@ msgstr "Sorry, this command is not yet implemented." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Nudge sent to %s" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5677,16 +5939,43 @@ msgstr "Message too long - maximum is %1$d characters, you sent %2$d." msgid "Error sending direct message." msgstr "Error sending direct message." +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Notice posted" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Error repeating notice." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Notice too long - maximum is %d characters, you sent %d" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Reply to %s sent" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." msgstr "Error saving notice." +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +msgid "Specify the name of the user to subscribe to." +msgstr "Specify the name of the user to subscribe to" + #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. #: lib/command.php:664 msgid "Can't subscribe to OMB profiles by command." @@ -5699,6 +5988,13 @@ msgstr "Can't subscribe to OMB profiles by command." 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:694 lib/command.php:804 +#, fuzzy +msgid "Specify the name of the user to unsubscribe from." +msgstr "Specify the name of the user to unsubscribe from" + #. 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:705 @@ -5926,6 +6222,11 @@ msgid "" msgstr "" "You can upload your personal background image. The maximum file size is 2MB." +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "Design preferences saved." + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Disfavour this notice" @@ -6356,6 +6657,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "%s (@%s) added your notice as a favorite" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -6851,6 +7157,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Failed updating avatar." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6879,14 +7192,29 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "Error updating remote profile." + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "Top posters" +#: lib/unsandboxform.php:69 +#, fuzzy +msgid "Unsandbox" +msgstr "Sandbox" + #: lib/unsandboxform.php:80 msgid "Unsandbox this user" msgstr "Unsandbox this user" +#: lib/unsilenceform.php:67 +#, fuzzy +msgid "Unsilence" +msgstr "Silence" + #: lib/unsilenceform.php:78 msgid "Unsilence this user" msgstr "Unsilence this user" @@ -7019,14 +7347,15 @@ msgstr "%s is not a valid colour! Use 3 or 6 hex chars." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "No user ID specified." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 05e6ea6a97..0f92eec540 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:20+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:42+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -168,7 +168,7 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Provu aboni pli da homoj, [aniĝu al grupo] (%%action.groups%%) aŭ afiŝu ion " +"Provu aboni pli da homoj, [aniĝu al grupo](%%action.groups%%) aŭ afiŝu ion " "vi mem." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" @@ -6361,6 +6361,11 @@ msgstr "Etikedoj en avizoj de gruop %s" msgid "This page is not available in a media type you accept" msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas" +#: lib/imagefile.php:72 +#, fuzzy +msgid "Unsupported image file format." +msgstr "Formato ne subtenata." + #: lib/imagefile.php:88 #, php-format msgid "That file is too big. The maximum file size is %s." @@ -6745,6 +6750,11 @@ msgstr "" msgid "from" msgstr "de" +#: lib/mailhandler.php:37 +#, fuzzy +msgid "Could not parse message." +msgstr "Malsukcesis ĝisdatigi uzanton" + #: lib/mailhandler.php:42 msgid "Not a registered user." msgstr "Ne registrita uzanto" @@ -7070,6 +7080,11 @@ msgstr "Elstara" msgid "Popular" msgstr "Populara" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ne estas aldonaĵo." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Ĉu ripeti la avizon?" @@ -7386,14 +7401,15 @@ msgstr "%s ne estas valida koloro! Uzu 3 aŭ 6 deksesumaĵojn." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Neniu uzanto-ID specifiĝas." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 41d7689b9c..49fdce520b 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:21+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1997,7 +1997,7 @@ msgid "" "If you can't find the group you're looking for, you can [create it](%%action." "newgroup%%) yourself." msgstr "" -"Si no puedes encontrar el grupo que estás buscando, puedes [crearlo] (%%" +"Si no puedes encontrar el grupo que estás buscando, puedes [crearlo](%%" "action.newgroup%%) tú mismo." #: actions/groupsearch.php:85 @@ -2405,7 +2405,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privado" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -3303,7 +3303,7 @@ msgstr "Estas son las etiquetas recientes más populares en %s " #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Aún nadie ha publicado un mensaje con una [etiqueta clave] (%%doc.tags%%)" +"Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -3920,7 +3920,7 @@ msgid "" "their favorites :)" msgstr "" "%s aún no ha añadido ningún aviso a sus favoritos. Por qué no [registras una " -"cuenta] (%%%%action.register%%%%) y publicas algo interesante que puedan " +"cuenta](%%%%action.register%%%%) y publicas algo interesante que puedan " "añadir a sus favoritos :)" #: actions/showfavorites.php:243 @@ -4130,9 +4130,9 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**% s ** tiene una cuenta en %%%%site.name%%%%, un servicio de " -"[microblogueo] (http://en.wikipedia.org/wiki/Micro-blogging), basado en la " -"herramienta de software libre [StatusNet] (http://status.net/). " +"**% s ** tiene una cuenta en %%%%site.name%%%%, un servicio de [microblogueo]" +"(http://en.wikipedia.org/wiki/Micro-blogging), basado en la herramienta de " +"software libre [StatusNet](http://status.net/). " #: actions/showstream.php:305 #, php-format @@ -5210,6 +5210,12 @@ msgstr "¡Ya te has suscrito!" msgid "User has blocked you." msgstr "El usuario te ha bloqueado." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "¡No estás suscrito!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -7512,14 +7518,15 @@ msgstr "%s no es un color válido! Usar 3 o 6 caracteres hexagesimales" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "No se ha especificado ID de usuario." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 728701eff7..61e15d415b 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:22+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -385,6 +385,11 @@ msgstr "نمی‌توان کاربر را دنبال نکرد: کاربر یاف msgid "You cannot unfollow yourself." msgstr "نمی‌توانید خودتان را دنبال کنید." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "باید ۲ شناسه‌ی کاربر یا نام ظاهری وارد کنید." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "نمی‌توان کاربر منبع را تعیین کرد." @@ -499,6 +504,12 @@ msgstr "خارج شدن %s از گروه %s نا موفق بود" msgid "%s's groups" msgstr "گروه‌های %s" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "هست عضو %s گروه" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -1315,6 +1326,16 @@ msgstr "نام سازمان خیلی طولانی است (حداکثر ۲۵۵ ن msgid "Organization homepage is required." msgstr "صفحهٔ‌خانگی سازمان مورد نیاز است." +#: actions/editapplication.php:218 actions/newapplication.php:206 +#, fuzzy +msgid "Callback is too long." +msgstr "نشانی اینترنتی منبع بسیار بلند است." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +#, fuzzy +msgid "Callback URL is not valid." +msgstr "نشانی اینترنتی منبع معتبر نیست." + #: actions/editapplication.php:261 msgid "Could not update application." msgstr "نمی‌توان برنامه را به‌هنگام‌سازی کرد." @@ -1935,7 +1956,7 @@ msgstr "" "علاقه‌مندی‌های خاصی دارد صحبت کنید. بعد از پیوستن به یک گروه می‌توانید به شکل !" "groupname به تمام اعضای دیگر گروه پیام بفرستید. گروهی را که دوست دارید، " "نمی‌بینید؟ می‌توانید برای یافتن آن [بگردید](%%%action.groupsearch%%%) !یا [آن " -"را خودتان بسازید] (%%%%action.newgroup%%%%)" +"را خودتان بسازید](%%%%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" @@ -2368,7 +2389,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "خصوصی" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -3684,6 +3705,16 @@ msgstr "کاربر این نقش را ندارد." msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "کاربر قبلا ساکت شده است." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -3698,6 +3729,11 @@ msgstr "" msgid "Handle sessions" msgstr "مدیریت نشست‌ها" +#: actions/sessionsadminpanel.php:177 +#, fuzzy +msgid "Whether to handle sessions ourselves." +msgstr "چنان‌که به کاربران اجازهٔ دعوت‌کردن کاربران تازه داده شود." + #: actions/sessionsadminpanel.php:181 msgid "Session debugging" msgstr "اشکال‌زدایی نشست" @@ -4160,6 +4196,11 @@ msgstr "محدودیت متن" msgid "Maximum number of characters for notices." msgstr "بیشینهٔ تعداد نویسه‌ها برای پیام‌ها." +#: actions/siteadminpanel.php:278 +#, fuzzy +msgid "Dupe limit" +msgstr "محدودیت متن" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" @@ -4390,6 +4431,11 @@ msgstr "زمان فرستادن داده‌های آماری به کارگزار msgid "Frequency" msgstr "فرکانس" +#: actions/snapshotadminpanel.php:218 +#, fuzzy +msgid "Snapshots will be sent once every N web hits" +msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" + #: actions/snapshotadminpanel.php:226 msgid "Report URL" msgstr "نشانی اینترنتی گزارش" @@ -4536,6 +4582,11 @@ msgstr "خوراک پیام برای برچسب %s (RSS 2.0)" msgid "Notice feed for tag %s (Atom)" msgstr "خوراک پیام برای برچسب %s (Atom)" +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "هیچ پیوستی وجود ندارد." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -4584,6 +4635,11 @@ msgstr "چنین برچسبی وجود ندارد." msgid "You haven't blocked that user." msgstr "شما آن کاربر را مسدود نکرده اید." +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "کاربر ساکت نشده است." + #: actions/unsilence.php:72 msgid "User is not silenced." msgstr "کاربر ساکت نشده است." @@ -4596,6 +4652,12 @@ msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." msgid "Unsubscribed" msgstr "لغو اشتراک شده" +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, fuzzy, php-format +msgid "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." + #. TRANS: User admin panel title #: actions/useradminpanel.php:60 msgctxt "TITLE" @@ -4732,6 +4794,21 @@ msgid "" "subscription." msgstr "" +#: actions/userauthorization.php:303 +#, fuzzy, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "نشانی تصویر چهره «%s» معتبر نیست." + +#: actions/userauthorization.php:308 +#, fuzzy, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "نشانی تصویر چهره «%s» معتبر نیست." + +#: actions/userauthorization.php:314 +#, fuzzy, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." + #: actions/userauthorization.php:329 #, php-format msgid "Profile URL ‘%s’ is for a local user." @@ -4882,6 +4959,17 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. +#: classes/File.php:190 +#, fuzzy, php-format +msgid "" +"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgstr "" +"هیچ پرونده‌ای نباید بزرگ‌تر از %d بایت باشد و پرونده‌ای که شما فرستادید %d بایت " +"بود. بارگذاری یک نسخهٔ کوچک‌تر را امتحان کنید." + #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4957,6 +5045,12 @@ msgstr "شما از فرستادن پیام مستقیم مردود شده ای msgid "Could not insert message." msgstr "پیغام نمی تواند درج گردد" +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "نمی‌توان پیام را تجزیه کرد." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -5045,6 +5139,12 @@ msgstr "" msgid "Missing profile." msgstr "نمایه وجود ندارد." +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "نمی‌توان پیام وب‌گاه را ذخیره کرد." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." @@ -5101,6 +5201,12 @@ msgstr "@%2$s، به %1$s خوش آمدید!" msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" +#. TRANS: Server exception thrown when updating a group URI failed. +#: classes/User_group.php:506 +#, fuzzy +msgid "Could not set group URI." +msgstr "نمیتوان گروه را تشکیل داد" + #. TRANS: Server exception thrown when setting group membership failed. #: classes/User_group.php:529 msgid "Could not set group membership." @@ -5727,6 +5833,13 @@ msgstr "فرمان شکست خورد" msgid "Notice with that id does not exist." msgstr "پیامی با آن شناسه وجود ندارد." +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "کاربر آگهی آخر ندارد" + #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #: lib/command.php:130 @@ -6073,6 +6186,11 @@ msgstr "" "tracks - هنوز پیاده نشده است.\n" "tracking - هنوز پیاده نشده است.\n" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "بدون کد تصدیق." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "من به دنبال پرونده‌های پیکربندی در مکان‌های زیر بودم: " @@ -6140,6 +6258,11 @@ msgstr "" msgid "RSS 2.0" msgstr "" +#: lib/feed.php:89 +#, fuzzy +msgid "Atom" +msgstr "مؤلف" + #: lib/feed.php:91 msgid "FOAF" msgstr "" @@ -6299,6 +6422,11 @@ msgstr "فرمت(فایل) عکس پشتیبانی نشده." msgid "That file is too big. The maximum file size is %s." msgstr "این پرونده خیلی بزرگ است. بیشینهٔ اندازهٔ پرونده %s است." +#: lib/imagefile.php:93 +#, fuzzy +msgid "Partial upload." +msgstr "هیچ پرونده‌ای بارگذاری نشد." + #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 msgid "System error uploading file." @@ -6818,6 +6946,12 @@ msgstr "" "متاسفیم، دریافت محل جغرافیایی شما بیش از انتظار طول کشیده است، لطفا بعدا " "دوباره تلاش کنید." +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "خیر" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -6994,6 +7128,11 @@ msgstr "خصوصیت" msgid "Popular" msgstr "محبوب" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "هیچ پیوستی وجود ندارد." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "این پیام تکرار شود؟" @@ -7015,6 +7154,16 @@ msgstr "دسترسی کاربر به گروه مسدود شود" msgid "No single user defined for single-user mode." msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است." +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "صندوق دریافتی" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "آزاد سازی کاربر" + #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" @@ -7068,6 +7217,11 @@ msgstr "ساکت کردن" msgid "Silence this user" msgstr "ساکت کردن این کاربر" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "افراد مشترک %s" + #: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" @@ -7109,6 +7263,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "به روز رسانی چهره موفقیت آمیر نبود." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -7137,6 +7298,11 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "اعلان های بالا" @@ -7145,6 +7311,11 @@ msgstr "اعلان های بالا" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "آزاد سازی کاربر" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "از حالت سکوت درآوردن" @@ -7277,14 +7448,15 @@ msgstr "%s یک رنگ صحیح نیست! از ۳ یا ۶ نویسه مبنای #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "هیچ شناسهٔ کاربری مشخص نشده است." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index aa39e244ae..0886e5ad30 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,28 +14,60 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:22+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#, fuzzy +msgid "Access" +msgstr "Hyväksy" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +#, fuzzy +msgid "Site access settings" +msgstr "Profiilikuva-asetukset" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Registration" +msgstr "Rekisteröidy" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Yksityisyys" + #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy +msgid "Invite only" +msgstr "Kutsu" + #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." @@ -46,6 +78,12 @@ msgstr "" msgid "Closed" msgstr "Suljettu" +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +#, fuzzy +msgid "Save access settings" +msgstr "Profiilikuva-asetukset" + #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button label to save SMS preferences. @@ -88,6 +126,12 @@ msgstr "Sivua ei ole." msgid "No such user." msgstr "Käyttäjää ei ole." +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:90 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s ja kaverit" + #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname #. TRANS: Message is used as link title. %s is a user nickname. @@ -134,6 +178,16 @@ msgstr "" "Kokeile useamman käyttäjän tilaamista [liittymällä ryhmään](%%action.groups%" "%) tai kirjoita päivitys." +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:146 +#, fuzzy, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from their profile or [post something " +"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" +"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." +"newnotice%%%%?status_textarea=%s)!" + #: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 #, php-format msgid "" @@ -241,6 +295,12 @@ msgstr "" msgid "Unable to save your design settings." msgstr "Ulkoasun tallennus epäonnistui." +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Ei voitu päivittää käyttäjää." + #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Sinä et voi poistaa käyttäjiä." @@ -286,16 +346,32 @@ msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä." msgid "Recipient user not found." msgstr "Vastaanottajaa ei löytynyt." +#: actions/apidirectmessagenew.php:143 +#, fuzzy +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." + #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." +#: actions/apifavoritecreate.php:121 +#, fuzzy +msgid "This status is already a favorite." +msgstr "Tämä päivitys on jo suosikki!" + #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." +#: actions/apifavoritedestroy.php:124 +#, fuzzy +msgid "That status is not a favorite." +msgstr "Tämä päivitys ei ole suosikki!" + #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." @@ -317,6 +393,11 @@ msgstr "Ei voitu lopettaa tilausta: Käyttäjää ei löytynyt." msgid "You cannot unfollow yourself." msgstr "Sinä et voi poistaa käyttäjiä." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Ei voitu päivittää käyttäjää." @@ -376,6 +457,11 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." msgid "Too many aliases! Maximum %d." msgstr "Liikaa aliaksia. Maksimimäärä on %d." +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Virheellinen alias: \"%s\"" + #: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format @@ -403,6 +489,13 @@ msgstr "Sinä kuulut jo tähän ryhmään." msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." + #: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." @@ -421,6 +514,12 @@ msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." msgid "%s's groups" msgstr "Käyttäjän %s ryhmät" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Ryhmät, joiden jäsen %s on" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -428,6 +527,11 @@ msgstr "Käyttäjän %s ryhmät" msgid "%s groups" msgstr "Käyttäjän %s ryhmät" +#: actions/apigrouplistall.php:96 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Ryhmän toiminnot" + #: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Komento epäonnistui" @@ -436,6 +540,11 @@ msgstr "Komento epäonnistui" msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Koko ei kelpaa." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -456,6 +565,21 @@ msgstr "" "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " "uudelleen." +#: actions/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Käyttäjätunnus tai salasana ei kelpaa." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Virhe tapahtui käyttäjän asettamisessa." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -515,6 +639,16 @@ msgstr "Tunnus" msgid "Password" msgstr "Salasana" +#: actions/apioauthauthorize.php:328 +#, fuzzy +msgid "Deny" +msgstr "Ulkoasu" + +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Kaikki" + #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." msgstr "" @@ -532,6 +666,12 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä." msgid "No such notice." msgstr "Päivitystä ei ole." +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +#, fuzzy +msgid "Cannot repeat your own notice." +msgstr "Ilmoituksia ei voi pistää päälle." + #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. #: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." @@ -594,6 +734,21 @@ msgstr "" msgid "%s public timeline" msgstr "%s julkinen aikajana" +#: actions/apitimelinepublic.php:202 actions/publicrss.php:105 +#, fuzzy, php-format +msgid "%s updates from everyone!" +msgstr "%s päivitykset kaikilta!" + +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "Vastaukset käyttäjälle %s" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "Vastaukset käyttäjälle %s" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" @@ -672,6 +827,11 @@ msgstr "Lataa" msgid "Crop" msgstr "Rajaa" +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "Profiilia ei ole määritelty." + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" @@ -725,6 +885,19 @@ msgstr "Huomaa" msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "Kyllä" + #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. #: actions/block.php:164 lib/blockform.php:82 @@ -751,6 +924,16 @@ msgstr "Käyttäjän estotiedon tallennus epäonnistui." msgid "No such group." msgstr "Tuota ryhmää ei ole." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Käyttäjän profiili" + +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%s ja kaverit, sivu %d" + #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Lista käyttäjistä, jotka ovat estetty liittymästä tähän ryhmään." @@ -787,6 +970,12 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "Tuntematon osoitetyyppi %s " + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -839,6 +1028,12 @@ msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." msgid "Application not found." msgstr "Vahvistuskoodia ei löytynyt." +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Sinä et kuulu tähän ryhmään." + #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 @@ -846,6 +1041,11 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Päivitystä ei ole." + #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " @@ -853,6 +1053,18 @@ msgid "" "connections." msgstr "" +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +#, fuzzy +msgid "Do not delete this application" +msgstr "Älä poista tätä päivitystä" + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +#, fuzzy +msgid "Delete this application" +msgstr "Poista tämä päivitys" + #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 @@ -927,6 +1139,16 @@ msgstr "Ulkoasu" msgid "Design settings for this StatusNet site" msgstr "" +#: actions/designadminpanel.php:331 +#, fuzzy +msgid "Invalid logo URL." +msgstr "Koko ei kelpaa." + +#: actions/designadminpanel.php:335 +#, fuzzy, php-format +msgid "Theme not available: %s." +msgstr "Pikaviestin ei ole käytettävissä." + #: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Vaihda väriä" @@ -935,6 +1157,26 @@ msgstr "Vaihda väriä" msgid "Site logo" msgstr "Palvelun ilmoitus" +#: actions/designadminpanel.php:456 +#, fuzzy +msgid "Change theme" +msgstr "Vaihda" + +#: actions/designadminpanel.php:473 +#, fuzzy +msgid "Site theme" +msgstr "Palvelun ilmoitus" + +#: actions/designadminpanel.php:474 +#, fuzzy +msgid "Theme for the site." +msgstr "Kirjaudu ulos palvelusta" + +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Palvelun ilmoitus" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -948,6 +1190,13 @@ msgstr "Vaihda tautakuva" msgid "Background" msgstr "Tausta" +#: actions/designadminpanel.php:509 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." + #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" @@ -958,6 +1207,16 @@ msgstr "On" msgid "Off" msgstr "Off" +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +#, fuzzy +msgid "Turn background image on or off." +msgstr "Vaihda tautakuva" + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Vaihda tautakuva" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Vaihda väriä" @@ -966,6 +1225,11 @@ msgstr "Vaihda väriä" msgid "Content" msgstr "Sisältö" +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Haku" + #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Teksti" @@ -986,6 +1250,16 @@ msgstr "" msgid "Use defaults" msgstr "Käytä oletusasetuksia" +#: actions/designadminpanel.php:690 lib/designsettings.php:248 +#, fuzzy +msgid "Restore default designs" +msgstr "Käytä oletusasetuksia" + +#: actions/designadminpanel.php:696 lib/designsettings.php:254 +#, fuzzy +msgid "Reset back to default" +msgstr "Käytä oletusasetuksia" + #. TRANS: Submit button title. #: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351 @@ -998,6 +1272,11 @@ msgstr "Käytä oletusasetuksia" msgid "Save" msgstr "Tallenna" +#: actions/designadminpanel.php:699 lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Ryhmän ulkoasu" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Tämä päivitys ei ole suosikki!" @@ -1011,14 +1290,66 @@ msgstr "Lisää suosikkeihin" msgid "No such document \"%s\"" msgstr "Liitettä ei ole." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Muita asetuksia" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "" +"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Päivitystä ei ole." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Käytä tätä lomaketta muokataksesi ryhmää." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Sama kuin ylläoleva salasana. Pakollinen." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Kuvaus" + #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Kotisivun verkko-osoite ei ole toimiva." + #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "" +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." + #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." msgstr "" @@ -1031,6 +1362,11 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +#, fuzzy +msgid "Could not update application." +msgstr "Ei voitu päivittää ryhmää." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -1085,6 +1421,13 @@ msgstr "Profiiliasetukset" msgid "Manage how you get email from %%site.name%%." msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Sähköpostiosoitteet" + #. TRANS: Form note in e-mail settings form. #: actions/emailsettings.php:112 msgid "Current confirmed email address." @@ -1111,6 +1454,17 @@ msgstr "" "sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " "lisäohjeita. " +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Peruuta" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -1120,6 +1474,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "Lisää" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -1140,6 +1504,14 @@ msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " "osoitteen" +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "Uusi" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -1180,6 +1552,12 @@ msgstr "Haluan lähettää päivityksiä sähköpostilla." msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "Ulkoasuasetukset tallennettu." + #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 msgid "No email address." @@ -1232,6 +1610,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Tämä on väärä pikaviestiosoite." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1329,6 +1713,11 @@ msgstr "Esittelyssä olevat käyttäjät" msgid "Featured users, page %d" msgstr "Esittelyssä olevat käyttäjät, sivu %d" +#: actions/featured.php:99 +#, fuzzy, php-format +msgid "A selection of some great users on %s" +msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä" + #: actions/file.php:34 msgid "No notice ID." msgstr "Päivitystä ei ole." @@ -1349,6 +1738,11 @@ msgstr "Liitettä ei ole." msgid "Not expecting this response!" msgstr "Odottamaton vastaus saatu!" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Käyttäjää jota seurataan ei ole olemassa." + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Voit käyttää paikallista tilausta!" @@ -1365,6 +1759,16 @@ msgstr "Sinulla ei ole valtuutusta tähän." msgid "Could not convert request token to access token." msgstr "Ei saatu request tokenia." +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Tuntematon OMB-protokollan versio." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Virhe tapahtui etäprofiilin päivittämisessä" + #: actions/getfile.php:79 msgid "No such file." msgstr "Tiedostoa ei ole." @@ -1373,6 +1777,11 @@ msgstr "Tiedostoa ei ole." msgid "Cannot read file." msgstr "Tiedostoa ei voi lukea." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Koko ei kelpaa." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1391,6 +1800,13 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "No profile specified." msgstr "Profiilia ei ole määritelty." +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:86 +#, fuzzy +msgid "No profile with that ID." +msgstr "Ei profiilia tuolle ID:lle." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1430,6 +1846,16 @@ msgstr "Älä estä tätä käyttäjää tästä ryhmästä" msgid "Block this user from this group" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "Poista käyttäjän esto ryhmästä" + +#: actions/groupbyid.php:74 actions/userbyid.php:70 +#, fuzzy +msgid "No ID." +msgstr "Ei Jabber ID -osoitetta" + #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "" @@ -1458,6 +1884,12 @@ msgstr "Ulkoasuasetukset tallennettu." msgid "Group logo" msgstr "Ryhmän logo" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s." + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi" @@ -1559,6 +1991,16 @@ msgstr "" msgid "Create a new group" msgstr "Luo uusi ryhmä" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " +"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " +"olla 3 tai useamman merkin pituisia." + #: actions/groupsearch.php:58 msgid "Group search" msgstr "Ryhmähaku" @@ -1726,6 +2168,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Tämä on väärä pikaviestiosoite." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Ei voitu poistaa sähköpostivahvistusta." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1742,6 +2190,11 @@ msgstr "Tämä ei ole Jabber ID-tunnuksesi." msgid "The IM address was removed." msgstr "Saapuvan sähköpostin osoite poistettu." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Saapuneet viestit käyttäjälle %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1827,6 +2280,13 @@ msgstr "Henkilökohtainen viesti" msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Lähetä" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1894,6 +2354,16 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Tunnusta ei ole." + +#: actions/joingroup.php:141 +#, fuzzy, php-format +msgid "%1$s joined group %2$s" +msgstr "%s liittyi ryhmään %s" + #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." @@ -1953,8 +2423,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Yksityisyys" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2020,6 +2491,11 @@ msgstr "Olet jo kirjautunut sisään." msgid "Incorrect username or password." msgstr "Väärä käyttäjätunnus tai salasana" +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Sinulla ei ole valtuutusta tähän." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Kirjaudu sisään" @@ -2050,10 +2526,33 @@ msgstr "" "Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " "asetuksiesi muuttamista." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Eikö sinulla ole vielä käyttäjätunnusta? [Rekisteröi](%%action.register%%) " +"käyttäjätunnus." + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän." +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%s on jo ryhmän \"%s\" ylläpitäjä." + +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Ei saatu käyttäjän %s jäsenyystietoja ryhmästä %s" + #: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." @@ -2063,10 +2562,30 @@ msgstr "Tee tästä käyttäjästä ylläpitäjä" msgid "No current status." msgstr "Ei tuloksia" +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Päivitystä ei ole." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Käytä tätä lomaketta luodaksesi ryhmän." + #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "" +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Ei voitu lisätä aliasta." + #: actions/newgroup.php:53 msgid "New group" msgstr "Uusi ryhmä" @@ -2105,6 +2624,13 @@ msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi msgid "Message sent" msgstr "Viesti lähetetty" +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Suora viesti käyttäjälle %s lähetetty" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Ajax-virhe" @@ -2141,14 +2667,36 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" -"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action." +"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." "newnotice%%%%?status_textarea=%s)!" +#: actions/noticesearch.php:124 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" +"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." +"newnotice%%%%?status_textarea=%s)!" + +#: actions/noticesearchrss.php:96 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"Käyttäjä ei ole sallinut tönäisyjä tai ei ole vahvistanut " +"sähköpostiosoitettaan." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Tönäisy lähetetty" @@ -2157,6 +2705,17 @@ msgstr "Tönäisy lähetetty" msgid "Nudge sent!" msgstr "Tönäisy lähetetty!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "" +"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Muita asetuksia" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -2174,6 +2733,11 @@ msgstr "" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Sinä et kuulu tähän ryhmään." + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -2196,6 +2760,12 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "Yhdistä" + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2248,10 +2818,35 @@ msgstr "Näytä tai piillota profiilin ulkoasu." msgid "URL shortening service is too long (max 50 chars)." msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Ryhmää ei ole määritelty." + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Profiilia ei ole määritelty." + #: actions/otp.php:90 msgid "No login token requested." msgstr "Ei valtuutuspyyntöä!" +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Päivityksen sisältö ei kelpaa" + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Kirjaudu sisään" + +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Käyttäjän %s lähetetyt viestit" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2331,14 +2926,54 @@ msgstr "Polut" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Pikaviestin ei ole käytettävissä." + +#: actions/pathsadminpanel.php:163 +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Pikaviestin ei ole käytettävissä." + +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Taustakuvan hakemisto" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Pikaviestin ei ole käytettävissä." + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +#, fuzzy +msgid "Site" +msgstr "Kutsu" + +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Palauta" + #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." msgstr "" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Path" +msgstr "Polut" + +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Palvelun ilmoitus" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2371,6 +3006,21 @@ msgstr "" msgid "Theme directory" msgstr "" +#: actions/pathsadminpanel.php:279 +#, fuzzy +msgid "Avatars" +msgstr "Kuva" + +#: actions/pathsadminpanel.php:284 +#, fuzzy +msgid "Avatar server" +msgstr "Profiilikuva-asetukset" + +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "Kuva päivitetty." + #: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "Taustakuvan hakemisto" @@ -2391,6 +3041,26 @@ msgstr "Taustakuvan hakemistopolku" msgid "Background directory" msgstr "Taustakuvan hakemisto" +#: actions/pathsadminpanel.php:320 +#, fuzzy +msgid "SSL" +msgstr "SMS" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +#, fuzzy +msgid "Never" +msgstr "Palauta" + +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "Päivitykset" + +#: actions/pathsadminpanel.php:325 +#, fuzzy +msgid "Always" +msgstr "Aliakset" + #: actions/pathsadminpanel.php:329 msgid "Use SSL" msgstr "" @@ -2399,10 +3069,20 @@ msgstr "" msgid "When to use SSL" msgstr "" +#: actions/pathsadminpanel.php:335 +#, fuzzy +msgid "SSL server" +msgstr "Palauta" + #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Palvelun ilmoitus" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2422,6 +3102,11 @@ msgstr "Etsi ihmisiä" msgid "Not a valid people tag: %s." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Koko ei kelpaa." @@ -2488,6 +3173,11 @@ msgstr "Tietoja" msgid "Location" msgstr "Kotipaikka" +#: actions/profilesettings.php:134 actions/register.php:480 +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" + #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" msgstr "" @@ -2550,6 +3240,11 @@ msgstr "Virheellinen tagi: \"%s\"" msgid "Couldn't update user for autosubscribe." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Tageja ei voitu tallentaa." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Ei voitu tallentaa profiilia." @@ -2593,6 +3288,15 @@ msgstr "Julkisen Aikajanan Syöte (RSS 2.0)" msgid "Public Stream Feed (Atom)" msgstr "Julkinen syöte (Atom)" +#: actions/public.php:188 +#, fuzzy, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" +"Tämä on käyttäjän %s ja kavereiden aikajana, mutta kukaan ei ole lähettyänyt " +"vielä mitään." + #: actions/public.php:191 msgid "Be the first to post!" msgstr "Ole ensimmäinen joka lähettää päivityksen!" @@ -2612,6 +3316,16 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +#: actions/public.php:247 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" +"blogging)palvelu " + #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Julkinen tagipilvi" @@ -2625,7 +3339,7 @@ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag] (%%doc.tags%%) " +"Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " "vielä." #: actions/publictagcloud.php:72 @@ -2671,6 +3385,15 @@ msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." msgid "Could not update user with confirmed email address." msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, " +"joka on rekisteröity käyttäjätunnuksellesi." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "Sinut on tunnistettu. Syötä uusi salasana alapuolelle. " @@ -2708,6 +3431,11 @@ msgstr "Salasanan palautuspyyntö lähetetty." msgid "Unknown action" msgstr "Tuntematon toiminto" +#: actions/recoverpassword.php:236 +#, fuzzy +msgid "6 or more characters, and don't forget it!" +msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" + #: actions/recoverpassword.php:243 msgid "Reset" msgstr "Vaihda" @@ -2846,6 +3574,49 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"poislukien yksityinen tieto: salasana, sähköpostiosoite, IM-osoite, " +"puhelinnumero." + +#: actions/register.php:583 +#, fuzzy, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Onnittelut, %s! Tervetuloa palveluun %%%%site.name%%%%. Täältä voit " +"jatkaa...\n" +"\n" +"* [Profiiliisi](%s) ja lähettää ensimmäisen päivityksesi.\n" +"* Lisäämään [Jabber/GTalk osoitteen](%%%%action.imsettings%%%%), jotta saat " +"lähetettyä päivitykset pikaviestimen kautta.\n" +"* [Hakemaan ihmisiä](%%%%action.peoplesearch%%%%), jotka tunnet tai joilla " +"on samanlaisia kiinnostuksen kohteita. \n" +"* Päivittämään [profiiliasi](%%%%action.profilesettings%%%%), jotta muut " +"tietävät enemmän sinusta.\n" +"* Lukemaan [ohjeista](%%%%doc.help%%%%) muista ominaisuuksista, joista et " +"vielä tiedä. \n" +"\n" +"Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." + #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2899,15 +3670,52 @@ msgstr "Tilaa" msgid "Invalid profile URL (bad format)" msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "" +"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " +"löytynyt)." + #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Ei saatu request tokenia." + +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." + +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Profiilia ei ole määritelty." + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." + #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Sinä kuulut jo tähän ryhmään." +#: actions/repeat.php:114 lib/noticelist.php:676 +#, fuzzy +msgid "Repeated" +msgstr "Luotu" + +#: actions/repeat.php:119 +#, fuzzy +msgid "Repeated!" +msgstr "Luotu" + #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format @@ -2919,6 +3727,16 @@ msgstr "Vastaukset käyttäjälle %s" msgid "Replies to %1$s, page %2$d" msgstr "Vastaukset käyttäjälle %s" +#: actions/replies.php:145 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/replies.php:152 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + #: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" @@ -2940,10 +3758,44 @@ msgid "" "[join groups](%%action.groups%%)." msgstr "" +#: actions/replies.php:206 +#, fuzzy, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" +"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." +"newnotice%%%%?status_textarea=%s)!" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "Päivityksesi tähän palveluun on estetty." +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Käyttäjälle ei löydy profiilia" + +#: actions/rsd.php:146 actions/version.php:159 +#, fuzzy +msgid "StatusNet" +msgstr "Päivitys poistettu." + +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Käyttäjä on asettanut eston sinulle." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2970,11 +3822,39 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#, fuzzy +msgid "Save site settings" +msgstr "Profiilikuva-asetukset" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Päivitykselle ei ole profiilia" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +#, fuzzy +msgid "Name" +msgstr "Tunnus" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#, fuzzy +msgid "Organization" +msgstr "Sivutus" + #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 #: lib/applicationeditform.php:207 lib/groupeditform.php:172 @@ -3029,6 +3909,16 @@ msgid "" "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Oletko varma että haluat poistaa tämän päivityksen?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Käyttäjän %s suosikkipäivitykset" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Ei saatu haettua suosikkipäivityksiä." @@ -3129,6 +4019,13 @@ msgstr "Käyttäjän %s lähetetyt viestit" msgid "Members" msgstr "Jäsenet" +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 +#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 +#, fuzzy +msgid "(None)" +msgstr "(Tyhjä)" + #: actions/showgroup.php:404 msgid "All members" msgstr "Kaikki jäsenet" @@ -3147,6 +4044,17 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + #: actions/showgroup.php:489 msgid "Admins" msgstr "Ylläpitäjät" @@ -3173,6 +4081,11 @@ msgstr "Viesti käyttäjältä %1$s, %2$s" msgid "Notice deleted." msgstr "Päivitys on poistettu." +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Päivitykset joilla on tagi %s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -3198,6 +4111,11 @@ msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" msgid "Notice feed for %s (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Käyttäjän %s lähetetyt viestit" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -3211,6 +4129,15 @@ msgid "" "would be a good time to start :)" msgstr "" +#: actions/showstream.php:207 +#, fuzzy, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" +"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." +"newnotice%%%%?status_textarea=%s)!" + #: actions/showstream.php:243 #, php-format msgid "" @@ -3220,6 +4147,36 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " +"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "Vastaukset käyttäjälle %s" + +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: actions/siteadminpanel.php:69 +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." + #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" @@ -3245,6 +4202,11 @@ msgstr "" msgid "General" msgstr "" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Palvelun ilmoitus" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -3265,6 +4227,16 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" + +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Paikalliset näkymät" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -3273,6 +4245,11 @@ msgstr "" msgid "Default timezone for the site; usually UTC." msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Ensisijainen kieli" + #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" @@ -3297,14 +4274,39 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Palvelun ilmoitus" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Uusi viesti" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Twitter-asetuksia ei voitu tallentaa!" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Palvelun ilmoitus" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Palvelun ilmoitus" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3348,6 +4350,13 @@ msgstr "Vahvistuskoodi" msgid "Enter the code you received on your phone." msgstr "Syötä koodi jonka sait puhelimeesi." +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Vahvista" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3372,6 +4381,12 @@ msgstr "" "Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja " "tästä matkapuhelinoperaattoriltani." +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Asetukset tallennettu." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -3417,6 +4432,12 @@ msgstr "SMS vahvistus" msgid "That is not your phone number." msgstr "Tämä ei ole puhelinnumerosi." +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS puhelinnumero" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -3498,6 +4519,11 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Profiilikuva-asetukset" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." @@ -3511,6 +4537,16 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Tiedostoa ei ole." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Et ole tilannut tämän käyttäjän päivityksiä." + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "Tilattu" @@ -3614,6 +4650,11 @@ msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" msgid "Notice feed for tag %s (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Ei id parametria." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3665,6 +4706,16 @@ msgstr "Tuota tagia ei ole." msgid "You haven't blocked that user." msgstr "Älä estä tätä käyttäjää" +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Käyttäjää ei ole estetty ryhmästä." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Käyttäjällä ei ole profiilia." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "Ei profiilia tuolle ID:lle." @@ -3679,6 +4730,13 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "Käyttäjä" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -3710,6 +4768,11 @@ msgstr "" msgid "Maximum length of a profile bio in characters." msgstr "" +#: actions/useradminpanel.php:232 +#, fuzzy +msgid "New users" +msgstr "Kutsu uusia käyttäjiä" + #: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" @@ -3718,6 +4781,28 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Kaikki tilaukset" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " +"ihmiskäyttäjille)" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "Kutsu(t) lähetettiin" + +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "Kutsu(t) lähetettiin" + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -3730,6 +4815,17 @@ msgstr "" msgid "Authorize subscription" msgstr "Valtuuta tilaus" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -3749,6 +4845,11 @@ msgstr "Tilaa tämä käyttäjä" msgid "Reject" msgstr "Hylkää" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "Käyttäjän %s tilaukset" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Ei valtuutuspyyntöä!" @@ -3757,10 +4858,31 @@ msgstr "Ei valtuutuspyyntöä!" msgid "Subscription authorized" msgstr "Tilaus sallittu" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " +"Tilauskoodisi on:" + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tilaus hylätty" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3786,6 +4908,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kuvan URL-osoitetta '%s' ei voi avata." + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kuvan '%s' tyyppi on väärä" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profiiliasetukset" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3827,6 +4964,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: actions/version.php:75 +#, fuzzy, php-format +msgid "StatusNet %s" +msgstr "Tilastot" + #: actions/version.php:155 #, php-format msgid "" @@ -3865,6 +5007,12 @@ msgstr "" msgid "Plugins" msgstr "" +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +#, fuzzy +msgid "Version" +msgstr "Omat" + #: actions/version.php:199 msgid "Author(s)" msgstr "" @@ -3912,6 +5060,30 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Koko ei kelpaa." + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Ryhmän profiili" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Ei voitu päivittää ryhmää." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Ryhmän profiili" + #: classes/Group_member.php:108 lib/joinform.php:114 msgid "Join" msgstr "Liity" @@ -3923,11 +5095,30 @@ msgstr "Liity" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Ei voitu päivittää ryhmää." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Ei voitu lisätä aliasta." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Tapahtui virhe suoran viestin lähetyksessä." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -3951,6 +5142,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Virhe tapahtui profiilikuvan lisäämisessä" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Ongelma päivityksen tallentamisessa." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -3989,6 +5186,12 @@ msgstr "Ongelma päivityksen tallentamisessa." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Ongelma päivityksen tallentamisessa." + #. 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:1824 @@ -4010,16 +5213,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Käyttäjällä ei ole profiilia." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Tagien tallennus epäonnistui." +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Ei ole tilattu!." + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "Käyttäjä on asettanut eston sinulle." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ei ole tilattu!." + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -4044,6 +5271,13 @@ msgstr "" msgid "%s is now following %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:384 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -4059,6 +5293,12 @@ msgstr "Ryhmän luonti ei onnistunut." msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "Tilausta ei onnistuttu tallentamaan." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" @@ -4079,6 +5319,12 @@ msgstr "Vaihda salasanasi" msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Käyttäjän profiili" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -4089,6 +5335,12 @@ msgstr "Muita asetuksia" msgid "Other" msgstr "Muut" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, fuzzy, php-format +msgid "%1$s - %2$s" +msgstr "%1$s (%2$s)" + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -4099,17 +5351,67 @@ msgstr "Nimetön sivu" msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "Henkilökohtainen profiili ja kavereiden aikajana" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Omat" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Vaihda salasanasi" +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Ei voitu uudelleenohjata palvelimelle: %s" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Yhdistä" +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "Ensisijainen sivunavigointi" + +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Ylläpito" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Kutsu" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -4128,24 +5430,49 @@ msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi ryhmä" +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Rekisteröidy" + #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään" +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Kirjaudu sisään" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ohjeet" +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Ohjeet" + #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:513 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae lisää ryhmiä" +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Haku" + #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 @@ -4202,11 +5529,29 @@ msgstr "Lähdekoodi" msgid "Contact" msgstr "Ota yhteyttä" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "Tönäise" + #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4228,6 +5573,12 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet-ohjelmiston lisenssi" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -4291,11 +5642,105 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Rekisteröityminen ei ole sallittu." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Komentoa ei ole vielä toteutettu." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Komentoa ei ole vielä toteutettu." + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Twitter-asetuksia ei voitu tallentaa!" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "Sähköpostiosoitteen vahvistus" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Kutsu" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "SMS vahvistus" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Ulkoasu" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "SMS vahvistus" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "SMS vahvistus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "SMS vahvistus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS vahvistus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "Palvelun ilmoitus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS vahvistus" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4358,11 +5803,29 @@ msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" msgid "Describe your application" msgstr "Kuvaus" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Lähdekoodi" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4419,6 +5882,25 @@ msgstr "" msgid "Approved %1$s - \"%2$s\" access." msgstr "" +#. TRANS: Button label +#: lib/applicationlist.php:158 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "Poista" + +#. TRANS: DT element label in attachment list. +#: lib/attachmentlist.php:88 +#, fuzzy +msgid "Attachments" +msgstr "Liitettä ei ole." + +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:265 +#, fuzzy +msgid "Author" +msgstr "Atom" + #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:279 msgid "Provider" @@ -4429,6 +5911,22 @@ msgstr "Esikatselu" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "Liitettä ei ole." + +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Salasanan vaihto" + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Salasanan vaihto" + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4446,6 +5944,26 @@ msgstr "Komento suoritettu" msgid "Command failed" msgstr "Komento epäonnistui" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "Ei profiilia tuolla id:llä." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Käyttäjällä ei ole viimeistä päivitystä" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4463,6 +5981,13 @@ msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Tönäisy lähetetty" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4528,16 +6053,62 @@ msgid "" "same server." msgstr "" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, fuzzy, php-format +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" + #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Päivitys lähetetty" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 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. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Vastaa tähän päivitykseen" + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Ongelma päivityksen tallentamisessa." + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +msgid "Specify the name of the user to subscribe to." +msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" + +#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. +#: lib/command.php:664 +#, fuzzy +msgid "Can't subscribe to OMB profiles by command." +msgstr "Et ole tilannut tämän käyttäjän päivityksiä." + #. 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:672 @@ -4545,6 +6116,13 @@ msgstr "Virhe tapahtui käyttäjän asettamisessa." 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:694 lib/command.php:804 +#, fuzzy +msgid "Specify the name of the user to unsubscribe from." +msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" + #. 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:705 @@ -4597,6 +6175,46 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Et ole tilannut tämän käyttäjän päivityksiä." + +#. 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:836 +#, fuzzy +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:" +msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" + +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Toista ei voitu asettaa tilaamaan sinua." + +#. 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:863 +#, fuzzy +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Toista ei voitu asettaa tilaamaan sinua." +msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." + +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +msgid "You are not a member of any groups." +msgstr "Sinä et kuulu tähän ryhmään." + #. 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. @@ -4649,6 +6267,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Varmistuskoodia ei ole annettu." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4657,6 +6280,11 @@ msgstr "" msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "Kirjaudu sisään palveluun" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "Pikaviestin" @@ -4669,6 +6297,11 @@ msgstr "Päivitykset pikaviestintä käyttäen (IM)" msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Yhdistä" + #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" msgstr "" @@ -4677,6 +6310,22 @@ msgstr "" msgid "Database error" msgstr "Tietokantavirhe" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Lataa" + +#: lib/designsettings.php:109 +#, fuzzy +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." + +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "Ulkoasuasetukset tallennettu." + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Poista tämä päivitys suosikeista" @@ -4713,6 +6362,11 @@ msgstr "Suodata tagien perusteella" msgid "All" msgstr "Kaikki" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Valitse operaattori" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Tagi" @@ -4734,6 +6388,11 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" @@ -4845,6 +6504,11 @@ msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." msgid "Unsupported image file format." msgstr "Kuvatiedoston formaattia ei ole tuettu." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logon." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Osittain ladattu palvelimelle." @@ -5003,6 +6667,12 @@ msgstr "%s päivitys" msgid "SMS confirmation" msgstr "SMS vahvistus" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -5132,6 +6802,11 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" +#: lib/mailbox.php:228 lib/noticelist.php:506 +#, fuzzy +msgid "from" +msgstr " lähteestä " + #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." @@ -5148,6 +6823,11 @@ msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Kuvatiedoston formaattia ei ole tuettu." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5231,6 +6911,12 @@ msgstr "Vastaanottaja" msgid "Available characters" msgstr "Sallitut merkit" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Lähetä" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Lähetä päivitys" @@ -5248,12 +6934,28 @@ msgstr "" msgid "Attach a file" msgstr "" +#: lib/noticeform.php:213 +#, fuzzy +msgid "Share my location" +msgstr "Tageja ei voitu tallentaa." + +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Tageja ei voitu tallentaa." + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "Ei" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -5282,6 +6984,16 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "Ei sisältöä!" + +#: lib/noticelist.php:603 +#, fuzzy +msgid "Repeated by" +msgstr "Luotu" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" @@ -5290,6 +7002,11 @@ msgstr "Vastaa tähän päivitykseen" msgid "Reply" msgstr "Vastaus" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Päivitys on poistettu." + #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Tönäise tätä käyttäjää" @@ -5356,6 +7073,12 @@ msgstr "Lähettämäsi viestit" msgid "Tags in %s's notices" msgstr "Tagit käyttäjän %s päivityksissä" +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "Tuntematon toiminto" + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" @@ -5372,6 +7095,11 @@ msgstr "Tilaajat" msgid "All subscribers" msgstr "Kaikki tilaajat" +#: lib/profileaction.php:191 +#, fuzzy +msgid "User ID" +msgstr "Käyttäjä" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Käyttäjänä alkaen" @@ -5409,14 +7137,50 @@ msgstr "Esittelyssä" msgid "Popular" msgstr "Suosituimmat" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ei id parametria." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Vastaa tähän päivitykseen" + #: lib/repeatform.php:132 msgid "Yes" msgstr "Kyllä" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Vastaa tähän päivitykseen" + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Saapuneet" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Poista esto tältä käyttäjältä" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Haku" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -5428,6 +7192,12 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Haku" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Henkilö" @@ -5452,6 +7222,16 @@ msgstr "Nimetön osa" msgid "More..." msgstr "Lisää..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Palvelun ilmoitus" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Estä tämä käyttäjä" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -5498,6 +7278,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Profiilikuvan päivittäminen epäonnistui." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5538,10 +7325,20 @@ msgstr "Eniten päivityksiä" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Poista esto tältä käyttäjältä" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Poista esto tältä käyttäjältä" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" @@ -5550,6 +7347,11 @@ msgstr "Peruuta tämän käyttäjän tilaus" msgid "Unsubscribe" msgstr "Peruuta tilaus" +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Kuva" + #: lib/userprofile.php:234 lib/userprofile.php:248 msgid "User actions" msgstr "Käyttäjän toiminnot" @@ -5558,6 +7360,11 @@ msgstr "Käyttäjän toiminnot" msgid "User deletion in progress..." msgstr "" +#: lib/userprofile.php:263 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profiiliasetukset" + #: lib/userprofile.php:264 msgid "Edit" msgstr "" @@ -5574,6 +7381,17 @@ msgstr "Viesti" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "Käyttäjän profiili" + +#: lib/userprofile.php:366 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Ylläpitäjät" + #: lib/userprofile.php:367 msgctxt "role" msgid "Moderator" @@ -5641,6 +7459,11 @@ msgstr[1] "" msgid "about a year ago" msgstr "noin vuosi sitten" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Kotisivun verkko-osoite ei ole toimiva." + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." @@ -5648,14 +7471,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Ryhmää ei ole määritelty." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index f4cb8829ca..683a2bd6d0 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:23+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2425,7 +2425,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privé" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -3297,7 +3297,7 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." +"Vous êtes sur %%site.name%% un service de [microblog](http://fr.wikipedia." "org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." "net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " "vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" @@ -7564,14 +7564,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Aucun identifiant d’utilisateur n’a été spécifié." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 48edc0c3a7..79aa8d28c2 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,39 +9,96 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:24+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:46+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#, fuzzy +msgid "Access" +msgstr "Aceptar" #. TRANS: Page notice #: actions/accessadminpanel.php:67 msgid "Site access settings" msgstr "Configuración de perfil" +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Registration" +msgstr "Rexistrar" + #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Privacidade" + #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy +msgid "Invite only" +msgstr "Invitar" + #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +#, fuzzy +msgid "Closed" +msgstr "Bloquear" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +#, fuzzy +msgid "Save access settings" +msgstr "Configuracións de Twitter" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:68 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +#, fuzzy +msgid "No such page." +msgstr "Non existe a etiqueta." + #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:115 @@ -67,6 +124,12 @@ msgstr "" msgid "No such user." msgstr "Ningún usuario." +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:90 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname #. TRANS: Message is used as link title. %s is a user nickname. @@ -77,6 +140,24 @@ msgstr "Ningún usuario." msgid "%s and friends" msgstr "%s e amigos" +#. TRANS: %1$s is user nickname +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Fonte para os amigos de %s" + +#. TRANS: %1$s is user nickname +#: actions/all.php:116 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Fonte para os amigos de %s" + +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Fonte para os amigos de %s" + #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -106,6 +187,12 @@ msgid "" "post a notice to them." msgstr "" +#. TRANS: H1 text +#: actions/all.php:182 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. #: actions/allrss.php:121 actions/apitimelinefriends.php:216 @@ -114,6 +201,32 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "Método da API non atopado" + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -136,6 +249,11 @@ msgid "" "none." msgstr "" +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Non se puido actualizar o usuario." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -146,6 +264,11 @@ msgstr "" msgid "User has no profile." msgstr "O usuario non ten perfil." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Non se puido gardar o perfil." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -158,6 +281,28 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Non se puido actualizar o usuario." + +#: actions/apiblockcreate.php:106 +#, fuzzy +msgid "You cannot block yourself!" +msgstr "Non se puido actualizar o usuario." + #: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Bloqueo de usuario fallido." @@ -166,6 +311,11 @@ msgstr "Bloqueo de usuario fallido." msgid "Unblock user failed." msgstr "Desbloqueo de usuario fallido." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensaxes directas para %s" + #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" @@ -204,11 +354,21 @@ msgstr "" msgid "No status found with that ID." msgstr "Non se atopou un estado con ese ID." +#: actions/apifavoritecreate.php:121 +#, fuzzy +msgid "This status is already a favorite." +msgstr "Este chío xa é un favorito!" + #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." +#: actions/apifavoritedestroy.php:124 +#, fuzzy +msgid "That status is not a favorite." +msgstr "Este chío non é un favorito!" + #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." @@ -226,6 +386,18 @@ msgstr "Non podes seguir a este usuario: %s xa está na túa lista." msgid "Could not unfollow user: User not found." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." +#: actions/apifriendshipsdestroy.php:121 +#, fuzzy +msgid "You cannot unfollow yourself." +msgstr "Non se puido actualizar o usuario." + +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "" +"Dous identificadores de usuario ou nomes_en_pantalla deben ser " +"proporcionados." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Non se puido actualizar o usuario." @@ -283,6 +455,17 @@ msgstr "A localización é demasiado longa (max 255 car.)." msgid "Too many aliases! Maximum %d." msgstr "" +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Etiqueta inválida: '%s'" + +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + #: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." @@ -323,6 +506,18 @@ msgstr "Non estás suscrito a ese perfil" msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." +#. TRANS: %s is a user name +#: actions/apigrouplist.php:98 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Usuarios" + +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "%1s non é unha orixe fiable." + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -330,6 +525,11 @@ msgstr "Non podes seguir a este usuario: %s xa está na túa lista." msgid "%s groups" msgstr "" +#: actions/apigrouplistall.php:96 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opcions" + #: actions/apimediaupload.php:100 msgid "Upload failed." msgstr "Comando fallido" @@ -338,6 +538,11 @@ msgstr "Comando fallido" msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Tamaño inválido." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -356,6 +561,21 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." +#: actions/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Usuario ou contrasinal inválidos." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Acounteceu un erro configurando o usuario." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Erro ó inserir o hashtag na BD: %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -396,6 +616,12 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" +#. TRANS: Main menu option when logged in for access to user settings +#: actions/apioauthauthorize.php:310 lib/action.php:463 +#, fuzzy +msgid "Account" +msgstr "Sobre" + #: actions/apioauthauthorize.php:313 actions/login.php:252 #: actions/profilesettings.php:106 actions/register.php:431 #: actions/showgroup.php:245 actions/tagother.php:94 @@ -414,6 +640,11 @@ msgstr "Contrasinal" msgid "Deny" msgstr "" +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Todos" + #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." msgstr "" @@ -431,11 +662,22 @@ msgstr "Non deberías eliminar o estado de outro usuario" msgid "No such notice." msgstr "Ningún chío." +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +#, fuzzy +msgid "Cannot repeat your own notice." +msgstr "Non se pode activar a notificación." + #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. #: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Non se pode eliminar este chíos." +#: actions/apistatusesshow.php:139 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado." + #: actions/apistatusesshow.php:145 msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." @@ -459,6 +701,11 @@ msgstr "Non atopado" msgid "Max notice size is %d chars, including attachment URL." msgstr "" +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de ficheiro de imaxe non soportado." + #: actions/apitimelinefavorites.php:110 #, php-format msgid "%1$s / Favorites from %2$s" @@ -489,11 +736,26 @@ msgstr "Liña de tempo pública de %s" msgid "%s updates from everyone!" msgstr "%s chíos de calquera!" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "Replies to %s" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "Replies to %s" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "Método da API en contrución." @@ -523,6 +785,11 @@ msgstr "Tamaño inválido." msgid "Avatar" msgstr "Avatar" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 @@ -557,6 +824,11 @@ msgstr "Subir" msgid "Crop" msgstr "" +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "Non se especificou ningún perfil." + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -573,6 +845,11 @@ msgstr "Avatar actualizado." msgid "Failed updating avatar." msgstr "Acounteceu un fallo ó actualizar o avatar." +#: actions/avatarsettings.php:397 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." + #: actions/block.php:69 msgid "You already blocked that user." msgstr "Xa estas suscrito a estes usuarios:" @@ -591,24 +868,97 @@ msgstr "" "do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " "ser notificado de ningunha resposta-@ del." +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:153 actions/deleteapplication.php:154 +#: actions/deletenotice.php:147 actions/deleteuser.php:152 +#: actions/groupblock.php:178 +#, fuzzy +msgctxt "BUTTON" +msgid "No" +msgstr "No" + +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:157 actions/deleteuser.php:156 +#, fuzzy +msgid "Do not block this user" +msgstr "Bloquear usuario" + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "Si" + +#. TRANS: Submit button title for 'Yes' when blocking a user. +#. TRANS: Description of the form to block a user. +#: actions/block.php:164 lib/blockform.php:82 +#, fuzzy +msgid "Block this user" +msgstr "Bloquear usuario" + #: actions/block.php:187 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." +#. TRANS: Command exception text shown when a group is requested that does not exist. +#. TRANS: Error text shown when trying to leave a group that does not exist. +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 +#: lib/command.php:383 +#, fuzzy +msgid "No such group." +msgstr "Non existe a etiqueta." + #: actions/blockedfromgroup.php:97 #, php-format msgid "%s blocked profiles" msgstr "" +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%s e amigos" + #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "" +#: actions/blockedfromgroup.php:288 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloqueo de usuario fallido." + #. TRANS: Title for the form to unblock a user. #: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" msgstr "Desbloquear" +#. TRANS: Description of the form to unblock a user. +#: actions/blockedfromgroup.php:320 lib/unblockform.php:82 +#, fuzzy +msgid "Unblock this user" +msgstr "Bloquear usuario" + #. TRANS: Title for mini-posting window loaded from bookmarklet. #: actions/bookmarklet.php:51 #, php-format @@ -627,6 +977,12 @@ msgstr "Confirmation code not found." msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "Tipo de enderezo %s non recoñecido" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -662,15 +1018,44 @@ msgstr "Direccións de correo confirmadas actualmente." msgid "The address \"%s\" has been confirmed for your account." msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación." + #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Chíos" +#: actions/deleteapplication.php:63 +#, fuzzy +msgid "You must be logged in to delete an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + #: actions/deleteapplication.php:71 msgid "Application not found." msgstr "Confirmation code not found." +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Non estás suscrito a ese perfil" + +#. TRANS: Client error text when there is a problem with the session token. +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1320 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Ningún chío." + #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " @@ -678,6 +1063,18 @@ msgid "" "connections." msgstr "" +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +#, fuzzy +msgid "Do not delete this application" +msgstr "Non se pode eliminar este chíos." + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +#, fuzzy +msgid "Delete this application" +msgstr "Eliminar chío" + #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 @@ -693,6 +1090,15 @@ msgstr "Non está logueado." msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" + #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar chío" @@ -701,6 +1107,28 @@ msgstr "Eliminar chío" msgid "Are you sure you want to delete this notice?" msgstr "Estas seguro que queres eliminar este chío?" +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Non se pode eliminar este chíos." + +#. TRANS: Submit button title for 'Yes' when deleting a notice. +#: actions/deletenotice.php:158 lib/noticelist.php:657 +#, fuzzy +msgid "Delete this notice" +msgstr "Eliminar chío" + +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Non se puido actualizar o usuario." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Non deberías eliminar o estado de outro usuario" + #: actions/deleteuser.php:110 actions/deleteuser.php:133 msgid "Delete user" msgstr "Eliminar chío" @@ -711,6 +1139,12 @@ msgid "" "the user from the database, without a backup." msgstr "" +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Eliminar chío" + #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 @@ -721,14 +1155,44 @@ msgstr "" msgid "Design settings for this StatusNet site" msgstr "" +#: actions/designadminpanel.php:331 +#, fuzzy +msgid "Invalid logo URL." +msgstr "Tamaño inválido." + +#: actions/designadminpanel.php:335 +#, fuzzy, php-format +msgid "Theme not available: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + #: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Modificado" +#: actions/designadminpanel.php:444 +#, fuzzy +msgid "Site logo" +msgstr "Invitar" + +#: actions/designadminpanel.php:456 +#, fuzzy +msgid "Change theme" +msgstr "Modificado" + +#: actions/designadminpanel.php:473 +#, fuzzy +msgid "Site theme" +msgstr "Novo chío" + #: actions/designadminpanel.php:474 msgid "Theme for the site." msgstr "" +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Novo chío" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -742,6 +1206,13 @@ msgstr "" msgid "Background" msgstr "" +#: actions/designadminpanel.php:509 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" @@ -760,6 +1231,21 @@ msgstr "" msgid "Tile background image" msgstr "" +#: actions/designadminpanel.php:577 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambiar contrasinal" + +#: actions/designadminpanel.php:600 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texto" @@ -817,6 +1303,44 @@ msgstr "Engadir a favoritos" msgid "No such document \"%s\"" msgstr "Ningún chío." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Outras opcions" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Ningún chío." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "A mesma contrasinal que arriba. Requerido." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "O nome completo é demasiado longo (max 255 car)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "Subscrición rexeitada" @@ -825,10 +1349,20 @@ msgstr "Subscrición rexeitada" msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "A páxina persoal semella que non é unha URL válida." + #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "" +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." msgstr "" @@ -841,11 +1375,27 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +#, fuzzy +msgid "Could not update application." +msgstr "Non se puido actualizar o usuario." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 +#, fuzzy +msgid "You must be an admin to edit the group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + #: actions/editgroup.php:158 msgid "Use this form to edit the group." msgstr "" @@ -855,6 +1405,27 @@ msgstr "" msgid "description is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: '%s'" + +#: actions/editgroup.php:258 +#, fuzzy +msgid "Could not update group." +msgstr "Non se puido actualizar o usuario." + +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +#, fuzzy +msgid "Could not create aliases." +msgstr "Non se puido crear o favorito." + +#: actions/editgroup.php:280 +#, fuzzy +msgid "Options saved." +msgstr "Configuracións gardadas." + #. TRANS: Title for e-mail settings. #: actions/emailsettings.php:61 msgid "Email settings" @@ -867,6 +1438,13 @@ msgstr "Configuración de perfil" msgid "Manage how you get email from %%site.name%%." msgstr "Xestina como recibir correo dende %%site.name%%." +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Enderezos de correo" + #. TRANS: Form note in e-mail settings form. #: actions/emailsettings.php:112 msgid "Current confirmed email address." @@ -893,6 +1471,17 @@ msgstr "" "GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " "a %s á túa lista de contactos?)" +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -902,6 +1491,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "Dirección de correo, coma \"Nomede Usuario@example.org\"" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "Engadir" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -920,6 +1519,14 @@ msgstr "Enviar un correo a esta dirección para enviar novos chíos." msgid "Make a new email address for posting to; cancels the old one." msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "Novo" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -940,6 +1547,12 @@ msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." msgid "Send me email when someone sends me a private message." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." @@ -955,6 +1568,12 @@ msgstr "Quero enviar chíos dende o mail." msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "Preferencias gardadas." + #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 msgid "No email address." @@ -1007,6 +1626,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente para cancelar." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Esa é unha enderezo IM incorrecto." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1057,6 +1682,16 @@ msgstr "Desactivar favorito" msgid "Popular notices" msgstr "Chíos populares" +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Chíos populares" + +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Amoa os tags máis populares dende a semana pasada" + #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" @@ -1080,11 +1715,21 @@ msgstr "" msgid "%s's favorite notices" msgstr "Chíos favoritos de %s" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" msgstr "Usuarios destacados" +#: actions/featured.php:71 +#, fuzzy, php-format +msgid "Featured users, page %d" +msgstr "Usuarios destacados" + #: actions/featured.php:99 #, php-format msgid "A selection of some great users on %s" @@ -1098,10 +1743,25 @@ msgstr "Ningún chío." msgid "No notice." msgstr "Ningún chío." +#: actions/file.php:42 +#, fuzzy +msgid "No attachments." +msgstr "Ningún documento." + +#: actions/file.php:51 +#, fuzzy +msgid "No uploaded attachments." +msgstr "Ningún documento." + #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Non esperaba esa resposta!" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuario que está sendo escoitado non existe." + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Podes empregar a túa subscrición local!" @@ -1114,6 +1774,21 @@ msgstr "Este usuario non che permite suscribirte a el." msgid "You are not authorized." msgstr "Non estás suscrito a ese perfil" +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Non se pode convertir o token da petición a tokens de acceso." + +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión de protocolo OMB descoñecida." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Acounteceu un erro actualizando o perfil remoto" + #: actions/getfile.php:79 msgid "No such file." msgstr "Ningún chío." @@ -1122,6 +1797,11 @@ msgstr "Ningún chío." msgid "Cannot read file." msgstr "Bloqueo de usuario fallido." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Tamaño inválido." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1146,14 +1826,47 @@ msgstr "Non se especificou ningún perfil." msgid "No profile with that ID." msgstr "Non se atopou un perfil con ese ID." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Non se especificou ningún perfil." + #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O usuario bloqueoute." + #: actions/groupblock.php:100 msgid "User is not a member of group." msgstr "Non estás suscrito a ese perfil" +#: actions/groupblock.php:134 actions/groupmembers.php:364 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario" + +#: actions/groupblock.php:160 +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post, and unable to subscribe to " +"the group in the future." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." + +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Non estás suscrito a ese perfil" + #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" @@ -1167,6 +1880,11 @@ msgstr "" msgid "No ID." msgstr "Sen Identificador de Jabber." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + #: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "" @@ -1177,14 +1895,41 @@ msgid "" "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Non se puido actualizar o usuario." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias gardadas." + #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "" +#: actions/grouplogo.php:399 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar actualizado." + +#: actions/grouplogo.php:401 +#, fuzzy +msgid "Failed updating logo." +msgstr "Acounteceu un fallo ó actualizar o avatar." + #. TRANS: Title of the page showing group members. #. TRANS: %s is the name of the group. #: actions/groupmembers.php:102 @@ -1244,6 +1989,12 @@ msgstr "" msgid "%s timeline" msgstr "Liña de tempo de %s" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1264,6 +2015,25 @@ msgid "" "%%%%)" msgstr "" +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Crear nova conta" + +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." + +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Procurar xente." + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." @@ -1287,6 +2057,11 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuario bloqueoute." + #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." msgstr "Acounteceu un erro borrando o bloqueo." @@ -1421,6 +2196,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Esa é unha enderezo IM incorrecto." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Non se pode eliminar a confirmación de email." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1437,6 +2218,11 @@ msgstr "Esa non é a túa conta Jabber." msgid "The IM address was removed." msgstr "Dirección de correo entrante eliminada." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Band. Entrada para %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1520,6 +2306,13 @@ msgstr "Mensaxe persoal" msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1582,6 +2375,32 @@ msgstr "" "\n" "Saudiños, %2$s\n" +#: actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Sen alcume." + +#: actions/joingroup.php:141 +#, fuzzy, php-format +msgid "%1$s joined group %2$s" +msgstr "%s / Favoritos dende %s" + +#: actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#. TRANS: Error text shown when trying to leave an existing group the user is not a member of. +#: actions/leavegroup.php:100 lib/command.php:389 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Non estás suscrito a ese perfil" + #: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" @@ -1632,8 +2451,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Privacidade" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -1699,6 +2519,11 @@ msgstr "Sesión xa iniciada" msgid "Incorrect username or password." msgstr "Usuario ou contrasinal incorrectos." +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Non está autorizado." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -1731,10 +2556,49 @@ msgstr "" msgid "Login with your username and password." msgstr "Usuario ou contrasinal incorrectos." +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "O usuario bloqueoute." + +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/makeadmin.php:146 +#, fuzzy, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "O usuario bloqueoute." + +#: actions/microsummary.php:69 +#, fuzzy +msgid "No current status." +msgstr "Sen estado actual" + +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Ningún chío." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + #: actions/newapplication.php:143 msgid "Use this form to register a new application." msgstr "" @@ -1743,6 +2607,11 @@ msgstr "" msgid "Source URL is required." msgstr "" +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Non se puido crear o favorito." + #: actions/newgroup.php:53 msgid "New group" msgstr "" @@ -1779,6 +2648,18 @@ msgstr "" "Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " "vante tomar por tolo." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Non hai mensaxes de texto!" + +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Mensaxe directo a %s enviado" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Erro de Ajax" @@ -1823,11 +2704,24 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +#: actions/noticesearchrss.php:96 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"Este usuario non permite toques, ou non confirmou ainda o seu correo " +"electrónico." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Toque enviado" @@ -1836,6 +2730,16 @@ msgstr "Toque enviado" msgid "Nudge sent!" msgstr "Toque enviado!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Outras opcions" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -1853,6 +2757,11 @@ msgstr "" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Non estás suscrito a ese perfil" + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -1875,6 +2784,12 @@ msgstr "O usuario non ten perfil." msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "Conectar" + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1915,6 +2830,11 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "Servizo de acortado automático a usar." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración de perfil" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" @@ -1923,14 +2843,34 @@ msgstr "" msgid "URL shortening service is too long (max 50 chars)." msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Non se especificou ningún perfil." + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Non se especificou ningún perfil." + #: actions/otp.php:90 msgid "No login token requested." msgstr "Sen petición de autorización!" +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Contido do chío inválido" + #: actions/otp.php:104 msgid "Login token expired." msgstr "" +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Band. Saída para %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -1945,6 +2885,16 @@ msgstr "" msgid "Change password" msgstr "Cambiar contrasinal" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Cambiar contrasinal" + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Contrasinal gardada." + #: actions/passwordsettings.php:104 msgid "Old password" msgstr "Contrasinal antiga" @@ -2003,10 +2953,40 @@ msgstr "" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: actions/pathsadminpanel.php:163 +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +#, fuzzy +msgid "Site" +msgstr "Invitar" + +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Recuperar" + #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." msgstr "" @@ -2015,6 +2995,11 @@ msgstr "" msgid "Path" msgstr "" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Novo chío" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2047,10 +3032,25 @@ msgstr "" msgid "Theme directory" msgstr "" +#: actions/pathsadminpanel.php:279 +#, fuzzy +msgid "Avatars" +msgstr "Avatar" + #: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Avatar" +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "Avatar actualizado." + +#: actions/pathsadminpanel.php:292 +#, fuzzy +msgid "Avatar directory" +msgstr "Avatar actualizado." + #: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" @@ -2067,6 +3067,21 @@ msgstr "" msgid "Background directory" msgstr "" +#: actions/pathsadminpanel.php:320 +#, fuzzy +msgid "SSL" +msgstr "SMS" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +#, fuzzy +msgid "Never" +msgstr "Recuperar" + +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "Chíos" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2079,10 +3094,20 @@ msgstr "" msgid "When to use SSL" msgstr "" +#: actions/pathsadminpanel.php:335 +#, fuzzy +msgid "SSL server" +msgstr "Recuperar" + #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Novo chío" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2101,6 +3126,11 @@ msgstr "Procurar xente." msgid "Not a valid people tag: %s." msgstr "Non é un enderezo de correo válido." +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Usuarios auto-etiquetados como %s - páxina %d" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Tamaño inválido." @@ -2146,6 +3176,16 @@ msgstr "Páxina persoal" msgid "URL of your homepage, blog, or profile on another site" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/profilesettings.php:125 actions/register.php:471 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Bio" @@ -2201,6 +3241,11 @@ msgstr "" "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " "non humáns)" +#: actions/profilesettings.php:228 actions/register.php:230 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max %d car.)." + #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" @@ -2218,6 +3263,11 @@ msgstr "Etiqueta inválida: '%s'" msgid "Couldn't update user for autosubscribe." msgstr "Non se puido actualizar o usuario para autosuscrición." +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Non se puideron gardar as etiquetas." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Non se puido gardar o perfil." @@ -2240,10 +3290,30 @@ msgstr "" msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." +#: actions/public.php:130 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Liña de tempo pública" + #: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Liña de tempo pública" +#: actions/public.php:160 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:164 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:168 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Sindicación do Fio Público" + #: actions/public.php:188 #, php-format msgid "" @@ -2274,6 +3344,23 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#: actions/public.php:247 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Sindicación do Fio Público" + #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2327,10 +3414,29 @@ msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." msgid "Could not update user with confirmed email address." msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " +"de correo da túa conta." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Petición de recuperación de contrasinal" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "Insire o teu alcume ou enderezo de correo." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." @@ -2411,6 +3517,11 @@ msgstr "A nova contrasinal gardouse correctamente. Xa estas logueado." msgid "Sorry, only invited people can register." msgstr "Desculpa, só se pode rexistrar a xente con invitación." +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Acounteceu un erro co código de confirmación." + #: actions/register.php:119 msgid "Registration successful" msgstr "Xa estas rexistrado!!" @@ -2435,6 +3546,16 @@ msgstr "O enderezo de correo xa existe." msgid "Invalid username or password." msgstr "Usuario ou contrasinal inválidos." +#: actions/register.php:350 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" @@ -2485,6 +3606,48 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." + +#: actions/register.php:583 +#, fuzzy, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" +"\n" +"* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" +"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " +"enviar os teus chíos a través de mensaxería instantánea.\n" +"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " +"comparta os teus intereses. \n" +"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" +"%) para decirlle a outros máis sobre ti. \n" +"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " +"podes facer aquí. \n" +"\n" +"Grazas por rexistrarte e esperamos que laretexes moito." + #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2509,6 +3672,11 @@ msgstr "" msgid "Remote subscribe" msgstr "Suscrición remota" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Suscrito a %s" + #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Alcume de usuario" @@ -2534,6 +3702,36 @@ msgstr "Subscribir" msgid "Invalid profile URL (bad format)" msgstr "Enderezo de perfil inválido (formato incorrecto)" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Este é un perfil local! Rexístrate para suscribirte." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Non se puido recoller o token de petición." + +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "Só o usuario pode ler os seus propios buzóns." + +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Non se especificou ningún perfil." + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "Non podes rexistrarte se non estas de acordo coa licenza." + #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Xa estas suscrito a estes usuarios:" @@ -2542,6 +3740,11 @@ msgstr "Xa estas suscrito a estes usuarios:" msgid "Repeated" msgstr "Destacado" +#: actions/repeat.php:119 +#, fuzzy +msgid "Repeated!" +msgstr "Crear" + #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format @@ -2589,14 +3792,34 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaxe de %1$s en %2$s" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuario sen un perfil que coincida." + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "Estatísticas" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "O usuario bloqueoute." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2627,11 +3850,41 @@ msgstr "" msgid "Save site settings" msgstr "Configuración de perfil" +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "O chío non ten perfil" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +#, fuzzy +msgid "Name" +msgstr "Alcume" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#, fuzzy +msgid "Organization" +msgstr "Invitación(s) enviada(s)." + +#. TRANS: Form input field label. +#: actions/showapplication.php:187 actions/version.php:200 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Subscricións" + #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 msgid "Statistics" @@ -2680,6 +3933,16 @@ msgid "" "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Estas seguro que queres eliminar este chío?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Chíos favoritos de %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Non se pode " @@ -2729,6 +3992,11 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Tódalas subscricións" + #: actions/showgroup.php:227 msgid "Group profile" msgstr "O usuario non ten perfil." @@ -2738,10 +4006,21 @@ msgstr "O usuario non ten perfil." msgid "URL" msgstr "" +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +#, fuzzy +msgid "Note" +msgstr "Chíos" + #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" msgstr "" +#: actions/showgroup.php:302 +#, fuzzy +msgid "Group actions" +msgstr "Outras opcions" + #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -2752,6 +4031,28 @@ msgstr "Fonte para os amigos de %s" msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte para os amigos de %s" +#: actions/showgroup.php:350 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Band. Saída para %s" + +#: actions/showgroup.php:393 actions/showgroup.php:445 +#, fuzzy +msgid "Members" +msgstr "Membro dende" + +#: actions/showgroup.php:398 lib/profileaction.php:117 +#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 +#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 +#, fuzzy +msgid "(None)" +msgstr "(nada)" + #: actions/showgroup.php:404 msgid "All members" msgstr "" @@ -2760,6 +4061,33 @@ msgstr "" msgid "Created" msgstr "Destacado" +#: actions/showgroup.php:455 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + #: actions/showgroup.php:489 msgid "Admins" msgstr "" @@ -2782,6 +4110,16 @@ msgstr "Mensaxe de %1$s en %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensaxe dende %1$s en %2$s" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Chío publicado" + +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Chíos tagueados con %s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -2807,6 +4145,11 @@ msgstr "Fonte para os amigos de %s" msgid "Notice feed for %s (Atom)" msgstr "Fonte para os amigos de %s" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Band. Saída para %s" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -2825,6 +4168,46 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" +#: actions/showstream.php:243 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "Replies to %s" + +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "O usuario bloqueoute." + #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -2854,6 +4237,11 @@ msgstr "" msgid "General" msgstr "" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Novo chío" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -2874,6 +4262,16 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Nova dirección de email para posterar en %s" + +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Localización" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -2882,6 +4280,11 @@ msgstr "" msgid "Default timezone for the site; usually UTC." msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Linguaxe preferida" + #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" @@ -2910,6 +4313,16 @@ msgstr "" msgid "Site Notice" msgstr "Chíos" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nova mensaxe" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Non se puideron gardar os teus axustes de Twitter!" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" @@ -2968,6 +4381,13 @@ msgstr "Código de confirmación." msgid "Enter the code you received on your phone." msgstr "Insire o código que recibiches no teu teléfono." +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirmar" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -2992,6 +4412,12 @@ msgstr "" "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " "grandes facturas." +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Preferencias gardadas." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -3038,6 +4464,18 @@ msgstr "Confirmación de SMS" msgid "That is not your phone number." msgstr "Ese non é o teu número de teléfono." +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Número de Teléfono do SMS" + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +#: actions/smssettings.php:511 +#, fuzzy +msgid "Mobile carrier" +msgstr "Selecciona unha operadora" + #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:516 msgid "Select a carrier" @@ -3113,6 +4551,11 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Configuracións de Twitter" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" @@ -3126,10 +4569,30 @@ msgstr "Non se pode gardar a subscrición." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ningún chío." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Non estás suscrito a ese perfil" + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "Suscrito" +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Subscritores" + +#: actions/subscribers.php:52 +#, fuzzy, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "Tódalas subscricións" + #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Esa é a xente que escoita os teus chíos." @@ -3157,6 +4620,16 @@ msgid "" "%) and be the first?" msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Tódalas subscricións" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "Tódalas subscricións" + #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" @@ -3176,6 +4649,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está a escoitar os teus chíos %2$s." + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "Jabber." @@ -3204,11 +4682,31 @@ msgstr "Fonte para os amigos de %s" msgid "Notice feed for tag %s (Atom)" msgstr "Fonte para os amigos de %s" +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Non hai argumento id." + +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Tags" + +#: actions/tagother.php:77 lib/userprofile.php:76 +#, fuzzy +msgid "User profile" +msgstr "O usuario non ten perfil." + #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" msgstr "" +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "Tags" + #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " @@ -3246,6 +4744,11 @@ msgstr "Non estás suscrito a ese perfil" msgid "User is not sandboxed." msgstr "O usuario non ten último chio." +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "O usuario non ten perfil." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "Non se atopou un perfil con ese ID." @@ -3260,6 +4763,13 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "Usuario" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -3291,6 +4801,11 @@ msgstr "" msgid "Maximum length of a profile bio in characters." msgstr "" +#: actions/useradminpanel.php:232 +#, fuzzy +msgid "New users" +msgstr "Invitar a novos usuarios" + #: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" @@ -3299,6 +4814,28 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Tódalas subscricións" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "Invitación(s) enviada(s)." + +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "Invitación(s) enviada(s)." + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -3311,6 +4848,17 @@ msgstr "" msgid "Authorize subscription" msgstr "Subscrición de autorización." +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -3321,10 +4869,21 @@ msgstr "" msgid "Accept" msgstr "Aceptar" +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +#, fuzzy +msgid "Subscribe to this user" +msgstr "Suscrito a %s" + #: actions/userauthorization.php:219 msgid "Reject" msgstr "Rexeitar" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "Subscrición de autorización." + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Sen petición de autorización!" @@ -3333,10 +4892,32 @@ msgstr "Sen petición de autorización!" msgid "Subscription authorized" msgstr "Subscrición autorizada" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Subscrición rexeitada" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3362,6 +4943,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Non se pode ler a URL do avatar de '%s'" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imaxe incorrecto para '%s'" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración de perfil" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3372,6 +4968,12 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Tódalas subscricións" + #: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" @@ -3397,6 +4999,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" +#: actions/version.php:75 +#, fuzzy, php-format +msgid "StatusNet %s" +msgstr "Estatísticas" + #: actions/version.php:155 #, php-format msgid "" @@ -3435,6 +5042,12 @@ msgstr "" msgid "Plugins" msgstr "" +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +#, fuzzy +msgid "Version" +msgstr "Persoal" + #: actions/version.php:199 msgid "Author(s)" msgstr "" @@ -3482,6 +5095,35 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Tamaño inválido." + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Non existe o perfil." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Non se puido actualizar o usuario." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Non existe o perfil." + +#: classes/Group_member.php:108 lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Inicio de sesión" + #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. #: classes/Group_member.php:112 @@ -3489,11 +5131,30 @@ msgstr "" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Non se puido actualizar o usuario." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Non se puido crear o favorito." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Erro ó enviar a mensaxe directa." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -3517,6 +5178,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Acounteceu un erro ó inserir o avatar" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Aconteceu un erro ó gardar o chío." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -3530,6 +5197,16 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +#: classes/Notice.php:283 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." + #. TRANS: Client exception thrown when a user tries to post while being banned. #: classes/Notice.php:291 msgid "You are banned from posting notices on this site." @@ -3546,6 +5223,12 @@ msgstr "Aconteceu un erro ó gardar o chío." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Aconteceu un erro ó gardar o chío." + #. 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:1824 @@ -3567,16 +5250,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "O usuario non ten perfil." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Non se poden gardar as etiquetas." +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Este usuario non che permite suscribirte a el." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Non está suscrito!" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "O usuario bloqueoute." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Non está suscrito!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -3601,16 +5308,47 @@ msgstr "" msgid "%s is now following %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:384 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#. TRANS: Server exception thrown when creating a group failed. +#: classes/User_group.php:496 +#, fuzzy +msgid "Could not create group." +msgstr "Non se puido crear o favorito." + #. TRANS: Server exception thrown when updating a group URI failed. #: classes/User_group.php:506 msgid "Could not set group URI." msgstr "Non se poden gardar as etiquetas." +#. TRANS: Server exception thrown when setting group membership failed. +#: classes/User_group.php:529 +#, fuzzy +msgid "Could not set group membership." +msgstr "Non se pode gardar a subscrición." + +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "Non se pode gardar a subscrición." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Configuración de perfil" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 +#, fuzzy +msgid "Upload an avatar" +msgstr "Acounteceu un fallo ó actualizar o avatar." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:123 msgid "Change your password" @@ -3621,6 +5359,12 @@ msgstr "Cambiar contrasinal" msgid "Change email handling" msgstr "Cambiar a xestión de email" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "O usuario non ten perfil." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -3631,6 +5375,12 @@ msgstr "Outras opcions" msgid "Other" msgstr "Outros" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, fuzzy, php-format +msgid "%1$s - %2$s" +msgstr "%1$s (%2$s)" + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -3647,11 +5397,39 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Persoal" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:460 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "Cambiar contrasinal" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Non se pode redireccionar ao servidor: %s" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Conectar" +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "Navegación de subscricións" + #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/action.php:474 lib/groupnav.php:117 @@ -3659,29 +5437,110 @@ msgctxt "MENU" msgid "Admin" msgstr "" +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Sair" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:495 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "Crear nova conta" + +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Rexistrar" + #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Inicio de sesión" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:507 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Axuda" + +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Axuda" + #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:513 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Buscar" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +#, fuzzy +msgid "Site notice" +msgstr "Novo chío" + #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 msgid "Local views" msgstr "" +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +#, fuzzy +msgid "Page notice" +msgstr "Novo chío" + +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Navegación de subscricións" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -3726,6 +5585,19 @@ msgstr "" msgid "StatusNet software license" msgstr "" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." +"broughtby%%](%%site.broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -3747,6 +5619,12 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "Atopar no contido dos chíos" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -3784,6 +5662,13 @@ msgstr "" msgid "After" msgstr "Outros" +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +#: lib/action.php:1269 +#, fuzzy +msgid "Before" +msgstr "Antes »" + #. TRANS: Client exception thrown when a feed instance is a DOMDocument. #: lib/activity.php:122 msgid "Expecting a root feed element but got a whole XML document." @@ -3804,16 +5689,104 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Non se permite o rexistro neste intre." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Comando non implementado." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Comando non implementado." + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmar correo electrónico" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Invitar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "Confirmación de SMS" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Persoal" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "Confirmación de SMS" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "Confirmación de SMS" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "Confirmación de SMS" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "Confirmación de SMS" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Eliminar chío" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Confirmación de SMS" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -3865,11 +5838,41 @@ msgstr "" msgid "Icon for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:204 +#, fuzzy +msgid "Describe your application" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Fonte" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -3942,6 +5945,12 @@ msgstr "" msgid "Author" msgstr "" +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + #. TRANS: Title. #: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" @@ -3952,6 +5961,16 @@ msgstr "" msgid "Tags for this attachment" msgstr "" +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Contrasinal gardada." + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Contrasinal gardada." + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -3969,6 +5988,26 @@ msgstr "Comando completo" msgid "Command failed" msgstr "Comando fallido" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "Non se atopou un perfil con ese ID." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "O usuario non ten último chio." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -3986,6 +6025,13 @@ msgstr "Desculpa, este comando todavía non está implementado." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Toque enviado" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4054,16 +6100,62 @@ msgid "" "same server." msgstr "" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Chío publicado" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Acounteceu un erro configurando o usuario." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Non se pode eliminar este chíos." + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Aconteceu un erro ó gardar o chío." + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +msgid "Specify the name of the user to subscribe to." +msgstr "Especifica o nome do usuario ó que queres suscribirte" + +#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. +#: lib/command.php:664 +#, fuzzy +msgid "Can't subscribe to OMB profiles by command." +msgstr "Non estás suscrito a ese perfil" + #. 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:672 @@ -4071,6 +6163,13 @@ msgstr "Acounteceu un erro configurando o usuario." 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:694 lib/command.php:804 +#, fuzzy +msgid "Specify the name of the user to unsubscribe from." +msgstr "Especifica o nome de usuario ó que queres deixar de seguir" + #. 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:705 @@ -4123,6 +6222,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Non estás suscrito a ese perfil" + #. 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. @@ -4135,6 +6240,13 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Outro usuario non se puido suscribir a ti." + #. 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. @@ -4147,6 +6259,13 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +msgid "You are not a member of any groups." +msgstr "Non estás suscrito a ese perfil" + #. 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. @@ -4159,6 +6278,81 @@ msgstr[2] "" msgstr[3] "" msgstr[4] "" +#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. +#: lib/command.php:905 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"groups - lists the groups you have joined\n" +"subscriptions - list the people you follow\n" +"subscribers - list the people that follow you\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"lose - force user to stop following you\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"repeat # - repeat a notice with a given id\n" +"repeat - repeat the last notice from user\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"login - Get a link to login to the web interface\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" + +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Sen código de confirmación." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4183,6 +6377,11 @@ msgstr "Chíos dende mensaxería instantánea (IM)" msgid "Updates by SMS" msgstr "Chíos dende SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Conectar" + #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" msgstr "" @@ -4191,6 +6390,17 @@ msgstr "" msgid "Database error" msgstr "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Subir" + +#: lib/designsettings.php:109 +#, fuzzy +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + #: lib/designsettings.php:418 msgid "Design defaults restored." msgstr "" @@ -4231,6 +6441,11 @@ msgstr "Filtrar etiquetas" msgid "All" msgstr "Todos" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona unha operadora" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" @@ -4248,6 +6463,27 @@ msgstr "Ir" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" + #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" @@ -4347,6 +6583,11 @@ msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" msgid "Unsupported image file format." msgstr "Formato de ficheiro de imaxe non soportado." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Carga parcial." @@ -4364,6 +6605,11 @@ msgstr "Non é unha imaxe ou está corrupta." msgid "Lost our file." msgstr "Ningún chío." +#: lib/imagefile.php:163 lib/imagefile.php:224 +#, fuzzy +msgid "Unknown file type" +msgstr "tipo de ficheiro non soportado" + #: lib/imagefile.php:244 msgid "MB" msgstr "" @@ -4382,10 +6628,20 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Gardar" + #: lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Usuario ou contrasinal inválidos." +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Crear nova conta" + #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" @@ -4434,6 +6690,34 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" + +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:274 +#, fuzzy, php-format +msgid "Bio: %s" +msgstr "Ubicación: %s" + #. TRANS: Subject of notification mail for new posting email address #: lib/mail.php:304 #, php-format @@ -4473,6 +6757,12 @@ msgstr "Estado de %s" msgid "SMS confirmation" msgstr "Confirmación de SMS" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Agardando a confirmación neste número de teléfono." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -4552,6 +6842,40 @@ msgstr "" msgid "%s (@%s) added your notice as a favorite" msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." +#. TRANS: Body for favorite notification email +#: lib/mail.php:592 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 #, php-format @@ -4604,6 +6928,11 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" +#: lib/mailbox.php:228 lib/noticelist.php:506 +#, fuzzy +msgid "from" +msgstr " dende " + #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Non se puido analizaar a mensaxe." @@ -4620,6 +6949,11 @@ msgstr "Ise é un enderezo IM incorrecto." msgid "Sorry, no incoming email allowed." msgstr "Aivá, non se permiten correos entrantes." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Formato de ficheiro de imaxe non soportado." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -4691,10 +7025,26 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#: lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "Eliminar chío" + #: lib/messageform.php:146 msgid "To" msgstr "A" +#: lib/messageform.php:159 lib/noticeform.php:186 +#, fuzzy +msgid "Available characters" +msgstr "6 ou máis caracteres" + +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Enviar" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Novo chío" @@ -4712,12 +7062,28 @@ msgstr "" msgid "Attach a file" msgstr "" +#: lib/noticeform.php:213 +#, fuzzy +msgid "Share my location" +msgstr "Non se puideron gardar as etiquetas." + +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Non se puideron gardar as etiquetas." + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "No" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4746,10 +7112,45 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "Sen contido!" + +#: lib/noticelist.php:603 +#, fuzzy +msgid "Repeated by" +msgstr "Crear" + +#: lib/noticelist.php:630 +#, fuzzy +msgid "Reply to this notice" +msgstr "Non se pode eliminar este chíos." + #: lib/noticelist.php:631 msgid "Reply" msgstr "Respostas" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Chío publicado" + +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Nudge" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "Non podes enviar mensaxes a este usurio." + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -4799,6 +7200,17 @@ msgstr "Band. Saída" msgid "Your sent messages" msgstr "As túas mensaxes enviadas" +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "O usuario non ten último chio." + +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "Acción descoñecida" + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" @@ -4811,6 +7223,16 @@ msgstr "Tódalas subscricións" msgid "Subscribers" msgstr "Subscritores" +#: lib/profileaction.php:161 +#, fuzzy +msgid "All subscribers" +msgstr "Subscritores" + +#: lib/profileaction.php:191 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Membro dende" @@ -4820,6 +7242,11 @@ msgstr "Membro dende" msgid "Daily average" msgstr "" +#: lib/profileaction.php:264 +#, fuzzy +msgid "All groups" +msgstr "Tódalas etiquetas" + #: lib/profileformaction.php:123 msgid "Unimplemented method." msgstr "" @@ -4828,6 +7255,11 @@ msgstr "" msgid "Public" msgstr "Público" +#: lib/publicgroupnav.php:82 +#, fuzzy +msgid "User groups" +msgstr "Usuarios" + #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetas recentes" @@ -4840,10 +7272,25 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Non hai argumento id." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Non se pode eliminar este chíos." + #: lib/repeatform.php:132 msgid "Yes" msgstr "Si" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Non se pode eliminar este chíos." + #: lib/revokeroleform.php:91 #, php-format msgid "Revoke the \"%s\" role from this user" @@ -4853,6 +7300,22 @@ msgstr "" msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Band. Entrada" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Bloquear usuario" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Buscar" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -4864,6 +7327,12 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Xente" @@ -4876,6 +7345,11 @@ msgstr "Atopar xente neste sitio" msgid "Find content of notices" msgstr "Atopar no contido dos chíos" +#: lib/searchgroupnav.php:85 +#, fuzzy +msgid "Find groups on this site" +msgstr "Atopar xente neste sitio" + #: lib/section.php:89 msgid "Untitled section" msgstr "" @@ -4884,6 +7358,26 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Novo chío" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquear usuario" + +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Suscrición remota" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Suscrito a %s" + #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -4893,6 +7387,13 @@ msgstr "" msgid "Invite" msgstr "Invitar" +#: lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -4903,6 +7404,11 @@ msgstr "" msgid "People Tagcloud as tagged" msgstr "" +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "No" + #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" @@ -4911,6 +7417,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Acounteceu un fallo ó actualizar o avatar." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -4951,26 +7464,71 @@ msgstr "" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Bloquear usuario" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Bloquear usuario" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Desuscribir de %s" + #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Eliminar subscrición" +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: lib/userprofile.php:234 lib/userprofile.php:248 +#, fuzzy +msgid "User actions" +msgstr "Outras opcions" + #: lib/userprofile.php:237 msgid "User deletion in progress..." msgstr "" +#: lib/userprofile.php:263 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración de perfil" + #: lib/userprofile.php:264 msgid "Edit" msgstr "" +#: lib/userprofile.php:287 +#, fuzzy +msgid "Send a direct message to this user" +msgstr "Non podes enviar mensaxes a este usurio." + +#: lib/userprofile.php:288 +#, fuzzy +msgid "Message" +msgstr "Nova mensaxe" + #: lib/userprofile.php:326 msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "O usuario non ten perfil." + #: lib/userprofile.php:366 msgctxt "role" msgid "Administrator" @@ -5067,14 +7625,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Non se especificou ningún perfil." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 0f299e6ac1..3b9b7a5e4c 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:25+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7517,14 +7517,15 @@ msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Non se especificou ningunha ID de usuario." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 019a639099..1c79ab228d 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:25+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -271,6 +271,17 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "Njeje móžno, sydłowu zdźělenku składować." + #: actions/apiaccountupdateprofilebackgroundimage.php:188 #: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." @@ -353,6 +364,16 @@ msgstr "Faworit njeda so zhašeć." msgid "Could not follow user: profile not found." msgstr "Njebě móžno wužiwarja słědować: profil njenamakany." +#: actions/apifriendshipscreate.php:119 +#, fuzzy, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Njebě móžno wužiwarja słědować: profil njenamakany." + +#: actions/apifriendshipsdestroy.php:110 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Njebě móžno wužiwarja słědować: profil njenamakany." + #: actions/apifriendshipsdestroy.php:121 msgid "You cannot unfollow yourself." msgstr "Njemóžeš slědowanje swójskich aktiwitow blokować." @@ -661,6 +682,11 @@ msgstr "" msgid "Unsupported format." msgstr "Njepodpěrany format." +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s je do %2$s zastupił" + #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." @@ -686,6 +712,11 @@ msgstr "" msgid "%s updates from everyone!" msgstr "%s aktualizacijow wote wšěch!" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "Wospjetowany" + #: actions/apitimelineretweetsofme.php:114 #, php-format msgid "Repeats of %s" @@ -696,6 +727,16 @@ msgstr "" msgid "Notices tagged with %s" msgstr "" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Aktualizacije wot %1$s na %2$s!" + +#: actions/apitrends.php:87 +#, fuzzy +msgid "API method under construction." +msgstr "API-metoda njenamakana." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "Přiwěšk njeeksistuje." @@ -836,6 +877,11 @@ msgstr "Haj" msgid "Block this user" msgstr "Tutoho wužiwarja blokować" +#: actions/block.php:187 +#, fuzzy +msgid "Failed to save block information." +msgstr "Njeje móžno, sydłowu zdźělenku składować." + #. TRANS: Command exception text shown when a group is requested that does not exist. #. TRANS: Error text shown when trying to leave a group that does not exist. #: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 @@ -862,6 +908,11 @@ msgstr "%s je profile zablokował" msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s zablokowa profile, stronu %2$d" +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lisćina wužiwarjow w tutej skupinje." + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "Wužiwarja za skupinu wotblokować" @@ -1121,6 +1172,16 @@ msgstr "Zapinjeny" msgid "Off" msgstr "Wupinjeny" +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +#, fuzzy +msgid "Turn background image on or off." +msgstr "Pozadkowy wobraz změnić" + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Pozadkowy wobraz změnić" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "Barby změnić" @@ -1243,6 +1304,16 @@ msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)." msgid "Organization homepage is required." msgstr "Startowa strona organizacije je trěbna." +#: actions/editapplication.php:218 actions/newapplication.php:206 +#, fuzzy +msgid "Callback is too long." +msgstr "Žórłowy URL je předołhi." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +#, fuzzy +msgid "Callback URL is not valid." +msgstr "URL žórła płaćiwy njeje." + #: actions/editapplication.php:261 msgid "Could not update application." msgstr "Aplikacija njeda so aktualizować." @@ -1392,11 +1463,23 @@ msgstr "E-mejlowe nastajenja" msgid "Send me notices of new subscriptions through email." msgstr "" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:190 +#, fuzzy +msgid "Send me email when someone adds my notice as a favorite." +msgstr "E-mejl pósłać, hdyž něchtó priwatnu powěsć sćele." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." msgstr "E-mejl pósłać, hdyž něchtó priwatnu powěsć sćele." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "E-mejl pósłać, hdyž něchtó priwatnu powěsć sćele." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." @@ -1458,6 +1541,15 @@ msgid "" "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +#: actions/emailsettings.php:423 actions/imsettings.php:386 +#: actions/smssettings.php:408 +#, fuzzy +msgid "No pending confirmation to cancel." +msgstr "IM-wobkrućenje přetorhnjene." + #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. #: actions/emailsettings.php:428 msgid "That is the wrong email address." @@ -1504,6 +1596,11 @@ msgstr "Nowa adresa za dochadźace e-mejle přidata." msgid "This notice is already a favorite!" msgstr "Tuta zdźělenka je hižo faworit!" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "K faworitam přidać" + #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" @@ -1535,6 +1632,17 @@ msgid "" "notice to your favorites!" msgstr "" +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, fuzzy, php-format +msgid "%s's favorite notices" +msgstr "Preferowane zdźělenki wot %1$s, strona %2$d" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aktualizacije wot %1$s na %2$s!" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1839,7 +1947,7 @@ msgid "" "If you can't find the group you're looking for, you can [create it](%%action." "newgroup%%) yourself." msgstr "" -"Jeli njemóžeš skupinu namakać, kotruž pytaš, móžeš [ju wutworić] (%%action." +"Jeli njemóžeš skupinu namakać, kotruž pytaš, móžeš [ju wutworić](%%action." "newgroup%%)." #: actions/groupsearch.php:85 @@ -1887,6 +1995,11 @@ msgstr "IM k dispoziciji njesteji." msgid "IM address" msgstr "IM-adresa" +#: actions/imsettings.php:113 +#, fuzzy +msgid "Current confirmed Jabber/GTalk address." +msgstr "Aktualna wobkrućena e-mejlowa adresa." + #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:124 @@ -1928,6 +2041,12 @@ msgstr "" msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:182 +#, fuzzy +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "MicroID za moju e-mejlowu adresu publikować" + #. TRANS: Confirmation message for successful IM preferences save. #: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." @@ -1938,6 +2057,12 @@ msgstr "Nastajenja składowane." msgid "No Jabber ID." msgstr "Žadyn ID Jabber." +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:320 +#, fuzzy +msgid "Cannot normalize that Jabber ID" +msgstr "Tuta e-mejlowa adresa njehodźi so normalizować" + #. TRANS: Message given saving IM address that not valid. #: actions/imsettings.php:325 msgid "Not a valid Jabber ID" @@ -1948,6 +2073,12 @@ msgstr "Njepłaćiwy ID Jabber" msgid "That is already your Jabber ID." msgstr "To je hižo twój ID Jabber." +#. TRANS: Message given saving IM address that is already set for another user. +#: actions/imsettings.php:333 +#, fuzzy +msgid "Jabber ID already belongs to another user." +msgstr "Te telefonowe čisło hižo druhemu wužiwarjej słuša." + #. TRANS: Message given saving valid IM address that is to be confirmed. #. TRANS: %s is the IM address set for the site. #: actions/imsettings.php:361 @@ -2188,7 +2319,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Priwatny" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2432,11 +2563,26 @@ msgstr "" msgid "Updates with \"%s\"" msgstr "Aktualizacije z \"%s\"" +#: actions/noticesearchrss.php:98 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Aktualizacije wot %1$s na %2$s!" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" +#: actions/nudge.php:94 +#, fuzzy +msgid "Nudge sent" +msgstr "Powěsć pósłana" + +#: actions/nudge.php:97 +#, fuzzy +msgid "Nudge sent!" +msgstr "Powěsć pósłana" + #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." msgstr "Dyrbiš přizjewjeny być, zo by swoje aplikacije nalistował." @@ -2471,6 +2617,11 @@ msgstr "Njejsy wužiwar tuteje aplikacije." msgid "Unable to revoke access for app: %s." msgstr "" +#: actions/oauthconnectionssettings.php:198 +#, fuzzy +msgid "You have not authorized any applications to use your account." +msgstr "Hišće njejsy aplikacije zregistrował." + #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" @@ -2479,6 +2630,11 @@ msgstr "" msgid "Notice has no profile." msgstr "Zdźělenka nima profil." +#: actions/oembed.php:87 actions/shownotice.php:176 +#, fuzzy, php-format +msgid "%1$s's status on %2$s" +msgstr "%1$s je skupinu %2$s wopušćił" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #: actions/oembed.php:159 #, php-format @@ -2525,10 +2681,20 @@ msgstr "URL skrótšić z" msgid "Automatic shortening service to use." msgstr "" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profilowe nastajenja wobdźěłać" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)." + #: actions/otp.php:69 msgid "No user ID specified." msgstr "Žadyn wužiwarski ID podaty." @@ -2537,6 +2703,11 @@ msgstr "Žadyn wužiwarski ID podaty." msgid "No login token specified." msgstr "Žane přizjewjenske znamješko podate." +#: actions/otp.php:90 +#, fuzzy +msgid "No login token requested." +msgstr "Žane přizjewjenske znamješko podate." + #: actions/otp.php:95 msgid "Invalid login token specified." msgstr "Njepłaćiwe přizjewjenske znamješko podate." @@ -2555,6 +2726,12 @@ msgstr "Wuchadny póst za %1$s - strona %2$d" msgid "Outbox for %s" msgstr "Wuchadny póst za %s" +#: actions/outbox.php:116 +#, fuzzy +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" +"To je twój dochadny póst, kotryž twoje priwatne dochadne powěsće nalistuje." + #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Hesło změnić" @@ -2640,6 +2817,11 @@ msgstr "Do awataroweho zapisa njeda so pisać: %s." msgid "Background directory not writable: %s." msgstr "Do pozadkoweho zapisa njeda so pisać: %s." +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Šatowy zapis njeda so čitać: %s" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2809,6 +2991,12 @@ msgstr "" msgid "Profile information" msgstr "Profilowe informacije" +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"Přimjeno smě jenož małe pismiki a cyfry wobsahować. Mjezery njejsu dowolene." + #: actions/profilesettings.php:111 actions/register.php:455 #: actions/showgroup.php:256 actions/tagother.php:104 #: lib/groupeditform.php:157 lib/userprofile.php:150 @@ -2898,6 +3086,16 @@ msgstr "Časowe pasmo njeje wubrane." msgid "Language is too long (max 50 chars)." msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)." +#: actions/profilesettings.php:253 actions/tagother.php:178 +#, fuzzy, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Njepłaćiwy alias: \"%s\"" + +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "Datowa sadźba wužiwarja njeda so aktualizować." + #: actions/profilesettings.php:363 msgid "Couldn't save location prefs." msgstr "Nastajenja městna njedachu so składować." @@ -2906,6 +3104,11 @@ msgstr "Nastajenja městna njedachu so składować." msgid "Couldn't save profile." msgstr "Profil njeda so składować." +#: actions/profilesettings.php:383 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Profil njeda so składować." + #. TRANS: Message after successful saving of administrative settings. #: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." @@ -2916,6 +3119,16 @@ msgstr "Nastajenja składowane." msgid "Beyond the page limit (%s)." msgstr "Limit stronow (%s) překročeny." +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "Aliasy njejsu so dali wutworić." + +#: actions/public.php:130 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Woblubowane zdźělenki, strona %d" + #: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "" @@ -2991,10 +3204,25 @@ msgid "" "one!" msgstr "" +#: actions/publictagcloud.php:134 +#, fuzzy +msgid "Tag cloud" +msgstr "Barby změnić" + #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Sy hižo přizjewjeny!" +#: actions/recoverpassword.php:62 +#, fuzzy +msgid "No such recovery code." +msgstr "Zdźělenka njeeksistuje." + +#: actions/recoverpassword.php:66 +#, fuzzy +msgid "Not a recovery code." +msgstr "Žadyn zregistrowany wužiwar." + #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "" @@ -3007,6 +3235,11 @@ msgstr "Zmylk z wobkrućenskim kodom." msgid "This confirmation code is too old. Please start again." msgstr "Tutón wobkrućenski kod je přestary. Prošu započń hišće raz." +#: actions/recoverpassword.php:111 +#, fuzzy +msgid "Could not update user with confirmed email address." +msgstr "Aktualna wobkrućena e-mejlowa adresa." + #: actions/recoverpassword.php:152 msgid "" "If you have forgotten or lost your password, you can get a new one sent to " @@ -3081,6 +3314,11 @@ msgid "" "address registered to your account." msgstr "" +#: actions/recoverpassword.php:357 +#, fuzzy +msgid "Unexpected password reset." +msgstr "Njewočakowane wotpósłanje formulara." + #: actions/recoverpassword.php:365 msgid "Password must be 6 chars or more." msgstr "Hesło dyrbi 6 znamješkow abo wjace měć." @@ -3268,6 +3506,11 @@ msgstr "To je lokalny profil! Přizjew so, zo by abonował." msgid "Couldn’t get a request token." msgstr "" +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać." + #: actions/repeat.php:64 actions/repeat.php:71 msgid "No notice specified." msgstr "Žana zdźělenka podata." @@ -3288,6 +3531,32 @@ msgstr "Wospjetowany" msgid "Repeated!" msgstr "Wospjetowany!" +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, fuzzy, php-format +msgid "Replies to %s" +msgstr "Wotmołwy" + +#: actions/replies.php:128 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%1$s, strona %2$d" + +#: actions/replies.php:145 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Kanal za přećelow wužiwarja %s (RSS 1.0)" + +#: actions/replies.php:152 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Kanal za přećelow wužiwarja %s (RSS 2.0)" + +#: actions/replies.php:159 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Kanal za přećelow wužiwarja %s (Atom)" + #: actions/replies.php:199 #, php-format msgid "" @@ -3309,6 +3578,11 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Powěsć do %1$s na %2$s" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać." @@ -3321,6 +3595,16 @@ msgstr "Wužiwar nima tutu rólu." msgid "StatusNet" msgstr "StatusNet" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Njemóžeš wužiwarske róle na tutym sydle garantować." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Wužiwar je hižo za skupinu zablokowany." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -3438,6 +3722,26 @@ msgstr "Chceš woprawdźe swój přetrjebowarski kluč a potajny kod wróćo sta msgid "%1$s's favorite notices, page %2$d" msgstr "Preferowane zdźělenki wot %1$s, strona %2$d" +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "Faworit njeda so wutworić." + +#: actions/showfavorites.php:171 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Kanal za přećelow wužiwarja %s (RSS 1.0)" + +#: actions/showfavorites.php:178 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Kanal za přećelow wužiwarja %s (RSS 2.0)" + +#: actions/showfavorites.php:185 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Kanal za přećelow wužiwarja %s (Atom)" + #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -3482,6 +3786,12 @@ msgstr "Skupinski profil" msgid "URL" msgstr "URL" +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +#, fuzzy +msgid "Note" +msgstr "Žadyn" + #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" @@ -3490,6 +3800,26 @@ msgstr "Aliasy" msgid "Group actions" msgstr "Skupinske akcije" +#: actions/showgroup.php:338 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/showgroup.php:344 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/showgroup.php:350 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "FOAF za %s" + #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Čłonojo" @@ -3535,6 +3865,11 @@ msgstr "Administratorojo" msgid "No such message." msgstr "Powěsć njeeksistuje." +#: actions/showmessage.php:98 +#, fuzzy +msgid "Only the sender and recipient may read this message." +msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać." + #: actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" @@ -3564,6 +3899,21 @@ msgstr "%1$s, strona %2$d" msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Kanal za přećelow wužiwarja %s (Atom)" + #: actions/showstream.php:148 #, php-format msgid "FOAF for %s" @@ -3604,6 +3954,21 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "Wospjetowany wot" + +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Wužiwar je hižo za skupinu zablokowany." + #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "Zakładne nastajenja za tute sydło StatusNet." @@ -3657,6 +4022,12 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "" +"Wužiwar z tej e-mejlowej adresu abo tym wužiwarskim mjenom njeeksistuje." + #: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokalny" @@ -3689,6 +4060,11 @@ msgstr "Tekstowy limit" msgid "Maximum number of characters for notices." msgstr "Maksimalna ličba znamješkow za zdźělenki." +#: actions/siteadminpanel.php:278 +#, fuzzy +msgid "Dupe limit" +msgstr "Tekstowy limit" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" @@ -3743,6 +4119,18 @@ msgstr "SMS k dispoziciji njesteji." msgid "SMS address" msgstr "SMS-adresa" +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +#, fuzzy +msgid "Current confirmed SMS-enabled phone number." +msgstr "Aktualna wobkrućena e-mejlowa adresa." + +#. TRANS: Form guide in IM settings form. +#: actions/smssettings.php:133 +#, fuzzy +msgid "Awaiting confirmation on this phone number." +msgstr "To je wopačne wobkrućenske čisło." + #. TRANS: Field label for SMS address input in SMS settings form. #: actions/smssettings.php:142 msgid "Confirmation code" @@ -3791,6 +4179,12 @@ msgstr "SMS-nastajenja składowane." msgid "No phone number." msgstr "Žane telefonowe čisło." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "Zdźělenka zničena." + #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." @@ -3863,10 +4257,20 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "Konfiguraciju wobrazowkoweho fota zrjadować" +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "Njepłaćiwa róla." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "Njepłaćiwy logowy URL." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3875,6 +4279,11 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +#, fuzzy +msgid "Data snapshots" +msgstr "Nastajenja wobrazowkoweho fota składować" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" @@ -3887,6 +4296,11 @@ msgstr "Frekwenca" msgid "Snapshots will be sent once every N web hits" msgstr "" +#: actions/snapshotadminpanel.php:226 +#, fuzzy +msgid "Report URL" +msgstr "URL žórła" + #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" msgstr "" @@ -3950,6 +4364,13 @@ msgstr "" msgid "%s has no subscribers. Want to be the first?" msgstr "%s abonentow nima. Chceš prěni być?" +#: actions/subscribers.php:114 +#, fuzzy, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "%s abonentow nima. Chceš prěni być?" + #: actions/subscriptions.php:52 #, php-format msgid "%s subscriptions" @@ -3979,6 +4400,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%s čłon w žanej skupinje njeje." + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "Jabber" @@ -3987,6 +4413,26 @@ msgstr "Jabber" msgid "SMS" msgstr "SMS" +#: actions/tag.php:69 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%1$s, strona %2$d" + +#: actions/tag.php:87 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/tag.php:93 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + +#: actions/tag.php:99 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Powěsćowy kanal za %1$s je %2$s (RSS 1.0) markěrował" + #: actions/tagother.php:39 msgid "No ID argument." msgstr "Žadyn argument ID." @@ -4020,10 +4466,35 @@ msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#: actions/tagother.php:200 +#, fuzzy +msgid "Could not save tags." +msgstr "Profil njeje so składować dał." + +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Wužij tutón formular, zo by aplikaciju wobdźěłał." + +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "Strona njeeksistuje." + #: actions/unblock.php:59 msgid "You haven't blocked that user." msgstr "Njejsy toho wužiwarja zablokował." +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Wužiwar njeje zablokowany za skupinu." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Wužiwar nima profil." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "Žadyn profilowy ID w naprašowanju." @@ -4067,6 +4538,11 @@ msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje." msgid "Profile" msgstr "Profil" +#: actions/useradminpanel.php:223 +#, fuzzy +msgid "Bio Limit" +msgstr "Limity" + #: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" @@ -4087,6 +4563,11 @@ msgstr "Powitanski tekst za nowych wužiwarjow (maks. 255 znamješkow)." msgid "Default subscription" msgstr "Standardny abonement" +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "Tutoho wužiwarja abonować" + #: actions/useradminpanel.php:252 msgid "Invitations" msgstr "Přeprošenja" @@ -4163,21 +4644,46 @@ msgid "" "subscription." msgstr "" +#: actions/userauthorization.php:303 +#, fuzzy, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "URL awatara '%s' njeje płaćiwy" + +#: actions/userauthorization.php:308 +#, fuzzy, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "URL awatara '%s' njeje płaćiwy" + #: actions/userauthorization.php:314 #, php-format msgid "Listenee URI ‘%s’ is a local user." msgstr "" +#: actions/userauthorization.php:329 +#, fuzzy, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "URL awatara '%s' njeje płaćiwy" + #: actions/userauthorization.php:345 #, php-format msgid "Avatar URL ‘%s’ is not valid." msgstr "URL awatara '%s' njeje płaćiwy" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Wopačny wobrazowy typ za awatarowy URL '%s'." + #: actions/userauthorization.php:355 #, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Wopačny wobrazowy typ za awatarowy URL '%s'." +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profilowe nastajenja" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -4271,6 +4777,11 @@ msgstr "Wersija" msgid "Author(s)" msgstr "Awtorojo" +#: classes/Fave.php:147 lib/favorform.php:140 +#, fuzzy +msgid "Favor" +msgstr "Fawority" + #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." @@ -4358,11 +4869,23 @@ msgstr "Njeje móžno było, přizjewjenske znamješko za %s wutworić" msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Zmylk při słanju direktneje powěsće," + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." msgstr "Powěsć njeda so zasunyć." +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "Powěsć njeda so analyzować." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -4376,6 +4899,18 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Zmylk datoweje banki při zasunjenju hašeje taflički: %s" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Zmylk při składowanju powěsće" + +#. TRANS: Client exception thrown when trying to save a notice for an unknown user. +#: classes/Notice.php:270 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Zmylk při składowanju powěsće" + #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. #: classes/Notice.php:276 msgid "" @@ -4389,6 +4924,19 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +msgid "You are banned from posting notices on this site." +msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać." + +#. TRANS: Server exception thrown when a notice cannot be saved. +#. TRANS: Server exception thrown when a notice cannot be updated. +#: classes/Notice.php:358 classes/Notice.php:385 +#, fuzzy +msgid "Problem saving notice." +msgstr "Zmylk při składowanju powěsće" + #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). #: classes/Notice.php:906 msgid "Bad type provided to saveKnownGroups" @@ -4430,6 +4978,12 @@ msgstr "Falowacy profil." 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. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Tutón wužiwar ći abonowanje njedowoli." + #. TRANS: Exception thrown when trying to subscribe while already subscribed. #: classes/Subscription.php:80 msgid "Already subscribed!" @@ -4516,6 +5070,12 @@ msgstr "Twoje hesło změnić" msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Wužiwarski profil" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -4537,6 +5097,12 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bjez titula" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "Zakładna sydłowa konfiguracija" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -4649,6 +5215,31 @@ msgctxt "MENU" msgid "Search" msgstr "Pytać" +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +#, fuzzy +msgid "Site notice" +msgstr "Sydłowa zdźělenka" + +#. TRANS: DT element for local views block. String is hidden in default CSS. +#: lib/action.php:605 +#, fuzzy +msgid "Local views" +msgstr "Lokalny" + +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +#, fuzzy +msgid "Page notice" +msgstr "Nowa zdźělenka" + +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Zakładna sydłowa konfiguracija" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -4722,6 +5313,12 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "Wobsah zdźělenkow přepytać" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -4748,6 +5345,12 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +#, fuzzy +msgid "Pagination" +msgstr "Registrowanje" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1259 @@ -4800,6 +5403,13 @@ msgstr "showForm() njeimplementowany." msgid "saveSettings() not implemented." msgstr "saveSettings() njeimplementowany." +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Njeje móžno, sydłowu zdźělenku składować." + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:337 msgid "Basic site configuration" @@ -4811,6 +5421,12 @@ msgctxt "MENU" msgid "Site" msgstr "Sydło" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "Konfiguracija posedźenjow" + #. TRANS: Menu item for site administration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/adminpanelaction.php:347 lib/groupnav.php:135 @@ -4833,6 +5449,12 @@ msgstr "Wužiwar" msgid "Access configuration" msgstr "Přistupna konfiguracija" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "Wužiwarska konfiguracija" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:377 msgid "Sessions configuration" @@ -4910,6 +5532,12 @@ msgstr "Wopisaj swoju aplikaciju z %d znamješkami" msgid "Describe your application" msgstr "Wopisaj swoju aplikaciju" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL za startowu stronu organizacije" + #. TRANS: Form input field label. #: lib/applicationeditform.php:217 msgid "Source URL" @@ -5007,6 +5635,12 @@ msgstr "Poskićowar" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "Přiwěšk njeeksistuje." + #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 msgid "Password changing failed" msgstr "Změnjenje hesła je so njeporadźiło" @@ -5086,6 +5720,12 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Text shown when a notice has been marked as favourite successfully. +#: lib/command.php:314 +#, fuzzy +msgid "Notice marked as fave." +msgstr "Tuta zdźělenka je hižo faworit!" + #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: lib/command.php:360 @@ -5398,6 +6038,21 @@ msgstr "" "Móžeš swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa wulkosć " "je 2 MB." +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "Designowe nastajenja składowane." + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "Tutu zdźělenku wušmórnyć" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Tutu zdźělenku wospjetować" + #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5447,6 +6102,11 @@ msgstr "Start" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "URL za startowu stronu organizacije" + #: lib/groupeditform.php:168 msgid "Describe the group or topic" msgstr "Skupinu abo temu wopisać" @@ -5548,6 +6208,11 @@ msgstr "Skupiny z najwjace čłonami" msgid "Groups with most posts" msgstr "Skupiny z njawjace powěsćemi" +#: lib/grouptagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s group's notices" +msgstr "Kajkosće skupiny %s wobdźěłać" + #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" @@ -5673,6 +6338,12 @@ msgstr "" msgid "Bio: %s" msgstr "Biografija: %s" +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:304 +#, fuzzy, php-format +msgid "New email address for posting to %s" +msgstr "Wužiwar nima žanu zregistrowanu e-mejlowu adresu." + #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -5793,6 +6464,11 @@ msgstr "" "\n" "%s" +#: lib/mail.php:657 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "%s (@%s) je twoju zdźělenku jako faworit přidał" + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -6030,10 +6706,20 @@ msgstr "Wotmołwić" msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "Tutoho wužiwarja wušmórnyć" + #: lib/nudgeform.php:128 msgid "Nudge" msgstr "" +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "Tutomu wužiwarja direktnu powěsć pósłać" + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -6083,6 +6769,11 @@ msgstr "Wuchadny póst" msgid "Your sent messages" msgstr "Twoje pósłane powěsće" +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "Wužiwar nima poslednju powěsć" + #. TRANS: Displayed as version information for a plugin if no version information was found. #: lib/plugin.php:116 msgid "Unknown" @@ -6137,6 +6828,11 @@ msgstr "Wužiwarske skupiny" msgid "Recent tags" msgstr "" +#: lib/publicgroupnav.php:88 +#, fuzzy +msgid "Featured" +msgstr "Nazhonići wužiwarjo" + #: lib/publicgroupnav.php:92 msgid "Popular" msgstr "Woblubowany" @@ -6166,6 +6862,16 @@ msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" msgid "No single user defined for single-user mode." msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany." +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Dochadny póst" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Tutoho wužiwarja wotblokować" + #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" @@ -6211,6 +6917,16 @@ msgstr "Wotrězk bjez titula" msgid "More..." msgstr "Wjace..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Sydłowe mjeno" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Tutoho wužiwarja wušmórnyć" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -6230,6 +6946,11 @@ msgstr "Skupiny, w kotrychž %s je čłon" msgid "Invite" msgstr "Přeprosyć" +#: lib/subgroupnav.php:106 +#, 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ć" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6298,10 +7019,20 @@ msgstr "" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Tutoho wužiwarja wotblokować" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Tutoho wužiwarja wotblokować" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Tutoho wužiwarja wotskazać" @@ -6440,14 +7171,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Žadyn wužiwarski ID podaty." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index ea83e06cd7..33230c399e 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:26+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -169,7 +169,7 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Iratkozz fel további emberek híreire, [csatlakozz egy csoporthoz] (action." +"Iratkozz fel további emberek híreire, [csatlakozz egy csoporthoz](action." "groups%%%%), vagy írj valamit te magad." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" @@ -2322,7 +2322,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privát" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7171,14 +7171,14 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" +msgid "No user specified; using backup user." msgstr "" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 8b0a654192..4ed5b1fef8 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:27+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1129,7 +1129,7 @@ msgstr "Apparentia" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Configuration del apparentia de iste sito StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1902,7 +1902,7 @@ msgstr "Blocar" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Blocar iste usator" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2355,105 +2355,107 @@ msgstr "%1$s quitava le gruppo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licentia" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licentia pro iste sito StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Selection de licentia invalide." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Tu debe specificar le proprietario del contento si tu usa le licentia \"Tote " +"derectos reservate\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Titulo de licentia invalide. Longitude maximal es 255 characteres." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "URL de licentia invalide." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "URL de imagine de licentia invalide." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Le URL de licentia debe esser vacue o un URL valide." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Le imagine de licentia debe esser vacue o un URL valide." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selection de licentia" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Private" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tote le derectos reservate" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Typo" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Selige licentia" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Detalios de licentia" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Proprietario" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nomine del proprietario del contento del sito (si applicabile)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titulo de licentia" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Le titulo del licentia." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL del licentia" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL pro ulterior informationes super le licentia." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL del imagine del licentia" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Le URL de un imagine a monstrar con le licentia." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Salveguardar configurationes de licentia" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2696,7 +2698,7 @@ msgstr "Applicationes connectite" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Tu ha permittite al sequente applicationes de acceder a tu conto." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2887,7 +2889,7 @@ msgstr "Camminos" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Configuration de cammino e servitor pro iste sito StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3744,7 +3746,7 @@ msgstr "Sessiones" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Parametros de session pro iste sito StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4129,7 +4131,7 @@ msgstr "Usator es ja silentiate." #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" -msgstr "Configurationes de base pro iste sito de StatusNet" +msgstr "Configurationes de base pro iste sito StatusNet" #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." @@ -4689,7 +4691,7 @@ msgstr "Usator" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Configurationes de usator pro iste sito de StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4752,7 +4754,7 @@ msgstr "Si le usatores pote invitar nove usatores." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Salveguardar configurationes de usator" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4976,7 +4978,7 @@ msgstr "Favorir" #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." -msgstr "" +msgstr "%s marcava le nota %s como favorite." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 @@ -5043,7 +5045,7 @@ msgstr "Inscriber" #: classes/Group_member.php:112 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s se ha jungite al gruppo %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5208,12 +5210,12 @@ msgstr "Non poteva deler subscription." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "Sequer" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s seque ora %s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5662,7 +5664,7 @@ msgstr "Configuration del instantaneos" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Definir licentia del sito" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6295,7 +6297,7 @@ msgstr "Amico de un amico" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Syndicationes" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7486,15 +7488,16 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." #: scripts/restoreuser.php:82 -#, php-format -msgid "Backup file for user %s (%s)\n" -msgstr "" +#, fuzzy, php-format +msgid "Backup file for user %s (%s)" +msgstr "File de copia de reserva pro le usator %s (%s)\n" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Nulle usator specificate; le usator de reserva es usate.\n" #: scripts/restoreuser.php:94 -#, php-format -msgid "%d entries in backup.\n" -msgstr "" +#, fuzzy, php-format +msgid "%d entries in backup." +msgstr "%d entratas in copia de reserva.\n" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 7bebb8e92d..5bbff5b7ed 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,28 +9,60 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:27+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:50+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#, fuzzy +msgid "Access" +msgstr "Samþykkja" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +#, fuzzy +msgid "Site access settings" +msgstr "Stillingar fyrir mynd" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Registration" +msgstr "Nýskrá" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Friðhelgi" + #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy +msgid "Invite only" +msgstr "Bjóða" + #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." @@ -41,6 +73,31 @@ msgstr "" msgid "Closed" msgstr "" +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +#, fuzzy +msgid "Save access settings" +msgstr "Stillingar fyrir mynd" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Vista" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:68 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +#, fuzzy +msgid "No such page." +msgstr "Ekkert þannig merki." + #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:115 @@ -129,6 +186,12 @@ msgid "" "post a notice to them." msgstr "" +#. TRANS: H1 text +#: actions/all.php:182 +#, fuzzy +msgid "You and friends" +msgstr "%s og vinirnir" + #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. #: actions/allrss.php:121 actions/apitimelinefriends.php:216 @@ -137,6 +200,32 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "Aðferð í forritsskilum fannst ekki!" + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -159,6 +248,11 @@ msgid "" "none." msgstr "" +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Gat ekki uppfært notanda." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -169,6 +263,11 @@ msgstr "" msgid "User has no profile." msgstr "Notandi hefur enga persónulega síðu." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Gat ekki vistað persónulega síðu." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -191,6 +290,17 @@ msgstr "" msgid "Unable to save your design settings." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Gat ekki uppfært hóp." + +#: actions/apiblockcreate.php:106 +#, fuzzy +msgid "You cannot block yourself!" +msgstr "Gat ekki uppfært notanda." + #: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Mistókst að loka á notanda." @@ -199,6 +309,11 @@ msgstr "Mistókst að loka á notanda." msgid "Unblock user failed." msgstr "Mistókst að opna fyrir notanda." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bein skilaboð til %s" + #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" @@ -236,11 +351,21 @@ msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir." msgid "No status found with that ID." msgstr "Engin staða fundin með þessu kenni." +#: actions/apifavoritecreate.php:121 +#, fuzzy +msgid "This status is already a favorite." +msgstr "Þetta babl er nú þegar í uppáhaldi!" + #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." +#: actions/apifavoritedestroy.php:124 +#, fuzzy +msgid "That status is not a favorite." +msgstr "Þetta babl er ekki í uppáhaldi!" + #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Gat ekki eytt uppáhaldi." @@ -261,6 +386,26 @@ msgid "Could not unfollow user: User not found." msgstr "" "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." +#: actions/apifriendshipsdestroy.php:121 +#, fuzzy +msgid "You cannot unfollow yourself." +msgstr "Gat ekki uppfært notanda." + +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." + +#: actions/apifriendshipsshow.php:134 +#, fuzzy +msgid "Could not determine source user." +msgstr "Gat ekki uppfært notanda." + +#: actions/apifriendshipsshow.php:142 +#, fuzzy +msgid "Could not find target user." +msgstr "Gat ekki uppfært notanda." + #: actions/apigroupcreate.php:168 actions/editgroup.php:186 #: actions/newgroup.php:126 actions/profilesettings.php:215 #: actions/register.php:212 @@ -310,6 +455,17 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." msgid "Too many aliases! Maximum %d." msgstr "" +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Ógilt merki: \"%s\"" + +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." + #: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." @@ -321,6 +477,12 @@ msgstr "" msgid "Group not found." msgstr "Fannst ekki." +#. TRANS: Error text shown a user tries to join a group they already are a member of. +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Þú ert nú þegar meðlimur í þessum hópi" + #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. #: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." @@ -333,6 +495,11 @@ msgstr "" msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki skráð hópmeðlimi." +#: actions/apigroupleave.php:116 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Þú ert ekki meðlimur í þessum hópi." + #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 @@ -341,6 +508,18 @@ msgstr "Gat ekki skráð hópmeðlimi." msgid "Could not remove user %1$s from group %2$s." msgstr "Gat ekki búið til hóp." +#. TRANS: %s is a user name +#: actions/apigrouplist.php:98 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Hópar %s" + +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Hópar sem %s er meðlimur í" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -348,10 +527,25 @@ msgstr "Gat ekki búið til hóp." msgid "%s groups" msgstr "Hópar %s" +#: actions/apigrouplistall.php:96 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Hópsaðgerðir" + +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Misheppnuð skipun" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ótæk stærð." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -370,6 +564,21 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "Það kom upp vandamál með setutókann þinn. Vinsamlegast reyndu aftur." +#: actions/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Ótækt notendanafn eða lykilorð." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Villa kom upp í stillingu notanda." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -433,6 +642,11 @@ msgstr "Lykilorð" msgid "Deny" msgstr "" +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Allt" + #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." msgstr "" @@ -450,6 +664,12 @@ msgstr "Þú getur ekki eytt stöðu annars notanda." msgid "No such notice." msgstr "Ekkert svoleiðis babl." +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +#, fuzzy +msgid "Cannot repeat your own notice." +msgstr "Get ekki kveikt á tilkynningum." + #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. #: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." @@ -467,6 +687,12 @@ msgstr "Engin staða með þessu kenni fannst." msgid "Client must provide a 'status' parameter with a value." msgstr "" +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + #: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Fannst ekki." @@ -476,6 +702,11 @@ msgstr "Fannst ekki." msgid "Max notice size is %d chars, including attachment URL." msgstr "" +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#, fuzzy +msgid "Unsupported format." +msgstr "Skráarsnið myndar ekki stutt." + #: actions/apitimelinefavorites.php:110 #, php-format msgid "%1$s / Favorites from %2$s" @@ -486,6 +717,11 @@ msgstr "Staða %1$s á %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." +#: actions/apitimelinementions.php:118 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "Staða %1$s á %2$s" + #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -501,15 +737,35 @@ msgstr "Almenningsrás %s" msgid "%s updates from everyone!" msgstr "%s færslur frá öllum!" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "Svör við %s" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "Svör við %s" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Babl merkt með %s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "Aðferð í forritsskilum er í þróun." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Ekkert þannig merki." + #: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/groupmembers.php:76 @@ -531,6 +787,11 @@ msgstr "Ótæk stærð." msgid "Avatar" msgstr "Mynd" +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + #: actions/avatarsettings.php:106 actions/avatarsettings.php:185 #: actions/grouplogo.php:181 actions/remotesubscribe.php:191 #: actions/userauthorization.php:72 actions/userrss.php:108 @@ -565,6 +826,11 @@ msgstr "Hlaða upp" msgid "Crop" msgstr "Skera af" +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "Engin persónuleg síða tilgreind" + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "" @@ -582,6 +848,11 @@ msgstr "Mynd hefur verið uppfærð." msgid "Failed updating avatar." msgstr "Mistókst að uppfæra mynd" +#: actions/avatarsettings.php:397 +#, fuzzy +msgid "Avatar deleted." +msgstr "Mynd hefur verið uppfærð." + #: actions/block.php:69 msgid "You already blocked that user." msgstr "Þú ert nú þegar í áskrift að þessum notendum:" @@ -609,6 +880,26 @@ msgctxt "BUTTON" msgid "No" msgstr "Athugasemd" +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:157 actions/deleteuser.php:156 +#, fuzzy +msgid "Do not block this user" +msgstr "Opna á þennan notanda" + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "Já" + #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. #: actions/block.php:164 lib/blockform.php:82 @@ -635,6 +926,26 @@ msgstr "Mistókst að vista upplýsingar um notendalokun" msgid "No such group." msgstr "Enginn þannig hópur." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Persónuleg síða notanda" + +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%s og vinirnir, síða %d" + +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Listi yfir notendur í þessum hóp." + +#: actions/blockedfromgroup.php:288 +#, fuzzy +msgid "Unblock user from group" +msgstr "Mistókst að opna fyrir notanda." + #. TRANS: Title for the form to unblock a user. #: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" @@ -663,6 +974,12 @@ msgstr "Staðfestingarlykill fannst ekki." msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "Óþekkt gerð tölvupóstfangs %s" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -699,6 +1016,11 @@ msgid "The address \"%s\" has been confirmed for your account." msgstr "" "Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Staðfestingarlykill" + #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" @@ -712,6 +1034,12 @@ msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." msgid "Application not found." msgstr "Staðfestingarlykill fannst ekki." +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Þú ert ekki meðlimur í þessum hópi." + #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 @@ -719,6 +1047,11 @@ msgstr "Staðfestingarlykill fannst ekki." msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Ekkert svoleiðis babl." + #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " @@ -731,6 +1064,12 @@ msgstr "" msgid "Do not delete this application" msgstr "Get ekki eytt þessu babli." +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +#, fuzzy +msgid "Delete this application" +msgstr "Eyða þessu babli" + #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 @@ -760,17 +1099,44 @@ msgstr "Eyða babli" msgid "Are you sure you want to delete this notice?" msgstr "Ertu viss um að þú viljir eyða þessu babli?" +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Get ekki eytt þessu babli." + #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" msgstr "Eyða þessu babli" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Gat ekki uppfært notanda." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Þú getur ekki eytt stöðu annars notanda." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Eyða" + #: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Eyða þessu babli" + #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 @@ -781,10 +1147,45 @@ msgstr "" msgid "Design settings for this StatusNet site" msgstr "" +#: actions/designadminpanel.php:331 +#, fuzzy +msgid "Invalid logo URL." +msgstr "Ótæk stærð." + +#: actions/designadminpanel.php:335 +#, fuzzy, php-format +msgid "Theme not available: %s." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/designadminpanel.php:439 +#, fuzzy +msgid "Change logo" +msgstr "Breyta" + #: actions/designadminpanel.php:444 msgid "Site logo" msgstr "Babl vefsíðunnar" +#: actions/designadminpanel.php:456 +#, fuzzy +msgid "Change theme" +msgstr "Breyta" + +#: actions/designadminpanel.php:473 +#, fuzzy +msgid "Site theme" +msgstr "Babl vefsíðunnar" + +#: actions/designadminpanel.php:474 +#, fuzzy +msgid "Theme for the site." +msgstr "Skrá þig út af síðunni" + +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Babl vefsíðunnar" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -798,6 +1199,13 @@ msgstr "" msgid "Background" msgstr "" +#: actions/designadminpanel.php:509 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" @@ -816,10 +1224,30 @@ msgstr "" msgid "Tile background image" msgstr "" +#: actions/designadminpanel.php:577 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Breyta lykilorðinu þínu" + +#: actions/designadminpanel.php:600 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Tengjast" + +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Leita" + #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Texti" +#: actions/designadminpanel.php:639 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Innskráning" + #: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" @@ -869,14 +1297,65 @@ msgstr "Bæta við sem uppáhaldsbabli" msgid "No such document \"%s\"" msgstr "Ekkert svoleiðis babl." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Aðrir valkostir" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Ekkert svoleiðis babl." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Notaðu þetta eyðublað til að breyta hópnum." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Lýsing" + #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Heimasíða er ekki gild vefslóð." + #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "" +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." + #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." msgstr "" @@ -889,6 +1368,11 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +#, fuzzy +msgid "Could not update application." +msgstr "Gat ekki uppfært hóp." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -912,10 +1396,21 @@ msgstr "Notaðu þetta eyðublað til að breyta hópnum." msgid "description is too long (max %d chars)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ógilt merki: \"%s\"" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Gat ekki uppfært hóp." +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +#, fuzzy +msgid "Could not create aliases." +msgstr "Gat ekki búið til uppáhald." + #: actions/editgroup.php:280 msgid "Options saved." msgstr "Valmöguleikar vistaðir." @@ -932,6 +1427,13 @@ msgstr "Stillingar persónulegrar síðu" msgid "Manage how you get email from %%site.name%%." msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%." +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Tölvupóstföng" + #. TRANS: Form note in e-mail settings form. #: actions/emailsettings.php:112 msgid "Current confirmed email address." @@ -957,6 +1459,17 @@ msgstr "" "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " "ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Hætta við" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -966,6 +1479,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "Tölvupóstfang eins og \"notandi@example.org\"" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "Bæta við" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -984,6 +1507,14 @@ msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl msgid "Make a new email address for posting to; cancels the old one." msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla." +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "Nýtt" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -1004,6 +1535,12 @@ msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hj msgid "Send me email when someone sends me a private message." msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." @@ -1019,6 +1556,12 @@ msgstr "Ég vil babla í gegnum tölvupóst." msgid "Publish a MicroID for my email address." msgstr "Birta MicroID fyrir tölvupóstfangið mitt." +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "Stillingar vistaðar." + #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 msgid "No email address." @@ -1071,6 +1614,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "Engin staðfesting í bið sem þarf að hætta við." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Þetta er rangt snarskilaboðafang." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1153,6 +1702,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "Uppáhaldsbabl %s" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1163,6 +1717,26 @@ msgstr "Notendur í sviðsljósinu" msgid "Featured users, page %d" msgstr "Notendur í sviðsljósinu, síða %d" +#: actions/featured.php:99 +#, fuzzy, php-format +msgid "A selection of some great users on %s" +msgstr "Úrval nokkurra frábærra notenda á %s" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice ID." +msgstr "Ekkert svoleiðis babl." + +#: actions/file.php:38 +#, fuzzy +msgid "No notice." +msgstr "Ekkert svoleiðis babl." + +#: actions/file.php:42 +#, fuzzy +msgid "No attachments." +msgstr "Ekkert svoleiðis skjal." + #: actions/file.php:51 msgid "No uploaded attachments." msgstr "" @@ -1171,6 +1745,11 @@ msgstr "" msgid "Not expecting this response!" msgstr "Bjóst ekki við þessu svari!" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Notandi sem verið er að hlusta á er ekki til." + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Þú getur notað staðbundna áskrift!" @@ -1183,6 +1762,36 @@ msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" msgid "You are not authorized." msgstr "Þú ert ekki áskrifandi." +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." + +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Óþekkt útgáfa OMB samskiptamátans." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" + +#: actions/getfile.php:79 +#, fuzzy +msgid "No such file." +msgstr "Ekkert svoleiðis babl." + +#: actions/getfile.php:83 +#, fuzzy +msgid "Cannot read file." +msgstr "Týndum skránni okkar" + +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ótæk stærð." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1191,6 +1800,11 @@ msgstr "" msgid "You cannot grant user roles on this site." msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Notandi hefur enga persónulega síðu." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1203,10 +1817,31 @@ msgstr "Engin persónuleg síða tilgreind" msgid "No profile with that ID." msgstr "Engin persónulega síða með þessu einkenni" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Engin persónuleg síða tilgreind" + #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Notandinn hefur lokað á þig." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Þú ert ekki meðlimur í þessum hópi." + +#: actions/groupblock.php:134 actions/groupmembers.php:364 +#, fuzzy +msgid "Block user from group" +msgstr "Loka á notanda" + #: actions/groupblock.php:160 #, php-format msgid "" @@ -1215,6 +1850,18 @@ msgid "" "the group in the future." msgstr "" +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Listi yfir notendur í þessum hóp." + +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 +#, fuzzy +msgid "Block this user from this group" +msgstr "Listi yfir notendur í þessum hóp." + #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1223,16 +1870,49 @@ msgstr "" msgid "No ID." msgstr "Ekkert Jabber-kenni" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/groupdesignsettings.php:144 +#, fuzzy +msgid "Group design" +msgstr "Hópar" + #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Gat ekki uppfært hóp." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Stillingar vistaðar." + #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "Einkennismynd hópsins" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + +#: actions/grouplogo.php:365 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" + #: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Einkennismynd uppfærð." @@ -1300,6 +1980,12 @@ msgstr "" msgid "%s timeline" msgstr "Rás %s" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1324,10 +2010,25 @@ msgstr "" msgid "Create a new group" msgstr "Búa til nýjan hóp" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. " +"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." + #: actions/groupsearch.php:58 msgid "Group search" msgstr "Hópleit" +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Niðurstöður skipunar" + #: actions/groupsearch.php:82 #, php-format msgid "" @@ -1346,6 +2047,11 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Notandinn hefur lokað á þig." + #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." msgstr "Vill kom upp við að aflétta notendalokun." @@ -1368,6 +2074,12 @@ msgstr "" "[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " "neðan og stilltu notkunina." +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 +#, fuzzy +msgid "IM is not available." +msgstr "Þessi síða er ekki aðgengileg í " + #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1477,6 +2189,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Þetta er rangt snarskilaboðafang." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Gat ekki eytt tölvupóstsstaðfestingu." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1493,6 +2211,11 @@ msgstr "Þetta er ekki Jabber-kennið þitt." msgid "The IM address was removed." msgstr "Móttökutölvupóstfang fjarlægt." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Innhólf %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1577,6 +2300,13 @@ msgstr "Persónuleg skilaboð" msgid "Optionally add a personal message to the invitation." msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Senda" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1645,6 +2375,16 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ekkert stuttnefni." + +#: actions/joingroup.php:141 +#, fuzzy, php-format +msgid "%1$s joined group %2$s" +msgstr "%s bætti sér í hópinn %s" + #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." @@ -1704,8 +2444,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Friðhelgi" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -1771,6 +2512,11 @@ msgstr "Þú hefur nú þegar skráð þig inn." msgid "Incorrect username or password." msgstr "Rangt notendanafn eða lykilorð." +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Engin heimild." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Innskráning" @@ -1801,6 +2547,20 @@ msgstr "" "Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " "lykilorð áður en þú breytir stillingunum þínum." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "Skráðu þig inn með notendanafni og lykilorði" + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " +"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" +"action.openidlogin%%). " + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" @@ -1810,10 +2570,45 @@ msgstr "" msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" + +#: actions/makeadmin.php:146 +#, fuzzy, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" + +#: actions/microsummary.php:69 +#, fuzzy +msgid "No current status." +msgstr "Engin núverandi staða" + +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Ekkert svoleiðis babl." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." + #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "" +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Gat ekki búið til uppáhald." + #: actions/newgroup.php:53 msgid "New group" msgstr "Nýr hópur" @@ -1850,6 +2645,18 @@ msgstr "" "Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í " "staðinn." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Skilaboð" + +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Bein skilaboð send til %s" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Ajax villa" @@ -1875,6 +2682,11 @@ msgstr "" msgid "Text search" msgstr "Textaleit" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "Skilaboð frá %1$s á %2$s" + #: actions/noticesearch.php:121 #, php-format msgid "" @@ -1899,6 +2711,14 @@ msgstr "" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Færslur frá %1$s á %2$s!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð " +"tölvupóstinn sinn." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Ýtt við notanda" @@ -1907,6 +2727,16 @@ msgstr "Ýtt við notanda" msgid "Nudge sent!" msgstr "Ýtt við notanda!" +#: actions/oauthappssettings.php:59 +#, fuzzy +msgid "You must be logged in to list your applications." +msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." + +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Aðrir valkostir" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -1924,6 +2754,11 @@ msgstr "" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Þú ert ekki meðlimur í þessum hópi." + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -1992,6 +2827,11 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "Þjónusta sem sér um sjálfkrafa styttingu." +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Stillingar persónulegrar síðu" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" @@ -2001,10 +2841,35 @@ msgid "URL shortening service is too long (max 50 chars)." msgstr "" "Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Engin persónuleg síða tilgreind" + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Engin persónuleg síða tilgreind" + #: actions/otp.php:90 msgid "No login token requested." msgstr "Engin heimildarbeiðni!" +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Ótækt bablinnihald" + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Skrá þig inn á síðuna" + +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Úthólf %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2085,10 +2950,40 @@ msgstr "" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/pathsadminpanel.php:163 +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Þessi síða er ekki aðgengileg í " + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +#, fuzzy +msgid "Site" +msgstr "Bjóða" + +#: actions/pathsadminpanel.php:238 +#, fuzzy +msgid "Server" +msgstr "Endurheimta" + #: actions/pathsadminpanel.php:238 msgid "Site's server hostname." msgstr "" @@ -2097,6 +2992,11 @@ msgstr "" msgid "Path" msgstr "" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Babl vefsíðunnar" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2129,6 +3029,21 @@ msgstr "" msgid "Theme directory" msgstr "" +#: actions/pathsadminpanel.php:279 +#, fuzzy +msgid "Avatars" +msgstr "Mynd" + +#: actions/pathsadminpanel.php:284 +#, fuzzy +msgid "Avatar server" +msgstr "Stillingar fyrir mynd" + +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "Mynd hefur verið uppfærð." + #: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "" @@ -2149,6 +3064,21 @@ msgstr "" msgid "Background directory" msgstr "" +#: actions/pathsadminpanel.php:320 +#, fuzzy +msgid "SSL" +msgstr "SMS" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +#, fuzzy +msgid "Never" +msgstr "Endurheimta" + +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "Babl" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2161,10 +3091,20 @@ msgstr "" msgid "When to use SSL" msgstr "" +#: actions/pathsadminpanel.php:335 +#, fuzzy +msgid "SSL server" +msgstr "Endurheimta" + #: actions/pathsadminpanel.php:336 msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Babl vefsíðunnar" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2183,6 +3123,11 @@ msgstr "Leit að fólki" msgid "Not a valid people tag: %s." msgstr "Ekki tækt tölvupóstfang." +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Notendur sjálfmerktir með %s - síða %d" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Ótæk stærð." @@ -2229,6 +3174,16 @@ msgstr "" "Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " "vefsvæði" +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" + +#: actions/profilesettings.php:125 actions/register.php:471 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Lýstu þér og þínum " + #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Lýsing" @@ -2306,6 +3261,11 @@ msgstr "Ógilt merki: \"%s\"" msgid "Couldn't update user for autosubscribe." msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Gat ekki vistað merki." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Gat ekki vistað persónulega síðu." @@ -2442,10 +3402,29 @@ msgstr "" msgid "Could not update user with confirmed email address." msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið " +"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "Sláðu inn stuttnefni eða tölvupóstfang." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangið." @@ -2526,6 +3505,11 @@ msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)" msgid "Sorry, only invited people can register." msgstr "Afsakið en aðeins fólki sem er boðið getur nýskráð sig." +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Villa kom upp varðandi staðfestingarlykilinn." + #: actions/register.php:119 msgid "Registration successful" msgstr "Nýskráning tókst" @@ -2613,6 +3597,39 @@ msgid "" "email address, IM address, and phone number." msgstr "" +#: actions/register.php:583 +#, fuzzy, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. " +"Héðan vilt þú kannski...\n" +"\n" +"* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n" +"* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo " +"þú getir sent inn babl í snarskilaboðum.\n" +"* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu " +"áhugamál og þú. \n" +"* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess " +"að leyfa öðrum að kynnast þér betur.\n" +"* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla " +"betur.\n" +"\n" +"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." + #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2637,6 +3654,11 @@ msgstr "" msgid "Remote subscribe" msgstr "Fara í fjaráskrift" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Gerast áskrifandi að þessum notanda" + #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Stuttnefni notanda" @@ -2662,6 +3684,48 @@ msgstr "Gerast áskrifandi" msgid "Invalid profile URL (bad format)" msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " +"áskrifandi." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Gat ekki komist yfir beiðnistóka." + +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "Aðeins notandinn getur lesið hans eigin pósthólf." + +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Engin persónuleg síða tilgreind" + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." + +#: actions/repeat.php:90 +#, fuzzy +msgid "You already repeated that notice." +msgstr "Þú hefur nú þegar lokað á þennan notanda." + +#: actions/repeat.php:114 lib/noticelist.php:676 +#, fuzzy +msgid "Repeated" +msgstr "Í sviðsljósinu" + #: actions/repeat.php:119 msgid "Repeated!" msgstr "" @@ -2713,10 +3777,30 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Skilaboð til %1$s á %2$s" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Notandi með enga persónulega síðu sem passar við" + +#: actions/rsd.php:146 actions/version.php:159 +#, fuzzy +msgid "StatusNet" +msgstr "Tölfræði" + +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + #: actions/sandbox.php:72 msgid "User is already sandboxed." msgstr "" @@ -2747,11 +3831,39 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#, fuzzy +msgid "Save site settings" +msgstr "Stillingar fyrir mynd" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Babl hefur enga persónulega síðu" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +#, fuzzy +msgid "Name" +msgstr "Stuttnefni" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#, fuzzy +msgid "Organization" +msgstr "Uppröðun" + #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 #: lib/applicationeditform.php:207 lib/groupeditform.php:172 @@ -2806,10 +3918,35 @@ msgid "" "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Ertu viss um að þú viljir eyða þessu babli?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "Uppáhaldsbabl %s" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Gat ekki sótt uppáhaldsbabl." +#: actions/showfavorites.php:171 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Bablveita uppáhaldsbabls %s" + +#: actions/showfavorites.php:178 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Bablveita uppáhaldsbabls %s" + +#: actions/showfavorites.php:185 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Bablveita uppáhaldsbabls %s" + #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -2882,6 +4019,11 @@ msgstr "" msgid "Notice feed for %s group (Atom)" msgstr "" +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s hópurinn" + #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" msgstr "Meðlimir" @@ -2896,6 +4038,11 @@ msgstr "(Ekkert)" msgid "All members" msgstr "Allir meðlimir" +#: actions/showgroup.php:439 +#, fuzzy +msgid "Created" +msgstr "Í sviðsljósinu" + #: actions/showgroup.php:455 #, php-format msgid "" @@ -2915,6 +4062,11 @@ msgid "" "their life and interests. " msgstr "" +#: actions/showgroup.php:489 +#, fuzzy +msgid "Admins" +msgstr "Stjórnandi" + #: actions/showmessage.php:81 msgid "No such message." msgstr "Engin þannig skilaboð." @@ -2933,11 +4085,26 @@ msgstr "Skilaboð til %1$s á %2$s" msgid "Message from %1$s on %2$s" msgstr "Skilaboð frá %1$s á %2$s" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Babl sent inn" + +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Babl merkt með %s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" msgstr "Hópar, síða %d" +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "Bablveita fyrir %s" + #: actions/showstream.php:129 #, php-format msgid "Notice feed for %s (RSS 1.0)" @@ -2953,6 +4120,11 @@ msgstr "" msgid "Notice feed for %s (Atom)" msgstr "" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Úthólf %s" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -2988,6 +4160,16 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "Svör við %s" + +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + #: actions/silence.php:72 msgid "User is already silenced." msgstr "" @@ -3021,6 +4203,11 @@ msgstr "" msgid "General" msgstr "" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Babl vefsíðunnar" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -3041,6 +4228,16 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Nýtt tölvupóstfang til að senda á %s" + +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Staðbundin sýn" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -3049,6 +4246,11 @@ msgstr "" msgid "Default timezone for the site; usually UTC." msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Tungumál (ákjósanlegt)" + #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" @@ -3073,14 +4275,39 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Babl vefsíðunnar" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ný skilaboð" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Vandamál komu upp við að vista babl." + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Babl vefsíðunnar" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Babl vefsíðunnar" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3093,6 +4320,12 @@ msgstr "Stillingar fyrir mynd" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +#, fuzzy +msgid "SMS is not available." +msgstr "Þessi síða er ekki aðgengileg í " + #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3118,6 +4351,13 @@ msgstr "Staðfestingarlykill" msgid "Enter the code you received on your phone." msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn." +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Staðfesta" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3142,6 +4382,12 @@ msgstr "" "Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " "farsímafyrirtækið rukki fyrir móttöku á SMSunum." +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Stillingar vistaðar." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -3162,6 +4408,17 @@ msgstr "Þetta er nú þegar símanúmerið þitt." msgid "That phone number already belongs to another user." msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda." +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +#: actions/smssettings.php:384 +#, fuzzy +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 "" +"Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. " +"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " +"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " + #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. #: actions/smssettings.php:413 msgid "That is the wrong confirmation number." @@ -3178,6 +4435,12 @@ msgstr "SMS staðfesting" msgid "That is not your phone number." msgstr "Þetta er ekki símanúmerið þitt." +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS símanúmer" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -3259,6 +4522,11 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Stillingar fyrir mynd" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Þú ert ekki áskrifandi." @@ -3272,6 +4540,16 @@ msgstr "Gat ekki vistað áskrift." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Ekkert svoleiðis babl." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Þú ert ekki áskrifandi." + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "Þú ert nú í áskrift" @@ -3342,6 +4620,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s er að hlusta á bablið þitt á %2$s." + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "Jabber snarskilaboðaþjónusta" @@ -3360,11 +4643,21 @@ msgstr "Babl merkt með %s" msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#: actions/tag.php:93 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Bablveita fyrir %s" + #: actions/tag.php:99 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Ekkert einkenni gefið upp." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3416,6 +4709,16 @@ msgstr "Ekkert þannig merki." msgid "You haven't blocked that user." msgstr "Þú ert ekki áskrifandi." +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Notandi hefur ekkert nýtt babl" + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Notandi hefur enga persónulega síðu." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "Engin persónulega síða með þessu einkenni" @@ -3430,6 +4733,13 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "Notandi" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -3461,6 +4771,11 @@ msgstr "" msgid "Maximum length of a profile bio in characters." msgstr "" +#: actions/useradminpanel.php:232 +#, fuzzy +msgid "New users" +msgstr "Bjóða nýjum notendum að vera með" + #: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" @@ -3469,6 +4784,28 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Allar áskriftir" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " +"(best fyrir ómannlega notendur)" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "Boðskort hefur verið sent út" + +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "Boðskort hefur verið sent út" + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -3481,6 +4818,17 @@ msgstr "" msgid "Authorize subscription" msgstr "Heimila áskriftir" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " +"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " +"áskrifandi að babli, smelltu þá á \"Hætta við\"." + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -3500,6 +4848,11 @@ msgstr "Gerast áskrifandi að þessum notanda" msgid "Reject" msgstr "Hafna" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s áskriftir" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Engin heimildarbeiðni!" @@ -3508,10 +4861,31 @@ msgstr "Engin heimildarbeiðni!" msgid "Subscription authorized" msgstr "Áskrift heimiluð" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " +"þinn er;" + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Áskrift hafnað" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3537,6 +4911,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Get ekki lesið slóðina fyrir myndina '%s'" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Röng gerð myndar fyrir '%s'" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Stillingar persónulegrar síðu" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3557,6 +4946,11 @@ msgstr "Hópar, síða %d" msgid "Search for more groups" msgstr "" +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Þú ert ekki meðlimur í þessum hópi." + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -3573,6 +4967,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" +#: actions/version.php:75 +#, fuzzy, php-format +msgid "StatusNet %s" +msgstr "Tölfræði" + #: actions/version.php:155 #, php-format msgid "" @@ -3611,6 +5010,12 @@ msgstr "" msgid "Plugins" msgstr "" +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +#, fuzzy +msgid "Version" +msgstr "Persónulegt" + #: actions/version.php:199 msgid "Author(s)" msgstr "" @@ -3658,6 +5063,30 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Ótæk stærð." + +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Hópssíðan" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Gat ekki uppfært hóp." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Hópssíðan" + #: classes/Group_member.php:108 lib/joinform.php:114 msgid "Join" msgstr "Gerast meðlimur" @@ -3669,11 +5098,30 @@ msgstr "Gerast meðlimur" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Gat ekki uppfært hóp." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Gat ekki búið til uppáhald." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Villa kom upp við að senda bein skilaboð" + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -3697,6 +5145,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Villa kom upp við að setja inn mynd" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Vandamál komu upp við að vista babl." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -3710,6 +5164,16 @@ msgstr "" "Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " "mínútur." +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +#: classes/Notice.php:283 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " +"mínútur." + #. TRANS: Client exception thrown when a user tries to post while being banned. #: classes/Notice.php:291 msgid "You are banned from posting notices on this site." @@ -3726,6 +5190,12 @@ msgstr "Vandamál komu upp við að vista babl." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Vandamál komu upp við að vista babl." + #. 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:1824 @@ -3747,16 +5217,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Notandi hefur enga persónulega síðu." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Gat ekki vistað merki." +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Ekki í áskrift!" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "Notandinn hefur lokað á þig." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ekki í áskrift!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -3781,6 +5275,13 @@ msgstr "" msgid "%s is now following %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:384 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Skilaboð til %1$s á %2$s" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -3796,6 +5297,12 @@ msgstr "Gat ekki búið til hóp." msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "Gat ekki vistað áskrift." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" @@ -3816,6 +5323,12 @@ msgstr "Breyta lykilorðinu þínu" msgid "Change email handling" msgstr "Breyta tölvupóstumsjón" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Persónuleg síða notanda" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -3826,6 +5339,12 @@ msgstr "Aðrir valkostir" msgid "Other" msgstr "Annað" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, fuzzy, php-format +msgid "%1$s - %2$s" +msgstr "%1$s (%2$s)" + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -3836,17 +5355,67 @@ msgstr "Ónafngreind síða" msgid "Primary site navigation" msgstr "Stikl aðalsíðu" +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "Persónuleg síða og vinarás" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Persónulegt" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Breyta lykilorðinu þínu" +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Gat ekki framsent til vefþjóns: %s" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Tengjast" +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "Stikl aðalsíðu" + +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Stjórnandi" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Bjóða" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -3865,12 +5434,51 @@ msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til nýjan hóp" +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Nýskrá" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:501 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "Skrá þig inn á síðuna" + +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Innskráning" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp" +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjálp" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Leita að fólki eða texta" + +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Leita" + #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 @@ -3927,11 +5535,29 @@ msgstr "Frumþula" msgid "Contact" msgstr "Tengiliður" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "Pot" + #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." +"broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -3953,6 +5579,12 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "Hugbúnaðarleyfi StatusNet" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -4016,17 +5648,104 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Nýskráning ekki leyfð." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Skipun hefur ekki verið fullbúin" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Skipun hefur ekki verið fullbúin" + #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." msgstr "" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "Staðfesting tölvupóstfangs" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Bjóða" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "SMS staðfesting" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Persónulegt" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "SMS staðfesting" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "SMS staðfesting" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "SMS staðfesting" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS staðfesting" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "Babl vefsíðunnar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS staðfesting" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4078,16 +5797,40 @@ msgstr "" msgid "Icon for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Lýsing" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Frumþula" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4160,6 +5903,12 @@ msgstr "" msgid "Author" msgstr "" +#. TRANS: DT element label in attachment list item. +#: lib/attachmentlist.php:279 +#, fuzzy +msgid "Provider" +msgstr "Forsýn" + #. TRANS: Title. #: lib/attachmentnoticesection.php:68 msgid "Notices where this attachment appears" @@ -4170,6 +5919,16 @@ msgstr "" msgid "Tags for this attachment" msgstr "" +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Lykilorðabreyting" + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Lykilorðabreyting" + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4187,6 +5946,26 @@ msgstr "Fullkláruð skipun" msgid "Command failed" msgstr "Misheppnuð skipun" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "Enginn persónuleg síða með þessu einkenni." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Notandi hefur ekkert nýtt babl" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4204,6 +5983,13 @@ msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Ýtt við notanda" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4269,16 +6055,62 @@ msgid "" "same server." msgstr "" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" + #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." msgstr "Villa kom upp við að senda bein skilaboð" +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Babl sent inn" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Villa kom upp í stillingu notanda." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Svara þessu babli" + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Vandamál komu upp við að vista babl." + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +msgid "Specify the name of the user to subscribe to." +msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" + +#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. +#: lib/command.php:664 +#, fuzzy +msgid "Can't subscribe to OMB profiles by command." +msgstr "Þú ert ekki áskrifandi." + #. 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:672 @@ -4286,6 +6118,13 @@ msgstr "Villa kom upp í stillingu notanda." 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:694 lib/command.php:804 +#, fuzzy +msgid "Specify the name of the user to unsubscribe from." +msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" + #. 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:705 @@ -4338,6 +6177,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Þú ert ekki áskrifandi." + #. 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. @@ -4347,6 +6192,13 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." + #. 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. @@ -4356,6 +6208,13 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +msgid "You are not a member of any groups." +msgstr "Þú ert ekki meðlimur í þessum hópi." + #. 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. @@ -4408,6 +6267,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Enginn staðfestingarlykill." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4416,6 +6280,11 @@ msgstr "" msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "Skrá þig inn á síðuna" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "Snarskilaboð" @@ -4428,6 +6297,11 @@ msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" msgid "Updates by SMS" msgstr "Færslur sendar með SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Tengjast" + #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" msgstr "" @@ -4436,6 +6310,17 @@ msgstr "" msgid "Database error" msgstr "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Hlaða upp" + +#: lib/designsettings.php:109 +#, fuzzy +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + #: lib/designsettings.php:418 msgid "Design defaults restored." msgstr "" @@ -4476,6 +6361,11 @@ msgstr "Sía merki" msgid "All" msgstr "Allt" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Veldu farsímafyrirtæki" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Merki" @@ -4497,6 +6387,16 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4602,6 +6502,11 @@ msgstr "" msgid "Unsupported image file format." msgstr "Skráarsnið myndar ekki stutt." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Upphal að hluta til." @@ -4750,6 +6655,12 @@ msgstr "Staða %s" msgid "SMS confirmation" msgstr "SMS staðfesting" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -4879,6 +6790,11 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" +#: lib/mailbox.php:228 lib/noticelist.php:506 +#, fuzzy +msgid "from" +msgstr "frá" + #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Gat ekki þáttað skilaboðin." @@ -4895,6 +6811,11 @@ msgstr "Afsakið en þetta er ekki móttökutölvupóstfangið þitt." msgid "Sorry, no incoming email allowed." msgstr "Því miður er móttökutölvupóstur ekki leyfður." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Skráarsnið myndar ekki stutt." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -4943,6 +6864,13 @@ msgstr "" msgid "File could not be moved to destination directory." msgstr "" +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +#, fuzzy +msgid "Could not determine file's MIME type." +msgstr "Gat ekki eytt uppáhaldi." + #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of #. TRANS: the MIME type that was denied. @@ -4972,6 +6900,12 @@ msgstr "Til" msgid "Available characters" msgstr "Leyfileg tákn" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Senda" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Senda babl" @@ -4989,12 +6923,28 @@ msgstr "" msgid "Attach a file" msgstr "" +#: lib/noticeform.php:213 +#, fuzzy +msgid "Share my location" +msgstr "Gat ekki vistað merki." + +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Gat ekki vistað merki." + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "Nei" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -5023,6 +6973,16 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "Ekkert innihald!" + +#: lib/noticelist.php:603 +#, fuzzy +msgid "Repeated by" +msgstr "Í sviðsljósinu" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Svara þessu babli" @@ -5031,6 +6991,11 @@ msgstr "Svara þessu babli" msgid "Reply" msgstr "Svara" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Babl sent inn" + #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Ýta við þessum notanda" @@ -5097,6 +7062,12 @@ msgstr "Skilaboð sem þú hefur sent" msgid "Tags in %s's notices" msgstr "Merki í babli %s" +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "Óþekkt aðgerð" + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Áskriftir" @@ -5113,6 +7084,11 @@ msgstr "Áskrifendur" msgid "All subscribers" msgstr "Allir áskrifendur" +#: lib/profileaction.php:191 +#, fuzzy +msgid "User ID" +msgstr "Notandi" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Meðlimur síðan" @@ -5150,10 +7126,25 @@ msgstr "Í sviðsljósinu" msgid "Popular" msgstr "Vinsælt" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ekkert einkenni gefið upp." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Svara þessu babli" + #: lib/repeatform.php:132 msgid "Yes" msgstr "Já" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Svara þessu babli" + #: lib/revokeroleform.php:91 #, php-format msgid "Revoke the \"%s\" role from this user" @@ -5163,6 +7154,22 @@ msgstr "" msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Innhólf" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Opna á þennan notanda" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Leita" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -5174,6 +7181,12 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Leita" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Fólk" @@ -5198,6 +7211,16 @@ msgstr "Ónafngreindur hluti" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Babl vefsíðunnar" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Loka á þennan notanda" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -5244,6 +7267,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Mistókst að uppfæra mynd" + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5284,10 +7314,20 @@ msgstr "Aðalbablararnir" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Opna á þennan notanda" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Opna á þennan notanda" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Hætta sem áskrifandi að þessum notanda" @@ -5296,6 +7336,11 @@ msgstr "Hætta sem áskrifandi að þessum notanda" msgid "Unsubscribe" msgstr "Fara úr áskrift" +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Mynd" + #: lib/userprofile.php:234 lib/userprofile.php:248 msgid "User actions" msgstr "Notandaaðgerðir" @@ -5304,6 +7349,11 @@ msgstr "Notandaaðgerðir" msgid "User deletion in progress..." msgstr "" +#: lib/userprofile.php:263 +#, fuzzy +msgid "Edit profile settings" +msgstr "Stillingar persónulegrar síðu" + #: lib/userprofile.php:264 msgid "Edit" msgstr "" @@ -5320,6 +7370,11 @@ msgstr "Skilaboð" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "Persónuleg síða notanda" + #: lib/userprofile.php:366 msgctxt "role" msgid "Administrator" @@ -5392,6 +7447,11 @@ msgstr[1] "" msgid "about a year ago" msgstr "fyrir um einu ári síðan" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Heimasíða er ekki gild vefslóð." + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." @@ -5399,14 +7459,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Engin persónuleg síða tilgreind" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 537d701351..6b4bb2721d 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:28+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:51+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -385,6 +385,11 @@ msgstr "Impossibile non seguire l'utente: utente non trovato." msgid "You cannot unfollow yourself." msgstr "Non puoi non seguirti." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "Devono essere forniti due ID utente o nominativi." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Impossibile determinare l'utente sorgente." @@ -519,6 +524,11 @@ msgstr "Gruppi di %s" msgid "groups on %s" msgstr "Gruppi su %s" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Carica file" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "Nessun parametro oauth_token fornito." @@ -2388,7 +2398,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privato" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2644,6 +2654,14 @@ msgstr "Messaggi con \"%s\"" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Messaggi che corrispondono al termine \"%1$s\" su %2$s!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"Questo utente non consente i richiami oppure non ha confermato o impostato " +"ancora il suo indirizzo email." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Richiamo inviato" @@ -3861,6 +3879,15 @@ msgstr "" "Non hai ancora scelto alcun messaggio come preferito. Fai clic sul pulsate a " "forma di cuore per salvare i messaggi e rileggerli in un altro momento." +#: actions/showfavorites.php:208 +#, fuzzy, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" +"%s non ha aggiunto alcun messaggio tra i suoi preferiti. Scrivi qualche cosa " +"di interessante in modo che lo inserisca tra i suoi preferiti. :)" + #: actions/showfavorites.php:212 #, php-format msgid "" @@ -4956,6 +4983,17 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. +#: classes/File.php:190 +#, fuzzy, php-format +msgid "" +"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgstr "" +"Nessun file può superare %d byte e il file inviato era di %d byte. Prova a " +"caricarne una versione più piccola." + #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4972,6 +5010,12 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Un file di questa dimensione supererebbe la tua quota mensile di %d byte." +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "Dimensione non valida." + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -5112,6 +5156,18 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "L'utente non ha un profilo." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "Impossibile salvare il messaggio del sito." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." @@ -7426,14 +7482,15 @@ msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Nessun ID utente specificato." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index dff6dc5c2d..22bd4a67f1 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:29+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:52+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -76,6 +76,18 @@ msgstr "閉じられた" msgid "Save access settings" msgstr "アクセス設定の保存" +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "保存" + #. TRANS: Server error when page not found (404) #: actions/all.php:68 actions/public.php:98 actions/replies.php:93 #: actions/showfavorites.php:138 actions/tag.php:52 @@ -230,6 +242,15 @@ msgstr "API メソッドが見つかりません。" msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" +#: actions/apiaccountupdatedeliverydevice.php:107 +#, fuzzy +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none." +msgstr "" +"「device」という名前の引数を、次の中から値を選んで、指定する必要があります: " +"sms, im, none" + #: actions/apiaccountupdatedeliverydevice.php:134 msgid "Could not update user." msgstr "ユーザを更新できませんでした。" @@ -366,6 +387,11 @@ msgstr "ユーザのフォローを停止できませんでした: ユーザが msgid "You cannot unfollow yourself." msgstr "自分自身をフォロー停止することはできません。" +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "ふたつのIDかスクリーンネームが必要です。" + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "ソースユーザーを決定できません。" @@ -425,6 +451,11 @@ msgstr "場所が長すぎます。(255字まで)" msgid "Too many aliases! Maximum %d." msgstr "別名が多すぎます! 最大 %d。" +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "不正な別名: \"%s\"" + #: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format @@ -477,6 +508,12 @@ msgstr "ユーザ %1$s をグループ %2$s から削除できません。" msgid "%s's groups" msgstr "%s のグループ" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "グループ %s はメンバー" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -489,6 +526,11 @@ msgstr "%s グループ" msgid "groups on %s" msgstr "%s 上のグループ" +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "ファイルアップロード" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "oauth_token パラメータは提供されませんでした。" @@ -772,6 +814,11 @@ msgstr "アップロード" msgid "Crop" msgstr "切り取り" +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "プロファイル記述がありません。" + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "あなたのアバターとなるイメージを正方形で指定" @@ -800,6 +847,17 @@ msgstr "そのユーザはすでにブロック済みです。" msgid "Block user" msgstr "ユーザをブロック" +#: actions/block.php:138 +#, fuzzy +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"あなたはこのユーザをブロックしたいのを確信していますか? その後、それらはあな" +"たからフォローを外されるでしょう、将来、あなたにフォローできないで、あなたは" +"どんな @-返信 についてもそれらから通知されないでしょう。" + #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. #. TRANS: Button label on the delete notice form. @@ -818,6 +876,19 @@ msgstr "ノート" msgid "Do not block this user" msgstr "このユーザをアンブロックする" +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "Yes" + #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. #: actions/block.php:164 lib/blockform.php:82 @@ -890,6 +961,12 @@ msgstr "確認コードが見つかりません。" msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "不明なアドレスタイプ %s" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -958,6 +1035,16 @@ msgstr "あなたのセッショントークンに関する問題がありまし msgid "Delete application" msgstr "アプリケーション削除" +#: actions/deleteapplication.php:149 +#, fuzzy +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" +"ベースからユーザに関するすべてのデータをクリアします。" + #. TRANS: Submit button title for 'No' when deleting an application. #: actions/deleteapplication.php:158 msgid "Do not delete this application" @@ -1073,6 +1160,11 @@ msgstr "サイトテーマ" msgid "Theme for the site." msgstr "サイトのテーマ" +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "サイトテーマ" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -1331,6 +1423,17 @@ msgstr "" "このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" "かれたメッセージが届いていないか確認してください。" +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "中止" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -1340,6 +1443,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "メールアドレス、\"UserName@example.org\" のような" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "追加" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -1358,6 +1471,14 @@ msgstr "新しいつぶやき投稿にこのアドレスへメールする" msgid "Make a new email address for posting to; cancels the old one." msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。" +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "New" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -1401,6 +1522,12 @@ msgstr "メールでつぶやきを投稿したい。" msgid "Publish a MicroID for my email address." msgstr "私のメールアドレスのためにMicroIDを発行してください。" +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "デザイン設定が保存されました。" + #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 msgid "No email address." @@ -1453,6 +1580,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "承認待ちのものはありません。" +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "その IM アドレスは不正です。" + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1606,6 +1739,11 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。" +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "リモートプロファイル更新エラー" + #: actions/getfile.php:79 msgid "No such file." msgstr "そのようなファイルはありません。" @@ -1614,10 +1752,25 @@ msgstr "そのようなファイルはありません。" msgid "Cannot read file." msgstr "ファイルを読み込めません。" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "不正なトークン。" + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "あなたはこのサイトのサンドボックスユーザができません。" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "ユーザは既に黙っています。" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -2000,6 +2153,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "メール承認を削除できません" + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -2105,6 +2264,13 @@ msgstr "パーソナルメッセージ" msgid "Optionally add a personal message to the invitation." msgstr "任意に招待にパーソナルメッセージを加えてください。" +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "投稿" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -2173,6 +2339,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "グループに入るためにはログインしなければなりません。" +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "ニックネームがありません。" + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" @@ -2238,7 +2409,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "プライベート" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2336,6 +2507,19 @@ msgstr "" "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" "て下さい。" +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "ユーザ名とパスワードでログイン" + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"ユーザ名とパスワードで、ログインしてください。 まだユーザ名を持っていません" +"か? 新しいアカウントを [登録](%%action.register%%)。" + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "管理者だけが別のユーザを管理者にすることができます。" @@ -2482,6 +2666,14 @@ msgstr "%s で更新" msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%2$s\" 上の検索語 \"$1$s\" に一致するすべての更新" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"このユーザは、合図を許可していないか、確認されていた状態でないか、メール設定" +"をしていません。" + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "合図を送った" @@ -2519,6 +2711,11 @@ msgstr "" msgid "You are not a user of that application." msgstr "あなたはそのアプリケーションのユーザではありません。" +#: actions/oauthconnectionssettings.php:186 +#, fuzzy, php-format +msgid "Unable to revoke access for app: %s." +msgstr "アプリケーションのための取消しアクセスができません: " + #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." msgstr "" @@ -2538,6 +2735,12 @@ msgstr "ユーザはプロフィールをもっていません。" msgid "%1$s's status on %2$s" msgstr "%2$s における %1$s のステータス" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "内容種別 " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2711,6 +2914,11 @@ msgstr "アバターディレクトリ" msgid "Background directory not writable: %s." msgstr "バックグラウンドディレクトリ" +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "場所ディレクトリが読み込めません: %s" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "不正な SSL サーバー。最大 255 文字まで。" @@ -3004,6 +3212,11 @@ msgstr "タグを保存できません。" msgid "Settings saved." msgstr "設定が保存されました。" +#: actions/public.php:83 +#, fuzzy, php-format +msgid "Beyond the page limit (%s)." +msgstr "ページ制限を超えました (%s)" + #: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "パブリックストリームを検索できません。" @@ -3261,6 +3474,15 @@ msgstr "メールアドレスが既に存在します。" msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" +#: actions/register.php:350 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"このフォームで新しいアカウントを作成できます。 次につぶやきを投稿して、友人や" +"同僚にリンクできます。 " + #: actions/register.php:432 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" @@ -3309,6 +3531,14 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" + #: actions/register.php:583 #, php-format msgid "" @@ -3490,6 +3720,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s 上の %1$s への返信!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "あなたはこのサイトでユーザを黙らせることができません。" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "合っているプロフィールのないユーザ" + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "StatusNet" @@ -3612,6 +3852,11 @@ msgstr "" "注意: 私たちはHMAC-SHA1署名をサポートします。 私たちは平文署名メソッドをサ" "ポートしません。" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "本当にこのつぶやきを削除しますか?" + #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" @@ -3645,6 +3890,15 @@ msgstr "" "加するあなたがそれらがお気に入りのつぶやきのときにお気に入りボタンをクリック" "するか、またはそれらの上でスポットライトをはじいてください。" +#: actions/showfavorites.php:208 +#, fuzzy, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" +"%s はまだ彼のお気に入りに少しのつぶやきも加えていません。 彼らがお気に入りに" +"加えることおもしろいものを投稿してください:)" + #: actions/showfavorites.php:212 #, php-format msgid "" @@ -3895,6 +4149,16 @@ msgstr "有効な連絡用メールアドレスがなければなりません。 msgid "Unknown language \"%s\"." msgstr "不明な言語 \"%s\"" +#: actions/siteadminpanel.php:165 +#, fuzzy +msgid "Minimum text limit is 0 (unlimited)." +msgstr "最小のテキスト制限は140字です。" + +#: actions/siteadminpanel.php:171 +#, fuzzy +msgid "Dupe limit must be one or more seconds." +msgstr "デュープ制限は1秒以上でなければなりません。" + #: actions/siteadminpanel.php:221 msgid "General" msgstr "一般" @@ -3972,14 +4236,39 @@ msgstr "" "どれくらい長い間(秒)、ユーザは、再び同じものを投稿するのを待たなければならな" "いか。" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "サイトつぶやき" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "新しいメッセージ" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "あなたのデザイン設定を保存できません。" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "サイトつぶやき" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "サイトつぶやき" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3998,6 +4287,12 @@ msgstr "" msgid "SMS is not available." msgstr "SMS は利用できません。" +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IMアドレス" + #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." @@ -4018,6 +4313,13 @@ msgstr "確認コード" msgid "Enter the code you received on your phone." msgstr "あなたがあなたの電話で受け取ったコードを入れてください。" +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "パスワード確認" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -4042,6 +4344,12 @@ msgstr "" "SMSを通してつぶやきを私に送ってください; 私は、私のキャリアから法外な料金を被" "るかもしれないのを理解しています。" +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "設定が保存されました。" + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -4087,6 +4395,12 @@ msgstr "SMS確認" msgid "That is not your phone number." msgstr "それはあなたの電話番号ではありません。" +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS 電話番号" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -4168,6 +4482,11 @@ msgstr "レポート URL" msgid "Snapshots will be sent to this URL" msgstr "このURLにスナップショットを送るでしょう" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "サイト設定の保存" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "あなたはそのプロファイルにフォローされていません。" @@ -4181,6 +4500,16 @@ msgstr "フォローを保存できません。" msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "そのようなファイルはありません。" + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "あなたはそのプロファイルにフォローされていません。" + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "フォローしている" @@ -4370,6 +4699,13 @@ msgstr "" "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" "りません。" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "ユーザ" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -4552,6 +4888,11 @@ msgstr "" "あなたのプロフィールがバックグラウンド画像とあなたの選択の色のパレットで見る" "方法をカスタマイズしてください。" +#: actions/userdesignsettings.php:282 +#, fuzzy +msgid "Enjoy your hotdog!" +msgstr "あなたのhotdogを楽しんでください!" + #. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. #: actions/usergroups.php:66 #, php-format @@ -4657,6 +4998,18 @@ msgstr "" msgid "Robin thinks something is impossible." msgstr "" +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. +#: classes/File.php:190 +#, fuzzy, php-format +msgid "" +"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgstr "" +"どんなファイルも %d バイトより大きくてはいけません、そして、あなたが送った" +"ファイルは %d バイトでした。より小さいバージョンをアップロードするようにして" +"ください。" + #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. #: classes/File.php:202 @@ -4673,6 +5026,12 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "不正なサイズ。" + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." @@ -4699,6 +5058,12 @@ msgstr "参加" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "グループを更新できません。" + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -4807,6 +5172,12 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "ユーザはプロフィールをもっていません。" + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." @@ -4878,6 +5249,12 @@ msgstr "グループを作成できません。" msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "フォローを保存できません。" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" @@ -4929,6 +5306,20 @@ msgstr "名称未設定ページ" msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "パーソナルプロファイルと友人のタイムライン" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "パーソナル" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" @@ -4952,6 +5343,28 @@ msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "基本サイト設定" +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "管理者" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "友人や同僚が %s で加わるよう誘ってください。" + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "招待" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -4970,18 +5383,50 @@ msgctxt "TOOLTIP" msgid "Create an account" msgstr "新しいグループを作成" +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "登録" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:501 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "サイトへログイン" + +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "ログイン" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ヘルプ" +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "ヘルプ" + #. TRANS: Tooltip for main menu option "Search" #: lib/action.php:513 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "もっとグループを検索" +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "検索" + #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 @@ -5047,6 +5492,19 @@ msgstr "バッジ" msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" +"イクロブログサービスです。 " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -5167,11 +5625,26 @@ msgstr "デザイン設定を削除できません。" msgid "Basic site configuration" msgstr "基本サイト設定" +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "サイト" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:345 msgid "Design configuration" msgstr "デザイン設定" +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "デザイン" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:353 msgid "User configuration" @@ -5197,6 +5670,18 @@ msgstr "パス設定" msgid "Sessions configuration" msgstr "セッション設定" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "サイトつぶやき" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "パス設定" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -5323,6 +5808,18 @@ msgstr "" msgid "Cancel" msgstr "中止" +#. TRANS: Application access type +#: lib/applicationlist.php:135 +#, fuzzy +msgid "read-write" +msgstr "リードライト" + +#. TRANS: Application access type +#: lib/applicationlist.php:137 +#, fuzzy +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:143 #, php-format @@ -5385,6 +5882,26 @@ msgstr "コマンド完了" msgid "Command failed" msgstr "コマンド失敗" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "その ID によるつぶやきは存在していません" + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "利用者はまだつぶやいていません" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "ユーザを更新できません" + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -5402,6 +5919,13 @@ msgstr "すみません、このコマンドはまだ実装されていません msgid "It does not make a lot of sense to nudge yourself!" msgstr "それは自分自身への合図で多くは意味がありません!" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "%s へ合図を送りました" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5482,16 +6006,49 @@ msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送っ msgid "Error sending direct message." msgstr "ダイレクトメッセージ送信エラー。" +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "%s からつぶやきが繰り返されています" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "つぶやき繰り返しエラー" +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "つぶやきが長すぎます - 最大 %d 字、あなたが送ったのは %d" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "%s へ返信を送りました" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." msgstr "つぶやき保存エラー。" +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +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:664 +#, fuzzy +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:672 @@ -5499,6 +6056,13 @@ msgstr "つぶやき保存エラー。" 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:694 lib/command.php:804 +#, fuzzy +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:705 @@ -5532,6 +6096,12 @@ msgstr "通知オン。" msgid "Can't turn on notification." msgstr "通知をオンできません。" +#. TRANS: Error text shown when issuing the login command while login is disabled. +#: lib/command.php:771 +#, fuzzy +msgid "Login command is disabled." +msgstr "ログインコマンドが無効になっています。" + #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. #: lib/command.php:784 @@ -5965,6 +6535,32 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s は %2$s であなたのつぶやきを聞いています。\n" +"\n" +"%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"忠実である、あなたのもの、\n" +"%7$s.\n" +"\n" +"----\n" +"%8$s でメールアドレスか通知オプションを変えてください。\n" + #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -5977,6 +6573,28 @@ msgstr "自己紹介: %s" msgid "New email address for posting to %s" msgstr "%s へ投稿のための新しいメールアドレス" +#. TRANS: Body of notification mail for new posting email address +#: lib/mail.php:308 +#, fuzzy, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"あなたは %1$s に関する新しい投稿アドレスを持っています。\n" +"\n" +"%2$s にメールを送って、新しいメッセージを投稿してください。\n" +"\n" +"%3$s でより多くのメール指示。\n" +"\n" +"忠実である、あなたのもの、\n" +"%4$s" + #. TRANS: Subject line for SMS-by-email notification messages #: lib/mail.php:433 #, php-format @@ -5988,24 +6606,131 @@ msgstr "%s の状態" msgid "SMS confirmation" msgstr "SMS確認" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "この電話番号は確認待ちです。" + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に合図されています" +#. TRANS: Body for 'nudge' notification email +#: lib/mail.php:489 +#, fuzzy, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" +"%1$s ($2$s) は、最近まであなたが何であるかと思っていて、あなたが何らかの" +"ニュースを投稿するよう誘っています。\n" +"\n" +"それで、あなたから、連絡をいただきましょう :)\n" +"\n" +"%3$s\n" +"\n" +"このメールに答えないでください。 それはそれらを始めないでしょう。\n" +"\n" +"敬具\n" +"%4$s\n" + #. TRANS: Subject for direct-message notification email #: lib/mail.php:536 #, php-format msgid "New private message from %s" msgstr "%s からの新しいプライベートメッセージ" +#. TRANS: Body for direct-message notification email +#: lib/mail.php:541 +#, fuzzy, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) はあなたにプライベートメッセージを送りました:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"あなたはここでそれらのメッセージに答えることができます:\n" +"\n" +"%4$s\n" +"\n" +"このメールに答えないでください。 それはそれらを始めないでしょう。\n" +"\n" +"敬具\n" +"%5$s\n" + #. TRANS: Subject for favorite notification email #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" +#. TRANS: Body for favorite notification email +#: lib/mail.php:592 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s (@%7$s) は彼らのお気に入りのひとりとして %2$s からあなたのつぶやきを加え" +"ました。\n" +"\n" +"あなたのつぶやきのURL:\n" +"\n" +"%3$s\n" +"\n" +"あなたのつぶやきのテキスト:\n" +"\n" +"%4$s\n" +"\n" +"あなたはここで %1$s のお気に入りのリストを見ることができます:\n" +"\n" +"%5$s\n" +"\n" +"忠実である、あなたのもの、\n" +"%6%s\n" + #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #: lib/mail.php:651 #, php-format @@ -6175,6 +6900,12 @@ msgstr "To" msgid "Available characters" msgstr "利用可能な文字" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "投稿" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "つぶやきを送る" @@ -6208,6 +6939,30 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "北" + +#. TRANS: Used in coordinates as abbreviation of south +#: lib/noticelist.php:438 +#, fuzzy +msgid "S" +msgstr "南" + +#. TRANS: Used in coordinates as abbreviation of east +#: lib/noticelist.php:440 +#, fuzzy +msgid "E" +msgstr "東" + +#. TRANS: Used in coordinates as abbreviation of west +#: lib/noticelist.php:442 +#, fuzzy +msgid "W" +msgstr "西" + #: lib/noticelist.php:444 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" @@ -6385,6 +7140,11 @@ msgstr "Yes" msgid "Repeat this notice" msgstr "このつぶやきを繰り返す" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "このグループからこのユーザをブロック" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "single-user モードのためのシングルユーザが定義されていません。" @@ -6496,6 +7256,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "アバターの更新に失敗しました。" + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6584,6 +7351,28 @@ msgstr "この利用者にダイレクトメッセージを送る" msgid "Message" msgstr "メッセージ" +#: lib/userprofile.php:326 +#, fuzzy +msgid "Moderate" +msgstr "管理" + +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "ユーザプロファイル" + +#: lib/userprofile.php:366 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "管理者" + +#: lib/userprofile.php:367 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "管理" + #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1126 msgid "a few seconds ago" @@ -6654,14 +7443,15 @@ msgstr "%s は有効な色ではありません! 3か6の16進数を使ってく #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "ユーザIDの記述がありません。" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 12d99f62cc..db46dcaab4 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:30+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:55+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7365,14 +7365,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "მომხმარებლის ID მითითებული არ არის." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 885bb28d1c..78fac49375 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:30+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:56+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -377,6 +377,11 @@ msgstr "언팔로우할 수 없습니다: 이용자 없음." msgid "You cannot unfollow yourself." msgstr "자기 자신을 언팔로우할 수 없습니다." +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "소스 이용자를 확인할 수 없습니다." @@ -436,6 +441,11 @@ msgstr "위치가 너무 깁니다. (최대 255글자)" msgid "Too many aliases! Maximum %d." msgstr "별명이 너무 많습니다! 최대 %d개." +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "사용할 수 없는 별명 : \"%s\"" + #: actions/apigroupcreate.php:277 actions/editgroup.php:232 #: actions/newgroup.php:172 #, php-format @@ -514,6 +524,10 @@ msgstr "실행 실패" msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "토큰이 잘못되었습니다." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -532,6 +546,10 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오." +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." + #: actions/apioauthauthorize.php:159 msgid "Database error deleting OAuth application user." msgstr "OAuth 응용프로그램 사용자 삭제 중 데이터베이스 오류" @@ -668,6 +686,11 @@ msgstr "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다 msgid "Unsupported format." msgstr "지원하지 않는 형식입니다." +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%s / %s의 좋아하는 글" + #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." @@ -693,11 +716,26 @@ msgstr "%s 공개 타임라인" msgid "%s updates from everyone!" msgstr "모두로부터의 업데이트 %s개!" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "%s에 답신" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "%s에 답신" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "%s 태그된 통지" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." @@ -766,6 +804,10 @@ msgstr "올리기" msgid "Crop" msgstr "자르기" +#: actions/avatarsettings.php:305 +msgid "No file uploaded." +msgstr "파일을 업로드하지 않았습니다." + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "그림에서 당신의 아바타로 사용할 영역을 지정하십시오." @@ -869,6 +911,11 @@ msgstr "%s 및 친구들, %d 페이지" msgid "%1$s blocked profiles, page %2$d" msgstr "%1$s 및 친구들, %2$d 페이지" +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "이 그룹의 회원리스트" + #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" msgstr "그룹 이용자는 차단해제" @@ -901,6 +948,12 @@ msgstr "인증 코드가 없습니다." msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "인식되지않은 주소유형 %s" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -1001,6 +1054,14 @@ msgstr "로그인하고 있지 않습니다." msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." + #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "통지 삭제" @@ -1009,6 +1070,12 @@ msgstr "통지 삭제" msgid "Are you sure you want to delete this notice?" msgstr "정말로 통지를 삭제하시겠습니까?" +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +#, fuzzy +msgid "Do not delete this notice" +msgstr "이 통지를 지울 수 없습니다." + #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" @@ -1149,7 +1216,7 @@ msgstr "사용자 정의 CSS" #: actions/designadminpanel.php:689 lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "기본값 사용" #: actions/designadminpanel.php:690 lib/designsettings.php:248 msgid "Restore default designs" @@ -1171,6 +1238,11 @@ msgstr "" msgid "Save" msgstr "저장" +#: actions/designadminpanel.php:699 lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "프로필 디자인" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "이 메시지는 favorite이 아닙니다." @@ -1197,10 +1269,25 @@ msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." msgid "No such application." msgstr "신규 응용 프로그램" +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "다음 양식을 이용해 그룹을 편집하십시오." + #: actions/editapplication.php:177 actions/newapplication.php:159 msgid "Name is required." msgstr "기관 이름이 필요합니다." +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "실명이 너무 깁니다. (최대 255글자)" + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." + #: actions/editapplication.php:186 actions/newapplication.php:168 msgid "Description is required." msgstr "기관 이름이 필요합니다." @@ -1470,6 +1557,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "옳지 않은 메신저 계정 입니다." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1552,6 +1645,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "%s 님의 좋아하는 글" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1562,6 +1660,11 @@ msgstr "인기있는 회원" msgid "Featured users, page %d" msgstr "인기있는 회원, %d페이지" +#: actions/featured.php:99 +#, fuzzy, php-format +msgid "A selection of some great users on %s" +msgstr "%s의 훌륭한 회원의 일부 선택" + #: actions/file.php:34 msgid "No notice ID." msgstr "그러한 통지는 없습니다." @@ -1582,6 +1685,11 @@ msgstr "첨부문서 없음" msgid "Not expecting this response!" msgstr "예상치 못한 반응 입니다." +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "살펴 보고 있는 사용자가 없습니다." + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "당신은 로컬 구독을 사용할 수 있습니다." @@ -1594,6 +1702,21 @@ msgstr "이 사용자는 귀하의 구독을 차단했습니다." msgid "You are not authorized." msgstr "당신은 이 프로필에 구독되지 않고있습니다." +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." + +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB 프로토콜의 알려지지 않은 버전" + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "리모트 프로필 업데이트 오류" + #: actions/getfile.php:79 msgid "No such file." msgstr "해당하는 파일이 없습니다." @@ -1602,6 +1725,11 @@ msgstr "해당하는 파일이 없습니다." msgid "Cannot read file." msgstr "파일을 읽을 수 없습니다." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "옳지 않은 크기" + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1626,6 +1754,12 @@ msgstr "프로필을 지정하지 않았습니다." msgid "No profile with that ID." msgstr "해당 ID의 프로필이 없습니다." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "프로필을 지정하지 않았습니다." + #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" @@ -1642,6 +1776,16 @@ msgstr "그룹 이용자는 차단해제" msgid "Block user from group" msgstr "그룹 이용자는 차단해제" +#: actions/groupblock.php:160 +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post, and unable to subscribe to " +"the group in the future." +msgstr "" +"정말 이용자를 차단하시겠습니까? 차단된 이용자는 구독해제되고, 이후 당신을 구" +"독할 수 없으며, 차단된 이용자로부터 @-답장의 통보를 받지 않게 됩니다." + #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:182 msgid "Do not block this user from this group" @@ -1652,10 +1796,20 @@ msgstr "이용자를 차단하지 않는다." msgid "Block this user from this group" msgstr "그룹 이용자는 차단해제" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "그룹 이용자는 차단해제" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "ID가 없습니다." +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + #: actions/groupdesignsettings.php:144 msgid "Group design" msgstr "프로필 디자인" @@ -1724,19 +1878,23 @@ msgstr "관리자" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "차단" #. TRANS: Submit button title. #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "이 사용자 차단" + +#: actions/groupmembers.php:498 +msgid "Make user an admin of the group" +msgstr "사용자를 그룹의 관리자로 만듭니다" #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "관리자 만들기" #. TRANS: Submit button title. #: actions/groupmembers.php:537 @@ -1753,6 +1911,12 @@ msgstr "" msgid "%s timeline" msgstr "%s 타임라인" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -2125,6 +2289,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "그룹가입을 위해서는 로그인이 필요합니다." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "별명이 없습니다." + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" @@ -2148,7 +2317,7 @@ msgstr "%1$s의 상태 (%2$s에서)" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "라이선스" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" @@ -2189,16 +2358,17 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "개인정보 취급방침" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "All Rights Reserved" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "크리에이티브 커먼즈 (Creative Commons)" #: actions/licenseadminpanel.php:252 msgid "Type" @@ -2206,7 +2376,7 @@ msgstr "" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "라이선스 선택" #: actions/licenseadminpanel.php:268 msgid "License details" @@ -2226,11 +2396,11 @@ msgstr "" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "라이선스 이름" #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "라이선스 URL" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." @@ -2238,7 +2408,7 @@ msgstr "" #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "라이선스 이미지 URL" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." @@ -2287,6 +2457,20 @@ msgid "" msgstr "" "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "사용자 이름과 비밀번호로 로그인" + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" @@ -2318,6 +2502,11 @@ msgstr "신규 응용 프로그램" msgid "You must be logged in to register an application." msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." + #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "소스 URL이 필요합니다." @@ -2365,6 +2554,13 @@ msgstr "" msgid "Message sent" msgstr "쪽지가 전송되었습니다." +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "%s에게 보낸 직접 메시지" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Ajax 에러입니다." @@ -2409,11 +2605,23 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +#: actions/noticesearchrss.php:96 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%2$s에 있는 %1$s의 업데이트!" + #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"이 사용자는 nudge를 허용하지 않았고, 아직 그의 메일을 인증하지 않았습니다." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "찔러 보기를 보냈습니다." @@ -2434,6 +2642,11 @@ msgstr "응용프로그램 삭제" msgid "Applications you have registered" msgstr "" +#: actions/oauthappssettings.php:135 +#, fuzzy, php-format +msgid "You have not registered any applications yet." +msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다." + #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" msgstr "연결한 응용프로그램" @@ -2442,11 +2655,21 @@ msgstr "연결한 응용프로그램" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." msgstr "" +#: actions/oauthconnectionssettings.php:198 +#, fuzzy +msgid "You have not authorized any applications to use your account." +msgstr "다음 응용 프로그램이 계정에 접근하도록 허용되어 있습니다." + #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " msgstr "" @@ -2460,6 +2683,12 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다." msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "연결" + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2504,10 +2733,20 @@ msgstr "사용할 URL 자동 줄이기 서비스." msgid "View profile designs" msgstr "프로필 디자인 보기" +#: actions/othersettings.php:123 +#, fuzzy +msgid "Show or hide profile designs." +msgstr "프로필 디자인 보기" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "프로필을 지정하지 않았습니다." + #: actions/otp.php:83 msgid "No login token specified." msgstr "허용되지 않는 요청입니다." @@ -2520,6 +2759,11 @@ msgstr "허용되지 않는 요청입니다." msgid "Invalid login token specified." msgstr "허용되지 않는 요청입니다." +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "사이트에 로그인하세요." + #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" @@ -2614,6 +2858,16 @@ msgstr "인스턴트 메신저를 사용할 수 없습니다." msgid "Avatar directory not writable: %s." msgstr "아바타가 삭제되었습니다." +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "아바타 디렉토리에 쓸 수 없습니다 : %s" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2678,10 +2932,30 @@ msgstr "아바타" msgid "Avatar server" msgstr "아바타가 삭제되었습니다." +#: actions/pathsadminpanel.php:288 +msgid "Avatar path" +msgstr "아바타 경로" + #: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "아바타가 삭제되었습니다." +#: actions/pathsadminpanel.php:301 +msgid "Backgrounds" +msgstr "배경" + +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "항상" + +#: actions/pathsadminpanel.php:309 +msgid "Background path" +msgstr "배경 경로" + +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "배경 디렉터리" + #: actions/pathsadminpanel.php:320 msgid "SSL" msgstr "SSL" @@ -2690,6 +2964,11 @@ msgstr "SSL" msgid "Never" msgstr "SSL 서버" +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "통지" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2781,6 +3060,16 @@ msgstr "홈페이지" msgid "URL of your homepage, blog, or profile on another site" msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140자 이내에서 자기 소개" + +#: actions/profilesettings.php:125 actions/register.php:471 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "당신에 대해 소개해주세요." + #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "자기소개" @@ -2854,6 +3143,11 @@ msgstr "올바르지 않은 태그: \"%s\"" msgid "Couldn't update user for autosubscribe." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "태그를 저장할 수 없습니다." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "프로필을 저장 할 수 없습니다." @@ -2893,6 +3187,11 @@ msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)" msgid "Public Stream Feed (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" +#: actions/public.php:168 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "퍼블릭 스트림 피드" + #: actions/public.php:188 #, php-format msgid "" @@ -2901,6 +3200,11 @@ msgid "" msgstr "" "%%site.name%% 의 공개 타임라인이지만, 아직 아무도 글을 쓰지 않았습니다." +#: actions/public.php:191 +#, fuzzy +msgid "Be the first to post!" +msgstr "글을 올린 첫번째 사람이 되세요!" + #: actions/public.php:195 #, php-format msgid "" @@ -2916,6 +3220,16 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +#: actions/public.php:247 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." + #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "공개 태그 클라우드" @@ -2973,10 +3287,26 @@ msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시 msgid "Could not update user with confirmed email address." msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "비밀 번호 복구" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "별명이나 이메일 계정을 입력하십시오." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소" @@ -3056,6 +3386,11 @@ msgstr "" msgid "Sorry, only invited people can register." msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "확인 코드 오류" + #: actions/register.php:119 msgid "Registration successful" msgstr "회원 가입이 성공적입니다." @@ -3114,10 +3449,16 @@ msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." msgid "Longer name, preferably your \"real\" name" msgstr "더욱 긴 이름을 요구합니다." +#: actions/register.php:518 +#, fuzzy, php-format +msgid "" +"I understand that content and data of %1$s are private and confidential." +msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다." + #: actions/register.php:528 #, php-format msgid "My text and files are copyright by %1$s." -msgstr "" +msgstr "글과 파일의 저작권은 %1$s의 소유입니다" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. #: actions/register.php:532 @@ -3129,6 +3470,47 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" + +#: actions/register.php:583 +#, fuzzy, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" +"래의 일을 할 수 있습니다...\n" +"\n" +"* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" +"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" +"보를 받아 보십시오.\n" +"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " +"분들을 찾아 보십시오. \n" +"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" +"게 자신을 알려보십시오. \n" +"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" +"오. \n" +"\n" +"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." + #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -3152,6 +3534,11 @@ msgstr "" msgid "Remote subscribe" msgstr "리모트 구독 예약" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "이 회원을 구독합니다." + #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "이용자 닉네임" @@ -3177,6 +3564,31 @@ msgstr "구독" msgid "Invalid profile URL (bad format)" msgstr "옳지 않은 프로필 URL (나쁜 포멧)" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "리퀘스트 토큰을 취득 할 수 없습니다." + +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." + +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "프로필을 지정하지 않았습니다." + #: actions/repeat.php:76 msgid "You can't repeat your own notice." msgstr "자신의 글은 재전송할 수 없습니다." @@ -3219,6 +3631,13 @@ msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" msgid "Replies feed for %s (Atom)" msgstr "%s의 통지 피드" +#: actions/replies.php:199 +#, fuzzy, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to them yet." +msgstr "%s 및 친구들의 타임라인이지만, 아직 아무도 글을 작성하지 않았습니다." + #: actions/replies.php:204 #, php-format msgid "" @@ -3258,6 +3677,12 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." msgid "User is already sandboxed." msgstr "이용자의 지속적인 게시글이 없습니다." +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:379 +msgid "Sessions" +msgstr "세션" + #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" msgstr "" @@ -3272,7 +3697,7 @@ msgstr "" #: actions/sessionsadminpanel.php:181 msgid "Session debugging" -msgstr "" +msgstr "세션 디버깅" #: actions/sessionsadminpanel.php:183 msgid "Turn on debugging output for sessions." @@ -3293,7 +3718,7 @@ msgstr "신규 응용 프로그램" #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" -msgstr "" +msgstr "아이콘" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 @@ -3350,12 +3775,22 @@ msgstr "" msgid "Access token URL" msgstr "" +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "작성자" + #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "정말로 통지를 삭제하시겠습니까?" + #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" @@ -3485,6 +3920,22 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " + +#: actions/showgroup.php:489 +#, fuzzy +msgid "Admins" +msgstr "관리자" + #: actions/showmessage.php:81 msgid "No such message." msgstr "그러한 메시지가 없습니다." @@ -3503,6 +3954,16 @@ msgstr "%2$s에서 %1$s까지 메시지" msgid "Message from %1$s on %2$s" msgstr "%1$s에서 %2$s까지 메시지" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "게시글이 등록되었습니다." + +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "%s 태그된 통지" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -3528,6 +3989,16 @@ msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" msgid "Notice feed for %s (Atom)" msgstr "%s 그룹을 위한 공지피드 (Atom)" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s의 보낸쪽지함" + +#: actions/showstream.php:200 +#, fuzzy, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "%s 및 친구들의 타임라인이지만, 아직 아무도 글을 작성하지 않았습니다." + #: actions/showstream.php:205 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " @@ -3552,6 +4023,21 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." + +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "%s에 답신" + #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -3560,6 +4046,11 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." msgid "User is already silenced." msgstr "사용자가 귀하를 차단했습니다." +#: actions/siteadminpanel.php:69 +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "이 StatusNet 사이트에 대한 디자인 설정" + #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" @@ -3613,6 +4104,16 @@ msgstr "" msgid "Contact email address for your site" msgstr "%s에 포스팅 할 새로운 메일 주소" +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "로컬 뷰" + +#: actions/siteadminpanel.php:256 +#, fuzzy +msgid "Default timezone" +msgstr "기본 언어" + #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" @@ -3645,6 +4146,16 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "사이트 공지" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "새로운 메시지입니다." + #: actions/sitenoticeadminpanel.php:103 msgid "Unable to save site notice." msgstr "디자인 설정을 저장할 수 없습니다." @@ -3653,10 +4164,20 @@ msgstr "디자인 설정을 저장할 수 없습니다." msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "사이트 공지" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "사이트 공지" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3819,10 +4340,20 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "메일 주소 확인" +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "옳지 않은 크기" + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "잘못된 로고 URL 입니다." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3831,18 +4362,28 @@ msgstr "" msgid "In a scheduled job" msgstr "" +#: actions/snapshotadminpanel.php:206 +#, fuzzy +msgid "Data snapshots" +msgstr "접근 설정을 저장" + #: actions/snapshotadminpanel.php:208 msgid "When to send statistical data to status.net servers" msgstr "" #: actions/snapshotadminpanel.php:217 msgid "Frequency" -msgstr "" +msgstr "주기" #: actions/snapshotadminpanel.php:218 msgid "Snapshots will be sent once every N web hits" msgstr "" +#: actions/snapshotadminpanel.php:226 +#, fuzzy +msgid "Report URL" +msgstr "소스 코드 URL" + #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" msgstr "" @@ -3868,6 +4409,11 @@ msgstr "" msgid "No such profile." msgstr "해당하는 파일이 없습니다." +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "당신은 이 프로필에 구독되지 않고있습니다." + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "구독하였습니다." @@ -4082,6 +4628,10 @@ msgstr "" msgid "Maximum length of a profile bio in characters." msgstr "" +#: actions/useradminpanel.php:232 +msgid "New users" +msgstr "새 사용자" + #: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" @@ -4090,6 +4640,26 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "모든 예약 구독" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "나에게 구독하는 사람에게 자동 구독 신청" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "초대권을 보냈습니다" + +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "초대권을 보냈습니다" + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -4102,6 +4672,16 @@ msgstr "" msgid "Authorize subscription" msgstr "구독을 허가" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -4121,6 +4701,11 @@ msgstr "이 회원을 구독합니다." msgid "Reject" msgstr "거부" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s 구독" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "허용되지 않는 요청입니다." @@ -4129,10 +4714,30 @@ msgstr "허용되지 않는 요청입니다." msgid "Subscription authorized" msgstr "구독 허가" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "구독 거부" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -4158,6 +4763,16 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%S 잘못된 그림 파일 타입입니다. " + #: actions/userdesignsettings.php:76 lib/designsettings.php:65 msgid "Profile design" msgstr "프로필 디자인" @@ -4178,6 +4793,16 @@ msgstr "" msgid "%1$s groups, page %2$d" msgstr "그룹, %d 페이지" +#: actions/usergroups.php:132 +#, fuzzy +msgid "Search for more groups" +msgstr "프로필이나 텍스트 검색" + +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -4242,6 +4867,11 @@ msgstr "플러그인" msgid "Version" msgstr "버전" +#: actions/version.php:199 +#, fuzzy +msgid "Author(s)" +msgstr "작성자" + #: classes/Fave.php:147 lib/favorform.php:140 msgid "Favor" msgstr "좋아합니다" @@ -4285,11 +4915,23 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" +#. TRANS: Client exception thrown if a file upload does not have a valid name. +#: classes/File.php:248 classes/File.php:263 +#, fuzzy +msgid "Invalid filename." +msgstr "옳지 않은 크기" + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." msgstr "그룹에 가입하지 못했습니다." +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "그룹을 업데이트 할 수 없습니다." + #. TRANS: Exception thrown when trying to leave a group fails. #: classes/Group_member.php:63 msgid "Group leave failed." @@ -4306,6 +4948,12 @@ msgstr "가입" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "그룹을 업데이트 할 수 없습니다." + #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. #: classes/Login_token.php:78 @@ -4318,6 +4966,12 @@ msgstr "%s 에 대한 로그인 토큰을 만들 수 없습니다." msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "직접 메시지 보내기 오류." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -4341,6 +4995,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "통지를 저장하는데 문제가 발생했습니다." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -4354,6 +5014,16 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +#: classes/Notice.php:283 +#, fuzzy +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:291 msgid "You are banned from posting notices on this site." @@ -4370,6 +5040,12 @@ msgstr "통지를 저장하는데 문제가 발생했습니다." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "통지를 저장하는데 문제가 발생했습니다." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1824 @@ -4391,6 +5067,12 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "이용자가 프로필을 가지고 있지 않습니다." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." @@ -4401,11 +5083,23 @@ msgstr "태그를 저장할 수 없습니다." msgid "You have been banned from subscribing." msgstr "귀하는 구독이 금지되었습니다." +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "구독하고 있지 않습니다!" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "사용자가 귀하를 차단했습니다." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "구독하고 있지 않습니다!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -4423,7 +5117,7 @@ msgstr "구독을 저장할 수 없습니다." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "팔로우" #: classes/Subscription.php:255 #, php-format @@ -4477,6 +5171,12 @@ msgstr "비밀번호 바꾸기" msgid "Change email handling" msgstr "메일 처리 변경" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "이용자 프로필" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -4503,6 +5203,13 @@ msgstr "제목없는 페이지" msgid "Primary site navigation" msgstr "주 사이트 네비게이션" +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "개인 프로필과 친구 타임라인" + #. TRANS: Main menu option when logged in for access to personal profile and friends timeline #: lib/action.php:458 msgctxt "MENU" @@ -4539,6 +5246,13 @@ msgctxt "MENU" msgid "Admin" msgstr "관리" +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." + #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users #: lib/action.php:481 msgctxt "MENU" @@ -4591,6 +5305,13 @@ msgctxt "MENU" msgid "Help" msgstr "도움말" +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "프로필이나 텍스트 검색" + #: lib/action.php:516 msgctxt "MENU" msgid "Search" @@ -4661,6 +5382,19 @@ msgstr "배지" msgid "StatusNet software license" msgstr "StatusNet 소프트웨어 라이선스" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " +"마이크로블로깅서비스입니다." + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4756,6 +5490,24 @@ msgstr "" msgid "You cannot make changes to this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "가입이 허용되지 않습니다." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "명령이 아직 실행되지 않았습니다." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "명령이 아직 실행되지 않았습니다." + #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 @@ -4810,6 +5562,12 @@ msgstr "메일 주소 확인" msgid "Sessions configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "사이트 공지" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:393 msgid "Snapshots configuration" @@ -4856,6 +5614,12 @@ msgstr "" msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form legend. +#: lib/applicationeditform.php:129 +#, fuzzy +msgid "Edit application" +msgstr "응용 프로그램 수정" + #. TRANS: Form guide. #: lib/applicationeditform.php:178 msgid "Icon for this application" @@ -4872,11 +5636,29 @@ msgstr "응용프로그램 삭제" msgid "Describe your application" msgstr "응용프로그램 삭제" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" + #. TRANS: Form input field label. #: lib/applicationeditform.php:217 msgid "Source URL" msgstr "소스 코드 URL" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "이 응용프로그램 삭제 않기" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4959,6 +5741,22 @@ msgstr "미리보기" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "해당하는 첨부파일이 없습니다." + +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "비밀번호 변경" + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "비밀번호 변경" + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4976,6 +5774,26 @@ msgstr "실행 완료" msgid "Command failed" msgstr "실행 실패" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "해당 id의 프로필이 없습니다." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "이용자의 지속적인 게시글이 없습니다." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4993,6 +5811,13 @@ msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "찔러 보기를 보냈습니다." + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -5058,21 +5883,61 @@ msgid "" "same server." msgstr "" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "게시글이 등록되었습니다." + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "사용자 세팅 오류" +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#. 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:603 +#, fuzzy, 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:606 msgid "Error saving notice." msgstr "사용자 세팅 오류" +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +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:664 +#, fuzzy +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:672 @@ -5080,6 +5945,13 @@ msgstr "사용자 세팅 오류" 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:694 lib/command.php:804 +#, fuzzy +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:705 @@ -5132,6 +6004,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +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. @@ -5140,6 +6018,13 @@ msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +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. @@ -5148,6 +6033,13 @@ msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +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. @@ -5199,6 +6091,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "확인 코드가 없습니다." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -5227,6 +6124,11 @@ msgstr "SMS에 의한 업데이트" msgid "Connections" msgstr "연결" +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "응용프로그램 삭제" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "데이터베이스 오류" @@ -5240,6 +6142,11 @@ msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB입니다." +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "메일 설정이 저장되었습니다." + #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "이 게시글 좋아하기 취소" @@ -5276,6 +6183,11 @@ msgstr "태그 필터링하기" msgid "All" msgstr "모든 것" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "통신 회사를 선택 하세요." + #: lib/galleryaction.php:140 msgid "Tag" msgstr "태그" @@ -5301,6 +6213,11 @@ msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" msgid "Describe the group or topic" msgstr "응용프로그램 삭제" +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "140글자로 그룹이나 토픽 설명하기" + #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -5315,7 +6232,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "그룹" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -5365,7 +6282,7 @@ msgstr "" #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "로고" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -5405,6 +6322,11 @@ msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 msgid "Unsupported image file format." msgstr "지원하지 않는 그림 파일 형식입니다." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "불완전한 업로드." @@ -5492,6 +6414,26 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" + #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -5531,6 +6473,12 @@ msgstr "%s 상태" msgid "SMS confirmation" msgstr "SMS 인증" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "이 전화 번호는 인증 대기중입니다." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -5617,6 +6565,11 @@ msgid "" "\t%s" msgstr "" +#: lib/mail.php:657 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." + #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 #, php-format @@ -5675,6 +6628,11 @@ msgstr "죄송합니다. 귀하의 이메일이 아닙니다." msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "지원하지 않는 그림 파일 형식입니다." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5684,28 +6642,29 @@ msgstr "" #: lib/mediafile.php:145 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"업로드 파일이 php.ini 설정 파일의 upload_max_filesize 값을 넘어갔습니다." #. TRANS: Client exception. #: lib/mediafile.php:151 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -msgstr "" +msgstr "업로드 파일이 HTML 폼에서 지정한 MAX_FILE_SIZE 값을 넘어갔습니다." #. TRANS: Client exception. #: lib/mediafile.php:157 msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "업로드 파일이 일부만 업로드되었습니다." #. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. #: lib/mediafile.php:165 msgid "Missing a temporary folder." -msgstr "" +msgstr "임시 폴더가 없습니다" #. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. #: lib/mediafile.php:169 msgid "Failed to write file to disk." -msgstr "" +msgstr "디스크에 파일을 쓰는 데 실패했습니다." #. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. #: lib/mediafile.php:173 @@ -5715,7 +6674,7 @@ msgstr "" #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. #: lib/mediafile.php:189 lib/mediafile.php:232 msgid "File exceeds user's quota." -msgstr "" +msgstr "파일이 사용자의 제한 용량을 넘어갑니다." #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. @@ -5772,6 +6731,10 @@ msgstr "게시글 보내기" msgid "What's up, %s?" msgstr "뭐하세요 %s님?" +#: lib/noticeform.php:193 +msgid "Attach" +msgstr "첨부" + #: lib/noticeform.php:197 msgid "Attach a file" msgstr "" @@ -5821,7 +6784,7 @@ msgstr "위치" #: lib/noticelist.php:502 msgid "web" -msgstr "" +msgstr "웹" #: lib/noticelist.php:568 msgid "in context" @@ -5839,6 +6802,11 @@ msgstr "이 게시글에 대해 답장하기" msgid "Reply" msgstr "답장하기" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "게시글이 등록되었습니다." + #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "이 사용자 찔러 보기" @@ -5905,6 +6873,12 @@ msgstr "보낸 메시지" msgid "Tags in %s's notices" msgstr "%s의 게시글의 태그" +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "알려지지 않은 행동" + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구독" @@ -5966,10 +6940,20 @@ msgstr "인기있는" msgid "No return-to arguments." msgstr "첨부문서 없음" +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "이 게시글에 대해 답장하기" + #: lib/repeatform.php:132 msgid "Yes" msgstr "예" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "이 게시글에 대해 답장하기" + #: lib/revokeroleform.php:91 #, php-format msgid "Revoke the \"%s\" role from this user" @@ -5979,6 +6963,16 @@ msgstr "그룹 이용자는 차단해제" msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "받은 쪽지함" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "이 사용자를 차단해제합니다." + #. TRANS: Fieldset legend for the search form. #: lib/searchaction.php:121 msgid "Search site" @@ -5988,12 +6982,12 @@ msgstr "검색 도움말" #. TRANS: for searching can be entered. #: lib/searchaction.php:129 msgid "Keyword(s)" -msgstr "" +msgstr "검색어" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "검색" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -6024,6 +7018,11 @@ msgstr "제목없는 섹션" msgid "More..." msgstr "더 보기..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "사이트 공지" + #: lib/silenceform.php:78 msgid "Silence this user" msgstr "이 사용자 삭제" @@ -6074,6 +7073,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "아바타 업데이트 실패" + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6114,6 +7120,11 @@ msgstr "상위 게시글 등록자" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "이 사용자를 차단해제합니다." + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" @@ -6162,6 +7173,11 @@ msgstr "메시지" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "이용자 프로필" + #: lib/userprofile.php:366 msgctxt "role" msgid "Administrator" @@ -6230,6 +7246,11 @@ msgstr[0] "" msgid "about a year ago" msgstr "1년 전" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "홈페이지 주소형식이 올바르지 않습니다." + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." @@ -6237,14 +7258,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "프로필을 지정하지 않았습니다." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 4b867999eb..ee2205dd05 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:31+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1132,7 +1132,7 @@ msgstr "Изглед" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Нагодувања на изгледот на ова StatusNet-мрежно место." #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1908,7 +1908,7 @@ msgstr "Блокирај" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Блокирај го корисников" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2362,105 +2362,111 @@ msgstr "%1$s ја напушти групата %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Лиценца" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Лиценца на ова StatusNet-мрежно место" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Неважечки избор на лиценца." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Мора да го наведете сопственикот на содржината кога користите лиценца со " +"Сите права задржани." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Неважечки наслов на лиценцата. Дозволени се највеќе 255 знаци." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Неважечка URL-адреса на лиценцата." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Неважечка URL-адреса за сликата на лиценцата." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." msgstr "" +"URL-адресата на лиценцата мора да стои празна или да биде важечка адреса." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." msgstr "" +"Сликата на лиценцата мора да стои празна или да биде важечка URL-адреса." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Избор на лиценца" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Приватен" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Сите права задржани" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Тип" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Одберете лиценца" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Податоци за лиценцата" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Сопственик" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." msgstr "" +"Име и презиме на сопственикот на содржината на мрежното место (ако е " +"применливо)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Наслов на лиценцата" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Насловот на лиценцата." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL-адреса на лиценцата" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL-адреса за повеќе информации во врска со лиценцата." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL-адреса за сликата на лиценцата" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL-адреса за слика што ќе се прикажува со лиценцата." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Зачувај нагодувања на лиценцата" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2701,7 +2707,7 @@ msgstr "Поврзани програми" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Им имате дозволено пристап до Вашата сметка на следните програми." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2892,7 +2898,7 @@ msgstr "Патеки" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Нагодувања за патеки и опслужувачи за оваа StatusNet-мрежно место." #: actions/pathsadminpanel.php:157 #, php-format @@ -3756,7 +3762,7 @@ msgstr "Сесии" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Сесиски нагодувања за ова StatusNet-мрежно место" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4705,7 +4711,7 @@ msgstr "Корисник" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Кориснички нагодувања за ова StatusNet-мрежно место" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4768,7 +4774,7 @@ msgstr "Дали да им е дозволено на корисниците д #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Зачувај кориснички нагодувања" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4994,7 +5000,7 @@ msgstr "Омилено" #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." -msgstr "" +msgstr "%s ја означи забелешката %s како омилена." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 @@ -5062,7 +5068,7 @@ msgstr "Придружи се" #: classes/Group_member.php:112 #, 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. #: classes/Local_group.php:42 @@ -5207,6 +5213,12 @@ msgstr "Веќе претплатено!" msgid "User has blocked you." msgstr "Корисникот Ве има блокирано." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Не сте претплатени!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -5224,12 +5236,12 @@ msgstr "Не можам да ја избришам претплатата." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "Следи" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s сега го/ја следи %s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5679,7 +5691,7 @@ msgstr "Поставки за снимки" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Постави лиценца за мреж. место" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6311,7 +6323,7 @@ msgstr "FOAF" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Канали" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6461,6 +6473,11 @@ msgstr "Оваа страница не е достапна во форматот msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Делумно подигање." @@ -7498,15 +7515,16 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е важечка боја! Користете 3 или 6 шеснаесетни (hex) знаци." #: scripts/restoreuser.php:82 -#, php-format -msgid "Backup file for user %s (%s)\n" -msgstr "" +#, fuzzy, php-format +msgid "Backup file for user %s (%s)" +msgstr "Резервна податотека за корисникот %s (%s)\n" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник.\n" #: scripts/restoreuser.php:94 -#, php-format -msgid "%d entries in backup.\n" -msgstr "" +#, fuzzy, php-format +msgid "%d entries in backup." +msgstr "%d резервни ставки.\n" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index ae59c731fd..9c920a6b89 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:34+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -198,6 +198,32 @@ msgstr "Du og venner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "API-metode ikke funnet!" + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -220,6 +246,11 @@ msgid "" "none." msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none." +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Klarte ikke å oppdatere bruker." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -230,6 +261,11 @@ msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none." msgid "User has no profile." msgstr "Brukeren har ingen profil." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Klarte ikke å lagre profil." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -254,6 +290,12 @@ msgstr "" msgid "Unable to save your design settings." msgstr "Kunne ikke lagre dine innstillinger for utseende." +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Klarte ikke å oppdatere bruker." + #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Du kan ikke blokkere deg selv!" @@ -973,6 +1015,14 @@ msgstr "Program ikke funnet." msgid "You are not the owner of this application." msgstr "Du er ikke eieren av dette programmet." +#. TRANS: Client error text when there is a problem with the session token. +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1320 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." + #: actions/deleteapplication.php:123 actions/deleteapplication.php:147 msgid "Delete application" msgstr "Slett program" @@ -2324,7 +2374,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2722,6 +2772,11 @@ msgstr "" msgid "Invalid login token specified." msgstr "Ugyldig symbol." +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Logg inn på nettstedet" + #: actions/outbox.php:58 #, php-format msgid "Outbox for %1$s - page %2$d" @@ -3745,6 +3800,11 @@ msgstr "" msgid "Access token URL" msgstr "" +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "Forfatter" + #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " @@ -4004,11 +4064,10 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** har en konto på %%%%site.name%%%%, en [mikrobloggingstjeneste] " -"(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " -"programvareverktøyet [StatusNet](http://status.net/). [Bli med nå](%%%%" -"action.register%%%%) for å følge **%s** og mange flere sine notiser. ([Les " -"mer](%%%%doc.help%%%%))" +"**%s** har en konto på %%%%site.name%%%%, en [mikrobloggingstjeneste](http://" +"no.wikipedia.org/wiki/Mikroblogg) basert på det frie programvareverktøyet " +"[StatusNet](http://status.net/). [Bli med nå](%%%%action.register%%%%) for å " +"følge **%s** og mange flere sine notiser. ([Les mer](%%%%doc.help%%%%))" #: actions/showstream.php:248 #, php-format @@ -4017,9 +4076,9 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** har en konto på %%%%site.name%%%%, en [mikrobloggingstjeneste] " -"(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " -"programvareverktøyet [StatusNet](http://status.net/). " +"**%s** har en konto på %%%%site.name%%%%, en [mikrobloggingstjeneste](http://" +"no.wikipedia.org/wiki/Mikroblogg) basert på det frie programvareverktøyet " +"[StatusNet](http://status.net/). " #: actions/showstream.php:305 #, php-format @@ -4136,6 +4195,11 @@ msgstr "" msgid "Site Notice" msgstr "Nettstedsnotis" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ny melding" + #: actions/sitenoticeadminpanel.php:103 msgid "Unable to save site notice." msgstr "Kunne ikke lagre nettstedsnotis." @@ -4316,10 +4380,25 @@ msgstr "Ingen kode skrevet inn" msgid "Snapshots" msgstr "" +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Endre nettstedskonfigurasjon" + +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "Ugyldig rolle." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "Ugyldig logo-URL." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -4344,6 +4423,11 @@ msgstr "Frekvens" msgid "Snapshots will be sent once every N web hits" msgstr "" +#: actions/snapshotadminpanel.php:226 +#, fuzzy +msgid "Report URL" +msgstr "Nettadresse til kilde" + #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" msgstr "" @@ -4352,6 +4436,11 @@ msgstr "" msgid "Save snapshot settings" msgstr "Lagre nettstedsinnstillinger" +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "Ikke autorisert." + #. TRANS: Exception thrown when a subscription could not be stored on the server. #: actions/subedit.php:83 classes/Subscription.php:136 msgid "Could not save subscription." @@ -4369,6 +4458,16 @@ msgstr "Ingen slik profil." msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" +#: actions/subscribe.php:145 +#, fuzzy +msgid "Subscribed" +msgstr "Abonner" + +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Alle abonnenter" + #: actions/subscribers.php:52 #, php-format msgid "%1$s subscribers, page %2$d" @@ -4394,6 +4493,20 @@ msgstr "" msgid "%s has no subscribers. Want to be the first?" msgstr "" +#: actions/subscribers.php:114 +#, fuzzy, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" +"Hvorfor ikke [registrere en konto](%%action.register%%) og vær den første " +"til å poste!" + +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Alle abonnementer" + #: actions/subscriptions.php:54 #, php-format msgid "%1$s subscriptions, page %2$d" @@ -4451,6 +4564,11 @@ msgstr "Notismating for merkelapp %s (RSS 2.0)" msgid "Notice feed for tag %s (Atom)" msgstr "Notismating for merkelapp %s (Atom)" +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Ingen vedlegg." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -4469,6 +4587,15 @@ msgstr "Foto" msgid "Tag user" msgstr "Merk bruker" +#: actions/tagother.php:151 +#, fuzzy +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " +"eller mellomrom" + #: actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." @@ -4478,10 +4605,46 @@ msgstr "" msgid "Could not save tags." msgstr "Kunne ikke lagre merkelapper." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "Bruk dette skjemaet for å redigere programmet ditt." + +#: actions/tagrss.php:35 +#, fuzzy +msgid "No such tag." +msgstr "Ingen slik side." + #: actions/unblock.php:59 msgid "You haven't blocked that user." msgstr "Du har ikke blokkert den brukeren." +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Brukeren er allerede i sandkassen." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Bruker er allerede brakt til taushet." + +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "Ingen profil med den ID'en." + +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Abonner" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, 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: User admin panel title #: actions/useradminpanel.php:60 msgctxt "TITLE" @@ -4593,6 +4756,11 @@ msgstr "Avvis dette abonnementet" msgid "No authorization request!" msgstr "" +#: actions/userauthorization.php:254 +#, fuzzy +msgid "Subscription authorized" +msgstr "Abonnement" + #: actions/userauthorization.php:256 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -4600,6 +4768,11 @@ msgid "" "subscription. Your subscription token is:" msgstr "" +#: actions/userauthorization.php:266 +#, fuzzy +msgid "Subscription rejected" +msgstr "Abonnement" + #: actions/userauthorization.php:268 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -4646,6 +4819,15 @@ msgstr "Feil bildetype for avatar-URL ‘%s’." msgid "Profile design" msgstr "Vis profilutseender" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#, fuzzy +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" +"Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en fargepalett " +"av ditt valg." + #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" msgstr "Bon appétit." @@ -4735,6 +4917,11 @@ msgstr "Versjon" msgid "Author(s)" msgstr "Forfatter(e)" +#: classes/Fave.php:147 lib/favorform.php:140 +#, fuzzy +msgid "Favor" +msgstr "Favoritter" + #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." @@ -4822,6 +5009,12 @@ msgstr "Kunne ikke opprette alias." msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Feil ved sending av direktemelding." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -4839,6 +5032,12 @@ msgstr "Kunne ikke oppdatere melding med ny nettadresse." msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:193 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." + #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 msgid "Problem saving notice. Too long." @@ -4862,6 +5061,12 @@ msgid "" "few minutes." msgstr "" +#. TRANS: Client exception thrown when a user tries to post while being banned. +#: classes/Notice.php:291 +#, fuzzy +msgid "You are banned from posting notices on this site." +msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. #: classes/Notice.php:358 classes/Notice.php:385 @@ -4904,11 +5109,35 @@ msgstr "" msgid "Missing profile." msgstr "Manglende profil." +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "Kunne ikke lagre nettstedsnotis." + +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Brukeren har blokkert deg fra å abonnere." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Alle abonnementer" + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "Bruker har blokkert deg." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Alle abonnementer" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -5006,6 +5235,12 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Side uten tittel" +#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. +#: lib/action.php:449 +#, fuzzy +msgid "Primary site navigation" +msgstr "Endre nettstedskonfigurasjon" + #. TRANS: Tooltip for main menu option "Personal" #: lib/action.php:455 msgctxt "TOOLTIP" @@ -5159,6 +5394,12 @@ msgstr "OSS/FAQ" msgid "TOS" msgstr "" +#. TRANS: Secondary navigation menu option leading to privacy policy. +#: lib/action.php:799 +#, fuzzy +msgid "Privacy" +msgstr "Privat" + #. TRANS: Secondary navigation menu option. #: lib/action.php:802 msgid "Source" @@ -5169,6 +5410,11 @@ msgstr "Kilde" msgid "Contact" msgstr "Kontakt" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "Knuff" + #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" @@ -5205,6 +5451,12 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "Programvarelisens for StatusNet" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -5231,6 +5483,12 @@ msgstr "" msgid "All %1$s content and data are available under the %2$s license." msgstr "" +#. TRANS: DT element for pagination (previous/next, etc.). +#: lib/action.php:1248 +#, fuzzy +msgid "Pagination" +msgstr "Registrering" + #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. #: lib/action.php:1259 @@ -5268,6 +5526,12 @@ msgstr "" msgid "You cannot make changes to this site." msgstr "Du kan ikke gjøre endringer på dette nettstedet." +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Registrering ikke tillatt." + #. TRANS: Client error message. #: lib/adminpanelaction.php:222 msgid "showForm() not implemented." @@ -5278,12 +5542,31 @@ msgstr "showForm() ikke implementert." msgid "saveSettings() not implemented." msgstr "saveSettings() ikke implementert." +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Kunne ikke lagre dine innstillinger for utseende." + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "Endre nettstedskonfigurasjon" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:339 msgctxt "MENU" msgid "Site" msgstr "Nettsted" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "Tilgangskonfigurasjon" + #. TRANS: Menu item for site administration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/adminpanelaction.php:347 lib/groupnav.php:135 @@ -5311,11 +5594,23 @@ msgstr "Tilgangskonfigurasjon" msgid "Paths configuration" msgstr "Stikonfigurasjon" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "Tilgangskonfigurasjon" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Rediger nettstedsnotis" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Stikonfigurasjon" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -5388,6 +5683,12 @@ msgstr "Nettadresse til hjemmesiden for dette programmet" msgid "Source URL" msgstr "Nettadresse til kilde" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:224 +#, fuzzy +msgid "Organization responsible for this application" +msgstr "Ikon for dette programmet" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:233 msgid "URL for the homepage of the organization" @@ -5477,6 +5778,12 @@ msgstr "Leverandør" msgid "Notices where this attachment appears" msgstr "Notiser hvor dette vedlegget forekommer" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "Ingen slike vedlegg." + #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 msgid "Password changing failed" msgstr "Endring av passord mislyktes" @@ -5507,6 +5814,20 @@ msgstr "Kommando feilet" msgid "Notice with that id does not exist." msgstr "" +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Brukeren har ingen profil." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -5611,6 +5932,13 @@ msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." msgid "Error sending direct message." msgstr "Feil ved sending av direktemelding." +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Nytt nick" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -5623,6 +5951,13 @@ msgstr "Feil ved repetering av notis." msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Svar til %s" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -5658,11 +5993,36 @@ msgstr "" 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:724 lib/command.php:750 +#, fuzzy +msgid "Command not yet implemented." +msgstr "Beklager, denne kommandoen er ikke implementert ennå." + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +#, fuzzy +msgid "Notification off." +msgstr "Ingen bekreftelseskode." + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +#, fuzzy +msgid "Notification on." +msgstr "Ingen bekreftelseskode." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +#, fuzzy +msgid "Can't turn on notification." +msgstr "Kan ikke gjenta din egen notis." + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -5682,6 +6042,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Ikke autorisert." + #. 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. @@ -5691,6 +6057,13 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "Ikke autorisert." msgstr[1] "Ikke autorisert." +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Svar til %s" + #. 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. @@ -5770,6 +6143,11 @@ msgstr "Jeg så etter konfigurasjonfiler på følgende seter: " msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "Log inn på nettstedet" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "" @@ -5786,6 +6164,11 @@ msgstr "Oppdatert med SMS" msgid "Connections" msgstr "Tilkoblinger" +#: lib/connectsettingsaction.php:121 +#, fuzzy +msgid "Authorized connected applications" +msgstr "Tilkoblede program" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Databasefeil" @@ -5794,6 +6177,27 @@ msgstr "Databasefeil" msgid "Upload file" msgstr "Last opp fil" +#: lib/designsettings.php:109 +#, fuzzy +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." + +#: lib/designsettings.php:418 +#, fuzzy +msgid "Design defaults restored." +msgstr "Utseende lagret." + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "Slett denne notisen" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Repeter denne notisen" + #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -5814,10 +6218,25 @@ msgstr "Venn av en venn" msgid "Feeds" msgstr "" +#: lib/galleryaction.php:121 +#, fuzzy +msgid "Filter tags" +msgstr "Feed for taggen %s" + #: lib/galleryaction.php:131 msgid "All" msgstr "Alle" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Velg en operatør" + +#: lib/galleryaction.php:140 +#, fuzzy +msgid "Tag" +msgstr "Tagger" + #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" @@ -5844,6 +6263,12 @@ msgstr "Beskriv programmet ditt" msgid "Describe the group or topic in %d characters" msgstr "Beskriv programmet ditt med %d tegn" +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" + #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" @@ -5929,6 +6354,11 @@ msgstr "Grupper med flest medlemmer" msgid "Groups with most posts" msgstr "Grupper med flest innlegg" +#: lib/grouptagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s group's notices" +msgstr "Rediger %s gruppeegenskaper" + #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" @@ -6330,6 +6760,16 @@ msgstr "Kunne ikke tolke meldingen." msgid "Not a registered user." msgstr "Ikke en registrert bruker." +#: lib/mailhandler.php:46 +#, fuzzy +msgid "Sorry, that is not your incoming email address." +msgstr "Det er ikke din e-postadresse." + +#: lib/mailhandler.php:50 +#, fuzzy +msgid "Sorry, no incoming email allowed." +msgstr "Ingen innkommende e-postadresse." + #: lib/mailhandler.php:228 #, php-format msgid "Unsupported message type: %s" @@ -6489,6 +6929,11 @@ msgstr "på" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "Inget innhold." + #: lib/noticelist.php:603 msgid "Repeated by" msgstr "Repetert av" @@ -6534,6 +6979,11 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#: lib/oauthstore.php:491 +#, fuzzy +msgid "Couldn't insert new subscription." +msgstr "Kunne ikke sette inn bekreftelseskode." + #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" @@ -6562,6 +7012,11 @@ msgstr "Utboks" msgid "Your sent messages" msgstr "Dine sendte meldinger" +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "Bruker har ingen siste notis" + #. TRANS: Displayed as version information for a plugin if no version information was found. #: lib/plugin.php:116 msgid "Unknown" @@ -6612,6 +7067,26 @@ msgstr "Offentlig" msgid "User groups" msgstr "Brukergrupper" +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy +msgid "Recent tags" +msgstr "Nyeste Tagger" + +#: lib/publicgroupnav.php:88 +#, fuzzy +msgid "Featured" +msgstr "Profilerte brukere" + +#: lib/publicgroupnav.php:92 +#, fuzzy +msgid "Popular" +msgstr "Populære notiser" + +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Ingen vedlegg." + #: lib/repeatform.php:107 msgid "Repeat this notice?" msgstr "Repeter denne notisen?" @@ -6624,10 +7099,20 @@ msgstr "Ja" msgid "Repeat this notice" msgstr "Repeter denne notisen" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blokker denne brukeren fra denne gruppen" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Innboks" + #: lib/sandboxform.php:78 msgid "Sandbox this user" msgstr "Opphev blokkering av denne brukeren" @@ -6669,23 +7154,48 @@ msgstr "Finn innhold i notiser" msgid "Find groups on this site" msgstr "Finn grupper på dette nettstedet" +#: lib/section.php:89 +#, fuzzy +msgid "Untitled section" +msgstr "Side uten tittel" + #: lib/section.php:106 msgid "More..." msgstr "Mer..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Nettstedsnotis" + #: lib/silenceform.php:78 msgid "Silence this user" msgstr "Slett denne brukeren" +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Fjernabonner" + #: lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Fjernabonner" +#: lib/subgroupnav.php:99 +#, fuzzy, php-format +msgid "Groups %s is a member of" +msgstr "%1$s grupper %2$s er et medlem av." + #: lib/subgroupnav.php:105 msgid "Invite" msgstr "Inviter" +#: lib/subgroupnav.php:106 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviter venner og kollegaer til å bli med deg på %s" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -6708,6 +7218,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Oppdatering av avatar mislyktes." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6736,6 +7253,11 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "Feil ved oppdatering av fjernprofil." + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "" @@ -6756,6 +7278,26 @@ msgstr "" msgid "Unsilence this user" msgstr "Opphev blokkering av denne brukeren" +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Abonner på denne brukeren" + +#: lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe" +msgstr "Abonner" + +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukerbilde" + +#: lib/userprofile.php:234 lib/userprofile.php:248 +#, fuzzy +msgid "User actions" +msgstr "Gruppehandlinger" + #: lib/userprofile.php:237 msgid "User deletion in progress..." msgstr "" @@ -6868,14 +7410,15 @@ msgstr "%s er ikke en gyldig farge. Bruk 3 eller 6 heksadesimale tegn." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Ingen bruker-ID spesifisert." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index d27d97378a..f0abf6e735 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:33+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1925,7 +1925,7 @@ msgstr "Blokkeren" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Deze gebruiker blokkeren" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2382,105 +2382,107 @@ msgstr "%1$s heeft de groep %2$s verlaten" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licentie" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licentie voor deze StatusNetsite" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Ongeldige licentieselectie." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"U moet de eigenaar van de inhoud opgeven als u de licentie \"Alle rechten " +"voorbehouden\" gebruikt." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Ongeldige licentienaam. De maximale lengte is 255 tekens." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Ongeldige licentie-URL." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Ongeldige URL voor licentieafbeelding." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "De licentie-URL moet leeg zijn of een geldige URL." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "De licentieafbeelding moet leeg zijn of een geldige URL." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Licentieselectie" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privé" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Alle rechten voorbehouden" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Type" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Selecteer licentie" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Licentiedetails" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Eigenaar" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Naam van de eigenaar van de inhoud van de site (als van toepassing)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Licentienaam" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "De naam van de licentie." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Licentie-URL" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL voor meer informatie over de licentie." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL voor licentieafbeelding" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Een URL voor een afbeelding om weer te geven met de licentie." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Licentieinstellingen opslaan" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -4801,7 +4803,7 @@ msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Gebruikersinstellingen opslaan" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5271,12 +5273,12 @@ msgstr "Kon abonnement niet verwijderen." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "Volgen" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s volgt nu $s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5727,7 +5729,7 @@ msgstr "Snapshotinstellingen" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Sitelicentie instellen" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6367,7 +6369,7 @@ msgstr "Vrienden van vrienden (FOAF)" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Feeds" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7564,15 +7566,16 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." #: scripts/restoreuser.php:82 -#, php-format -msgid "Backup file for user %s (%s)\n" -msgstr "" +#, fuzzy, php-format +msgid "Backup file for user %s (%s)" +msgstr "Back-upbestand voor gebruiker %s (%s)" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #: scripts/restoreuser.php:94 -#, php-format -msgid "%d entries in backup.\n" -msgstr "" +#, fuzzy, php-format +msgid "%d entries in backup." +msgstr "%d regels in de back-up." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 40b8d9b5ad..53bcb443db 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,33 +10,96 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:33+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363 +#, fuzzy +msgid "Access" +msgstr "Godta" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +#, fuzzy +msgid "Site access settings" +msgstr "Avatar-innstillingar" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +#, fuzzy +msgid "Registration" +msgstr "Registrér" #. TRANS: Checkbox instructions for admin setting "Private" #: actions/accessadminpanel.php:165 msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +#, fuzzy +msgctxt "LABEL" +msgid "Private" +msgstr "Personvern" + #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 msgid "Make registration invitation only." msgstr "" +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +#, fuzzy +msgid "Invite only" +msgstr "Invitér" + #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) #: actions/accessadminpanel.php:183 msgid "Disable new registrations." msgstr "" +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +#, fuzzy +msgid "Closed" +msgstr "Blokkér" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +#, fuzzy +msgid "Save access settings" +msgstr "Avatar-innstillingar" + +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button label in the "Edit application" form. +#: actions/accessadminpanel.php:203 actions/emailsettings.php:228 +#: actions/imsettings.php:187 actions/smssettings.php:209 +#: lib/applicationeditform.php:354 +#, fuzzy +msgctxt "BUTTON" +msgid "Save" +msgstr "Lagra" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:68 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +#, fuzzy +msgid "No such page." +msgstr "Dette emneord finst ikkje." + #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #: actions/all.php:79 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:115 @@ -78,6 +141,24 @@ msgstr "%s med vener" msgid "%s and friends" msgstr "%s med vener" +#. TRANS: %1$s is user nickname +#: actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Straum for vener av %s" + +#. TRANS: %1$s is user nickname +#: actions/all.php:116 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Straum for vener av %s" + +#. TRANS: %1$s is user nickname +#: actions/all.php:125 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Straum for vener av %s" + #. TRANS: %1$s is user nickname #: actions/all.php:138 #, php-format @@ -107,6 +188,12 @@ msgid "" "post a notice to them." msgstr "" +#. TRANS: H1 text +#: actions/all.php:182 +#, fuzzy +msgid "You and friends" +msgstr "%s med vener" + #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. #: actions/allrss.php:121 actions/apitimelinefriends.php:216 @@ -115,6 +202,32 @@ msgstr "" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "Fann ikkje API-metode." + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -137,6 +250,11 @@ msgid "" "none." msgstr "" +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Kan ikkje oppdatera brukar." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -147,6 +265,11 @@ msgstr "" msgid "User has no profile." msgstr "Brukaren har inga profil." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Kan ikkje lagra profil." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -159,6 +282,28 @@ msgid "" "current configuration." msgstr "" +#: actions/apiaccountupdateprofilebackgroundimage.php:137 +#: actions/apiaccountupdateprofilebackgroundimage.php:147 +#: actions/apiaccountupdateprofilecolors.php:165 +#: actions/apiaccountupdateprofilecolors.php:175 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#, fuzzy +msgid "Unable to save your design settings." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/apiblockcreate.php:106 +#, fuzzy +msgid "You cannot block yourself!" +msgstr "Kan ikkje oppdatera brukar." + #: actions/apiblockcreate.php:127 msgid "Block user failed." msgstr "Blokkering av brukar feila." @@ -167,6 +312,11 @@ msgstr "Blokkering av brukar feila." msgid "Unblock user failed." msgstr "De-blokkering av brukar feila." +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte meldingar til %s" + #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" @@ -186,6 +336,11 @@ msgstr "Alle direkte meldingar sendt til %s" msgid "No message text!" msgstr "Inga meldingstekst!" +#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Du kan lasta opp ein logo for gruppa." + #: actions/apidirectmessagenew.php:139 msgid "Recipient user not found." msgstr "Kunne ikkje finne mottakar." @@ -199,11 +354,21 @@ msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." msgid "No status found with that ID." msgstr "Fann ingen status med den ID-en." +#: actions/apifavoritecreate.php:121 +#, fuzzy +msgid "This status is already a favorite." +msgstr "Denne notisen er alt ein favoritt!" + #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." +#: actions/apifavoritedestroy.php:124 +#, fuzzy +msgid "That status is not a favorite." +msgstr "Denne notisen er ikkje ein favoritt!" + #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." @@ -221,6 +386,16 @@ msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." msgid "Could not unfollow user: User not found." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." +#: actions/apifriendshipsdestroy.php:121 +#, fuzzy +msgid "You cannot unfollow yourself." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/apifriendshipsexists.php:91 +#, fuzzy +msgid "Two valid IDs or screen_names must be supplied." +msgstr "To brukar IDer eller kallenamn er naudsynte." + #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." msgstr "Kan ikkje oppdatera brukar." @@ -278,6 +453,17 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." msgid "Too many aliases! Maximum %d." msgstr "" +#: actions/apigroupcreate.php:268 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Ugyldig merkelapp: %s" + +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + #: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." @@ -289,6 +475,12 @@ msgstr "" msgid "Group not found." msgstr "Finst ikkje." +#. TRANS: Error text shown a user tries to join a group they already are a member of. +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allereie medlem av den gruppa" + #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. #: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 msgid "You have been blocked from that group by the admin." @@ -301,6 +493,11 @@ msgstr "" msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje bli med i gruppa." +#: actions/apigroupleave.php:116 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er ikkje medlem av den gruppa." + #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 @@ -309,6 +506,18 @@ msgstr "Kunne ikkje bli med i gruppa." msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikkje laga gruppa." +#. TRANS: %s is a user name +#: actions/apigrouplist.php:98 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grupper" + +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Grupper %s er medlem av" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -316,10 +525,25 @@ msgstr "Kunne ikkje laga gruppa." msgid "%s groups" msgstr "%s grupper" +#: actions/apigrouplistall.php:96 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppe handlingar" + +#: actions/apimediaupload.php:100 +#, fuzzy +msgid "Upload failed." +msgstr "Last opp fil" + #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Ugyldig storleik." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -338,6 +562,21 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." +#: actions/apioauthauthorize.php:135 +#, fuzzy +msgid "Invalid nickname / password!" +msgstr "Ugyldig brukarnamn eller passord." + +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Feil ved å setja brukar." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -401,6 +640,11 @@ msgstr "Passord" msgid "Deny" msgstr "" +#: actions/apioauthauthorize.php:334 +#, fuzzy +msgid "Allow" +msgstr "Alle" + #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." msgstr "" @@ -418,11 +662,22 @@ msgstr "Du kan ikkje sletta statusen til ein annan brukar." msgid "No such notice." msgstr "Denne notisen finst ikkje." +#. TRANS: Error text shown when trying to repeat an own notice. +#: actions/apistatusesretweet.php:84 lib/command.php:538 +#, fuzzy +msgid "Cannot repeat your own notice." +msgstr "Kan ikkje slå på notifikasjon." + #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. #: actions/apistatusesretweet.php:92 lib/command.php:544 msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." +#: actions/apistatusesshow.php:139 +#, fuzzy +msgid "Status deleted." +msgstr "Lasta opp brukarbilete." + #: actions/apistatusesshow.php:145 msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." @@ -431,6 +686,12 @@ msgstr "Fann ingen status med den ID-en." msgid "Client must provide a 'status' parameter with a value." msgstr "" +#: actions/apistatusesupdate.php:243 actions/newnotice.php:157 +#: lib/mailhandler.php:60 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Du kan lasta opp ein logo for gruppa." + #: actions/apistatusesupdate.php:284 actions/apiusershow.php:96 msgid "Not found." msgstr "Finst ikkje." @@ -440,6 +701,11 @@ msgstr "Finst ikkje." msgid "Max notice size is %d chars, including attachment URL." msgstr "" +#: actions/apisubscriptions.php:233 actions/apisubscriptions.php:263 +#, fuzzy +msgid "Unsupported format." +msgstr "Støttar ikkje bileteformatet." + #: actions/apitimelinefavorites.php:110 #, php-format msgid "%1$s / Favorites from %2$s" @@ -470,11 +736,26 @@ msgstr "%s offentleg tidsline" msgid "%s updates from everyone!" msgstr "%s oppdateringar frå alle saman!" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "Svar til %s" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "Svar til %s" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "Notisar merka med %s" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." @@ -543,6 +824,11 @@ msgstr "Last opp" msgid "Crop" msgstr "Skaler" +#: actions/avatarsettings.php:305 +#, fuzzy +msgid "No file uploaded." +msgstr "Ingen vald profil." + #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." @@ -559,6 +845,11 @@ msgstr "Lasta opp brukarbilete." msgid "Failed updating avatar." msgstr "Feil ved oppdatering av brukarbilete." +#: actions/avatarsettings.php:397 +#, fuzzy +msgid "Avatar deleted." +msgstr "Lasta opp brukarbilete." + #: actions/block.php:69 msgid "You already blocked that user." msgstr "Du tingar allereie oppdatering frå desse brukarane:" @@ -586,6 +877,26 @@ msgctxt "BUTTON" msgid "No" msgstr "Merknad" +#. TRANS: Submit button title for 'No' when blocking a user. +#. TRANS: Submit button title for 'No' when deleting a user. +#: actions/block.php:157 actions/deleteuser.php:156 +#, fuzzy +msgid "Do not block this user" +msgstr "Lås opp brukaren" + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#: actions/block.php:160 actions/deleteapplication.php:161 +#: actions/deletenotice.php:154 actions/deleteuser.php:159 +#: actions/groupblock.php:185 +#, fuzzy +msgctxt "BUTTON" +msgid "Yes" +msgstr "Jau" + #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. #: actions/block.php:164 lib/blockform.php:82 @@ -612,6 +923,26 @@ msgstr "Lagring av informasjon feila." msgid "No such group." msgstr "Denne gruppa finst ikkje." +#: actions/blockedfromgroup.php:97 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Brukarprofil" + +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%s med vener, side %d" + +#: actions/blockedfromgroup.php:115 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/blockedfromgroup.php:288 +#, fuzzy +msgid "Unblock user from group" +msgstr "De-blokkering av brukar feila." + #. TRANS: Title for the form to unblock a user. #: actions/blockedfromgroup.php:320 lib/unblockform.php:70 msgid "Unblock" @@ -640,6 +971,12 @@ msgstr "Fann ikkje stadfestingskode." msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" +#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. +#: actions/confirmaddress.php:91 +#, fuzzy, php-format +msgid "Unrecognized address type %s." +msgstr "Ukjend adressetype %s" + #. TRANS: Client error for an already confirmed email/jabbel/sms address. #: actions/confirmaddress.php:96 msgid "That address has already been confirmed." @@ -675,6 +1012,11 @@ msgstr "Godkjent epostadresse." msgid "The address \"%s\" has been confirmed for your account." msgstr "Addressa \"%s\" har blitt bekrefta for din konto." +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Stadfestingskode" + #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:229 lib/searchgroupnav.php:82 msgid "Notices" @@ -688,6 +1030,12 @@ msgstr "Du må være innlogga for å melde deg ut av ei gruppe." msgid "Application not found." msgstr "Fann ikkje stadfestingskode." +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +#, fuzzy +msgid "You are not the owner of this application." +msgstr "Du er ikkje medlem av den gruppa." + #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 @@ -695,6 +1043,11 @@ msgstr "Fann ikkje stadfestingskode." msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +#, fuzzy +msgid "Delete application" +msgstr "Denne notisen finst ikkje." + #: actions/deleteapplication.php:149 msgid "" "Are you sure you want to delete this application? This will clear all data " @@ -702,6 +1055,18 @@ msgid "" "connections." msgstr "" +#. TRANS: Submit button title for 'No' when deleting an application. +#: actions/deleteapplication.php:158 +#, fuzzy +msgid "Do not delete this application" +msgstr "Kan ikkje sletta notisen." + +#. TRANS: Submit button title for 'Yes' when deleting an application. +#: actions/deleteapplication.php:164 +#, fuzzy +msgid "Delete this application" +msgstr "Slett denne notisen" + #. TRANS: Client error message thrown when trying to access the admin panel while not logged in. #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 @@ -717,6 +1082,15 @@ msgstr "Ikkje logga inn" msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." +#: actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " +"ikkje finne ho att." + #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Slett notis" @@ -725,17 +1099,44 @@ msgstr "Slett notis" msgid "Are you sure you want to delete this notice?" msgstr "Sikker på at du vil sletta notisen?" +#. TRANS: Submit button title for 'No' when deleting a notice. +#: actions/deletenotice.php:151 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikkje sletta notisen." + #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:158 lib/noticelist.php:657 msgid "Delete this notice" msgstr "Slett denne notisen" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Du kan ikkje sletta statusen til ein annan brukar." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Slett" + #: actions/deleteuser.php:136 msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +#. TRANS: Submit button title for 'Yes' when deleting a user. +#: actions/deleteuser.php:163 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Slett denne notisen" + #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. #: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 @@ -746,6 +1147,16 @@ msgstr "" msgid "Design settings for this StatusNet site" msgstr "" +#: actions/designadminpanel.php:331 +#, fuzzy +msgid "Invalid logo URL." +msgstr "Ugyldig storleik." + +#: actions/designadminpanel.php:335 +#, fuzzy, php-format +msgid "Theme not available: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" + #: actions/designadminpanel.php:439 msgid "Change logo" msgstr "Endra" @@ -754,6 +1165,26 @@ msgstr "Endra" msgid "Site logo" msgstr "Statusmelding" +#: actions/designadminpanel.php:456 +#, fuzzy +msgid "Change theme" +msgstr "Endra" + +#: actions/designadminpanel.php:473 +#, fuzzy +msgid "Site theme" +msgstr "Statusmelding" + +#: actions/designadminpanel.php:474 +#, fuzzy +msgid "Theme for the site." +msgstr "Logg ut or sida" + +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "Statusmelding" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -767,6 +1198,13 @@ msgstr "" msgid "Background" msgstr "" +#: actions/designadminpanel.php:509 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Du kan lasta opp ein logo for gruppa." + #. TRANS: Used as radio button label to add a background image. #: actions/designadminpanel.php:540 lib/designsettings.php:139 msgid "On" @@ -785,14 +1223,29 @@ msgstr "" msgid "Tile background image" msgstr "" +#: actions/designadminpanel.php:577 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endra passordet ditt" + #: actions/designadminpanel.php:600 lib/designsettings.php:191 msgid "Content" msgstr "Innhald" +#: actions/designadminpanel.php:613 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" msgstr "Tekst" +#: actions/designadminpanel.php:639 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + #: actions/designadminpanel.php:664 msgid "Advanced" msgstr "" @@ -842,14 +1295,65 @@ msgstr "Legg til i favorittar" msgid "No such document \"%s\"" msgstr "Denne notisen finst ikkje." +#: actions/editapplication.php:54 +#, fuzzy +msgid "Edit Application" +msgstr "Andre val" + +#: actions/editapplication.php:66 +#, fuzzy +msgid "You must be logged in to edit an application." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +#, fuzzy +msgid "No such application." +msgstr "Denne notisen finst ikkje." + +#: actions/editapplication.php:161 +#, fuzzy +msgid "Use this form to edit your application." +msgstr "Bruk dette skjemaet for å redigere gruppa" + +#: actions/editapplication.php:177 actions/newapplication.php:159 +#, fuzzy +msgid "Name is required." +msgstr "Samme som passord over. Påkrevd." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +#, fuzzy +msgid "Name is too long (max 255 chars)." +msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +#, fuzzy +msgid "Name already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +#, fuzzy +msgid "Description is required." +msgstr "Beskriving" + #: actions/editapplication.php:194 msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "Heimesida er ikkje ei gyldig internettadresse." + #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "" +#: actions/editapplication.php:206 actions/newapplication.php:191 +#, fuzzy +msgid "Organization is too long (max 255 chars)." +msgstr "Plassering er for lang (maksimalt 255 teikn)." + #: actions/editapplication.php:209 actions/newapplication.php:194 msgid "Organization homepage is required." msgstr "" @@ -862,6 +1366,11 @@ msgstr "" msgid "Callback URL is not valid." msgstr "" +#: actions/editapplication.php:261 +#, fuzzy +msgid "Could not update application." +msgstr "Kann ikkje oppdatera gruppa." + #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" @@ -885,10 +1394,21 @@ msgstr "Bruk dette skjemaet for å redigere gruppa" msgid "description is too long (max %d chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." +#. TRANS: Server exception thrown when creating group aliases failed. +#: actions/editgroup.php:264 classes/User_group.php:514 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunne ikkje lagre favoritt." + #: actions/editgroup.php:280 msgid "Options saved." msgstr "Lagra innstillingar." @@ -905,6 +1425,13 @@ msgstr "Profilinnstillingar" msgid "Manage how you get email from %%site.name%%." msgstr "Styr korleis du får epost frå %%site.name%%." +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +#: actions/emailsettings.php:106 actions/emailsettings.php:132 +#, fuzzy +msgid "Email address" +msgstr "Epostadresser" + #. TRANS: Form note in e-mail settings form. #: actions/emailsettings.php:112 msgid "Current confirmed email address." @@ -930,6 +1457,17 @@ msgstr "" "Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " "med instruksjonar." +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +#: actions/emailsettings.php:127 actions/imsettings.php:131 +#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Avbryt" + #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. @@ -939,6 +1477,16 @@ msgstr "" msgid "Email address, like \"UserName@example.org\"" msgstr "Epostadresse («brukarnamn@example.org»)" +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#: actions/emailsettings.php:143 actions/imsettings.php:151 +#: actions/smssettings.php:162 +#, fuzzy +msgctxt "BUTTON" +msgid "Add" +msgstr "Legg til" + #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. #: actions/emailsettings.php:151 actions/smssettings.php:171 @@ -957,6 +1505,14 @@ msgstr "Send epost til denne addressa for å legge til nye notisar." msgid "Make a new email address for posting to; cancels the old one." msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +#: actions/emailsettings.php:172 actions/smssettings.php:189 +#, fuzzy +msgctxt "BUTTON" +msgid "New" +msgstr "Ny" + #. TRANS: Form legend for e-mail preferences form. #: actions/emailsettings.php:178 msgid "Email preferences" @@ -978,6 +1534,12 @@ msgstr "" msgid "Send me email when someone sends me a private message." msgstr "Send meg ein epost når nokon sender meg ei privat melding." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:203 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send meg ein epost når nokon sender meg ei privat melding." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:209 msgid "Allow friends to nudge me and send me an email." @@ -1049,6 +1611,12 @@ msgstr "" msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +#: actions/emailsettings.php:428 +#, fuzzy +msgid "That is the wrong email address." +msgstr "Det er feil lynmeldings addresse." + #. TRANS: Message given after successfully canceling e-mail address confirmation. #: actions/emailsettings.php:442 msgid "Email confirmation cancelled." @@ -1131,6 +1699,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "%s's favoritt meldingar" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1141,6 +1714,11 @@ msgstr "Profilerte folk" msgid "Featured users, page %d" msgstr "Profilerte folk, side %d" +#: actions/featured.php:99 +#, fuzzy, php-format +msgid "A selection of some great users on %s" +msgstr "Eit utval av nokre av dei flotte folka på %s" + #: actions/file.php:34 msgid "No notice ID." msgstr "Denne notisen finst ikkje." @@ -1149,10 +1727,25 @@ msgstr "Denne notisen finst ikkje." msgid "No notice." msgstr "Denne notisen finst ikkje." +#: actions/file.php:42 +#, fuzzy +msgid "No attachments." +msgstr "Slikt dokument finst ikkje." + +#: actions/file.php:51 +#, fuzzy +msgid "No uploaded attachments." +msgstr "Slikt dokument finst ikkje." + #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Venta ikkje dette svaret!" +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Brukaren du lyttar til eksisterer ikkje." + #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan nytta det lokale abonnementet!" @@ -1165,6 +1758,36 @@ msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." msgid "You are not authorized." msgstr "Du tingar ikkje oppdateringar til den profilen." +#: actions/finishremotesubscribe.php:113 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." + +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Ukjend versjon av OMB-protokollen." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Feil ved oppdatering av ekstern profil" + +#: actions/getfile.php:79 +#, fuzzy +msgid "No such file." +msgstr "Denne notisen finst ikkje." + +#: actions/getfile.php:83 +#, fuzzy +msgid "Cannot read file." +msgstr "Mista fila vår." + +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ugyldig storleik." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" @@ -1189,10 +1812,31 @@ msgstr "Ingen vald profil." msgid "No profile with that ID." msgstr "Fann ingen profil med den IDen." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen vald profil." + #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Brukar har blokkert deg." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/groupblock.php:134 actions/groupmembers.php:364 +#, fuzzy +msgid "Block user from group" +msgstr "Blokker brukaren" + #: actions/groupblock.php:160 #, php-format msgid "" @@ -1201,6 +1845,18 @@ msgid "" "the group in the future." msgstr "" +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1209,12 +1865,28 @@ msgstr "" msgid "No ID." msgstr "Nei Jabber-ID" +#: actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/groupdesignsettings.php:144 +#, fuzzy +msgid "Group design" +msgstr "Grupper" + #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kan ikkje oppdatera brukar." + #: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." msgstr "Lagra brukarval." @@ -1223,6 +1895,17 @@ msgstr "Lagra brukarval." msgid "Group logo" msgstr "Logo åt gruppa" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." + +#: actions/grouplogo.php:365 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Velg eit utvalg av bildet som vil blir din avatar." + #: actions/grouplogo.php:399 msgid "Logo updated." msgstr "Logo oppdatert." @@ -1265,6 +1948,11 @@ msgctxt "TOOLTIP" msgid "Block this user" msgstr "" +#: actions/groupmembers.php:498 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du må være administrator for å redigere gruppa" + #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" @@ -1286,6 +1974,12 @@ msgstr "" msgid "%s timeline" msgstr "%s tidsline" +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1310,6 +2004,15 @@ msgstr "" msgid "Create a new group" msgstr "Opprett ei ny gruppe" +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." + #: actions/groupsearch.php:58 msgid "Group search" msgstr "Gruppesøk" @@ -1337,6 +2040,11 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Brukar har blokkert deg." + #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." @@ -1358,6 +2066,12 @@ msgstr "" "Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" "doc.im%%). Set opp adressa og innstillingar under." +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 +#, fuzzy +msgid "IM is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 @@ -1464,6 +2178,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Det er feil lynmeldings addresse." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Kan ikkje sletta e-postgodkjenning." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1480,6 +2200,11 @@ msgstr "Det er ikkje din Jabber ID." msgid "The IM address was removed." msgstr "Fjerna innkomande epostadresse." +#: actions/inbox.php:59 +#, fuzzy, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Innboks for %s" + #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" @@ -1563,6 +2288,13 @@ msgstr "Personleg melding" msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Send" + #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:228 #, php-format @@ -1626,6 +2358,16 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "Du må være logga inn for å bli med i ei gruppe." +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Ingen kallenamn." + +#: actions/joingroup.php:141 +#, fuzzy, php-format +msgid "%1$s joined group %2$s" +msgstr "%s blei medlem av gruppe %s" + #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." @@ -1685,8 +2427,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Personvern" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -1752,6 +2495,11 @@ msgstr "Allereie logga inn." msgid "Incorrect username or password." msgstr "Feil brukarnamn eller passord." +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Ikkje autorisert." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -1780,14 +2528,68 @@ msgstr "" "Skriv inn brukarnam og passord før du endrar innstillingar (av " "tryggleiksomsyn)." +#: actions/login.php:292 +#, fuzzy +msgid "Login with your username and password." +msgstr "Log inn med brukarnamn og passord." + +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" +"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" +"%)." + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "Brukar har blokkert deg." + +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "Kunne ikkje fjerne %s fra %s gruppa " + +#: actions/makeadmin.php:146 +#, fuzzy, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Du må være administrator for å redigere gruppa" + +#: actions/microsummary.php:69 +#, fuzzy +msgid "No current status." +msgstr "Ingen status" + +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Denne notisen finst ikkje." + +#: actions/newapplication.php:64 +#, fuzzy +msgid "You must be logged in to register an application." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/newapplication.php:143 +#, fuzzy +msgid "Use this form to register a new application." +msgstr "Bruk dette skjemaet for å lage ein ny gruppe." + #: actions/newapplication.php:176 msgid "Source URL is required." msgstr "" +#: actions/newapplication.php:258 actions/newapplication.php:267 +#, fuzzy +msgid "Could not create application." +msgstr "Kunne ikkje lagre favoritt." + #: actions/newgroup.php:53 msgid "New group" msgstr "Ny gruppe" @@ -1824,6 +2626,18 @@ msgstr "" "Ikkje send ei melding til deg sjølv; berre sei det til deg sjølv stille og " "fredleg." +#: actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Melding" + +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#: actions/newmessage.php:185 lib/command.php:514 +#, fuzzy, php-format +msgid "Direct message to %s sent." +msgstr "Direkte melding til %s sendt" + #: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 msgid "Ajax Error" msgstr "Ajax feil" @@ -1868,11 +2682,24 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +#: actions/noticesearchrss.php:96 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Oppdateringar frå %1$s på %2$s!" + #: actions/noticesearchrss.php:98 #, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" +#: actions/nudge.php:85 +#, fuzzy +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email yet." +msgstr "" +"Denne brukaren tillét ikkje å bli dytta, eller har ikkje stadfasta eller sat " +"e-postadressa si enno." + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Dytta!" @@ -1885,6 +2712,11 @@ msgstr "Dytta!" msgid "You must be logged in to list your applications." msgstr "Du må være logga inn for å bli med i ei gruppe." +#: actions/oauthappssettings.php:74 +#, fuzzy +msgid "OAuth applications" +msgstr "Andre val" + #: actions/oauthappssettings.php:85 msgid "Applications you have registered" msgstr "" @@ -1902,6 +2734,11 @@ msgstr "" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Du er ikkje medlem av den gruppa." + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -1924,6 +2761,12 @@ msgstr "Brukaren har inga profil." msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "Kopla til" + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -1964,6 +2807,11 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "Den automatisk forkortingstenesta du vil bruke" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profilinnstillingar" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" @@ -1972,10 +2820,35 @@ msgstr "" msgid "URL shortening service is too long (max 50 chars)." msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Ingen vald profil." + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Ingen vald profil." + #: actions/otp.php:90 msgid "No login token requested." msgstr "Ingen autoriserings-spørjing!" +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Ugyldig notisinnhald" + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "Logg inn " + +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Utboks for %s" + #: actions/outbox.php:61 #, php-format msgid "Outbox for %s" @@ -2055,10 +2928,35 @@ msgstr "" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/pathsadminpanel.php:163 +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Denne sida er ikkje tilgjengleg i eit" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +#, fuzzy +msgid "Site" +msgstr "Invitér" + #: actions/pathsadminpanel.php:238 msgid "Server" msgstr "Tenar" @@ -2071,6 +2969,11 @@ msgstr "" msgid "Path" msgstr "" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Statusmelding" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2103,6 +3006,26 @@ msgstr "" msgid "Theme directory" msgstr "" +#: actions/pathsadminpanel.php:279 +#, fuzzy +msgid "Avatars" +msgstr "Brukarbilete" + +#: actions/pathsadminpanel.php:284 +#, fuzzy +msgid "Avatar server" +msgstr "Avatar-innstillingar" + +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "Lasta opp brukarbilete." + +#: actions/pathsadminpanel.php:292 +#, fuzzy +msgid "Avatar directory" +msgstr "Lasta opp brukarbilete." + #: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" @@ -2119,10 +3042,20 @@ msgstr "" msgid "Background directory" msgstr "" +#: actions/pathsadminpanel.php:320 +#, fuzzy +msgid "SSL" +msgstr "SMS" + #: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Tenar" +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "Notisar" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2143,6 +3076,11 @@ msgstr "Tenar" msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Statusmelding" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2161,6 +3099,11 @@ msgstr "Søk etter folk" msgid "Not a valid people tag: %s." msgstr "Ikkje ei gyldig epostadresse." +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "Brukarar sjølv-merka med %s, side %d" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Ugyldig filnamn." @@ -2206,6 +3149,16 @@ msgstr "Heimeside" msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Skriv om deg og interessene dine med 140 teikn" + +#: actions/profilesettings.php:125 actions/register.php:471 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Skildra deg sjølv og din" + #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Om meg" @@ -2260,6 +3213,11 @@ msgid "" msgstr "" "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" +#: actions/profilesettings.php:228 actions/register.php:230 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Plassering er for lang (maksimalt %d teikn)." + #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." @@ -2277,6 +3235,11 @@ msgstr "Ugyldig merkelapp: %s" msgid "Couldn't update user for autosubscribe." msgstr "Kan ikkje oppdatera brukar for automatisk tinging." +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Kan ikkje lagra merkelapp." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Kan ikkje lagra profil." @@ -2308,6 +3271,21 @@ msgstr "Offentleg tidsline, side %d" msgid "Public timeline" msgstr "Offentleg tidsline" +#: actions/public.php:160 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Offentleg straum" + +#: actions/public.php:164 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Offentleg straum" + +#: actions/public.php:168 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Offentleg straum" + #: actions/public.php:188 #, php-format msgid "" @@ -2334,6 +3312,16 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +#: actions/public.php:247 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" + #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Offentleg emne sky" @@ -2391,10 +3379,29 @@ msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." msgid "Could not update user with confirmed email address." msgstr "Kunne ikkje oppdatera brukar med stadfesta e-postadresse." +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"Instruksjonar for å få att passordet ditt er send til epostadressa som er " +"lagra i kontoen din." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Passord opphenting etterspurt" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "Skriv inn kallenamn eller epostadresse." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." @@ -2475,6 +3482,11 @@ msgstr "Lagra det nye passordet. Du er logga inn." msgid "Sorry, only invited people can register." msgstr "Beklage, men kun inviterte kan registrere seg." +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Feil med stadfestingskode." + #: actions/register.php:119 msgid "Registration successful" msgstr "Registreringa gikk bra" @@ -2555,6 +3567,48 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " +"telefonnummer." + +#: actions/register.php:583 +#, fuzzy, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Frå her kann det henda du " +"vil...\n" +"\n" +"* Gå til [profilen din](%s) og skriva den fyrste meldinga.\n" +"* Leggja til ei [Jabber/GTalk adresse](%%%%action.imsettings%%%%) so du kann " +"laga nye meldingar ved hjelp av direktemeldingar.\n" +"* [Søkje etter folk](%%%%action.profilesettings%%%%) det kan hende du " +"kjenner, eller som du delar interesser med.\n" +"* Uppdatere dine [profilval] so du kann fortelja andre meir um deg sjølv.* " +"Lesa [hjelpetekstane](%%%%doc.help%%%%) for å finna ut meir um funksjonar du " +"kann ha gådd glipp av.\n" +"\n" +"Takk for at du blei med, og vi håpar du vil lika tenesta!" + #: actions/register.php:607 msgid "" "(You should receive a message by email momentarily, with instructions on how " @@ -2579,6 +3633,11 @@ msgstr "" msgid "Remote subscribe" msgstr "Eksternt abbonement" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Lagre tinging for brukar: %s" + #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Brukaren sitt kallenamn" @@ -2604,10 +3663,50 @@ msgstr "Ting" msgid "Invalid profile URL (bad format)" msgstr "Ugyldig profil-nettadresse (feil format)" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Fekk ikkje spørjingsbillett (request token)." + +#: actions/repeat.php:57 +#, fuzzy +msgid "Only logged-in users can repeat notices." +msgstr "Kun brukaren kan lese sine eigne meldingar." + +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Ingen vald profil." + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." + +#: actions/repeat.php:90 +#, fuzzy +msgid "You already repeated that notice." +msgstr "Du har allereie blokkert denne brukaren." + #: actions/repeat.php:114 lib/noticelist.php:676 msgid "Repeated" msgstr "Framheva" +#: actions/repeat.php:119 +#, fuzzy +msgid "Repeated!" +msgstr "Lag" + #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format @@ -2619,6 +3718,16 @@ msgstr "Svar til %s" msgid "Replies to %1$s, page %2$d" msgstr "Svar til %s" +#: actions/replies.php:145 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/replies.php:152 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" + #: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" @@ -2645,14 +3754,34 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Melding til %1$s på %2$s" + #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kan ikkje finne brukar" + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "Statistikk" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Brukar har blokkert deg." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2679,11 +3808,39 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#, fuzzy +msgid "Save site settings" +msgstr "Avatar-innstillingar" + +#: actions/showapplication.php:82 +#, fuzzy +msgid "You must be logged in to view an application." +msgstr "Du må være innlogga for å melde deg ut av ei gruppe." + +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Notisen har ingen profil" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +#, fuzzy +msgid "Name" +msgstr "Kallenamn" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#, fuzzy +msgid "Organization" +msgstr "Paginering" + #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 #: lib/applicationeditform.php:207 lib/groupeditform.php:172 @@ -2738,6 +3895,16 @@ msgid "" "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "Sikker på at du vil sletta notisen?" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s's favoritt meldingar" + #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunne ikkje hente fram favorittane." @@ -2862,6 +4029,22 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/showgroup.php:489 +#, fuzzy +msgid "Admins" +msgstr "Administrator" + #: actions/showmessage.php:81 msgid "No such message." msgstr "Kan ikkje finne den meldinga." @@ -2880,6 +4063,16 @@ msgstr "Melding til %1$s på %2$s" msgid "Message from %1$s on %2$s" msgstr "Melding fra %1$s på %2$s" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Melding lagra" + +#: actions/showstream.php:73 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notisar merka med %s" + #: actions/showstream.php:79 #, php-format msgid "%1$s, page %2$d" @@ -2900,6 +4093,16 @@ msgstr "Straum for vener av %s" msgid "Notice feed for %s (RSS 2.0)" msgstr "Straum for vener av %s" +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Utboks for %s" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -2927,6 +4130,31 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "Svar til %s" + +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Brukar har blokkert deg." + #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -2956,6 +4184,11 @@ msgstr "" msgid "General" msgstr "" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Statusmelding" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -2976,6 +4209,16 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Ny epostadresse for å oppdatera %s" + +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Lokale syningar" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -2984,6 +4227,11 @@ msgstr "" msgid "Default timezone for the site; usually UTC." msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Foretrukke språk" + #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" msgstr "" @@ -3008,14 +4256,39 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Statusmelding" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ny melding" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Statusmelding" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Statusmelding" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3028,6 +4301,12 @@ msgstr "Avatar-innstillingar" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +#, fuzzy +msgid "SMS is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + #. TRANS: Form legend for SMS settings form. #: actions/smssettings.php:111 msgid "SMS address" @@ -3053,6 +4332,13 @@ msgstr "Stadfestingskode" msgid "Enter the code you received on your phone." msgstr "Skriv inn koden du fekk på telefonen." +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Godta" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" @@ -3077,6 +4363,12 @@ msgstr "" "Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra " "min tilbydar." +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Lagra brukarval." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." @@ -3122,6 +4414,12 @@ msgstr "SMS bekreftelse" msgid "That is not your phone number." msgstr "Det er ikkje ditt telefonnummer" +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "SMS telefon nummer" + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -3202,6 +4500,11 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Avatar-innstillingar" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du tingar ikkje oppdateringar til den profilen." @@ -3215,6 +4518,16 @@ msgstr "Kunne ikkje lagra abonnement." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Denne notisen finst ikkje." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Du tingar ikkje oppdateringar til den profilen." + #: actions/subscribe.php:145 msgid "Subscribed" msgstr "Abonnent" @@ -3313,6 +4626,16 @@ msgstr "Straum for vener av %s" msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Straum for vener av %s" +#: actions/tag.php:99 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Manglar argumentet ID." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" @@ -3368,6 +4691,11 @@ msgstr "Du tingar ikkje oppdateringar til den profilen." msgid "User is not sandboxed." msgstr "Brukaren har ikkje siste notis" +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Brukaren har inga profil." + #: actions/unsubscribe.php:77 msgid "No profile ID in request." msgstr "Fann ingen profil med den IDen." @@ -3382,6 +4710,13 @@ msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" +#. TRANS: User admin panel title +#: actions/useradminpanel.php:60 +#, fuzzy +msgctxt "TITLE" +msgid "User" +msgstr "Brukar" + #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" msgstr "" @@ -3413,6 +4748,11 @@ msgstr "" msgid "Maximum length of a profile bio in characters." msgstr "" +#: actions/useradminpanel.php:232 +#, fuzzy +msgid "New users" +msgstr "Invitér nye brukarar" + #: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" @@ -3421,6 +4761,27 @@ msgstr "" msgid "Welcome text for new users (Max 255 chars)." msgstr "" +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Alle tingingar" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "" +"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "Invitasjon(er) sendt" + +#: actions/useradminpanel.php:257 +#, fuzzy +msgid "Invitations enabled" +msgstr "Invitasjon(er) sendt" + #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." msgstr "" @@ -3433,6 +4794,23 @@ msgstr "" msgid "Authorize subscription" msgstr "Autoriser tinging" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" + +#. TRANS: Menu item for site administration +#: actions/userauthorization.php:196 actions/version.php:167 +#: lib/adminpanelaction.php:403 +#, fuzzy +msgid "License" +msgstr "lisens." + #: actions/userauthorization.php:217 msgid "Accept" msgstr "Godta" @@ -3446,6 +4824,11 @@ msgstr "Lagre tinging for brukar: %s" msgid "Reject" msgstr "Avslå" +#: actions/userauthorization.php:220 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s tingarar" + #: actions/userauthorization.php:232 msgid "No authorization request!" msgstr "Ingen autoriserings-spørjing!" @@ -3454,10 +4837,31 @@ msgstr "Ingen autoriserings-spørjing!" msgid "Subscription authorized" msgstr "Tinging autorisert" +#: actions/userauthorization.php:256 +#, 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 " +"subscription. Your subscription token is:" +msgstr "" +"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " +"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " +"gjennomførast. Ditt tingings teikn er: " + #: actions/userauthorization.php:266 msgid "Subscription rejected" msgstr "Tinging avvist" +#: actions/userauthorization.php:268 +#, 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 " +"subscription." +msgstr "" +"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " +"med sida sine instruksjonar for korleis ein skal avvise tinginga." + #: actions/userauthorization.php:303 #, php-format msgid "Listener URI ‘%s’ not found here." @@ -3483,6 +4887,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikkje lesa brukarbilete-URL «%s»" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Feil biletetype for '%s'" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profilinnstillingar" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3499,6 +4918,16 @@ msgstr "" msgid "%1$s groups, page %2$d" msgstr "Grupper, side %d" +#: actions/usergroups.php:132 +#, fuzzy +msgid "Search for more groups" +msgstr "Søk etter folk eller innhald" + +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er ikkje medlem av den gruppa." + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -3515,6 +4944,11 @@ msgstr "" msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" +#: actions/version.php:75 +#, fuzzy, php-format +msgid "StatusNet %s" +msgstr "Statistikk" + #: actions/version.php:155 #, php-format msgid "" @@ -3553,6 +4987,12 @@ msgstr "" msgid "Plugins" msgstr "" +#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#: actions/version.php:198 lib/action.php:805 +#, fuzzy +msgid "Version" +msgstr "Personleg" + #: actions/version.php:199 msgid "Author(s)" msgstr "" @@ -3605,6 +5045,24 @@ msgstr "" msgid "Invalid filename." msgstr "Ugyldig filnamn." +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Gruppe profil" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Kann ikkje oppdatera gruppa." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Gruppe profil" + #: classes/Group_member.php:108 lib/joinform.php:114 msgid "Join" msgstr "Bli med" @@ -3616,11 +5074,30 @@ msgstr "Bli med" msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Kann ikkje oppdatera gruppa." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Kunne ikkje lagre favoritt." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." msgstr "" +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +#: classes/Message.php:46 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Ein feil oppstod ved sending av direkte melding." + #. TRANS: Message given when a message could not be stored on the server. #: classes/Message.php:63 msgid "Could not insert message." @@ -3644,6 +5121,12 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Feil med innhenting av brukarbilete." +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Eit problem oppstod ved lagring av notis." + #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 msgid "Problem saving notice. Unknown user." @@ -3656,6 +5139,15 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +#: classes/Notice.php:283 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." + #. TRANS: Client exception thrown when a user tries to post while being banned. #: classes/Notice.php:291 msgid "You are banned from posting notices on this site." @@ -3672,6 +5164,12 @@ msgstr "Eit problem oppstod ved lagring av notis." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Eit problem oppstod ved lagring av notis." + #. 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:1824 @@ -3693,16 +5191,40 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Brukaren har inga profil." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." msgstr "Kunne ikkje lagra emneord." +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#: classes/Subscription.php:75 lib/oauthstore.php:466 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Ikkje tinga." + #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." msgstr "Brukar har blokkert deg." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Ikkje tinga." + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -3727,6 +5249,13 @@ msgstr "" msgid "%s is now following %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:384 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Melding til %1$s på %2$s" + #. TRANS: Server exception thrown when creating a group failed. #: classes/User_group.php:496 msgid "Could not create group." @@ -3742,6 +5271,12 @@ msgstr "Kunne ikkje laga gruppa." msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." +#. TRANS: Server exception thrown when saving local group information failed. +#: classes/User_group.php:544 +#, fuzzy +msgid "Could not save local group info." +msgstr "Kunne ikkje lagra abonnement." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:109 msgid "Change your profile settings" @@ -3762,6 +5297,12 @@ msgstr "Endra passordet ditt" msgid "Change email handling" msgstr "Endra eposthandtering" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Brukarprofil" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -3772,6 +5313,12 @@ msgstr "Andre val" msgid "Other" msgstr "Anna" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, fuzzy, php-format +msgid "%1$s - %2$s" +msgstr "%1$s (%2$s)" + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -3782,17 +5329,67 @@ msgstr "Ingen tittel" msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:455 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "Personleg profil og oversyn over vener" + +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Personleg" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra passordet ditt" +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Klarte ikkje å omdirigera til tenaren: %s" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" msgstr "Kopla til" +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:471 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "Navigasjon for hovudsida" + +#. TRANS: Main menu option when logged in and site admin for access to site configuration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/action.php:474 lib/groupnav.php:117 +#, fuzzy +msgctxt "MENU" +msgid "Admin" +msgstr "Administrator" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:478 +#, fuzzy, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "Inviter vennar og kollega til å bli med deg på %s" + +#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users +#: lib/action.php:481 +#, fuzzy +msgctxt "MENU" +msgid "Invite" +msgstr "Invitér" + #. TRANS: Tooltip for main menu option "Logout" #: lib/action.php:487 msgctxt "TOOLTIP" @@ -3811,18 +5408,50 @@ msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ei ny gruppe" +#. TRANS: Main menu option when not logged in to register a new account +#: lib/action.php:498 +#, fuzzy +msgctxt "MENU" +msgid "Register" +msgstr "Registrér" + #. TRANS: Tooltip for main menu option "Login" #: lib/action.php:501 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn " +#: lib/action.php:504 +#, fuzzy +msgctxt "MENU" +msgid "Login" +msgstr "Logg inn" + #. TRANS: Tooltip for main menu option "Help" #: lib/action.php:507 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" +#: lib/action.php:510 +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Hjelp" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:513 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "Søk etter folk eller innhald" + +#: lib/action.php:516 +#, fuzzy +msgctxt "MENU" +msgid "Search" +msgstr "Søk" + #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration #: lib/action.php:538 lib/adminpanelaction.php:387 @@ -3879,11 +5508,29 @@ msgstr "Kjeldekode" msgid "Contact" msgstr "Kontakt" +#: lib/action.php:810 +#, fuzzy +msgid "Badge" +msgstr "Dult" + #. TRANS: DT element for StatusNet software license. #: lib/action.php:839 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." +"broughtbyurl%%). " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -3905,6 +5552,12 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." +#. TRANS: DT element for StatusNet site content license. +#: lib/action.php:872 +#, fuzzy +msgid "Site content license" +msgstr "StatusNets programvarelisens" + #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. #: lib/action.php:879 @@ -3968,11 +5621,105 @@ msgstr "" msgid "Can't handle embedded Base64 content yet." msgstr "" +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "Registrering ikkje tillatt." + +#. TRANS: Client error message. +#: lib/adminpanelaction.php:222 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Kommando ikkje implementert." + +#. TRANS: Client error message +#: lib/adminpanelaction.php:250 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Kommando ikkje implementert." + +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:337 +#, fuzzy +msgid "Basic site configuration" +msgstr "Stadfesting av epostadresse" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:339 +#, fuzzy +msgctxt "MENU" +msgid "Site" +msgstr "Invitér" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:345 +#, fuzzy +msgid "Design configuration" +msgstr "SMS bekreftelse" + +#. TRANS: Menu item for site administration +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#: lib/adminpanelaction.php:347 lib/groupnav.php:135 +#, fuzzy +msgctxt "MENU" +msgid "Design" +msgstr "Personleg" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:353 +#, fuzzy +msgid "User configuration" +msgstr "SMS bekreftelse" + #. TRANS: Menu item for site administration #: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:361 +#, fuzzy +msgid "Access configuration" +msgstr "SMS bekreftelse" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:369 +#, fuzzy +msgid "Paths configuration" +msgstr "SMS bekreftelse" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "SMS bekreftelse" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:385 +#, fuzzy +msgid "Edit site notice" +msgstr "Statusmelding" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS bekreftelse" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4024,16 +5771,40 @@ msgstr "" msgid "Icon for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:204 msgid "Describe your application" msgstr "Beskriving" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "URL til heimesida eller bloggen for gruppa eller emnet" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Kjeldekode" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "URL til heimesida eller bloggen for gruppa eller emnet" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4121,6 +5892,16 @@ msgstr "" msgid "Tags for this attachment" msgstr "" +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Endra passord" + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Endra passord" + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4138,6 +5919,26 @@ msgstr "Kommandoen utførd" msgid "Command failed" msgstr "Kommandoen feila" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "Fann ingen profil med den IDen." + +#. 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:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Brukaren har ikkje siste notis" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4155,6 +5956,13 @@ msgstr "Orsak, men kommandoen er ikkje laga enno." msgid "It does not make a lot of sense to nudge yourself!" msgstr "" +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#: lib/command.php:240 +#, fuzzy, php-format +msgid "Nudge sent to %s." +msgstr "Dytta!" + #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. @@ -4220,16 +6028,62 @@ msgid "" "same server." msgstr "" +#. TRANS: Message given if content is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:491 lib/xmppmanager.php:403 +#, fuzzy, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + #. TRANS: Error text shown sending a direct message fails with an unknown reason. #: lib/command.php:517 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Melding lagra" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "Feil ved å setja brukar." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "Svar på denne notisen" + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Eit problem oppstod ved lagring av notis." + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +#: lib/command.php:655 +#, fuzzy +msgid "Specify the name of the user to subscribe to." +msgstr "Spesifer namnet til brukaren du vil tinge" + +#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. +#: lib/command.php:664 +#, fuzzy +msgid "Can't subscribe to OMB profiles by command." +msgstr "Du tingar ikkje oppdateringar til den profilen." + #. 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:672 @@ -4237,6 +6091,13 @@ msgstr "Feil ved å setja brukar." 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:694 lib/command.php:804 +#, fuzzy +msgid "Specify the name of the user to unsubscribe from." +msgstr "Spesifer namnet til brukar du vil fjerne tinging på" + #. 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:705 @@ -4289,6 +6150,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Du tingar ikkje oppdateringar til den profilen." + #. 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. @@ -4298,6 +6165,13 @@ msgid_plural "You are subscribed to these people:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Kan ikkje tinga andre til deg." + #. 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. @@ -4307,6 +6181,13 @@ msgid_plural "These people are subscribed to you:" msgstr[0] "Kan ikkje tinga andre til deg." msgstr[1] "Kan ikkje tinga andre til deg." +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +msgid "You are not a member of any groups." +msgstr "Du er ikkje medlem av den gruppa." + #. 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. @@ -4359,6 +6240,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen stadfestingskode." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4367,6 +6253,11 @@ msgstr "" msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "Logg inn or sida" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "Ljonmelding" @@ -4379,6 +6270,11 @@ msgstr "Oppdateringar over direktemeldingar (IM)" msgid "Updates by SMS" msgstr "Oppdateringar over SMS" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Kopla til" + #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" msgstr "" @@ -4436,6 +6332,11 @@ msgstr "Filtrer emneord" msgid "All" msgstr "Alle" +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Velg ein tilbydar" + #: lib/galleryaction.php:140 msgid "Tag" msgstr "Merkelapp" @@ -4457,6 +6358,16 @@ msgstr "" msgid "URL of the homepage or blog of the group or topic" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4561,6 +6472,11 @@ msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." msgid "Unsupported image file format." msgstr "Støttar ikkje bileteformatet." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Hallvegs opplasta." @@ -4648,6 +6564,28 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s fylgjer no oppdateringane dine på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Beste helsing,\n" +"%4$s.\n" + #. TRANS: Profile info line in new-subscriber notification e-mail #: lib/mail.php:274 #, php-format @@ -4692,6 +6630,12 @@ msgstr "%s status" msgid "SMS confirmation" msgstr "SMS bekreftelse" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "Ventar på godkjenning for dette telefonnummeret." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -4822,6 +6766,11 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" +#: lib/mailbox.php:228 lib/noticelist.php:506 +#, fuzzy +msgid "from" +msgstr " frå " + #: lib/mailhandler.php:37 msgid "Could not parse message." msgstr "Kunne ikkje prosessera melding." @@ -4838,6 +6787,11 @@ msgstr "Beklager, det er ikkje di inngåande epost addresse." msgid "Sorry, no incoming email allowed." msgstr "Beklager, inngåande epost er ikkje tillatt." +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Støttar ikkje bileteformatet." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -4921,6 +6875,12 @@ msgstr "Til" msgid "Available characters" msgstr "Tilgjenglege teikn" +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Send" + #: lib/noticeform.php:160 msgid "Send a notice" msgstr "Send ei melding" @@ -4938,12 +6898,28 @@ msgstr "" msgid "Attach a file" msgstr "" +#: lib/noticeform.php:213 +#, fuzzy +msgid "Share my location" +msgstr "Kan ikkje lagra merkelapp." + +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Kan ikkje lagra merkelapp." + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Used in coordinates as abbreviation of north +#: lib/noticelist.php:436 +#, fuzzy +msgid "N" +msgstr "Nei" + #. TRANS: Used in coordinates as abbreviation of south #: lib/noticelist.php:438 msgid "S" @@ -4972,6 +6948,16 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "Ingen innhald." + +#: lib/noticelist.php:603 +#, fuzzy +msgid "Repeated by" +msgstr "Lag" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "Svar på denne notisen" @@ -4980,6 +6966,11 @@ msgstr "Svar på denne notisen" msgid "Reply" msgstr "Svar" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Melding lagra" + #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Dult denne brukaren" @@ -5046,6 +7037,12 @@ msgstr "Dine sende meldingar" msgid "Tags in %s's notices" msgstr "Merkelappar i %s sine notisar" +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "Uventa handling." + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" @@ -5062,6 +7059,11 @@ msgstr "Tingarar" msgid "All subscribers" msgstr "Tingarar" +#: lib/profileaction.php:191 +#, fuzzy +msgid "User ID" +msgstr "Brukar" + #: lib/profileaction.php:196 msgid "Member since" msgstr "Medlem sidan" @@ -5099,14 +7101,50 @@ msgstr "Framheva" msgid "Popular" msgstr "Populære" +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Manglar argumentet ID." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Svar på denne notisen" + #: lib/repeatform.php:132 msgid "Yes" msgstr "Jau" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Svar på denne notisen" + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Ei liste over brukarane i denne gruppa." + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Innboks" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Lås opp brukaren" + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Søk" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -5118,6 +7156,12 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Søk" + #: lib/searchgroupnav.php:80 msgid "People" msgstr "Folk" @@ -5142,6 +7186,16 @@ msgstr "Seksjon utan tittel" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Statusmelding" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Blokkér denne brukaren" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -5188,6 +7242,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Feil ved oppdatering av brukarbilete." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5228,10 +7289,20 @@ msgstr "Med flest meldingar" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Lås opp brukaren" + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Lås opp brukaren" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" @@ -5240,6 +7311,11 @@ msgstr "Fjern tinging fra denne brukaren" msgid "Unsubscribe" msgstr "Fjern tinging" +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukarbilete" + #: lib/userprofile.php:234 lib/userprofile.php:248 msgid "User actions" msgstr "Brukarverkty" @@ -5248,6 +7324,11 @@ msgstr "Brukarverkty" msgid "User deletion in progress..." msgstr "" +#: lib/userprofile.php:263 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profilinnstillingar" + #: lib/userprofile.php:264 msgid "Edit" msgstr "" @@ -5264,6 +7345,17 @@ msgstr "Melding" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "Brukarprofil" + +#: lib/userprofile.php:366 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administrator" + #: lib/userprofile.php:367 msgctxt "role" msgid "Moderator" @@ -5331,6 +7423,11 @@ msgstr[1] "" msgid "about a year ago" msgstr "omtrent eitt år sidan" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Heimesida er ikkje ei gyldig internettadresse." + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." @@ -5338,14 +7435,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Ingen vald profil." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 3a49234bab..8427a7aa9a 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:35+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:00+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2387,7 +2387,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Prywatna" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7487,14 +7487,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Nie podano identyfikatora użytkownika." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index e82660127c..46121bcc33 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:36+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -167,7 +167,7 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Tente subscrever mais pessoas, [juntar-se a um grupo] (%%action.groups%%) ou " +"Tente subscrever mais pessoas, [juntar-se a um grupo](%%action.groups%%) ou " "publicar qualquer coisa." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" @@ -2394,7 +2394,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privado" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7480,14 +7480,15 @@ msgstr "%s não é uma cor válida! Use 3 ou 6 caracteres hexadecimais." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Não foi especificado um ID de utilizador." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 616c910c36..1c30940d06 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:37+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:02+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2413,7 +2413,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Particular" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7516,14 +7516,15 @@ msgstr "%s não é uma cor válida! Utilize 3 ou 6 caracteres hexadecimais." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Não foi especificado nenhum ID de usuário." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 1a05b2b65f..0c11808e79 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:37+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2409,7 +2409,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Личное" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -7499,14 +7499,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Не указан идентификатор пользователя." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 4775cc8f57..6cbb79490b 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -7018,14 +7018,14 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" +msgid "No user specified; using backup user." msgstr "" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index c57c3f5e8b..878c658ac6 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:38+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2387,7 +2387,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privat" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -4546,9 +4546,9 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" "Du lyssnar inte på någons notiser just nu. Prova att prenumerera på personer " -"du känner. Prova [personsökning] (%%action.peoplesearch%%), leta bland " +"du känner. Prova [personsökning](%%action.peoplesearch%%), leta bland " "medlemmar i grupper som intresserad dig och bland våra [profilerade " -"användare] (%%action.featured%%). Om du är en [Twitter-användare] (%%action." +"användare](%%action.featured%%). Om du är en [Twitter-användare](%%action." "twittersettings%%) kan du prenumerera automatiskt på personer som du redan " "följer där." @@ -7456,14 +7456,15 @@ msgstr "%s är inte en giltig färg! Använd 3 eller 6 hexadecimala tecken." #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Ingen användar-ID angiven." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 8c79de054f..5ad2170d8f 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:39+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -164,6 +164,22 @@ msgid "" "something yourself." msgstr "ఇతరులకి చందా చేరండి, [ఏదైనా గుంపులో చేరండి](%%action.groups%%) లేదా మీరే ఏదైనా వ్రాయండి." +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:146 +#, fuzzy, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from their profile or [post something " +"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" +"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" + +#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" + #. TRANS: H1 text #: actions/all.php:182 msgid "You and friends" @@ -177,6 +193,32 @@ msgstr "మీరు మరియు మీ స్నేహితులు" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "నిర్ధారణ సంకేతం కనబడలేదు." + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -199,6 +241,11 @@ msgid "" "none." msgstr "" +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -209,6 +256,11 @@ msgstr "" msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -231,6 +283,12 @@ msgstr "" msgid "Unable to save your design settings." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "మిమ్మల్ని మీరే నిరోధించుకోలేరు!" @@ -239,6 +297,11 @@ msgstr "మిమ్మల్ని మీరే నిరోధించుక msgid "Block user failed." msgstr "వాడుకరి నిరోధం విఫలమైంది." +#: actions/apiblockdestroy.php:115 +#, fuzzy +msgid "Unblock user failed." +msgstr "వాడుకరి నిరోధం విఫలమైంది." + #: actions/apidirectmessage.php:89 #, php-format msgid "Direct messages from %s" @@ -489,6 +552,11 @@ msgstr "తప్పుడు పేరు / సంకేతపదం!" msgid "Database error deleting OAuth application user." msgstr "ఈ ఉపకరణాన్ని తొలగించకు" +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -614,6 +682,16 @@ msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షర msgid "Unsupported format." msgstr "" +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s %2$s గుంపులో చేరారు" + +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%s యొక్క మైక్రోబ్లాగు" + #: actions/apitimelinementions.php:118 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -644,11 +722,21 @@ msgstr "%s యొక్క పునరావృతం" msgid "Repeats of %s" msgstr "%s యొక్క పునరావృతాలు" +#: actions/apitimelinetag.php:105 actions/tag.php:67 +#, fuzzy, php-format +msgid "Notices tagged with %s" +msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" + #: actions/apitimelinetag.php:107 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" +#: actions/apitrends.php:87 +#, fuzzy +msgid "API method under construction." +msgstr "నిర్ధారణ సంకేతం కనబడలేదు." + #: actions/attachment.php:73 msgid "No such attachment." msgstr "అటువంటి జోడింపు లేదు." @@ -679,6 +767,13 @@ msgstr "అవతారం" msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "మీ వ్యక్తిగత అవతారాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %s." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:108 +#, fuzzy +msgid "User without matching profile." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 msgid "Avatar settings" @@ -1046,6 +1141,11 @@ msgstr "సైటు అలంకారం" msgid "Theme for the site." msgstr "సైటుకి అలంకారం." +#: actions/designadminpanel.php:480 +#, fuzzy +msgid "Custom theme" +msgstr "సైటు అలంకారం" + #: actions/designadminpanel.php:484 msgid "You can upload a custom StatusNet theme as a .ZIP archive." msgstr "" @@ -1076,6 +1176,16 @@ msgstr "ఆన్" msgid "Off" msgstr "ఆఫ్" +#: actions/designadminpanel.php:558 lib/designsettings.php:156 +#, fuzzy +msgid "Turn background image on or off." +msgstr "నేపథ్య చిత్రాన్ని మార్చు" + +#: actions/designadminpanel.php:563 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "నేపథ్య చిత్రాన్ని మార్చు" + #: actions/designadminpanel.php:577 lib/designsettings.php:170 msgid "Change colours" msgstr "రంగులను మార్చు" @@ -1108,6 +1218,16 @@ msgstr "ప్రత్యేక CSS" msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" +#: actions/designadminpanel.php:690 lib/designsettings.php:248 +#, fuzzy +msgid "Restore default designs" +msgstr "అప్రమేయాలని ఉపయోగించు" + +#: actions/designadminpanel.php:696 lib/designsettings.php:254 +#, fuzzy +msgid "Reset back to default" +msgstr "అప్రమేయాలని ఉపయోగించు" + #. TRANS: Submit button title. #: actions/designadminpanel.php:698 actions/licenseadminpanel.php:319 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351 @@ -1174,6 +1294,11 @@ msgstr "వివరణ తప్పనిసరి." msgid "Source URL is too long." msgstr "" +#: actions/editapplication.php:200 actions/newapplication.php:185 +#, fuzzy +msgid "Source URL is not valid." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + #: actions/editapplication.php:203 actions/newapplication.php:188 msgid "Organization is required." msgstr "సంస్థ తప్పనిసరి." @@ -1182,6 +1307,11 @@ msgstr "సంస్థ తప్పనిసరి." msgid "Organization is too long (max 255 chars)." msgstr "సంస్థ పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." +#: actions/editapplication.php:209 actions/newapplication.php:194 +#, fuzzy +msgid "Organization homepage is required." +msgstr "సంస్థ తప్పనిసరి." + #: actions/editapplication.php:218 actions/newapplication.php:206 msgid "Callback is too long." msgstr "" @@ -1312,6 +1442,20 @@ msgstr "చేర్చు" msgid "Incoming email" msgstr "" +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +#: actions/emailsettings.php:159 actions/smssettings.php:178 +#, fuzzy +msgid "Send email to this address to post new notices." +msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా" + +#. TRANS: Instructions for incoming e-mail address input form. +#. TRANS: Instructions for incoming SMS e-mail address input form. +#: actions/emailsettings.php:168 actions/smssettings.php:186 +#, fuzzy +msgid "Make a new email address for posting to; cancels the old one." +msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా" + #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. #: actions/emailsettings.php:172 actions/smssettings.php:189 @@ -1329,6 +1473,12 @@ msgstr "ఈమెయిలు అభిరుచులు" msgid "Send me notices of new subscriptions through email." msgstr "" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:190 +#, fuzzy +msgid "Send me email when someone adds my notice as a favorite." +msgstr "%s (@%s) మీ నోటీసుని ఇష్టపడ్డారు" + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:197 msgid "Send me email when someone sends me a private message." @@ -1349,6 +1499,12 @@ msgstr "" msgid "I want to post notices by email." msgstr "నేను ఈమెయిలు ద్వారా నోటీసులు పంపాలనుకుంటున్నాను." +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:223 +#, fuzzy +msgid "Publish a MicroID for my email address." +msgstr "అది మీ ఈమెయిలు చిరునామా కాదు." + #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:338 msgid "Email preferences saved." @@ -1359,6 +1515,12 @@ msgstr "ఈమెయిలు అభిరుచులు భద్రమయ్ msgid "No email address." msgstr "ఈమెయిలు చిరునామా లేదు." +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా." + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 @@ -1383,6 +1545,16 @@ msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేక msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:402 +#, fuzzy +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"ఈ చిరునామా నిర్ధారణకై వేచివున్నాం. తదుపరి సూచనలతో ఉన్న సందేశానికై మీ ఇన్‌బాక్స్‌లో (స్పామ్ బాక్సులో కూడా!) " +"చూడండి." + #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. @@ -1412,10 +1584,40 @@ msgstr "అది మీ ఈమెయిలు చిరునామా కా msgid "The email address was removed." msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." +#: actions/emailsettings.php:497 actions/smssettings.php:568 +#, fuzzy +msgid "No incoming email address." +msgstr "ఈమెయిలు చిరునామా లేదు." + +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:508 actions/emailsettings.php:532 +#: actions/smssettings.php:578 actions/smssettings.php:602 +#, fuzzy +msgid "Couldn't update user record." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#. TRANS: Message given after successfully removing an incoming e-mail address. +#: actions/emailsettings.php:512 actions/smssettings.php:581 +#, fuzzy +msgid "Incoming email address removed." +msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#: actions/emailsettings.php:536 actions/smssettings.php:605 +#, fuzzy +msgid "New incoming email address added." +msgstr "ఈమెయిలు చిరునామా లేదు." + #: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!" +#: actions/favor.php:92 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor favorite" +msgstr "ఇష్టాంశాలకు చేర్చు" + #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" @@ -1440,6 +1642,13 @@ msgid "" "next to any notice you like." msgstr "" +#: actions/favorited.php:156 +#, fuzzy, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" + #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 #, php-format @@ -1510,6 +1719,11 @@ msgstr "" msgid "Remote service uses unknown version of OMB protocol." msgstr "" +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" + #: actions/getfile.php:79 msgid "No such file." msgstr "అటువంటి ఫైలు లేదు." @@ -1534,6 +1748,20 @@ msgstr "ఈ సైటులో మీరు వాడుకరలకి పా msgid "User already has this role." msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర ఉంది." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:79 +#, fuzzy +msgid "No profile specified." +msgstr "గుంపు ఏమీ పేర్కొనలేదు." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:86 +#, fuzzy +msgid "No profile with that ID." +msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1575,6 +1803,11 @@ msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి న msgid "Block this user from this group" msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" +#: actions/groupblock.php:206 +#, fuzzy +msgid "Database error blocking user from group." +msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు" + #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." msgstr "ఐడీ లేదు." @@ -1794,6 +2027,17 @@ msgstr "IM చిరునామా" msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM address set for the site. +#: actions/imsettings.php:124 +#, fuzzy, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"ఈ చిరునామా నిర్ధారణకై వేచివున్నాం. తదుపరి సూచనలతో ఉన్న సందేశానికై మీ ఇన్‌బాక్స్‌లో (స్పామ్ బాక్సులో కూడా!) " +"చూడండి." + #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. #. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by @@ -1826,6 +2070,12 @@ msgstr "" msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:182 +#, fuzzy +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" + #. TRANS: Confirmation message for successful IM preferences save. #: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." @@ -1836,6 +2086,12 @@ msgstr "అభిరుచులు భద్రమయ్యాయి." msgid "No Jabber ID." msgstr "Jabber ID లేదు." +#. TRANS: Message given saving IM address that cannot be normalised. +#: actions/imsettings.php:320 +#, fuzzy +msgid "Cannot normalize that Jabber ID" +msgstr "సరైన Jabber ఐడీ కాదు" + #. TRANS: Message given saving IM address that not valid. #: actions/imsettings.php:325 msgid "Not a valid Jabber ID" @@ -1865,6 +2121,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -2106,7 +2368,7 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "అంతరంగికం" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2248,6 +2510,11 @@ msgstr "ఉపకరణాలని నమోదుచేసుకోడాన msgid "Use this form to register a new application." msgstr "కొత్త ఉపకరణాన్ని నమోదుచేసుకోడానికి ఈ ఫారాన్ని ఉపయోగించండి." +#: actions/newapplication.php:176 +#, fuzzy +msgid "Source URL is required." +msgstr "పేరు తప్పనిసరి." + #: actions/newapplication.php:258 actions/newapplication.php:267 msgid "Could not create application." msgstr "ఉపకరణాన్ని సృష్టించలేకపోయాం." @@ -2359,6 +2626,16 @@ msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" +#: actions/nudge.php:94 +#, fuzzy +msgid "Nudge sent" +msgstr "సందేశాన్ని పంపించాం" + +#: actions/nudge.php:97 +#, fuzzy +msgid "Nudge sent!" +msgstr "సందేశాన్ని పంపించాం" + #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." msgstr "మీ ఉపకరణాలను చూడడానికి మీరు ప్రవేశించి ఉండాలి." @@ -2410,6 +2687,12 @@ msgstr "నోటీసుకి ప్రొఫైలు లేదు." msgid "%1$s's status on %2$s" msgstr "%2$sలో %1$s యొక్క స్థితి" +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "విషయ రకం " + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format @@ -2454,6 +2737,11 @@ msgstr "ఉపయోగించాల్సిన యాంత్రిక క msgid "View profile designs" msgstr "ఫ్రొఫైలు రూపురేఖలు" +#: actions/othersettings.php:123 +#, fuzzy +msgid "Show or hide profile designs." +msgstr "ఫ్రొఫైలు రూపురేఖలు" + #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL కుదింపు సేవ మరీ పెద్దగా ఉంది (50 అక్షరాలు గరిష్ఠం)." @@ -2466,6 +2754,31 @@ msgstr "గుంపు ఏమీ పేర్కొనలేదు." msgid "No login token specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." +#: actions/otp.php:90 +#, fuzzy +msgid "No login token requested." +msgstr "అధీకరణ అభ్యర్థన లేదు!" + +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "సందేశపు విషయం సరైనది కాదు" + +#: actions/otp.php:104 +#, fuzzy +msgid "Login token expired." +msgstr "సైటు లోనికి ప్రవేశించు" + +#: actions/outbox.php:58 +#, fuzzy, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "%1$sకి వచ్చినవి - %2$dవ పేజీ" + +#: actions/outbox.php:61 +#, fuzzy, php-format +msgid "Outbox for %s" +msgstr "%sకి వచ్చినవి" + #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "ఇవి మీరు పంపివున్న అంతరంగిక సందేశాలు." @@ -2550,6 +2863,21 @@ msgstr "అలంకారం అందుబాటులో లేదు: %s." msgid "Avatar directory not writable: %s." msgstr "అవతారాల సంచయం" +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "నేపథ్యాల సంచయం" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/pathsadminpanel.php:183 +#, fuzzy +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు." + #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 msgid "Site" msgstr "సైటు" @@ -2594,6 +2922,11 @@ msgstr "అలంకారం" msgid "Theme server" msgstr "అలంకారాల సేవకి" +#: actions/pathsadminpanel.php:268 +#, fuzzy +msgid "Theme path" +msgstr "అలంకారం" + #: actions/pathsadminpanel.php:272 msgid "Theme directory" msgstr "అలంకార సంచయం" @@ -2606,6 +2939,11 @@ msgstr "అవతారాలు" msgid "Avatar server" msgstr "అవతారాల సేవకి" +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "అవతారాన్ని తాజాకరించాం." + #: actions/pathsadminpanel.php:292 msgid "Avatar directory" msgstr "అవతారాల సంచయం" @@ -2618,10 +2956,20 @@ msgstr "నేపథ్యాలు" msgid "Background server" msgstr "నేపథ్యాల సేవకి" +#: actions/pathsadminpanel.php:309 +#, fuzzy +msgid "Background path" +msgstr "నేపథ్యం" + #: actions/pathsadminpanel.php:313 msgid "Background directory" msgstr "నేపథ్యాల సంచయం" +#: actions/pathsadminpanel.php:320 +#, fuzzy +msgid "SSL" +msgstr "SSLని ఉపయోగించు" + #: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "సేవకి" @@ -2650,6 +2998,11 @@ msgstr "సేవకి" msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "కొత్త సందేశం" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2663,6 +3016,11 @@ msgstr "" msgid "People search" msgstr "వ్యక్తుల అన్వేషణ" +#: actions/peopletag.php:68 +#, fuzzy, php-format +msgid "Not a valid people tag: %s." +msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" + #: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" @@ -2790,6 +3148,16 @@ msgstr "భాష మరీ పెద్దగా ఉంది (50 అక్ష msgid "Invalid tag: \"%s\"" msgstr "తప్పుడు మారుపేరు: \"%s\"" +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "ట్యాగులని భద్రపరచలేకున్నాం." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." @@ -2808,6 +3176,11 @@ msgstr "అమరికలు భద్రమయ్యాయి." msgid "Beyond the page limit (%s)." msgstr "" +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "మారుపేర్లని సృష్టించలేకపోయాం." + #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" @@ -2829,6 +3202,13 @@ msgstr "ప్రజా వాహిని ఫీడు (RSS 2.0)" msgid "Public Stream Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు (ఆటమ్)" +#: actions/public.php:188 +#, fuzzy, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు." + #: actions/public.php:191 msgid "Be the first to post!" msgstr "" @@ -2839,6 +3219,21 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "[ఖాతా నమోదు చేసుకుని](%%action.register%%) మొదటగా వ్రాసేది మీరే ఎందుకు కాకూడదు!" +#: actions/public.php:242 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" +"(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " +"వాడుకరి గుంపు.\n" +"దీని సభ్యులు వారి జీవితం మరియు ఆసక్తుల గురించి చిన్న సందేశాలని పంచుకుంటారు. ఈ గుంపు మరియు ఇంకా " +"చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" +"doc.help%%%%))" + #: actions/public.php:247 #, php-format msgid "" @@ -2882,6 +3277,16 @@ msgstr "ట్యాగు మేఘం" msgid "You are already logged in!" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: actions/recoverpassword.php:62 +#, fuzzy +msgid "No such recovery code." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/recoverpassword.php:66 +#, fuzzy +msgid "Not a recovery code." +msgstr "నమోదైన వాడుకరి కాదు." + #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "" @@ -2909,6 +3314,11 @@ msgstr "" msgid "You have been identified. Enter a new password below. " msgstr "మిమ్మల్ని గుర్తించాం. మీ కొత్త సంకేతపదాన్ని క్రింత ఇవ్వండి. " +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "సంకేతపదం మార్పు" + #: actions/recoverpassword.php:191 msgid "Nickname or email address" msgstr "ముద్దుపేరు లేదా ఈమెయిలు చిరునామా" @@ -2917,6 +3327,21 @@ msgstr "ముద్దుపేరు లేదా ఈమెయిలు చి msgid "Your nickname on this server, or your registered email address." msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా." +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +#, fuzzy +msgid "Recover" +msgstr "తొలగించు" + +#: actions/recoverpassword.php:208 +#, fuzzy +msgid "Reset password" +msgstr "కొత్త సంకేతపదం" + +#: actions/recoverpassword.php:209 +#, fuzzy +msgid "Recover password" +msgstr "కొత్త సంకేతపదం" + #: actions/recoverpassword.php:210 actions/recoverpassword.php:335 msgid "Password recovery requested" msgstr "" @@ -2967,6 +3392,11 @@ msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్ msgid "Password and confirmation do not match." msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." +#: actions/recoverpassword.php:388 actions/register.php:255 +#, fuzzy +msgid "Error setting user." +msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." + #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." @@ -3177,6 +3607,16 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." +#: actions/repeat.php:114 lib/noticelist.php:676 +#, fuzzy +msgid "Repeated" +msgstr "సృష్టితం" + +#: actions/repeat.php:119 +#, fuzzy +msgid "Repeated!" +msgstr "సృష్టితం" + #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format @@ -3219,6 +3659,14 @@ msgstr "" "మీరు ఇతర వాడుకరులతో సంభాషించవచ్చు, మరింత మంది వ్యక్తులకు చందాచేరవచ్చు లేదా [గుంపులలో చేరవచ్చు]" "(%%action.groups%%)." +#: actions/replies.php:206 +#, fuzzy, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" +"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" + #: actions/repliesrss.php:72 #, php-format msgid "Replies to %1$s on %2$s!" @@ -3240,6 +3688,18 @@ msgstr "స్టేటస్‌నెట్" msgid "You cannot sandbox users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." + +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:379 +#, fuzzy +msgid "Sessions" +msgstr "సంచిక" + #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" msgstr "" @@ -3248,6 +3708,11 @@ msgstr "" msgid "Handle sessions" msgstr "" +#: actions/sessionsadminpanel.php:177 +#, fuzzy +msgid "Whether to handle sessions ourselves." +msgstr "వాడుకరులను కొత్త వారిని ఆహ్వానించడానికి అనుమతించాలా వద్దా." + #: actions/sessionsadminpanel.php:181 msgid "Session debugging" msgstr "" @@ -3328,17 +3793,32 @@ msgstr "" msgid "Access token URL" msgstr "" +#: actions/showapplication.php:283 +#, fuzzy +msgid "Authorize URL" +msgstr "రచయిత" + #: actions/showapplication.php:288 msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +#: actions/showapplication.php:309 +#, fuzzy +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" + #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" msgstr "%1$sకి ఇష్టమైన నోటీసులు, పేజీ %2$d" +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." + #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" @@ -3367,6 +3847,16 @@ msgid "" "would add to their favorites :)" msgstr "" +#: actions/showfavorites.php:212 +#, fuzzy, 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%%%%) మీరు " +"ఎందుకు మొదటి చందాదారు కాకూడదు?" + #: actions/showfavorites.php:243 msgid "This is a way to share what you like." msgstr "మీకు నచ్చినవి పంచుకోడానికి ఇదొక మార్గం." @@ -3457,6 +3947,21 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" +#: actions/showgroup.php:461 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" +"(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " +"వాడుకరి గుంపు.\n" +"దీని సభ్యులు వారి జీవితం మరియు ఆసక్తుల గురించి చిన్న సందేశాలని పంచుకుంటారు. ఈ గుంపు మరియు ఇంకా " +"చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" +"doc.help%%%%))" + #: actions/showgroup.php:489 msgid "Admins" msgstr "నిర్వాహకులు" @@ -3469,6 +3974,16 @@ msgstr "అటువంటి సందేశం లేదు." msgid "Only the sender and recipient may read this message." msgstr "పంపినవారు మరియు అందుకున్నవారు మాత్రమే ఈ సందేశాన్ని చదవవచ్చు." +#: actions/showmessage.php:108 +#, fuzzy, php-format +msgid "Message to %1$s on %2$s" +msgstr "%2$sలో %1$sకి స్పందనలు!" + +#: actions/showmessage.php:113 +#, fuzzy, php-format +msgid "Message from %1$s on %2$s" +msgstr "%2$sలో %1$sకి స్పందనలు!" + #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "నోటీసుని తొలగించాం." @@ -3503,6 +4018,11 @@ msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)" msgid "Notice feed for %s (Atom)" msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" +#: actions/showstream.php:148 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s గుంపు" + #: actions/showstream.php:200 #, php-format msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -3515,11 +4035,54 @@ msgid "" msgstr "" "ఈమధ్యే ఏదైనా ఆసక్తికరమైనది చూసారా? మీరు ఇంకా నోటీసులేమీ వ్రాయలేదు, మొదలుపెట్టడానికి ఇదే మంచి సమయం :)" +#: actions/showstream.php:207 +#, fuzzy, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" +"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" + +#: actions/showstream.php:243 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" +"(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " +"వాడుకరి గుంపు.\n" +"దీని సభ్యులు వారి జీవితం మరియు ఆసక్తుల గురించి చిన్న సందేశాలని పంచుకుంటారు. ఈ గుంపు మరియు ఇంకా " +"చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" +"doc.help%%%%))" + +#: actions/showstream.php:248 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " +"ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." + #: actions/showstream.php:305 #, php-format msgid "Repeat of %s" msgstr "%s యొక్క పునరావృతం" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." + #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "ఈ స్టేటస్‌నెట్ సైటుకి ప్రాధమిక అమరికలు" @@ -3609,6 +4172,11 @@ msgstr "పాఠ్యపు పరిమితి" msgid "Maximum number of characters for notices." msgstr "సందేశాలలోని అక్షరాల గరిష్ఠ సంఖ్య." +#: actions/siteadminpanel.php:278 +#, fuzzy +msgid "Dupe limit" +msgstr "పాఠ్యపు పరిమితి" + #: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "అదే విషయాన్ని మళ్ళీ టపా చేయడానికి వాడుకరులు ఎంత సమయం (క్షణాల్లో) వేచివుండాలి." @@ -3617,6 +4185,11 @@ msgstr "అదే విషయాన్ని మళ్ళీ టపా చే msgid "Site Notice" msgstr "సైటు గమనిక" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "కొత్త సందేశం" + #: actions/sitenoticeadminpanel.php:103 msgid "Unable to save site notice." msgstr "సైటు గమనికని భద్రపరచు" @@ -3642,6 +4215,13 @@ msgstr "సైటు గమనికని భద్రపరచు" msgid "SMS settings" msgstr "SMS అమరికలు" +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#: actions/smssettings.php:74 +#, fuzzy, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "%%site.name%% నుండి మీకు ఎలా మెయిల్ వస్తూంతో సంభాళించుకోండి." + #. TRANS: Message given in the SMS settings if SMS is not enabled on the site. #: actions/smssettings.php:97 msgid "SMS is not available." @@ -3652,6 +4232,12 @@ msgstr "IM అందుబాటులో లేదు." msgid "SMS address" msgstr "SMS చిరునామా" +#. TRANS: Form guide in SMS settings form. +#: actions/smssettings.php:120 +#, fuzzy +msgid "Current confirmed SMS-enabled phone number." +msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా." + #. TRANS: Form guide in IM settings form. #: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." @@ -3673,6 +4259,18 @@ msgctxt "BUTTON" msgid "Confirm" msgstr "నిర్థారించు" +#. TRANS: Field label for SMS phone number input in SMS settings form. +#: actions/smssettings.php:153 +#, fuzzy +msgid "SMS phone number" +msgstr "ఫోను నెంబరు లేదు." + +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి." + #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 msgid "SMS preferences" @@ -3685,11 +4283,23 @@ msgid "" "from my carrier." msgstr "" +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." + #. TRANS: Message given saving SMS phone number without having provided one. #: actions/smssettings.php:338 msgid "No phone number." msgstr "ఫోను నెంబరు లేదు." +#. TRANS: Message given saving SMS phone number without having selected a carrier. +#: actions/smssettings.php:344 +#, fuzzy +msgid "No carrier selected." +msgstr "నోటీసుని తొలగించాం." + #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." @@ -3700,6 +4310,14 @@ msgstr "ఇది ఇప్పటికే మీ ఫోను నెంబర 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:384 +#, fuzzy +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:413 msgid "That is the wrong confirmation number." @@ -3740,6 +4358,12 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +#, fuzzy +msgid "No code entered" +msgstr "విషయం లేదు!" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 #: lib/adminpanelaction.php:395 @@ -3750,10 +4374,20 @@ msgstr "" msgid "Manage snapshot configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" +#: actions/snapshotadminpanel.php:127 +#, fuzzy +msgid "Invalid snapshot run value." +msgstr "తప్పుడు పాత్ర." + #: actions/snapshotadminpanel.php:133 msgid "Snapshot frequency must be a number." msgstr "" +#: actions/snapshotadminpanel.php:144 +#, fuzzy +msgid "Invalid snapshot report URL." +msgstr "చిహ్నపు URL చెల్లదు." + #: actions/snapshotadminpanel.php:200 msgid "Randomly during web hit" msgstr "" @@ -3786,6 +4420,16 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "సైటు అమరికలను భద్రపరచు" + +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "మీరు ఎవరికీ చందాచేరలేదు." + #. TRANS: Exception thrown when a subscription could not be stored on the server. #: actions/subedit.php:83 classes/Subscription.php:136 msgid "Could not save subscription." @@ -3795,6 +4439,11 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "అటువంటి ఫైలు లేదు." + #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -3909,6 +4558,11 @@ msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" msgid "No ID argument." msgstr "జోడింపులు లేవు." +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "ట్యాగులు" + #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" @@ -3918,6 +4572,11 @@ msgstr "వాడుకరి ప్రొఫైలు" msgid "Photo" msgstr "ఫొటో" +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "ట్యాగులు" + #: actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " @@ -3933,6 +4592,11 @@ msgstr "" msgid "Could not save tags." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." +#: actions/tagother.php:236 +#, fuzzy +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." + #: actions/tagrss.php:35 msgid "No such tag." msgstr "అటువంటి ట్యాగు లేదు." @@ -3945,6 +4609,16 @@ msgstr "మీరు ఆ వాడుకరిని నిరోధించల msgid "User is not sandboxed." msgstr "వాడుకరిని గుంపు నుండి నిరోధించలేదు." +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "అధీకరణ అభ్యర్థన లేదు!" + #: actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "చందామాను" @@ -4008,6 +4682,11 @@ msgstr "కొత్త వాడుకరులకై స్వాగత సం msgid "Default subscription" msgstr "అప్రమేయ చందా" +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." + #: actions/useradminpanel.php:252 msgid "Invitations" msgstr "ఆహ్వానాలు" @@ -4109,10 +4788,27 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "'%s' అనే అవతారపు URL తప్పు" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" + #: actions/userdesignsettings.php:76 lib/designsettings.php:65 msgid "Profile design" msgstr "ఫ్రొఫైలు రూపురేఖలు" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +#, fuzzy +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "నేపథ్య చిత్రం మరియు రంగుల ఎంపికతో మీ గుంపు ఎలా కనిపించాలో మలచుకోండి." + #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" msgstr "" @@ -4137,6 +4833,17 @@ msgstr "%s ఏ గుంపు లోనూ సభ్యులు కాదు." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి ప్రయత్నించండి." +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: lib/atomusernoticefeed.php:76 +#, fuzzy, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" + #: actions/version.php:75 #, php-format msgid "StatusNet %s" @@ -4149,6 +4856,11 @@ msgid "" "Inc. and contributors." msgstr "" +#: actions/version.php:163 +#, fuzzy +msgid "Contributors" +msgstr "అనుసంధానాలు" + #: actions/version.php:170 msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " @@ -4264,6 +4976,13 @@ msgstr "" msgid "Could not update local group." msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "మారుపేర్లని సృష్టించలేకపోయాం." + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -4274,6 +4993,18 @@ msgstr "" msgid "You are banned from sending direct messages." msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." +#. TRANS: Message given when a message could not be stored on the server. +#: classes/Message.php:63 +#, fuzzy +msgid "Could not insert message." +msgstr "ట్యాగులని భద్రపరచలేకపోయాం." + +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -4281,6 +5012,12 @@ msgstr "నేరుగా సందేశాలు పంపడం నుండ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" +#. TRANS: Server exception. %s are the error details. +#: classes/Notice.php:193 +#, fuzzy, php-format +msgid "Database error inserting hashtag: %s" +msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" + #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 msgid "Problem saving notice. Too long." @@ -4297,6 +5034,14 @@ 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:283 +#, fuzzy +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:291 msgid "You are banned from posting notices on this site." @@ -4313,6 +5058,12 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1824 @@ -4334,6 +5085,12 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 msgid "Unable to save tag." @@ -4354,6 +5111,12 @@ msgstr "ఇప్పటికే చందాచేరారు!" msgid "User has blocked you." msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు." +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "చందాదార్లు" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -4405,6 +5168,12 @@ msgstr "గుంపు సభ్యత్వాన్ని అమర్చల msgid "Could not save local group info." msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 +#, fuzzy +msgid "Change your profile settings" +msgstr "ఫ్రొఫైలు అమరికలని మార్చు" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:116 msgid "Upload an avatar" @@ -4469,6 +5238,13 @@ msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "అనుసంధానాలు" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -4729,6 +5505,12 @@ msgstr "" msgid "You cannot make changes to this site." msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు." +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +#: lib/adminpanelaction.php:108 +#, fuzzy +msgid "Changes to that panel are not allowed." +msgstr "నమోదు అనుమతించబడదు." + #. TRANS: Client error message. #: lib/adminpanelaction.php:222 msgid "showForm() not implemented." @@ -4739,6 +5521,13 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" +#. TRANS: Client error message thrown if design settings could not be deleted in +#. TRANS: the admin panel Design. +#: lib/adminpanelaction.php:274 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:337 msgid "Basic site configuration" @@ -4782,6 +5571,12 @@ msgstr "రూపకల్పన స్వరూపణం" msgid "Paths configuration" msgstr "వాడుకరి స్వరూపణం" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "రూపకల్పన స్వరూపణం" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" @@ -4859,6 +5654,12 @@ msgstr "మీ ఉపకరణాన్ని వివరించండి" msgid "URL of the homepage of this application" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "మూలము" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" @@ -4925,6 +5726,13 @@ msgstr "చదవడం-మాత్రమే" msgid "Approved %1$s - \"%2$s\" access." msgstr "" +#. TRANS: Button label +#: lib/applicationlist.php:158 +#, fuzzy +msgctxt "BUTTON" +msgid "Revoke" +msgstr "తొలగించు" + #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:88 msgid "Attachments" @@ -4945,10 +5753,21 @@ msgstr "మునుజూపు" msgid "Notices where this attachment appears" msgstr "" +#. TRANS: Title. +#: lib/attachmenttagcloudsection.php:49 +#, fuzzy +msgid "Tags for this attachment" +msgstr "అటువంటి జోడింపు లేదు." + #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 msgid "Password changing failed" msgstr "సంకేతపదం మార్పు విఫలమైంది" +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "సంకేతపదం మార్పు" + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4966,6 +5785,26 @@ msgstr "ఆదేశం పూర్తయ్యింది" msgid "Command failed" msgstr "ఆదేశం విఫలమైంది" +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +#: lib/command.php:84 lib/command.php:108 +#, fuzzy +msgid "Notice with that id does not exist." +msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు." + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -5065,11 +5904,38 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +#: lib/command.php:517 +#, fuzzy +msgid "Error sending direct message." +msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." + +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#: lib/command.php:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "సందేశాలు" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." +#. TRANS: Message given if content of a notice for a reply is too long. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#: lib/command.php:592 +#, fuzzy, php-format +msgid "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" + +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "%sకి స్పందనలు" + #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. #: lib/command.php:606 msgid "Error saving notice." @@ -5105,11 +5971,36 @@ msgstr "ఎవరినుండైతే చందావిరమించా 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:724 lib/command.php:750 +#, fuzzy +msgid "Command not yet implemented." +msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." + +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +#, fuzzy +msgid "Notification off." +msgstr "నిర్ధారణ సంకేతం లేదు." + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +#, fuzzy +msgid "Notification on." +msgstr "నిర్ధారణ సంకేతం లేదు." + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +#: lib/command.php:757 +#, fuzzy +msgid "Can't turn on notification." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + #. TRANS: Error text shown when issuing the login command while login is disabled. #: lib/command.php:771 msgid "Login command is disabled." @@ -5228,6 +6119,11 @@ msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ msgid "You may wish to run the installer to fix this." msgstr "" +#: lib/common.php:139 +#, fuzzy +msgid "Go to the installer." +msgstr "సైటు లోనికి ప్రవేశించండి" + #: lib/connectsettingsaction.php:110 msgid "IM" msgstr "" @@ -5265,6 +6161,11 @@ msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్ msgid "Design defaults restored." msgstr "" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "ఈ నోటీసుని తొలగించు" + #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -5301,6 +6202,11 @@ msgstr "అన్నీ" msgid "Select tag to filter" msgstr "" +#: lib/galleryaction.php:140 +#, fuzzy +msgid "Tag" +msgstr "ట్యాగులు" + #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" @@ -5417,6 +6323,11 @@ msgstr "ఎక్కువమంది సభ్యులున్న గుం msgid "Groups with most posts" msgstr "ఎక్కువ టపాలున్న గుంపులు" +#: lib/grouptagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s group's notices" +msgstr "%s గుంపు లక్షణాలను మార్చు" + #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" @@ -5426,6 +6337,11 @@ msgstr "" msgid "Unsupported image file format." msgstr "" +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "పాక్షిక ఎగుమతి." @@ -5588,6 +6504,12 @@ msgstr "%s స్థితి" msgid "SMS confirmation" msgstr "SMS నిర్ధారణ" +#. TRANS: Main body heading for SMS-by-email address confirmation message +#: lib/mail.php:463 +#, fuzzy, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "ఈ ఫోను నంబరు యొక్క నిర్ధారణకై వేచివుంది." + #. TRANS: Subject for 'nudge' notification email #: lib/mail.php:484 #, php-format @@ -5789,6 +6711,11 @@ msgstr "" msgid "from" msgstr "నుండి" +#: lib/mailhandler.php:37 +#, fuzzy +msgid "Could not parse message." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #: lib/mailhandler.php:42 msgid "Not a registered user." msgstr "నమోదైన వాడుకరి కాదు." @@ -5797,6 +6724,16 @@ msgstr "నమోదైన వాడుకరి కాదు." msgid "Sorry, that is not your incoming email address." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." +#: lib/mailhandler.php:50 +#, fuzzy +msgid "Sorry, no incoming email allowed." +msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." + +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "%s కి నేరు సందేశాలు" + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5868,6 +6805,11 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#: lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "సైటు గమనికని భద్రపరచు" + #: lib/messageform.php:146 msgid "To" msgstr "" @@ -5967,6 +6909,21 @@ msgstr "స్పందించండి" msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "ఈ వాడుకరిని తొలగించు" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Nudge" +msgstr "బాడ్జి" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" + #: lib/oauthstore.php:283 msgid "Error inserting new profile." msgstr "" @@ -6021,6 +6978,12 @@ msgstr "మీరు పంపిన సందేశాలు" msgid "Tags in %s's notices" msgstr "" +#. TRANS: Displayed as version information for a plugin if no version information was found. +#: lib/plugin.php:116 +#, fuzzy +msgid "Unknown" +msgstr "తెలియని చర్య" + #: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "చందాలు" @@ -6094,10 +7057,20 @@ msgstr "అవును" msgid "Repeat this notice" msgstr "ఈ నోటీసుని పునరావృతించు" +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "వచ్చినవి" + #: lib/sandboxform.php:78 msgid "Sandbox this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -6201,6 +7174,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "అవతారపు తాజాకరణ విఫలమైంది." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -6289,6 +7269,11 @@ msgstr "ఈ వాడుకరికి ఒక నేరు సందేశా msgid "Message" msgstr "సందేశం" +#: lib/userprofile.php:326 +#, fuzzy +msgid "Moderate" +msgstr "సమన్వయకర్త" + #: lib/userprofile.php:364 msgid "User role" msgstr "వాడుకరి పాత్ర" @@ -6377,14 +7362,15 @@ msgstr "%s అనేది సరైన రంగు కాదు! 3 లేద #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "గుంపు ఏమీ పేర్కొనలేదు." #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index f371305328..d262c92b3d 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:40+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:05+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -196,6 +196,32 @@ msgstr "Sen ve arkadaşların" msgid "Updates from %1$s and friends on %2$s!" msgstr "" +#: actions/apiaccountratelimitstatus.php:72 +#: actions/apiaccountupdatedeliverydevice.php:95 +#: actions/apiaccountupdateprofile.php:98 +#: actions/apiaccountupdateprofilebackgroundimage.php:95 +#: actions/apiaccountupdateprofilecolors.php:119 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:101 actions/apifavoritedestroy.php:102 +#: actions/apifriendshipscreate.php:101 actions/apifriendshipsdestroy.php:101 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:140 +#: actions/apigroupismember.php:115 actions/apigroupjoin.php:157 +#: actions/apigroupleave.php:143 actions/apigrouplist.php:137 +#: actions/apigrouplistall.php:122 actions/apigroupmembership.php:107 +#: actions/apigroupshow.php:116 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:104 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:109 actions/apistatusnetconfig.php:141 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:271 +#: actions/apitimelinegroup.php:154 actions/apitimelinehome.php:175 +#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:241 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:161 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +#, fuzzy +msgid "API method not found." +msgstr "Onay kodu bulunamadı." + #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:87 @@ -218,6 +244,11 @@ msgid "" "none." msgstr "" +#: actions/apiaccountupdatedeliverydevice.php:134 +#, fuzzy +msgid "Could not update user." +msgstr "Kullanıcı güncellenemedi." + #: actions/apiaccountupdateprofile.php:113 #: actions/apiaccountupdateprofilebackgroundimage.php:195 #: actions/apiaccountupdateprofilecolors.php:186 @@ -228,6 +259,11 @@ msgstr "" msgid "User has no profile." msgstr "Kullanıcının profili yok." +#: actions/apiaccountupdateprofile.php:148 +#, fuzzy +msgid "Could not save profile." +msgstr "Profil kaydedilemedi." + #: actions/apiaccountupdateprofilebackgroundimage.php:109 #: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257 @@ -250,6 +286,12 @@ msgstr "" msgid "Unable to save your design settings." msgstr "Dizayn ayarlarınız kaydedilemedi." +#: actions/apiaccountupdateprofilebackgroundimage.php:188 +#: actions/apiaccountupdateprofilecolors.php:143 +#, fuzzy +msgid "Could not update your design." +msgstr "Kullanıcı güncellenemedi." + #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" msgstr "Kendinizi engelleyemezsiniz!" @@ -406,6 +448,12 @@ msgstr "" msgid "Invalid alias: \"%s\"." msgstr "Geçersiz büyüklük." +#: actions/apigroupcreate.php:277 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." + #: actions/apigroupcreate.php:290 actions/editgroup.php:238 #: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." @@ -427,6 +475,13 @@ msgstr "Bize o profili yollamadınız" msgid "You have been blocked from that group by the admin." msgstr "Bu gruptan yönetici tarafından engellendiniz." +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#, fuzzy, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Sunucuya yönlendirme yapılamadı: %s" + #: actions/apigroupleave.php:116 msgid "You are not a member of this group." msgstr "Bu grubun bir üyesi değilsiniz." @@ -445,6 +500,12 @@ msgstr "%1$s kullanıcısı, %2$s grubundan silinemedi." msgid "%s's groups" msgstr "%s kullanıcısının grupları" +#. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s +#: actions/apigrouplist.php:108 +#, fuzzy, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "Bize o profili yollamadınız" + #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 @@ -465,6 +526,11 @@ msgstr "Yükleme başarısız." msgid "No oauth_token parameter provided." msgstr "" +#: actions/apioauthauthorize.php:106 +#, fuzzy +msgid "Invalid token." +msgstr "Geçersiz büyüklük." + #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/deletenotice.php:169 actions/disfavor.php:74 #: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55 @@ -487,6 +553,16 @@ msgstr "" msgid "Invalid nickname / password!" msgstr "Geçersiz kullanıcı adı / parola!" +#: actions/apioauthauthorize.php:159 +#, fuzzy +msgid "Database error deleting OAuth application user." +msgstr "Kullanıcı ayarlamada hata oluştu." + +#: actions/apioauthauthorize.php:185 +#, fuzzy +msgid "Database error inserting OAuth application user." +msgstr "Cevap eklenirken veritabanı hatası: %s" + #: actions/apioauthauthorize.php:214 #, php-format msgid "" @@ -613,6 +689,21 @@ msgstr "" msgid "Unsupported format." msgstr "Desteklenmeyen biçim." +#: actions/apitimelinefavorites.php:110 +#, fuzzy, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/apitimelinementions.php:118 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + #: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." @@ -628,11 +719,26 @@ msgstr "%s genel zaman çizelgesi" msgid "%s updates from everyone!" msgstr "" +#: actions/apitimelineretweetedtome.php:111 +#, fuzzy, php-format +msgid "Repeated to %s" +msgstr "%s için cevaplar" + +#: actions/apitimelineretweetsofme.php:114 +#, fuzzy, php-format +msgid "Repeats of %s" +msgstr "%s için cevaplar" + #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" msgstr "" +#: actions/apitimelinetag.php:107 actions/tagrss.php:65 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/apitrends.php:87 msgid "API method under construction." msgstr "UPA metodu yapım aşamasında." @@ -668,6 +774,13 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" "Kişisel kullanıcı resminizi yükleyebilirsiniz. Maksimum dosya boyutu %s'dir." +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/userauthorization.php:72 actions/userrss.php:108 +#, fuzzy +msgid "User without matching profile." +msgstr "Kullanıcının profili yok." + #: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/grouplogo.php:254 msgid "Avatar settings" @@ -800,6 +913,11 @@ msgstr "Böyle bir kullanıcı yok." msgid "%s blocked profiles" msgstr "%s engellenmiş profil" +#: actions/blockedfromgroup.php:100 +#, fuzzy, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%s ve arkadaşları" + #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." msgstr "Bu gruba katılması engellenmiş kullanıcıların bir listesi." @@ -818,6 +936,12 @@ msgstr "Engellemeyi Kaldır" msgid "Unblock this user" msgstr "Bu kullanıcının engellemesini kaldır" +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#: actions/bookmarklet.php:51 +#, fuzzy, php-format +msgid "Post to %s" +msgstr "%s için cevaplar" + #: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "Onay kodu yok." @@ -1230,6 +1354,11 @@ msgstr "Grubu düzenlemek için bu biçimi kullan." msgid "description is too long (max %d chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." +#: actions/editgroup.php:228 actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" + #: actions/editgroup.php:258 msgid "Could not update group." msgstr "Grup güncellenemedi." @@ -1346,6 +1475,12 @@ msgstr "Yeni" msgid "Email preferences" msgstr "E-posta tercihleri" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:184 +#, fuzzy +msgid "Send me notices of new subscriptions through email." +msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." + #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." @@ -1372,12 +1507,48 @@ msgstr "" msgid "I want to post notices by email." msgstr "" +#. TRANS: Checkbox label in e-mail preferences form. +#: actions/emailsettings.php:223 +#, fuzzy +msgid "Publish a MicroID for my email address." +msgstr "Bir takma ad veya eposta adresi girin." + +#. TRANS: Confirmation message for successful e-mail preferences save. +#: actions/emailsettings.php:338 +#, fuzzy +msgid "Email preferences saved." +msgstr "Tercihler kaydedildi." + +#. TRANS: Message given saving e-mail address without having provided one. +#: actions/emailsettings.php:357 +#, fuzzy +msgid "No email address." +msgstr "Geçersiz bir eposta adresi." + +#. TRANS: Message given saving e-mail address that cannot be normalised. +#: actions/emailsettings.php:365 +#, fuzzy +msgid "Cannot normalize that email address" +msgstr "Jabber işlemlerinde bir hata oluştu." + #. TRANS: Message given saving e-mail address that not valid. #: actions/emailsettings.php:370 actions/register.php:208 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." +#. TRANS: Message given saving e-mail address that is already set. +#: actions/emailsettings.php:374 +#, fuzzy +msgid "That is already your email address." +msgstr "Bu zaten sizin Jabber ID'niz." + +#. TRANS: Message given saving e-mail address that is already set for another user. +#: actions/emailsettings.php:378 +#, fuzzy +msgid "That email address already belongs to another user." +msgstr "Jabber ID başka bir kullanıcıya ait." + #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding IM confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. @@ -1386,6 +1557,16 @@ msgstr "Geçersiz bir eposta adresi." msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +#: actions/emailsettings.php:402 +#, fuzzy +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " +"mesaj yollanabilmesi için onaylamanız gerekmektedir." + #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling IM address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. @@ -1404,11 +1585,31 @@ msgstr "Bu yanlış e-posta adresi." msgid "Email confirmation cancelled." msgstr "İptal etmek için beklenen onay yok." +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +#: actions/emailsettings.php:462 +#, fuzzy +msgid "That is not your email address." +msgstr "Yanlış IM adresi." + #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:483 msgid "The email address was removed." msgstr "Eposta adresi zaten var." +#: actions/emailsettings.php:497 actions/smssettings.php:568 +#, fuzzy +msgid "No incoming email address." +msgstr "Geçersiz bir eposta adresi." + +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#: actions/emailsettings.php:508 actions/emailsettings.php:532 +#: actions/smssettings.php:578 actions/smssettings.php:602 +#, fuzzy +msgid "Couldn't update user record." +msgstr "Kullanıcı güncellenemedi." + #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 msgid "Incoming email address removed." @@ -1466,6 +1667,11 @@ msgstr "" msgid "%s's favorite notices" msgstr "%s kullanıcısının favori durum mesajları" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 msgid "Featured users" @@ -1521,14 +1727,44 @@ msgstr "Takip talebine izin verildi" msgid "Could not convert request token to access token." msgstr "" +#: actions/finishremotesubscribe.php:118 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB protokolünün bilinmeğen sürümü." + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +#, fuzzy +msgid "Error updating remote profile." +msgstr "Uzaktaki profili güncellemede hata oluştu" + +#: actions/getfile.php:79 +#, fuzzy +msgid "No such file." +msgstr "Böyle bir durum mesajı yok." + #: actions/getfile.php:83 msgid "Cannot read file." msgstr "Profil kaydedilemedi." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Geçersiz büyüklük." + #: actions/grantrole.php:66 actions/revokerole.php:66 msgid "This role is reserved and cannot be set." msgstr "" +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Kullanıcının profili yok." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:79 @@ -1550,6 +1786,21 @@ msgstr "" msgid "Only an admin can block group members." msgstr "" +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bize o profili yollamadınız" + +#: actions/groupblock.php:134 actions/groupmembers.php:364 +#, fuzzy +msgid "Block user from group" +msgstr "Böyle bir kullanıcı yok." + #: actions/groupblock.php:160 #, php-format msgid "" @@ -1558,6 +1809,18 @@ msgid "" "the group in the future." msgstr "" +#. TRANS: Submit button title for 'No' when blocking a user from a group. +#: actions/groupblock.php:182 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +#: actions/groupblock.php:189 +#, fuzzy +msgid "Block this user from this group" +msgstr "Böyle bir kullanıcı yok." + #: actions/groupblock.php:206 msgid "Database error blocking user from group." msgstr "" @@ -1580,14 +1843,42 @@ msgid "" "palette of your choice." msgstr "" +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kullanıcı güncellenemedi." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#, fuzzy +msgid "Design preferences saved." +msgstr "Tercihler kaydedildi." + #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" msgstr "" +#: actions/grouplogo.php:153 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." msgstr "Resimden logo olacak bir kare alanı seçin." +#: actions/grouplogo.php:399 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar güncellendi." + +#: actions/grouplogo.php:401 +#, fuzzy +msgid "Failed updating logo." +msgstr "Avatar güncellemede hata." + #. TRANS: Title of the page showing group members. #. TRANS: %s is the name of the group. #: actions/groupmembers.php:102 @@ -1638,6 +1929,21 @@ msgctxt "TOOLTIP" msgid "Make this user an admin" msgstr "" +#. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. +#: actions/grouprss.php:139 actions/userrss.php:94 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#, fuzzy, php-format +msgid "%s timeline" +msgstr "Genel zaman çizgisi" + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#: actions/grouprss.php:142 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" @@ -1658,6 +1964,32 @@ msgid "" "%%%%)" msgstr "" +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Yeni hesap oluştur" + +#: actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " + +#: actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Kişi Arama" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Sonuç yok" + #: actions/groupsearch.php:82 #, php-format msgid "" @@ -1676,6 +2008,16 @@ msgstr "" msgid "Only an admin can unblock group members." msgstr "" +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/groupunblock.php:128 actions/unblock.php:86 +#, fuzzy +msgid "Error removing the block." +msgstr "Kullanıcıyı kaydetmede hata oluştu." + #. TRANS: Title for instance messaging settings. #: actions/imsettings.php:60 msgid "IM settings" @@ -1693,6 +2035,19 @@ msgstr "" "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " "ayarlarinizi aşağıda yapın." +#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. +#: actions/imsettings.php:94 +#, fuzzy +msgid "IM is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#. TRANS: Form legend for IM settings form. +#. TRANS: Field label for IM address input in IM settings form. +#: actions/imsettings.php:106 actions/imsettings.php:136 +#, fuzzy +msgid "IM address" +msgstr "IM adresi" + #: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." @@ -1738,6 +2093,18 @@ msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:175 +#, fuzzy +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." + +#. TRANS: Checkbox label in IM preferences form. +#: actions/imsettings.php:182 +#, fuzzy +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Onaylanmış Jabber/Gtalk adresi." + #. TRANS: Confirmation message for successful IM preferences save. #: actions/imsettings.php:290 actions/othersettings.php:180 msgid "Preferences saved." @@ -1784,6 +2151,12 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: actions/imsettings.php:400 +#, fuzzy +msgid "Couldn't delete IM confirmation." +msgstr "Eposta onayı silinemedi." + #. TRANS: Message given after successfully canceling IM address confirmation. #: actions/imsettings.php:405 msgid "IM confirmation cancelled." @@ -1795,6 +2168,12 @@ msgstr "Onay kodu yok." msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." +#. TRANS: Message given after successfully removing a registered IM address. +#: actions/imsettings.php:450 +#, fuzzy +msgid "The IM address was removed." +msgstr "Bu adres kaldırılmıştı." + #: actions/inbox.php:59 #, php-format msgid "Inbox for %1$s - page %2$d" @@ -1813,6 +2192,16 @@ msgstr "" msgid "Invites have been disabled." msgstr "" +#: actions/invite.php:41 +#, fuzzy, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "Kullanıcı güncellenemedi." + +#: actions/invite.php:72 +#, fuzzy, php-format +msgid "Invalid email address: %s" +msgstr "Geçersiz bir eposta adresi." + #: actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" @@ -1821,6 +2210,11 @@ msgstr "" msgid "Invite new users" msgstr "" +#: actions/invite.php:128 +#, fuzzy +msgid "You are already subscribed to these users:" +msgstr "Bize o profili yollamadınız" + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 @@ -1848,14 +2242,37 @@ msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" +#: actions/invite.php:187 +#, fuzzy +msgid "Email addresses" +msgstr "Eposta adresi zaten var." + #: actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" +#: actions/invite.php:192 +#, fuzzy +msgid "Personal message" +msgstr "Kişisel" + #: actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +#, fuzzy +msgctxt "BUTTON" +msgid "Send" +msgstr "Gönder" + +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. +#: actions/invite.php:228 +#, fuzzy, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English. #: actions/invite.php:231 #, php-format @@ -1892,6 +2309,11 @@ msgstr "" msgid "You must be logged in to join a group." msgstr "" +#: actions/joingroup.php:88 actions/leavegroup.php:88 +#, fuzzy +msgid "No nickname or ID." +msgstr "Takma ad yok" + #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" @@ -1901,6 +2323,17 @@ msgstr "" msgid "You must be logged in to leave a group." msgstr "" +#. TRANS: Error text shown when trying to leave an existing group the user is not a member of. +#: actions/leavegroup.php:100 lib/command.php:389 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Bize o profili yollamadınız" + +#: actions/leavegroup.php:137 +#, fuzzy, php-format +msgid "%1$s left group %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + #. TRANS: User admin panel title #: actions/licenseadminpanel.php:56 msgctxt "TITLE" @@ -1946,8 +2379,9 @@ msgid "License selection" msgstr "" #: actions/licenseadminpanel.php:245 +#, fuzzy msgid "Private" -msgstr "" +msgstr "Gizlilik" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" @@ -2013,6 +2447,11 @@ msgstr "Zaten giriş yapılmış." msgid "Incorrect username or password." msgstr "Yanlış kullanıcı adı veya parola." +#: actions/login.php:154 actions/otp.php:120 +#, fuzzy +msgid "Error setting user. You are probably not authorized." +msgstr "Yetkilendirilmemiş." + #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" msgstr "Giriş" @@ -2046,10 +2485,44 @@ msgstr "" msgid "Login with your username and password." msgstr "Yanlış kullanıcı adı veya parola." +#: actions/login.php:295 +#, fuzzy, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." + #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" +#: actions/makeadmin.php:96 +#, fuzzy, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "Kullanıcının profili yok." + +#: actions/makeadmin.php:133 +#, fuzzy, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "OpenID formu yaratılamadı: %s" + +#: actions/makeadmin.php:146 +#, fuzzy, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Kullanıcının profili yok." + +#: actions/microsummary.php:69 +#, fuzzy +msgid "No current status." +msgstr "Sonuç yok" + +#: actions/newapplication.php:52 +#, fuzzy +msgid "New Application" +msgstr "Böyle bir durum mesajı yok." + #: actions/newapplication.php:64 msgid "You must be logged in to register an application." msgstr "" @@ -2078,6 +2551,12 @@ msgstr "" msgid "New message" msgstr "" +#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#, fuzzy +msgid "You can't send a message to this user." +msgstr "Bize o profili yollamadınız" + #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. #: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 @@ -2114,6 +2593,11 @@ msgstr "" msgid "New notice" msgstr "Yeni durum mesajı" +#: actions/newnotice.php:227 +#, fuzzy +msgid "Notice posted" +msgstr "Durum mesajları" + #: actions/noticesearch.php:68 #, php-format msgid "" @@ -2127,6 +2611,11 @@ msgstr "" msgid "Text search" msgstr "Metin arama" +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr " \"%s\" için arama sonuçları" + #: actions/noticesearch.php:121 #, php-format msgid "" @@ -2141,6 +2630,16 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +#: actions/noticesearchrss.php:96 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/noticesearchrss.php:98 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" + #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." @@ -2179,6 +2678,11 @@ msgstr "" msgid "You have allowed the following applications to access your account." msgstr "" +#: actions/oauthconnectionssettings.php:175 +#, fuzzy +msgid "You are not a user of that application." +msgstr "Bize o profili yollamadınız" + #: actions/oauthconnectionssettings.php:186 #, php-format msgid "Unable to revoke access for app: %s." @@ -2201,12 +2705,35 @@ msgstr "Kullanıcının profili yok." msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#: actions/oembed.php:159 +#, fuzzy, php-format +msgid "Content type %s not supported." +msgstr "Bağlan" + #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:163 #, php-format msgid "Only %s URLs over plain HTTP please." msgstr "" +#. TRANS: Client error on an API request with an unsupported data format. +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 +#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#, fuzzy +msgid "Not a supported data format." +msgstr "Desteklenmeyen görüntü dosyası biçemi." + +#: actions/opensearch.php:64 +#, fuzzy +msgid "People Search" +msgstr "Kişi Arama" + +#: actions/opensearch.php:67 +#, fuzzy +msgid "Notice Search" +msgstr "Ara" + #: actions/othersettings.php:60 msgid "Other settings" msgstr "Profil ayarları" @@ -2227,10 +2754,40 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#: actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil ayarları" + #: actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" +#: actions/othersettings.php:153 +#, fuzzy +msgid "URL shortening service is too long (max 50 chars)." +msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." + +#: actions/otp.php:69 +#, fuzzy +msgid "No user ID specified." +msgstr "Yeni durum mesajı" + +#: actions/otp.php:83 +#, fuzzy +msgid "No login token specified." +msgstr "Yeni durum mesajı" + +#: actions/otp.php:90 +#, fuzzy +msgid "No login token requested." +msgstr "Yetkilendirme isteği yok!" + +#: actions/otp.php:95 +#, fuzzy +msgid "Invalid login token specified." +msgstr "Geçersiz durum mesajı" + #: actions/otp.php:104 msgid "Login token expired." msgstr "" @@ -2253,6 +2810,16 @@ msgstr "" msgid "Change password" msgstr "Parolayı değiştir" +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Parolayı değiştir" + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Parola kaydedildi." + #: actions/passwordsettings.php:104 msgid "Old password" msgstr "Eski parola" @@ -2278,6 +2845,11 @@ msgstr "yukarıdaki parolanın aynısı" msgid "Change" msgstr "Değiştir" +#: actions/passwordsettings.php:154 actions/register.php:237 +#, fuzzy +msgid "Password must be 6 or more characters." +msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." + #: actions/passwordsettings.php:157 actions/register.php:240 msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." @@ -2307,6 +2879,26 @@ msgstr "" msgid "Path and server settings for this StatusNet site" msgstr "" +#: actions/pathsadminpanel.php:157 +#, fuzzy, php-format +msgid "Theme directory not readable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/pathsadminpanel.php:163 +#, fuzzy, php-format +msgid "Avatar directory not writable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/pathsadminpanel.php:169 +#, fuzzy, php-format +msgid "Background directory not writable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/pathsadminpanel.php:177 +#, fuzzy, php-format +msgid "Locales directory not readable: %s." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + #: actions/pathsadminpanel.php:183 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" @@ -2327,6 +2919,11 @@ msgstr "" msgid "Path" msgstr "" +#: actions/pathsadminpanel.php:242 +#, fuzzy +msgid "Site path" +msgstr "Yeni durum mesajı" + #: actions/pathsadminpanel.php:246 msgid "Path to locales" msgstr "" @@ -2359,10 +2956,25 @@ msgstr "" msgid "Theme directory" msgstr "" +#: actions/pathsadminpanel.php:279 +#, fuzzy +msgid "Avatars" +msgstr "Avatar" + #: actions/pathsadminpanel.php:284 msgid "Avatar server" msgstr "Avatar" +#: actions/pathsadminpanel.php:288 +#, fuzzy +msgid "Avatar path" +msgstr "Avatar güncellendi." + +#: actions/pathsadminpanel.php:292 +#, fuzzy +msgid "Avatar directory" +msgstr "Avatar güncellendi." + #: actions/pathsadminpanel.php:301 msgid "Backgrounds" msgstr "" @@ -2387,6 +2999,11 @@ msgstr "" msgid "Never" msgstr "Sunucu" +#: actions/pathsadminpanel.php:324 +#, fuzzy +msgid "Sometimes" +msgstr "Durum mesajları" + #: actions/pathsadminpanel.php:325 msgid "Always" msgstr "" @@ -2407,6 +3024,11 @@ msgstr "Sunucu" msgid "Server to direct SSL requests to" msgstr "" +#: actions/pathsadminpanel.php:352 +#, fuzzy +msgid "Save paths" +msgstr "Yeni durum mesajı" + #: actions/peoplesearch.php:52 #, php-format msgid "" @@ -2421,6 +3043,16 @@ msgstr "" msgid "People search" msgstr "Kişi Arama" +#: actions/peopletag.php:68 +#, fuzzy, php-format +msgid "Not a valid people tag: %s." +msgstr "Geçersiz bir eposta adresi." + +#: actions/peopletag.php:142 +#, fuzzy, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/postnotice.php:95 msgid "Invalid notice content." msgstr "Geçersiz büyüklük." @@ -2468,6 +3100,16 @@ msgid "URL of your homepage, blog, or profile on another site" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +#: actions/profilesettings.php:122 actions/register.php:468 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: actions/profilesettings.php:125 actions/register.php:471 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + #: actions/profilesettings.php:127 actions/register.php:473 msgid "Bio" msgstr "Hakkında" @@ -2528,15 +3170,35 @@ msgstr "Yer bilgisi çok uzun (azm: %d karakter)." msgid "Timezone not selected." msgstr "" +#: actions/profilesettings.php:241 +#, fuzzy +msgid "Language is too long (max 50 chars)." +msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." + #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Geçersiz büyüklük." +#: actions/profilesettings.php:306 +#, fuzzy +msgid "Couldn't update user for autosubscribe." +msgstr "Kullanıcı güncellenemedi." + +#: actions/profilesettings.php:363 +#, fuzzy +msgid "Couldn't save location prefs." +msgstr "Profil kaydedilemedi." + #: actions/profilesettings.php:375 msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." +#: actions/profilesettings.php:383 +#, fuzzy +msgid "Couldn't save tags." +msgstr "Profil kaydedilemedi." + #. TRANS: Message after successful saving of administrative settings. #: actions/profilesettings.php:391 lib/adminpanelaction.php:138 msgid "Settings saved." @@ -2547,10 +3209,35 @@ msgstr "Ayarlar kaydedildi." msgid "Beyond the page limit (%s)." msgstr "" +#: actions/public.php:92 +#, fuzzy +msgid "Could not retrieve public stream." +msgstr "Kullanıcı güncellenemedi." + +#: actions/public.php:130 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Genel zaman çizgisi" + #: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" msgstr "Genel zaman çizgisi" +#: actions/public.php:160 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:164 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:168 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Genel Durum Akış RSS Beslemesi" + #: actions/public.php:188 #, php-format msgid "" @@ -2585,6 +3272,11 @@ msgid "" "tool." msgstr "" +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Genel Durum Akış RSS Beslemesi" + #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -2634,10 +3326,34 @@ msgstr "Onay kodu hatası." msgid "This confirmation code is too old. Please start again." msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." +#: actions/recoverpassword.php:111 +#, fuzzy +msgid "Could not update user with confirmed email address." +msgstr "Kullanıcı güncellenemedi." + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" +"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için " +"gerekli olan talimatlar yollanmıştır." + #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " msgstr "" +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recovery" +msgstr "Parola geri alma isteği" + +#: actions/recoverpassword.php:191 +#, fuzzy +msgid "Nickname or email address" +msgstr "Bir takma ad veya eposta adresi girin." + #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." @@ -2674,6 +3390,11 @@ msgstr "Sıfırla" msgid "Enter a nickname or email address." msgstr "Bir takma ad veya eposta adresi girin." +#: actions/recoverpassword.php:282 +#, fuzzy +msgid "No user with that email address or username." +msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." + #: actions/recoverpassword.php:299 msgid "No registered email address for that user." msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." @@ -2714,6 +3435,11 @@ msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." msgid "Sorry, only invited people can register." msgstr "" +#: actions/register.php:99 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Onay kodu hatası." + #: actions/register.php:119 msgid "Registration successful" msgstr "" @@ -2744,6 +3470,23 @@ msgid "" "link up to friends and colleagues. " msgstr "" +#: actions/register.php:432 +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" + +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters. Required." +msgstr "6 veya daha fazla karakter" + +#: actions/register.php:441 +#, fuzzy +msgid "Same as password above. Required." +msgstr "yukarıdaki parolanın aynısı" + #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 @@ -2780,6 +3523,16 @@ msgstr "" msgid "All rights reserved." msgstr "" +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#: actions/register.php:540 +#, fuzzy, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." + #: actions/register.php:583 #, php-format msgid "" @@ -2817,6 +3570,11 @@ msgstr "" msgid "Remote subscribe" msgstr "Uzaktan abonelik" +#: actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Takip talebine izin verildi" + #: actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Kullanıcı takma adı" @@ -2842,6 +3600,11 @@ msgstr "Abone ol" msgid "Invalid profile URL (bad format)" msgstr "" +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "Geçersiz profil adresi (YADIS belgesi yok)." + #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" @@ -2854,16 +3617,51 @@ msgstr "" msgid "Only logged-in users can repeat notices." msgstr "" +#: actions/repeat.php:64 actions/repeat.php:71 +#, fuzzy +msgid "No notice specified." +msgstr "Yeni durum mesajı" + +#: actions/repeat.php:76 +#, fuzzy +msgid "You can't repeat your own notice." +msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." + +#: actions/repeat.php:90 +#, fuzzy +msgid "You already repeated that notice." +msgstr "Zaten giriş yapmış durumdasıznız!" + #: actions/repeat.php:114 lib/noticelist.php:676 msgid "Repeated" msgstr "Sıfırla" +#: actions/repeat.php:119 +#, fuzzy +msgid "Repeated!" +msgstr "Yarat" + #: actions/replies.php:126 actions/repliesrss.php:68 #: lib/personalgroupnav.php:105 #, php-format msgid "Replies to %s" msgstr "%s için cevaplar" +#: actions/replies.php:128 +#, fuzzy, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "%s için cevaplar" + +#: actions/replies.php:145 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/replies.php:152 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + #: actions/replies.php:159 #, php-format msgid "Replies feed for %s (Atom)" @@ -2890,10 +3688,35 @@ msgid "" "newnotice%%%%?status_textarea=%3$s)." msgstr "" +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s için cevaplar" + +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kullanıcının profili yok." + #: actions/rsd.php:146 actions/version.php:159 msgid "StatusNet" msgstr "İstatistikler" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Kullanıcının profili yok." + #. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 #: lib/adminpanelaction.php:379 @@ -2928,11 +3751,36 @@ msgstr "Profil ayarları" msgid "You must be logged in to view an application." msgstr "" +#: actions/showapplication.php:157 +#, fuzzy +msgid "Application profile" +msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" + #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" msgstr "" +#. TRANS: Form input field label for application name. +#: actions/showapplication.php:169 actions/version.php:197 +#: lib/applicationeditform.php:190 +#, fuzzy +msgid "Name" +msgstr "Takma ad" + +#. TRANS: Form input field label. +#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#, fuzzy +msgid "Organization" +msgstr "Yer" + +#. TRANS: Form input field label. +#: actions/showapplication.php:187 actions/version.php:200 +#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Abonelikler" + #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 msgid "Statistics" @@ -2985,6 +3833,31 @@ msgstr "" msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "%s ve arkadaşları" + +#: actions/showfavorites.php:132 +#, fuzzy +msgid "Could not retrieve favorite notices." +msgstr "Profil kaydedilemedi." + +#: actions/showfavorites.php:171 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:178 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:185 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " @@ -3015,6 +3888,11 @@ msgstr "" msgid "%s group" msgstr "" +#: actions/showgroup.php:84 +#, fuzzy, php-format +msgid "%1$s group, page %2$d" +msgstr "Bütün abonelikler" + #: actions/showgroup.php:227 msgid "Group profile" msgstr "Kullanıcının profili yok." @@ -3024,6 +3902,12 @@ msgstr "Kullanıcının profili yok." msgid "URL" msgstr "" +#: actions/showgroup.php:283 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:195 +#, fuzzy +msgid "Note" +msgstr "Durum mesajları" + #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" msgstr "" @@ -3032,6 +3916,31 @@ msgstr "" msgid "Group actions" msgstr "" +#: actions/showgroup.php:338 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:344 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:350 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:355 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:393 actions/showgroup.php:445 +#, fuzzy +msgid "Members" +msgstr "Üyelik başlangıcı" + #: actions/showgroup.php:398 lib/profileaction.php:117 #: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 #: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 @@ -3042,6 +3951,11 @@ msgstr "" msgid "All members" msgstr "" +#: actions/showgroup.php:439 +#, fuzzy +msgid "Created" +msgstr "Yarat" + #: actions/showgroup.php:455 #, php-format msgid "" @@ -3065,6 +3979,11 @@ msgstr "" msgid "Admins" msgstr "" +#: actions/showmessage.php:81 +#, fuzzy +msgid "No such message." +msgstr "Böyle bir kullanıcı yok." + #: actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3079,11 +3998,41 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Durum mesajları" + #: actions/showstream.php:73 #, php-format msgid " tagged %s" msgstr "" +#: actions/showstream.php:79 +#, fuzzy, php-format +msgid "%1$s, page %2$d" +msgstr "%s ve arkadaşları" + +#: actions/showstream.php:122 +#, fuzzy, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:129 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:136 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:143 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + #: actions/showstream.php:148 #, php-format msgid "FOAF for %s" @@ -3124,10 +4073,20 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/showstream.php:305 +#, fuzzy, php-format +msgid "Repeat of %s" +msgstr "%s için cevaplar" + #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." msgstr "" +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Kullanıcının profili yok." + #: actions/siteadminpanel.php:69 msgid "Basic settings for this StatusNet site" msgstr "" @@ -3136,6 +4095,11 @@ msgstr "" msgid "Site name must have non-zero length." msgstr "" +#: actions/siteadminpanel.php:141 +#, fuzzy +msgid "You must have a valid contact email address." +msgstr "Geçersiz bir eposta adresi." + #: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." @@ -3153,6 +4117,11 @@ msgstr "" msgid "General" msgstr "" +#: actions/siteadminpanel.php:224 +#, fuzzy +msgid "Site name" +msgstr "Yeni durum mesajı" + #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" @@ -3173,6 +4142,16 @@ msgstr "" msgid "URL used for credits link in footer of each page" msgstr "" +#: actions/siteadminpanel.php:239 +#, fuzzy +msgid "Contact email address for your site" +msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." + +#: actions/siteadminpanel.php:245 +#, fuzzy +msgid "Local" +msgstr "Yer" + #: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" @@ -3217,14 +4196,29 @@ msgstr "Durum mesajları" msgid "Edit site-wide message" msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Durum mesajını kaydederken hata oluştu." + #: actions/sitenoticeadminpanel.php:113 msgid "Max length for the site-wide notice is 255 chars." msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Yeni durum mesajı" + #: actions/sitenoticeadminpanel.php:178 msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Yeni durum mesajı" + #. TRANS: Title for SMS settings. #: actions/smssettings.php:59 msgid "SMS settings" @@ -3237,6 +4231,18 @@ msgstr "Profil ayarları" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +#: actions/smssettings.php:97 +#, fuzzy +msgid "SMS is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#. TRANS: Form legend for SMS settings form. +#: actions/smssettings.php:111 +#, fuzzy +msgid "SMS address" +msgstr "IM adresi" + #. TRANS: Form guide in SMS settings form. #: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." @@ -3247,16 +4253,37 @@ msgstr "" msgid "Awaiting confirmation on this phone number." msgstr "" +#. TRANS: Field label for SMS address input in SMS settings form. +#: actions/smssettings.php:142 +#, fuzzy +msgid "Confirmation code" +msgstr "Onay kodu yok." + #. TRANS: Form field instructions in SMS settings form. #: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +#: actions/smssettings.php:148 +#, fuzzy +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Onayla" + #. TRANS: Field label for SMS phone number input in SMS settings form. #: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" +#. TRANS: SMS phone number input field instructions in SMS settings form. +#: actions/smssettings.php:156 +#, fuzzy +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" + #. TRANS: Form legend for SMS preferences form. #: actions/smssettings.php:195 msgid "SMS preferences" @@ -3269,11 +4296,35 @@ msgid "" "from my carrier." msgstr "" +#. TRANS: Confirmation message for successful SMS preferences save. +#: actions/smssettings.php:315 +#, fuzzy +msgid "SMS preferences saved." +msgstr "Tercihler kaydedildi." + +#. TRANS: Message given saving SMS phone number without having provided one. +#: actions/smssettings.php:338 +#, fuzzy +msgid "No phone number." +msgstr "Böyle bir kullanıcı yok." + #. TRANS: Message given saving SMS phone number without having selected a carrier. #: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" +#. TRANS: Message given saving SMS phone number that is already set. +#: actions/smssettings.php:352 +#, fuzzy +msgid "That is already your phone number." +msgstr "Bu zaten sizin Jabber ID'niz." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +#: actions/smssettings.php:356 +#, fuzzy +msgid "That phone number already belongs to another user." +msgstr "Jabber ID başka bir kullanıcıya ait." + #. TRANS: Message given saving valid SMS phone number that is to be confirmed. #: actions/smssettings.php:384 msgid "" @@ -3283,11 +4334,30 @@ msgstr "" "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " "mesaj yollanabilmesi için onaylamanız gerekmektedir." +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +#: actions/smssettings.php:413 +#, fuzzy +msgid "That is the wrong confirmation number." +msgstr "Yanlış IM adresi." + #. TRANS: Message given after successfully canceling SMS phone number confirmation. #: actions/smssettings.php:427 msgid "SMS confirmation cancelled." msgstr "Onay kodu yok." +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +#: actions/smssettings.php:448 +#, fuzzy +msgid "That is not your phone number." +msgstr "Bu sizin Jabber ID'niz değil." + +#. TRANS: Message given after successfully removing a registered SMS phone number. +#: actions/smssettings.php:470 +#, fuzzy +msgid "The SMS phone number was removed." +msgstr "Bu adres kaldırılmıştı." + #. TRANS: Label for mobile carrier dropdown menu in SMS settings. #: actions/smssettings.php:511 msgid "Mobile carrier" @@ -3307,6 +4377,12 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +#: actions/smssettings.php:548 +#, fuzzy +msgid "No code entered" +msgstr "İçerik yok!" + #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 #: lib/adminpanelaction.php:395 @@ -3361,6 +4437,16 @@ msgstr "" msgid "Snapshots will be sent to this URL" msgstr "" +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Ayarlar" + +#: actions/subedit.php:70 +#, fuzzy +msgid "You are not subscribed to that profile." +msgstr "Bize o profili yollamadınız" + #. TRANS: Exception thrown when a subscription could not be stored on the server. #: actions/subedit.php:83 classes/Subscription.php:136 msgid "Could not save subscription." @@ -3370,6 +4456,31 @@ msgstr "Yeni abonelik eklenemedi." msgid "This action only accepts POST requests." msgstr "" +#: actions/subscribe.php:107 +#, fuzzy +msgid "No such profile." +msgstr "Böyle bir durum mesajı yok." + +#: actions/subscribe.php:117 +#, fuzzy +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "Bize o profili yollamadınız" + +#: actions/subscribe.php:145 +#, fuzzy +msgid "Subscribed" +msgstr "Abone ol" + +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Abone olanlar" + +#: actions/subscribers.php:52 +#, fuzzy, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "Bütün abonelikler" + #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Sizin durumunuzu takip edenler" @@ -3397,6 +4508,16 @@ msgid "" "%) and be the first?" msgstr "" +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Bütün abonelikler" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "Bütün abonelikler" + #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" @@ -3416,6 +4537,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #: actions/subscriptions.php:208 msgid "Jabber" msgstr "Jabber" @@ -3424,11 +4550,41 @@ msgstr "Jabber" msgid "SMS" msgstr "" +#: actions/tag.php:69 +#, fuzzy, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/tag.php:87 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/tag.php:93 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/tag.php:99 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/tagother.php:39 +#, fuzzy +msgid "No ID argument." +msgstr "Böyle bir belge yok." + #: actions/tagother.php:65 #, php-format msgid "Tag %s" msgstr "" +#: actions/tagother.php:77 lib/userprofile.php:76 +#, fuzzy +msgid "User profile" +msgstr "Kullanıcının profili yok." + #: actions/tagother.php:81 actions/userauthorization.php:132 #: lib/userprofile.php:103 msgid "Photo" @@ -3461,6 +4617,31 @@ msgstr "" msgid "No such tag." msgstr "Böyle bir etiket yok." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Kullanıcının profili yok." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Kullanıcının profili yok." + +#: actions/unsubscribe.php:77 +#, fuzzy +msgid "No profile ID in request." +msgstr "Yetkilendirme isteği yok!" + +#: actions/unsubscribe.php:98 +#, fuzzy +msgid "Unsubscribed" +msgstr "Aboneliği sonlandır" + #: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" @@ -3516,6 +4697,21 @@ msgstr "Yeni kullanıcı karşılaması" msgid "Welcome text for new users (Max 255 chars)." msgstr "Yeni kullanıcılar için hoşgeldiniz metni (En fazla 255 karakter)." +#: actions/useradminpanel.php:242 +#, fuzzy +msgid "Default subscription" +msgstr "Bütün abonelikler" + +#: actions/useradminpanel.php:243 +#, fuzzy +msgid "Automatically subscribe new users to this user." +msgstr "Takip talebine izin verildi" + +#: actions/useradminpanel.php:252 +#, fuzzy +msgid "Invitations" +msgstr "Yer" + #: actions/useradminpanel.php:257 msgid "Invitations enabled" msgstr "" @@ -3532,6 +4728,17 @@ msgstr "" msgid "Authorize subscription" msgstr "Takip isteğini onayla" +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 #: lib/adminpanelaction.php:403 @@ -3606,6 +4813,21 @@ msgstr "" msgid "Avatar URL ‘%s’ is not valid." msgstr "" +#: actions/userauthorization.php:350 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Avatar URLi '%s' okunamıyor" + +#: actions/userauthorization.php:355 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%s için yanlış resim türü" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil ayarları" + #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" "Customize the way your profile looks with a background image and a colour " @@ -3616,10 +4838,21 @@ msgstr "" msgid "Enjoy your hotdog!" msgstr "" +#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. +#: actions/usergroups.php:66 +#, fuzzy, php-format +msgid "%1$s groups, page %2$d" +msgstr "Bütün abonelikler" + #: actions/usergroups.php:132 msgid "Search for more groups" msgstr "" +#: actions/usergroups.php:159 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Bize o profili yollamadınız" + #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." @@ -3736,6 +4969,29 @@ msgstr "" msgid "Invalid filename." msgstr "Geçersiz dosya ismi." +#. TRANS: Exception thrown when joining a group fails. +#: classes/Group_member.php:42 +#, fuzzy +msgid "Group join failed." +msgstr "Böyle bir durum mesajı yok." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +#: classes/Group_member.php:55 +#, fuzzy +msgid "Not part of group." +msgstr "Kullanıcı güncellenemedi." + +#. TRANS: Exception thrown when trying to leave a group fails. +#: classes/Group_member.php:63 +#, fuzzy +msgid "Group leave failed." +msgstr "Böyle bir durum mesajı yok." + +#: classes/Group_member.php:108 lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Giriş" + #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. #: classes/Group_member.php:112 @@ -3743,6 +4999,19 @@ msgstr "Geçersiz dosya ismi." msgid "%1$s has joined group %2$s." msgstr "" +#. TRANS: Server exception thrown when updating a local group fails. +#: classes/Local_group.php:42 +#, fuzzy +msgid "Could not update local group." +msgstr "Kullanıcı güncellenemedi." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#: classes/Login_token.php:78 +#, fuzzy, php-format +msgid "Could not create login token for %s" +msgstr "Avatar bilgisi kaydedilemedi" + #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." @@ -3753,6 +5022,18 @@ msgstr "" msgid "You are banned from sending direct messages." msgstr "" +#. TRANS: Message given when a message could not be stored on the server. +#: classes/Message.php:63 +#, fuzzy +msgid "Could not insert message." +msgstr "Yeni abonelik eklenemedi." + +#. TRANS: Message given when a message could not be updated on the server. +#: classes/Message.php:74 +#, fuzzy +msgid "Could not update message with new URI." +msgstr "Kullanıcı güncellenemedi." + #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #: classes/Notice.php:98 @@ -3766,6 +5047,18 @@ msgstr "" msgid "Database error inserting hashtag: %s" msgstr "Avatar eklemede hata oluştu" +#. TRANS: Client exception thrown if a notice contains too many characters. +#: classes/Notice.php:265 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Durum mesajını kaydederken hata oluştu." + +#. TRANS: Client exception thrown when trying to save a notice for an unknown user. +#: classes/Notice.php:270 +#, fuzzy +msgid "Problem saving notice. Unknown user." +msgstr "Durum mesajını kaydederken hata oluştu." + #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. #: classes/Notice.php:276 msgid "" @@ -3795,6 +5088,12 @@ msgstr "Durum mesajını kaydederken hata oluştu." msgid "Bad type provided to saveKnownGroups" msgstr "" +#. TRANS: Server exception thrown when an update for a group inbox fails. +#: classes/Notice.php:1005 +#, fuzzy +msgid "Problem saving group inbox." +msgstr "Durum mesajını kaydederken hata oluştu." + #. 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:1824 @@ -3816,11 +5115,41 @@ msgstr "" msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +#: classes/Remote_profile.php:54 +#, fuzzy +msgid "Missing profile." +msgstr "Kullanıcının profili yok." + +#. TRANS: Exception thrown when a tag cannot be saved. +#: classes/Status_network.php:338 +#, fuzzy +msgid "Unable to save tag." +msgstr "Durum mesajını kaydederken hata oluştu." + #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 msgid "You have been banned from subscribing." msgstr "" +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +#: classes/Subscription.php:80 +#, fuzzy +msgid "Already subscribed!" +msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" + +#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. +#: classes/Subscription.php:85 +#, fuzzy +msgid "User has blocked you." +msgstr "Kullanıcının profili yok." + +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +#: classes/Subscription.php:171 +#, fuzzy +msgid "Not subscribed!" +msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" + #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. #: classes/Subscription.php:178 msgid "Could not delete self-subscription." @@ -3872,11 +5201,35 @@ msgstr "Kullanıcı güncellenemedi." msgid "Could not save local group info." msgstr "Profil kaydedilemedi." +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:109 +#, fuzzy +msgid "Change your profile settings" +msgstr "Profil ayarları" + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:116 +#, fuzzy +msgid "Upload an avatar" +msgstr "Avatar güncellemede hata." + +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:123 +#, fuzzy +msgid "Change your password" +msgstr "Parolayı değiştir" + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:130 msgid "Change email handling" msgstr "" +#. TRANS: Link title attribute in user account settings menu. +#: lib/accountsettingsaction.php:137 +#, fuzzy +msgid "Design your profile" +msgstr "Kullanıcının profili yok." + #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:144 msgid "Other options" @@ -3887,6 +5240,12 @@ msgstr "" msgid "Other" msgstr "" +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#: lib/action.php:148 +#, fuzzy, php-format +msgid "%1$s - %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" @@ -3903,12 +5262,26 @@ msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" +#. TRANS: Main menu option when logged in for access to personal profile and friends timeline +#: lib/action.php:458 +#, fuzzy +msgctxt "MENU" +msgid "Personal" +msgstr "Kişisel" + #. TRANS: Tooltip for main menu option "Account" #: lib/action.php:460 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin" +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:465 +#, fuzzy +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:468 msgid "Connect" @@ -3946,6 +5319,13 @@ msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" +#. TRANS: Main menu option when logged in to log out the current user +#: lib/action.php:490 +#, fuzzy +msgctxt "MENU" +msgid "Logout" +msgstr "Çıkış" + #. TRANS: Tooltip for main menu option "Register" #: lib/action.php:495 msgctxt "TOOLTIP" @@ -3991,11 +5371,30 @@ msgctxt "MENU" msgid "Search" msgstr "Ara" +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:538 lib/adminpanelaction.php:387 +#, fuzzy +msgid "Site notice" +msgstr "Yeni durum mesajı" + #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:605 msgid "Local views" msgstr "" +#. TRANS: DT element for page notice. String is hidden in default CSS. +#: lib/action.php:675 +#, fuzzy +msgid "Page notice" +msgstr "Yeni durum mesajı" + +#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. +#: lib/action.php:778 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Abonelikler" + #. TRANS: Secondary navigation menu option leading to help on StatusNet. #: lib/action.php:784 msgid "Help" @@ -4040,6 +5439,19 @@ msgstr "" msgid "StatusNet software license" msgstr "StatusNet yazılım lisansı" +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#: lib/action.php:846 +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" +"**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " +"hazırlanan anında mesajlaşma ağıdır. " + #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #: lib/action.php:849 #, php-format @@ -4198,11 +5610,23 @@ msgstr "Erişim yapılandırması" msgid "Paths configuration" msgstr "Yol yapılandırması" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:377 +#, fuzzy +msgid "Sessions configuration" +msgstr "Eposta adresi onayı" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:385 msgid "Edit site notice" msgstr "Site durum mesajını düzenle" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:393 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Eposta adresi onayı" + #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" @@ -4254,11 +5678,43 @@ msgstr "Uygulamayı düzenle" msgid "Icon for this application" msgstr "Bu uygulama için simge" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:200 +#, fuzzy, php-format +msgid "Describe your application in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:204 +#, fuzzy +msgid "Describe your application" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:215 +#, fuzzy +msgid "URL of the homepage of this application" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + +#. TRANS: Form input field label. +#: lib/applicationeditform.php:217 +#, fuzzy +msgid "Source URL" +msgstr "Kaynak" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:224 msgid "Organization responsible for this application" msgstr "" +#. TRANS: Form input field instructions. +#: lib/applicationeditform.php:233 +#, fuzzy +msgid "URL for the homepage of the organization" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + #. TRANS: Form input field instructions. #: lib/applicationeditform.php:242 msgid "URL to redirect to after authentication" @@ -4346,6 +5802,16 @@ msgstr "" msgid "Tags for this attachment" msgstr "" +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#, fuzzy +msgid "Password changing failed" +msgstr "Parola kaydedildi." + +#: lib/authenticationplugin.php:236 +#, fuzzy +msgid "Password changing is not allowed" +msgstr "Parola kaydedildi." + #. TRANS: Title for the form to block a user. #: lib/blockform.php:70 msgid "Block" @@ -4368,6 +5834,20 @@ msgstr "" msgid "Notice with that id does not exist." msgstr "" +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +#: lib/command.php:101 lib/command.php:630 +#, fuzzy +msgid "User has no last notice." +msgstr "Kullanıcının profili yok." + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#: lib/command.php:130 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s." +msgstr "Kullanıcı güncellenemedi." + #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #: lib/command.php:150 @@ -4436,6 +5916,13 @@ msgstr "Tam İsim: %s" msgid "Location: %s" msgstr "Yer: %s" +#. TRANS: Whois output. %s is the homepage of the queried user. +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/command.php:442 lib/mail.php:271 +#, fuzzy, php-format +msgid "Homepage: %s" +msgstr "Başlangıç Sayfası" + #. TRANS: Whois output. %s is the bio information of the queried user. #: lib/command.php:446 #, php-format @@ -4457,6 +5944,19 @@ msgstr "" msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +#: lib/command.php:517 +#, fuzzy +msgid "Error sending direct message." +msgstr "Kullanıcı ayarlamada hata oluştu." + +#. 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:554 +#, fuzzy, php-format +msgid "Notice from %s repeated." +msgstr "Durum mesajları" + #. TRANS: Error text shown when repeating a notice fails with an unknown reason. #: lib/command.php:557 msgid "Error repeating notice." @@ -4469,11 +5969,30 @@ msgstr "Kullanıcı ayarlamada hata oluştu." msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" +#. 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:603 +#, fuzzy, php-format +msgid "Reply to %s sent." +msgstr "%s için cevaplar" + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +#: lib/command.php:606 +#, fuzzy +msgid "Error saving notice." +msgstr "Durum mesajını kaydederken hata oluştu." + #. TRANS: Error text shown when no username was provided when issuing a subscribe command. #: lib/command.php:655 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:664 +#, fuzzy +msgid "Can't subscribe to OMB profiles by command." +msgstr "Bize o profili yollamadınız" + #. 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:672 @@ -4500,11 +6019,23 @@ msgstr "" msgid "Command not yet implemented." msgstr "" +#. TRANS: Text shown when issuing the command "off" successfully. +#: lib/command.php:728 +#, fuzzy +msgid "Notification off." +msgstr "Onay kodu yok." + #. TRANS: Error text shown when the command "off" fails for an unknown reason. #: lib/command.php:731 msgid "Can't turn off notification." msgstr "" +#. TRANS: Text shown when issuing the command "on" successfully. +#: lib/command.php:754 +#, fuzzy +msgid "Notification on." +msgstr "Onay kodu yok." + #. TRANS: Error text shown when the command "on" fails for an unknown reason. #: lib/command.php:757 msgid "Can't turn on notification." @@ -4529,6 +6060,12 @@ msgstr "" msgid "Unsubscribed %s." msgstr "" +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +#: lib/command.php:831 +#, fuzzy +msgid "You are not subscribed to anyone." +msgstr "Bize o profili yollamadınız" + #. 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. @@ -4537,6 +6074,13 @@ msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +#: lib/command.php:858 +#, fuzzy +msgid "No one is subscribed to you." +msgstr "Uzaktan abonelik" + #. 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. @@ -4545,6 +6089,13 @@ msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +#: lib/command.php:885 +#, fuzzy +msgid "You are not a member of any groups." +msgstr "Bize o profili yollamadınız" + #. 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. @@ -4596,6 +6147,11 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" +#: lib/common.php:135 +#, fuzzy +msgid "No configuration file found. " +msgstr "Onay kodu yok." + #: lib/common.php:136 msgid "I looked for configuration files in the following places: " msgstr "" @@ -4620,6 +6176,11 @@ msgstr "" msgid "Updates by SMS" msgstr "" +#: lib/connectsettingsaction.php:120 +#, fuzzy +msgid "Connections" +msgstr "Bağlan" + #: lib/connectsettingsaction.php:121 msgid "Authorized connected applications" msgstr "" @@ -4628,6 +6189,18 @@ msgstr "" msgid "Database error" msgstr "" +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Yükle" + +#: lib/designsettings.php:109 +#, fuzzy +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + #: lib/designsettings.php:418 msgid "Design defaults restored." msgstr "" @@ -4636,6 +6209,11 @@ msgstr "" msgid "Disfavor this notice" msgstr "" +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "Böyle bir durum mesajı yok." + #: lib/feed.php:85 msgid "RSS 1.0" msgstr "RSS 1.0" @@ -4685,6 +6263,28 @@ msgstr "" msgid "Grant this user the \"%s\" role" msgstr "" +#: lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" + #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" @@ -4784,6 +6384,12 @@ msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." +#: lib/imagefile.php:88 +#, fuzzy, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + #: lib/imagefile.php:93 msgid "Partial upload." msgstr "Kısmi yükleme." @@ -4797,6 +6403,11 @@ msgstr "Dosya yüklemede sistem hatası." msgid "Not an image or corrupt file." msgstr "Bu bir resim dosyası değil ya da dosyada hata var" +#: lib/imagefile.php:122 +#, fuzzy +msgid "Lost our file." +msgstr "Böyle bir durum mesajı yok." + #: lib/imagefile.php:163 lib/imagefile.php:224 msgid "Unknown file type" msgstr "" @@ -4819,6 +6430,21 @@ msgstr "" msgid "Unknown inbox source %d." msgstr "" +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Kaydet" + +#: lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Geçersiz kullanıcı adı veya parola." + +#: lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Yeni hesap oluştur" + #. TRANS: Subject for address confirmation email #: lib/mail.php:174 msgid "Email address confirmation" @@ -4855,6 +6481,40 @@ msgid "" "your subscribers list and report as spam to site administrators at %s" msgstr "" +#. TRANS: Main body of new-subscriber notification e-mail +#: lib/mail.php:254 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" + +#. TRANS: Profile info line in new-subscriber notification e-mail +#: lib/mail.php:274 +#, fuzzy, php-format +msgid "Bio: %s" +msgstr "Hakkında" + +#. TRANS: Subject of notification mail for new posting email address +#: lib/mail.php:304 +#, fuzzy, php-format +msgid "New email address for posting to %s" +msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." + #. TRANS: Body of notification mail for new posting email address #: lib/mail.php:308 #, php-format @@ -4875,6 +6535,12 @@ msgstr "" msgid "%s status" msgstr "%s durum" +#. TRANS: Subject line for SMS-by-email address confirmation message +#: lib/mail.php:460 +#, fuzzy +msgid "SMS confirmation" +msgstr "Onay kodu yok." + #. TRANS: Main body heading for SMS-by-email address confirmation message #: lib/mail.php:463 #, php-format @@ -4930,6 +6596,12 @@ msgid "" "%5$s\n" msgstr "" +#. TRANS: Subject for favorite notification email +#: lib/mail.php:589 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Body for favorite notification email #: lib/mail.php:592 #, php-format @@ -5008,10 +6680,30 @@ msgstr "" msgid "from" msgstr "" +#: lib/mailhandler.php:37 +#, fuzzy +msgid "Could not parse message." +msgstr "Kullanıcı güncellenemedi." + +#: lib/mailhandler.php:42 +#, fuzzy +msgid "Not a registered user." +msgstr "Bir geri alma kodu değil." + +#: lib/mailhandler.php:46 +#, fuzzy +msgid "Sorry, that is not your incoming email address." +msgstr "Yanlış IM adresi." + #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." msgstr "" +#: lib/mailhandler.php:228 +#, fuzzy, php-format +msgid "Unsupported message type: %s" +msgstr "Desteklenmeyen görüntü dosyası biçemi." + #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." @@ -5060,6 +6752,13 @@ msgstr "" msgid "File could not be moved to destination directory." msgstr "" +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +#: lib/mediafile.php:216 lib/mediafile.php:257 +#, fuzzy +msgid "Could not determine file's MIME type." +msgstr "Kullanıcı güncellenemedi." + #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of #. TRANS: the MIME type that was denied. @@ -5085,6 +6784,22 @@ msgstr "" msgid "To" msgstr "" +#: lib/messageform.php:159 lib/noticeform.php:186 +#, fuzzy +msgid "Available characters" +msgstr "6 veya daha fazla karakter" + +#: lib/messageform.php:178 lib/noticeform.php:237 +#, fuzzy +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Gönder" + +#: lib/noticeform.php:160 +#, fuzzy +msgid "Send a notice" +msgstr "Yeni durum mesajı" + #: lib/noticeform.php:174 #, php-format msgid "What's up, %s?" @@ -5098,6 +6813,16 @@ msgstr "" msgid "Attach a file" msgstr "" +#: lib/noticeform.php:213 +#, fuzzy +msgid "Share my location" +msgstr "Profil kaydedilemedi." + +#: lib/noticeform.php:216 +#, fuzzy +msgid "Do not share my location" +msgstr "Profil kaydedilemedi." + #: lib/noticeform.php:217 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " @@ -5137,6 +6862,16 @@ msgstr "" msgid "web" msgstr "" +#: lib/noticelist.php:568 +#, fuzzy +msgid "in context" +msgstr "İçerik yok!" + +#: lib/noticelist.php:603 +#, fuzzy +msgid "Repeated by" +msgstr "Yarat" + #: lib/noticelist.php:630 msgid "Reply to this notice" msgstr "" @@ -5145,6 +6880,11 @@ msgstr "" msgid "Reply" msgstr "Cevaplar" +#: lib/noticelist.php:675 +#, fuzzy +msgid "Notice repeated" +msgstr "Durum mesajları" + #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "" @@ -5228,6 +6968,11 @@ msgstr "Bütün abonelikler" msgid "Subscribers" msgstr "Abone olanlar" +#: lib/profileaction.php:161 +#, fuzzy +msgid "All subscribers" +msgstr "Abone olanlar" + #: lib/profileaction.php:191 msgid "User ID" msgstr "" @@ -5265,10 +7010,35 @@ msgstr "" msgid "Featured" msgstr "" +#: lib/publicgroupnav.php:92 +#, fuzzy +msgid "Popular" +msgstr "Kişi Arama" + +#: lib/redirectingaction.php:95 +#, fuzzy +msgid "No return-to arguments." +msgstr "Böyle bir belge yok." + +#: lib/repeatform.php:107 +#, fuzzy +msgid "Repeat this notice?" +msgstr "Böyle bir durum mesajı yok." + #: lib/repeatform.php:132 msgid "Yes" msgstr "" +#: lib/repeatform.php:132 +#, fuzzy +msgid "Repeat this notice" +msgstr "Böyle bir durum mesajı yok." + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Böyle bir kullanıcı yok." + #: lib/router.php:711 msgid "No single user defined for single-user mode." msgstr "" @@ -5277,6 +7047,17 @@ msgstr "" msgid "Sandbox" msgstr "" +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Böyle bir kullanıcı yok." + +#. TRANS: Fieldset legend for the search form. +#: lib/searchaction.php:121 +#, fuzzy +msgid "Search site" +msgstr "Ara" + #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. #: lib/searchaction.php:129 @@ -5288,6 +7069,17 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Definition list item with instructions on how to get (better) search results. +#: lib/searchaction.php:170 +#, fuzzy +msgid "Search help" +msgstr "Ara" + +#: lib/searchgroupnav.php:80 +#, fuzzy +msgid "People" +msgstr "Kişi Arama" + #: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "" @@ -5308,6 +7100,26 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Yeni durum mesajı" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Uzaktan abonelik" + +#: lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Uzaktan abonelik" + #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" @@ -5344,6 +7156,13 @@ msgstr "" msgid "The theme file is missing or the upload failed." msgstr "" +#: lib/themeuploader.php:91 lib/themeuploader.php:102 +#: lib/themeuploader.php:278 lib/themeuploader.php:282 +#: lib/themeuploader.php:290 lib/themeuploader.php:297 +#, fuzzy +msgid "Failed saving theme." +msgstr "Avatar güncellemede hata." + #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." msgstr "" @@ -5372,6 +7191,11 @@ msgstr "" msgid "Theme contains file of type '.%s', which is not allowed." msgstr "" +#: lib/themeuploader.php:259 +#, fuzzy +msgid "Error opening theme archive." +msgstr "Uzaktaki profili güncellemede hata oluştu" + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "" @@ -5380,14 +7204,34 @@ msgstr "" msgid "Unsandbox" msgstr "" +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Böyle bir kullanıcı yok." + #: lib/unsilenceform.php:67 msgid "Unsilence" msgstr "" +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Bize o profili yollamadınız" + #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Aboneliği sonlandır" +#: lib/userprofile.php:117 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + #: lib/userprofile.php:234 lib/userprofile.php:248 msgid "User actions" msgstr "" @@ -5396,6 +7240,11 @@ msgstr "" msgid "User deletion in progress..." msgstr "" +#: lib/userprofile.php:263 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil ayarları" + #: lib/userprofile.php:264 msgid "Edit" msgstr "" @@ -5412,6 +7261,11 @@ msgstr "" msgid "Moderate" msgstr "" +#: lib/userprofile.php:364 +#, fuzzy +msgid "User role" +msgstr "Kullanıcının profili yok." + #: lib/userprofile.php:366 msgctxt "role" msgid "Administrator" @@ -5480,6 +7334,11 @@ msgstr[0] "" msgid "about a year ago" msgstr "yaklaşık bir yıl önce" +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." + #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." @@ -5487,14 +7346,15 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format -msgid "Backup file for user %s (%s)\n" +msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "Yeni durum mesajı" #: scripts/restoreuser.php:94 #, php-format -msgid "%d entries in backup.\n" +msgid "%d entries in backup." msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index d5d0de4081..73c7a91b71 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:41+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1129,7 +1129,7 @@ msgstr "Дизайн" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Налаштування дизайну для цього сайту StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1898,7 +1898,7 @@ msgstr "Блок" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Блокувати користувача" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2353,105 +2353,107 @@ msgstr "%1$s залишив групу %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Ліцензія" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Ліцензія для цього сайту StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Невірний вибір ліцензії." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Ви повинні зазначити власника змісту повідомлень, якщо збираєтесь " +"використовувати варіант «Всі права захищені»." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Помилковий назва ліцензії. Максимальна довжина — 255 символів." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Помилкова URL-адреса ліцензії." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Помилкова URL-адреса логотипу ліцензії." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Адреса ліцензії має бути порожньою або містити коректний URL." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Адреса логотипу ліцензії має бути порожньою або містити коректний URL." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Вибір ліцензії" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Приватно" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Всі права захищені." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Кріейтів Комонс" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Тип" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Оберіть ліцензію" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Подробиці ліцензії" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Власник" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Ім’я власника усього змісту на сайті (якщо він є)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Назва ліцензії" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Назва ліцензії." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL-адреса ліцензії" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL-адреса додаткової інформації щодо ліцензії." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL-адреса логотипу ліцензії" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL-адреса зображення (логотипу) для показу поруч з ліцензією" #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Зберегти налаштування ліцензії" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2693,7 +2695,7 @@ msgstr "Під’єднані додатки" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Ви дозволили наступним додаткам доступ до Вашого акаунту." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2883,7 +2885,7 @@ msgstr "Шлях" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Параметри серверу та шляху для даного сайту StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3738,7 +3740,7 @@ msgstr "Сесії" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Налаштування сесії для даного сайту StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4682,7 +4684,7 @@ msgstr "Користувач" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Налаштування користувача даного сайту StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4746,7 +4748,7 @@ msgstr "" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Зберегти налаштування користувача" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4971,7 +4973,7 @@ msgstr "Обрати" #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." -msgstr "" +msgstr "%s додав допис %s до списку обраних." #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 @@ -5038,7 +5040,7 @@ msgstr "Приєднатись" #: classes/Group_member.php:112 #, 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. #: classes/Local_group.php:42 @@ -5202,12 +5204,12 @@ msgstr "Не вдалося видалити підписку." #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "Слідкувати" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s тепер слідкує за %s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5655,7 +5657,7 @@ msgstr "Конфігурація знімків" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Зазначте ліцензію сайту" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6287,7 +6289,7 @@ msgstr "FOAF" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Веб-стрічки" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7480,15 +7482,18 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s неприпустимий колір! Використайте 3 або 6 знаків (HEX-формат)" #: scripts/restoreuser.php:82 -#, php-format -msgid "Backup file for user %s (%s)\n" -msgstr "" +#, fuzzy, php-format +msgid "Backup file for user %s (%s)" +msgstr "Резервна копія файлів для користувача %s (%s)\n" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" +#, fuzzy +msgid "No user specified; using backup user." msgstr "" +"Користувача не зазначено; для початку створення резервної копії потрібно " +"зазначити користувача.\n" #: scripts/restoreuser.php:94 -#, php-format -msgid "%d entries in backup.\n" -msgstr "" +#, fuzzy, php-format +msgid "%d entries in backup." +msgstr "У резервному файлі збережено %d дописів.\n" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index e843713e83..0b28c480b3 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:41+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1284-84-94 56::+0000\n" +"X-POT-Import-Date: 1285-66-16 72::+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -167,7 +167,7 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"尝试关注更多的人、[加入一个小组] (%%action.groups%%) 或者自己发一些东西。" +"尝试关注更多的人、[加入一个小组](%%action.groups%%) 或者自己发一些东西。" #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" #: actions/all.php:146 @@ -734,7 +734,7 @@ msgstr "带 %s 标签的消息" #: actions/apitimelinetag.php:107 actions/tagrss.php:65 #, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "" +msgstr "%2$s 上有 %1$s 标签的消息!" #: actions/apitrends.php:87 msgid "API method under construction." @@ -1111,7 +1111,7 @@ msgstr "外观" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "这个 StatusNet 网站的外观设置" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1604,16 +1604,16 @@ msgstr "取消收藏" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 msgid "Popular notices" -msgstr "收藏最多的消息" +msgstr "最新被收藏的消息" #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" -msgstr "收藏最多的消息,第%d页" +msgstr "最新被收藏的消息,第%d页" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." -msgstr "目前网站上被收藏最多的消息。" +msgstr "目前网站上最新被收藏的消息。" #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." @@ -1868,7 +1868,7 @@ msgstr "屏蔽" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "屏蔽这个用户" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2302,105 +2302,105 @@ msgstr "%1$s离开了%2$s小组。" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "许可协议" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "这个 StatusNet 网站的许可协议" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "无效的许可协议选择。" #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." -msgstr "" +msgstr "当使用版权所有的许可协议时,你必须指定内容的所有者。" #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "无效的许可协议标题。最大长度255个字符。" #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "无效的许可协议 URL。" #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "无效的许可协议图片 URL。" #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "许可协议 URL 必须是个有效的 URL 或者为空。" #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "许可协议图片 URL 必须是个有效的 URL 或者为空。" #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "许可协议选择" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "私有" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "版权所有" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "创作共用" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "类型" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "选择许可协议" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "许可协议细节" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "所有者" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "这个网站内容的所有者姓名(如果适用)。" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "许可协议标题" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "许可协议的标题。" #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "许可协议 URL" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "更多许可协议信息的 URL。" #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "许可协议图片 URL。" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "与许可协议一起出现的图片 URL。" #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "保存许可协议设置" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2632,7 +2632,7 @@ msgstr "关联的应用" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "你已允许以下程序访问你的帐号。" #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2820,7 +2820,7 @@ msgstr "路径" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "这个 StatusNet 网站的路径和服务器设置。" #: actions/pathsadminpanel.php:157 #, php-format @@ -3645,7 +3645,7 @@ msgstr "Sessions" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "这个 StatusNet 网站的 session 设置" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4561,7 +4561,7 @@ msgstr "用户" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "这个 StatusNet 网站的用户设置" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4624,7 +4624,7 @@ msgstr "是否允许用户发送注册邀请。" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "保存用户设置" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4834,7 +4834,7 @@ msgstr "收藏" #: classes/Fave.php:148 #, php-format msgid "%s marked notice %s as a favorite." -msgstr "" +msgstr "%s 将消息 %s 添加到了收藏。" #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:143 @@ -4900,7 +4900,7 @@ msgstr "加入" #: classes/Group_member.php:112 #, 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. #: classes/Local_group.php:42 @@ -5059,12 +5059,12 @@ msgstr "无法取消关注。" #: classes/Subscription.php:254 msgid "Follow" -msgstr "" +msgstr "关注" #: classes/Subscription.php:255 #, php-format msgid "%s is now following %s." -msgstr "" +msgstr "%s 现在开始关注 %s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5509,7 +5509,7 @@ msgstr "更改站点配置" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "设置网站许可协议" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -6129,7 +6129,7 @@ msgstr "FOAF" #: lib/feedlist.php:64 msgid "Feeds" -msgstr "" +msgstr "Feeds" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7296,15 +7296,16 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" #: scripts/restoreuser.php:82 -#, php-format -msgid "Backup file for user %s (%s)\n" -msgstr "" +#, fuzzy, php-format +msgid "Backup file for user %s (%s)" +msgstr "用户 %s (%s) 的备份文件\n" #: scripts/restoreuser.php:88 -msgid "No user specified; using backup user.\n" -msgstr "" +#, fuzzy +msgid "No user specified; using backup user." +msgstr "N没有用户被指定;使用备份用户。\n" #: scripts/restoreuser.php:94 -#, php-format -msgid "%d entries in backup.\n" -msgstr "" +#, fuzzy, php-format +msgid "%d entries in backup." +msgstr "备份中有 %d 个条目。\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..439633c746 --- /dev/null +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Приклучок за испробување на распоредот на рекламите." diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..09de4e9c76 --- /dev/null +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlankAd to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"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" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Плагин для тестирования рекламных модулей." diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..cbf11bca10 --- /dev/null +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Pamasak para sa pagsubok ng pagkakalatag ng anunsyo." diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..e73576b70f --- /dev/null +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlankAd to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 94::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"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" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Додаток для тестування рекламної схеми." diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..10525a781c --- /dev/null +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 95::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: BlogspamNetPlugin.php:152 +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 new file mode 100644 index 0000000000..20a1cc5e97 --- /dev/null +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - BlogspamNet to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 95::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "" +"Pamasak upang masuri ang ipinasang mga pabatid sa pamamagitan ng blogspam." +"net." diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..9efacdbe0c --- /dev/null +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlogspamNet to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-94 95::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"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" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Додаток для перевірки вказаних повідомлень на blogspam.net." diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..caa63ae346 --- /dev/null +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 25::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..a41a7236d8 --- /dev/null +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 25::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/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 new file mode 100644 index 0000000000..8df01db34a --- /dev/null +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 25::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"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" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Додаток для оновлення стрічки у «реальному часі» використовуючи Comet/Bayeux." diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..93ccaad68e --- /dev/null +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DiskCache to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Приклучок за примена на кеш-посредник со податотеки на дискот." diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..65350c4c89 --- /dev/null +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DiskCache to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Pampasak upang maipatupad ang ugnayang-mukha ng taguan na may mga talaksan " +"ng disko." diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..6a7e96cad0 --- /dev/null +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DiskCache to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"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" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Додаток для збереження кешу інтерфейсу на дисках." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..a00d4b7676 --- /dev/null +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Disqus to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DisqusPlugin.php:135 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Schakel JavaScript in om de [reacties via Disqus](http://disqus.com/?" +"ref_noscript=%s) te kunnen bekijken." + +#: DisqusPlugin.php:142 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:250 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Disqus gebruiken om opmerkingen toe te " +"voegen aan mededelingenpagina's." diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..e50e62ca94 --- /dev/null +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - Disqus to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DisqusPlugin.php:135 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Mangyaring paganahin ang JavaScript upang matingnan ang [mga punang " +"pinapatakbo ng Disqus](http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:142 +msgid "Comments powered by " +msgstr "Mga puna na pinatatakbo ng " + +#: DisqusPlugin.php:250 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Gamitin ang Disqus upang magdagdag ng " +"pagpuna sa mga pahina ng pabatid." diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..30e505f913 --- /dev/null +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -0,0 +1,44 @@ +# Translation of StatusNet - Disqus to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 27::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"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" + +#: DisqusPlugin.php:135 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Будь ласка, увімкніть JavaScript для перегляду [коментарів Disqus](http://" +"disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:142 +msgid "Comments powered by " +msgstr "Коментування можливе завдяки сервісу " + +#: DisqusPlugin.php:250 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Використання Disqus для коментування " +"дописів." diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index dc90bf8c38..a1c614f3e9 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 1285-62-95 32::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" @@ -30,6 +30,8 @@ msgid "" "ImapManager should be created using its constructor, not the using the " "static get method." msgstr "" +"Dapat na likhain ang ImapManager sa pamamagitan ng pambuo nito, hindi sa " +"paggamit ng paraang hindi gumagalaw ang pagkuha." #: ImapPlugin.php:54 msgid "A mailbox must be specified." diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..49bcacc62e --- /dev/null +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - LilUrl to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"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" + +#: LilUrlPlugin.php:43 +msgid "A serviceUrl must be specified." +msgstr "Должен быть указан URL-адрес сервису." + +#: LilUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Использование службы сокращения URL %1$s." diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 5b9cfd8a21..dab91db1b0 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 1285-62-95 34::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" @@ -23,7 +23,7 @@ msgstr "" #: LilUrlPlugin.php:43 msgid "A serviceUrl must be specified." -msgstr "" +msgstr "Dapat tukuyin ang isang URL ng palingkuran." #: LilUrlPlugin.php:68 #, php-format diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..ec855bad38 --- /dev/null +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 96::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Не можев да се поврзам со %1$s на %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Грешка при додавање на Meteor-овата порака „%s“" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..29856f207b --- /dev/null +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - Meteor to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 96::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Hindi makaugnay sa %1$s sa %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Kamalian sa pagdaragdag ng mensahe ng meteor na \"%s\"" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Pamasak upang makagawa ng mga pagsasapanahong nasa \"tunay na panahon\" na " +"gimagamitan ng Comet/Bayeux." diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..0295fd9b7e --- /dev/null +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - Meteor to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 96::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Не вдається підключитися до %1$s на %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Помилка при додаванні швидкого повідомлення «%s»" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Додаток для оновлення стрічки повідомлень у «реальному часі» використовуючи " +"Comet/Bayeux." diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..59b93c1f70 --- /dev/null +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,80 @@ +# Translation of StatusNet - MobileProfile to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:44+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 1285-62-95 97::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Ang pahinang ito ay hindi makukuha sa uri ng midya na tinanggap mo." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Tahanan" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Akawnt" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Umugnay" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Tagapangasiwa" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "Baguhin ang pagkakaayos ng sityo" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Anyayahan" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Umalis sa pagkakalagda" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Magpatala" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Lumagda" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Humanap" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Ilakip" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Maglakip ng isang talaksan" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" +"Mga paglalabas na XHTML na MobileProfile para sa pagtataguyo ng mga ahente " +"ng tagagamit." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 7c78051cf1..7a4127c384 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: 2010-09-28 17:26:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 1285-62-95 99::+0000\n" +"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -87,9 +87,9 @@ msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." msgstr "" -"Den folgenden Seiten ist es erlaubt Ihre Identität abzufragen und Sie damit " -"anzumelden. Sie können eine Website aus dieser Liste entfernen um ihr den " -"Zugriff auf Ihre OpenID zu verweigern." +"Den folgenden Seiten ist es erlaubt, deine Identität abzufragen und dich " +"damit anzumelden. Du kannst eine Website aus dieser Liste entfernen, um ihr " +"den Zugriff auf deine OpenID zu verweigern." #. TRANS: Message given when there is a problem with the user's session token. #: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot new file mode 100644 index 0000000000..5ba434af7c --- /dev/null +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -0,0 +1,239 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: YammerImportPlugin.php:97 +msgid "Yammer" +msgstr "" + +#: YammerImportPlugin.php:98 actions/yammeradminpanel.php:122 +msgid "Yammer import" +msgstr "" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:56 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "" + +#: lib/yammerimporter.php:198 +msgid "Expertise:" +msgstr "" + +#: lib/yammerimporter.php:398 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "" + +#: lib/yammerimporter.php:405 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "" + +#: lib/yammerapikeyform.php:72 +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 "" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "" + +#: lib/yammerauthverifyform.php:98 +msgid "Continue" +msgstr "" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "" + +#: lib/yammerprogressform.php:51 +msgid "Initialize" +msgstr "" + +#: lib/yammerprogressform.php:52 +msgid "No import running" +msgstr "" + +#: lib/yammerprogressform.php:53 +msgid "Initiated Yammer server connection..." +msgstr "" + +#: lib/yammerprogressform.php:57 +msgid "Awaiting authorization..." +msgstr "" + +#: lib/yammerprogressform.php:58 +msgid "Connected." +msgstr "" + +#: lib/yammerprogressform.php:61 +msgid "Import user accounts" +msgstr "" + +#: lib/yammerprogressform.php:62 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:63 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:66 +msgid "Import user groups" +msgstr "" + +#: lib/yammerprogressform.php:67 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:68 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:71 +msgid "Prepare public notices for import" +msgstr "" + +#: lib/yammerprogressform.php:72 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:73 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:76 +msgid "Import public notices" +msgstr "" + +#: lib/yammerprogressform.php:77 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:78 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" +msgstr[1] "" + +#: lib/yammerprogressform.php:81 +msgid "Done" +msgstr "" + +#: lib/yammerprogressform.php:82 lib/yammerprogressform.php:83 +msgid "Import is complete!" +msgstr "" + +#: lib/yammerprogressform.php:90 +msgid "Import status" +msgstr "" + +#: lib/yammerprogressform.php:113 +msgid "Waiting..." +msgstr "" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "" + +#: actions/yammeradminpanel.php:55 +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 "" From 05682afee4b0a1c84c565b2015a49e3d09c9c807 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:02:34 -0700 Subject: [PATCH 235/310] YammerImporter: 'group_id' field not always present in message data; avoid notice warning when checking it if it's missing --- plugins/YammerImport/lib/yammerimporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 0425b8b04e..0ce8ffb48b 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -287,7 +287,7 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); - if ($item['group_id']) { + if (!empty($item['group_id'])) { $groupId = $this->findImportedGroup($item['group_id']); if ($groupId) { $options['groups'] = array($groupId); From 17e5ffbe4ee8c0c7093eecac598ce11660b8b95b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:07:55 -0700 Subject: [PATCH 236/310] YammerImport: set some more default fields for user_group registration (still need a group admin tho) --- plugins/YammerImport/lib/yammerimporter.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 0ce8ffb48b..ae916dc221 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -249,8 +249,11 @@ class YammerImporter $options['mainpage'] = common_local_url('showgroup', array('nickname' => $options['nickname'])); + // Set some default vals or User_group::register will whine + $options['homepage'] = ''; + $options['location'] = ''; + $options['aliases'] = array(); // @fixme what about admin user for the group? - // bio? homepage etc? aliases? $options['local'] = true; return array('orig_id' => $origId, From 6cf7b2401754aef634d983187d87c9148e1f00ca Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:24:25 -0700 Subject: [PATCH 237/310] YammerImport: fix for importing over existing user/group nicknames; copies the new data if available onto the existing entry --- plugins/YammerImport/lib/yammerimporter.php | 37 +++++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index ae916dc221..ed11915259 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -41,13 +41,22 @@ class YammerImporter function importUser($item) { $data = $this->prepUser($item); + $nickname = $data['options']['nickname']; $profileId = $this->findImportedUser($data['orig_id']); if ($profileId) { return Profile::staticGet('id', $profileId); } else { - $user = User::register($data['options']); - $profile = $user->getProfile(); + $user = User::staticGet('nickname', $nickname); + if ($user) { + common_log(LOG_WARN, "Copying Yammer profile info onto existing user $nickname"); + $profile = $user->getProfile(); + $this->savePropertiesOn($profile, $data['options'], + array('fullname', 'homepage', 'bio', 'location')); + } else { + $user = User::register($data['options']); + $profile = $user->getProfile(); + } if ($data['avatar']) { try { $this->saveAvatar($data['avatar'], $profile); @@ -69,12 +78,21 @@ class YammerImporter function importGroup($item) { $data = $this->prepGroup($item); + $nickname = $data['options']['nickname']; $groupId = $this->findImportedGroup($data['orig_id']); if ($groupId) { return User_group::staticGet('id', $groupId); } else { - $group = User_group::register($data['options']); + $local = Local_group::staticGet('nickname', $nickname); + if ($local) { + common_log(LOG_WARN, "Copying Yammer group info onto existing group $nickname"); + $group = User_group::staticGet('id', $local->group_id); + $this->savePropertiesOn($group, $data['options'], + array('fullname', 'description')); + } else { + $group = User_group::register($data['options']); + } if ($data['avatar']) { try { $this->saveAvatar($data['avatar'], $group); @@ -87,6 +105,19 @@ class YammerImporter } } + private function savePropertiesOn($target, $options, $propList) + { + $changed = 0; + $orig = clone($target); + foreach ($propList as $prop) { + if (!empty($options[$prop]) && $target->$prop != $options[$prop]) { + $target->$prop = $options[$prop]; + $changed++; + } + } + $target->update($orig); + } + /** * Load or create an imported notice from Yammer data. * From b03ece26eb1589c5200094f4d87455ca46db780b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 23:21:09 +0200 Subject: [PATCH 238/310] * i18n/L10n and translator documentation updates. * whitespace and indentation updates --- classes/Avatar.php | 5 +++-- classes/Consumer.php | 1 - classes/Conversation.php | 2 -- classes/Fave.php | 5 ++++- classes/File.php | 1 - classes/File_oembed.php | 1 - classes/File_redirection.php | 1 - classes/File_thumbnail.php | 1 - classes/File_to_post.php | 1 - classes/Foreign_link.php | 2 -- classes/Foreign_service.php | 4 ++-- classes/Foreign_subscription.php | 2 +- classes/Foreign_user.php | 1 - classes/Group_block.php | 1 - classes/Group_inbox.php | 2 +- classes/Group_member.php | 9 +++++++-- classes/Inbox.php | 9 ++++----- classes/Invitation.php | 2 +- classes/Memcached_DataObject.php | 9 ++++----- classes/Message.php | 1 - classes/Nonce.php | 1 - classes/Notice.php | 7 +------ classes/Notice_source.php | 2 +- classes/Oauth_application.php | 2 -- classes/Oauth_application_user.php | 1 - 25 files changed, 29 insertions(+), 44 deletions(-) diff --git a/classes/Avatar.php b/classes/Avatar.php index dbe2cd8138..6edc817685 100644 --- a/classes/Avatar.php +++ b/classes/Avatar.php @@ -42,8 +42,9 @@ class Avatar extends Memcached_DataObject return Memcached_DataObject::pkeyGet('Avatar', $kv); } - // where should the avatar go for this user? - + /** + * Where should the avatar go for this user? + */ static function filename($id, $extension, $size=null, $extra=null) { if ($size) { diff --git a/classes/Consumer.php b/classes/Consumer.php index ce399f2783..c1090b85a3 100644 --- a/classes/Consumer.php +++ b/classes/Consumer.php @@ -65,5 +65,4 @@ class Consumer extends Memcached_DataObject $nonce->consumer_key = $this->consumer_key; $nonce->delete(); } - } diff --git a/classes/Conversation.php b/classes/Conversation.php index f540004ef3..aab55723f6 100755 --- a/classes/Conversation.php +++ b/classes/Conversation.php @@ -74,6 +74,4 @@ class Conversation extends Memcached_DataObject return $conv; } - } - diff --git a/classes/Fave.php b/classes/Fave.php index f21f1b5297..059b339cd2 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -144,8 +144,11 @@ class Fave extends Memcached_DataObject common_date_iso8601($this->modified)); $act->time = strtotime($this->modified); + // TRANS: Activity title when marking a notice as favorite. $act->title = _("Favor"); - $act->content = sprintf(_("%s marked notice %s as a favorite."), + // TRANS: Ntofication given when a user marks a notice as favorite. + // TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. + $act->content = sprintf(_("%1$s marked notice %2$s as a favorite."), $profile->getBestName(), $notice->uri); diff --git a/classes/File.php b/classes/File.php index 407fd32114..d457968b5e 100644 --- a/classes/File.php +++ b/classes/File.php @@ -29,7 +29,6 @@ require_once INSTALLDIR.'/classes/File_to_post.php'; /** * Table Definition for file */ - class File extends Memcached_DataObject { ###START_AUTOCODE diff --git a/classes/File_oembed.php b/classes/File_oembed.php index 041b447404..4813d5dda5 100644 --- a/classes/File_oembed.php +++ b/classes/File_oembed.php @@ -131,4 +131,3 @@ class File_oembed extends Memcached_DataObject } } } - diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 51b8be3b06..68fed77e8b 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -281,4 +281,3 @@ class File_redirection extends Memcached_DataObject $file_redir->insert(); } } - diff --git a/classes/File_thumbnail.php b/classes/File_thumbnail.php index f8b70356c7..edae8ac21a 100644 --- a/classes/File_thumbnail.php +++ b/classes/File_thumbnail.php @@ -57,4 +57,3 @@ class File_thumbnail extends Memcached_DataObject $tn->insert(); } } - diff --git a/classes/File_to_post.php b/classes/File_to_post.php index 72a42b0880..530921adcb 100644 --- a/classes/File_to_post.php +++ b/classes/File_to_post.php @@ -67,4 +67,3 @@ class File_to_post extends Memcached_DataObject return Memcached_DataObject::pkeyGet('File_to_post', $kv); } } - diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php index e47b2e3096..60db51595e 100644 --- a/classes/Foreign_link.php +++ b/classes/Foreign_link.php @@ -44,7 +44,6 @@ class Foreign_link extends Memcached_DataObject $result = $flink->find(true); return empty($result) ? null : $flink; - } static function getByForeignID($foreign_id, $service) @@ -129,5 +128,4 @@ class Foreign_link extends Memcached_DataObject return false; } } - } diff --git a/classes/Foreign_service.php b/classes/Foreign_service.php index ef614dbd6e..dd74fd2ca6 100644 --- a/classes/Foreign_service.php +++ b/classes/Foreign_service.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_service extends Memcached_DataObject +class Foreign_service extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -12,7 +12,7 @@ class Foreign_service extends Memcached_DataObject public $__table = 'foreign_service'; // table name public $id; // int(4) primary_key not_null public $name; // varchar(32) unique_key not_null - public $description; // varchar(255) + public $description; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP diff --git a/classes/Foreign_subscription.php b/classes/Foreign_subscription.php index d508606218..ec2631238e 100644 --- a/classes/Foreign_subscription.php +++ b/classes/Foreign_subscription.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_subscription extends Memcached_DataObject +class Foreign_subscription extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/classes/Foreign_user.php b/classes/Foreign_user.php index e98a16064a..8e6e0b33e0 100644 --- a/classes/Foreign_user.php +++ b/classes/Foreign_user.php @@ -83,5 +83,4 @@ class Foreign_user extends Memcached_DataObject } return $result; } - } diff --git a/classes/Group_block.php b/classes/Group_block.php index 9f4d592956..ffc57a496e 100644 --- a/classes/Group_block.php +++ b/classes/Group_block.php @@ -111,5 +111,4 @@ class Group_block extends Memcached_DataObject return true; } - } diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php index 2a0787e387..8f5c65e594 100644 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -1,8 +1,8 @@ profile_id); if (empty($member)) { - throw new Exception("Profile ID {$this->profile_id} invalid."); + // TRANS: Exception thrown providing an invalid profile ID. + // TRANS: %s is the invalid profile ID. + throw new Exception(sprintf(_("Profile ID %s is invalid."),$this->profile_id)); } return $member; @@ -82,7 +84,9 @@ class Group_member extends Memcached_DataObject $group = User_group::staticGet('id', $this->group_id); if (empty($group)) { - throw new Exception("Group ID {$this->group_id} invalid."); + // TRANS: Exception thrown providing an invalid group ID. + // TRANS: %s is the invalid group ID. + throw new Exception(sprintf(_("Group ID %s is invalid."),$this->group_id)); } return $group; @@ -105,6 +109,7 @@ class Group_member extends Memcached_DataObject $act->objects[] = ActivityObject::fromGroup($group); $act->time = strtotime($this->created); + // TRANS: Activity title. $act->title = _("Join"); // TRANS: Success message for subscribe to group attempt through OStatus. diff --git a/classes/Inbox.php b/classes/Inbox.php index 430419ba5e..a1ab6215fd 100644 --- a/classes/Inbox.php +++ b/classes/Inbox.php @@ -55,7 +55,6 @@ class Inbox extends Memcached_DataObject /** * Create a new inbox from existing Notice_inbox stuff */ - static function initialize($user_id) { $inbox = Inbox::fromNoticeInbox($user_id); @@ -115,10 +114,10 @@ class Inbox extends Memcached_DataObject */ static function insertNotice($user_id, $notice_id) { - // Going straight to the DB rather than trusting our caching - // during an update. Note: not using DB_DataObject::staticGet, - // which is unsafe to use directly (in-process caching causes - // memory leaks, which accumulate in queue processes). + // Going straight to the DB rather than trusting our caching + // during an update. Note: not using DB_DataObject::staticGet, + // which is unsafe to use directly (in-process caching causes + // memory leaks, which accumulate in queue processes). $inbox = new Inbox(); if (!$inbox->get('user_id', $user_id)) { $inbox = Inbox::initialize($user_id); diff --git a/classes/Invitation.php b/classes/Invitation.php index 8a36fd8df1..0e87c1629c 100644 --- a/classes/Invitation.php +++ b/classes/Invitation.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Invitation extends Memcached_DataObject +class Invitation extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index 0f1ed04892..ccfd886a1d 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -189,11 +189,11 @@ class Memcached_DataObject extends Safe_DataObject str_replace("\n", " ", $e->getTraceAsString())); return false; } else { - $keys = $this->_allCacheKeys(); + $keys = $this->_allCacheKeys(); - foreach ($keys as $key) { - $c->set($key, $this); - } + foreach ($keys as $key) { + $c->set($key, $this); + } } } @@ -637,4 +637,3 @@ class Memcached_DataObject extends Safe_DataObject return $vstr; } } - diff --git a/classes/Message.php b/classes/Message.php index fa0c5b3181..353dc01f99 100644 --- a/classes/Message.php +++ b/classes/Message.php @@ -38,7 +38,6 @@ class Message extends Memcached_DataObject } static function saveNew($from, $to, $content, $source) { - $sender = Profile::staticGet('id', $from); if (!$sender->hasRight(Right::NEWMESSAGE)) { diff --git a/classes/Nonce.php b/classes/Nonce.php index 2f8ab00b5d..93191bd409 100644 --- a/classes/Nonce.php +++ b/classes/Nonce.php @@ -36,5 +36,4 @@ class Nonce extends Memcached_DataObject { return array('consumer_key,token' => 'token:consumer_key,token'); } - } diff --git a/classes/Notice.php b/classes/Notice.php index 4f23e35007..79626f8898 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -745,6 +745,7 @@ class Notice extends Memcached_DataObject 1, 1 ); + if ($conversation->N > 0) { return true; } @@ -1305,13 +1306,10 @@ class Notice extends Memcached_DataObject } if (Event::handle('StartActivitySource', array(&$this, &$xs))) { - if ($source) { - $atom_feed = $profile->getAtomFeed(); if (!empty($atom_feed)) { - $xs->elementStart('source'); // XXX: we should store the actual feed ID @@ -1899,7 +1897,6 @@ class Notice extends Memcached_DataObject $options = array(); if (!empty($location_id) && !empty($location_ns)) { - $options['location_id'] = $location_id; $options['location_ns'] = $location_ns; @@ -1911,7 +1908,6 @@ class Notice extends Memcached_DataObject } } else if (!empty($lat) && !empty($lon)) { - $options['lat'] = $lat; $options['lon'] = $lon; @@ -1922,7 +1918,6 @@ class Notice extends Memcached_DataObject $options['location_ns'] = $location->location_ns; } } else if (!empty($profile)) { - if (isset($profile->lat) && isset($profile->lon)) { $options['lat'] = $profile->lat; $options['lon'] = $profile->lon; diff --git a/classes/Notice_source.php b/classes/Notice_source.php index e7568bbca2..43893ebe18 100644 --- a/classes/Notice_source.php +++ b/classes/Notice_source.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Notice_source extends Memcached_DataObject +class Notice_source extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/classes/Oauth_application.php b/classes/Oauth_application.php index 748b642200..e81706104e 100644 --- a/classes/Oauth_application.php +++ b/classes/Oauth_application.php @@ -110,7 +110,6 @@ class Oauth_application extends Memcached_DataObject * * @return void */ - function uploadLogo() { if ($_FILES['app_icon']['error'] == @@ -153,5 +152,4 @@ class Oauth_application extends Memcached_DataObject $oauser->application_id = $this->id; $oauser->delete(); } - } diff --git a/classes/Oauth_application_user.php b/classes/Oauth_application_user.php index 57986281f9..3d4238d640 100644 --- a/classes/Oauth_application_user.php +++ b/classes/Oauth_application_user.php @@ -40,5 +40,4 @@ class Oauth_application_user extends Memcached_DataObject return empty($result) ? null : $oau; } - } From 9587f9f55b55d2819f9ba57f7befd165ab842fa6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 28 Sep 2010 23:42:18 +0200 Subject: [PATCH 239/310] * i18n/L10n and translator documentation updates. * whitespace and indentation updates --- classes/Profile.php | 4 ++-- classes/Profile_tag.php | 2 -- classes/Remember_me.php | 10 +++++++--- classes/Remote_profile.php | 8 ++++---- classes/Safe_DataObject.php | 1 - classes/Sms_carrier.php | 4 ++-- classes/Status_network.php | 12 ++++++------ classes/Status_network_tag.php | 4 ++-- classes/Subscription.php | 5 ++++- classes/User_group.php | 1 - classes/User_username.php | 6 ++++-- 11 files changed, 31 insertions(+), 26 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 8f86795504..3a381fcc89 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -103,7 +103,6 @@ class Profile extends Memcached_DataObject foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) { # We don't do a scaled one if original is our scaled size if (!($avatar->width == $size && $avatar->height == $size)) { - $scaled_filename = $imagefile->resize($size); //$scaled = DB_DataObject::factory('avatar'); @@ -790,13 +789,14 @@ class Profile extends Memcached_DataObject * @param $right string Name of the right, usually a constant in class Right * @return boolean whether the user has the right in question */ - function hasRight($right) { $result = false; + if ($this->hasRole(Profile_role::DELETED)) { return false; } + if (Event::handle('UserRightsCheck', array($this, $right, &$result))) { switch ($right) { diff --git a/classes/Profile_tag.php b/classes/Profile_tag.php index 0a1ad9cd6b..ab6bab0964 100644 --- a/classes/Profile_tag.php +++ b/classes/Profile_tag.php @@ -23,7 +23,6 @@ class Profile_tag extends Memcached_DataObject ###END_AUTOCODE static function getTags($tagger, $tagged) { - $tags = array(); # XXX: store this in memcached @@ -44,7 +43,6 @@ class Profile_tag extends Memcached_DataObject } static function setTags($tagger, $tagged, $newtags) { - $newtags = array_unique($newtags); $oldtags = Profile_tag::getTags($tagger, $tagged); diff --git a/classes/Remember_me.php b/classes/Remember_me.php index 8dc29bfa39..3df7a99831 100644 --- a/classes/Remember_me.php +++ b/classes/Remember_me.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Remember_me extends Memcached_DataObject +class Remember_me extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -16,11 +16,15 @@ class Remember_me extends Memcached_DataObject /* Static get */ function staticGet($k,$v=null) - { return Memcached_DataObject::staticGet('Remember_me',$k,$v); } + { + return Memcached_DataObject::staticGet('Remember_me',$k,$v); + } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE function sequenceKey() - { return array(false, false); } + { + return array(false, false); + } } diff --git a/classes/Remote_profile.php b/classes/Remote_profile.php index 77bfbcd99c..1672e9f956 100644 --- a/classes/Remote_profile.php +++ b/classes/Remote_profile.php @@ -24,7 +24,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Remote_profile extends Memcached_DataObject +class Remote_profile extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -32,8 +32,8 @@ class Remote_profile extends Memcached_DataObject public $__table = 'remote_profile'; // table name public $id; // int(4) primary_key not_null public $uri; // varchar(255) unique_key - public $postnoticeurl; // varchar(255) - public $updateprofileurl; // varchar(255) + public $postnoticeurl; // varchar(255) + public $updateprofileurl; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP @@ -43,7 +43,7 @@ class Remote_profile extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - + function hasRight($right) { $profile = Profile::staticGet($this->id); diff --git a/classes/Safe_DataObject.php b/classes/Safe_DataObject.php index f0ea6b136f..891e33a668 100644 --- a/classes/Safe_DataObject.php +++ b/classes/Safe_DataObject.php @@ -287,4 +287,3 @@ class Safe_DataObject extends DB_DataObject return Safe_DataObject::$iniCache[$key]; } } - diff --git a/classes/Sms_carrier.php b/classes/Sms_carrier.php index ffa12de29e..500cb4f043 100644 --- a/classes/Sms_carrier.php +++ b/classes/Sms_carrier.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Sms_carrier extends Memcached_DataObject +class Sms_carrier extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,7 +22,7 @@ class Sms_carrier extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - + function toEmailAddress($sms) { return sprintf($this->email_pattern, $sms); diff --git a/classes/Status_network.php b/classes/Status_network.php index 70c7a58eb7..5d01e72ccc 100644 --- a/classes/Status_network.php +++ b/classes/Status_network.php @@ -168,16 +168,16 @@ class Status_network extends Safe_DataObject $orig->decache(); $result = $this->query($qry); $this->decache(); - + return $result; } - + function delete() { $this->decache(); # while we still have the values! return parent::delete(); } - + /** * @param string $servername hostname * @param string $wildcard hostname suffix to match wildcard config @@ -313,7 +313,7 @@ class Status_network extends Safe_DataObject if (empty($result)) { return explode('|', $this->tags); } - + return $result; } @@ -331,7 +331,7 @@ class Status_network extends Safe_DataObject $snt->site_id = $this->site_id; $snt->tag = $tag; $snt->created = common_sql_now(); - + $id = $snt->insert(); if (!$id) { // TRANS: Exception thrown when a tag cannot be saved. @@ -356,7 +356,7 @@ class Status_network extends Safe_DataObject $tag->free(); } - + /** * Check if this site record has a particular meta-info tag attached. * @param string $tag diff --git a/classes/Status_network_tag.php b/classes/Status_network_tag.php index 7dab232897..a5893c1141 100644 --- a/classes/Status_network_tag.php +++ b/classes/Status_network_tag.php @@ -26,7 +26,7 @@ class Status_network_tag extends Safe_DataObject public $__table = 'status_network_tag'; // table name public $site_id; // int(4) primary_key not_null - public $tag; // varchar(64) primary_key not_null + public $tag; // varchar(64) primary_key not_null public $created; // datetime() not_null @@ -34,7 +34,7 @@ class Status_network_tag extends Safe_DataObject { global $config; global $_DB_DATAOBJECT; - + $sn = new Status_network(); $sn->_connect(); diff --git a/classes/Subscription.php b/classes/Subscription.php index 1287499fad..b4dbd84c98 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -251,8 +251,11 @@ class Subscription extends Memcached_DataObject common_date_iso8601($this->created)); $act->time = strtotime($this->created); + // TRANS: Activity tile when subscribing to another person. $act->title = _("Follow"); - $act->content = sprintf(_("%s is now following %s."), + // TRANS: Notification given when one person starts following another. + // TRANS: %1$s is the subscriber, %2$s is the subscribed. + $act->content = sprintf(_("%1$s is now following %2$s."), $subscriber->getBestName(), $subscribed->getBestName()); diff --git a/classes/User_group.php b/classes/User_group.php index 0b83cfd47d..cfdcef2906 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -465,7 +465,6 @@ class User_group extends Memcached_DataObject } static function register($fields) { - // MAGICALLY put fields into current scope extract($fields); diff --git a/classes/User_username.php b/classes/User_username.php index 8d99cddd3f..ae7785cc9f 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -18,7 +18,9 @@ class User_username extends Memcached_DataObject /* Static get */ function staticGet($k,$v=null) - { return Memcached_DataObject::staticGet('User_username',$k,$v); } + { + return Memcached_DataObject::staticGet('User_username',$k,$v); + } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE @@ -37,6 +39,7 @@ class User_username extends Memcached_DataObject $user_username->provider_name = $provider_name; $user_username->username = $username; $user_username->created = DB_DataObject_Cast::dateTime(); + if($user_username->insert()){ return $user_username; }else{ @@ -57,5 +60,4 @@ class User_username extends Memcached_DataObject function keys() { return array('provider_name' => 'K', 'username' => 'K'); } - } From b9177f5e2e3f9697ef1d2863c827d03154ff828e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 29 Sep 2010 00:39:45 +0200 Subject: [PATCH 240/310] * i18n/L10n and translator documentation updates. * whitespace and indentation updates --- lib/accountsettingsaction.php | 5 ----- lib/action.php | 15 +-------------- lib/activity.php | 4 +--- lib/activityobject.php | 5 +---- lib/activityutils.php | 3 --- lib/adminform.php | 1 - lib/apiaction.php | 7 ------- lib/apibareauth.php | 1 - lib/apioauthstore.php | 3 ++- lib/applicationeditform.php | 3 ++- lib/applicationlist.php | 3 +-- lib/atom10feed.php | 3 +-- lib/atomusernoticefeed.php | 1 - lib/attachmentlist.php | 12 +----------- lib/attachmentnoticesection.php | 4 +--- lib/attachmenttagcloudsection.php | 2 -- lib/authenticationplugin.php | 13 +++++++------ lib/authorizationplugin.php | 2 -- lib/blockform.php | 3 --- lib/cache.php | 8 -------- lib/channel.php | 14 +++++++++----- lib/clienterroraction.php | 1 - lib/clientexception.php | 1 - lib/columndef.php | 6 ------ lib/command.php | 11 +++-------- lib/commandinterpreter.php | 3 +-- lib/common.php | 12 +++++++++--- lib/connectsettingsaction.php | 21 ++++++++++----------- lib/currentuserdesignaction.php | 2 -- 29 files changed, 50 insertions(+), 119 deletions(-) diff --git a/lib/accountsettingsaction.php b/lib/accountsettingsaction.php index 57740f8b85..7991c9002c 100644 --- a/lib/accountsettingsaction.php +++ b/lib/accountsettingsaction.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/settingsaction.php'; * * @see Widget */ - class AccountSettingsAction extends SettingsAction { /** @@ -54,7 +53,6 @@ class AccountSettingsAction extends SettingsAction * * @return void */ - function showLocalNav() { $menu = new AccountSettingsNav($this); @@ -73,7 +71,6 @@ class AccountSettingsAction extends SettingsAction * * @see HTMLOutputter */ - class AccountSettingsNav extends Widget { var $action = null; @@ -83,7 +80,6 @@ class AccountSettingsNav extends Widget * * @param Action $action current action, used for output */ - function __construct($action=null) { parent::__construct($action); @@ -95,7 +91,6 @@ class AccountSettingsNav extends Widget * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); diff --git a/lib/action.php b/lib/action.php index 5482ac3773..ddc058d418 100644 --- a/lib/action.php +++ b/lib/action.php @@ -314,7 +314,6 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ - function showFeeds() { $feeds = $this->getFeeds(); @@ -710,7 +709,6 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ - function showAside() { $this->elementStart('div', array('id' => 'aside_primary', @@ -731,7 +729,6 @@ class Action extends HTMLOutputter // lawsuit * * @return void */ - function showExportData() { $feeds = $this->getFeeds(); @@ -807,6 +804,7 @@ class Action extends HTMLOutputter // lawsuit // TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. _('Contact')); $this->menuItem(common_local_url('doc', array('title' => 'badge')), + // TRANS: Secondary navigation menu option. _('Badge')); Event::handle('EndSecondaryNav', array($this)); } @@ -954,7 +952,6 @@ class Action extends HTMLOutputter // lawsuit * * @return boolean is read only action? */ - function isReadOnly($args) { return false; @@ -1053,7 +1050,6 @@ class Action extends HTMLOutputter // lawsuit * * @return boolean is read only action? */ - function isCacheable() { return true; @@ -1067,7 +1063,6 @@ class Action extends HTMLOutputter // lawsuit * * @return boolean */ - function _hasEtag($etag, $if_none_match) { $etags = explode(',', $if_none_match); @@ -1107,7 +1102,6 @@ class Action extends HTMLOutputter // lawsuit * * @return integer integer value */ - function int($key, $defValue=null, $maxValue=null, $minValue=null) { $arg = strtolower($this->trimmed($key)); @@ -1135,7 +1129,6 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ - function serverError($msg, $code=500) { $action = $this->trimmed('action'); @@ -1151,7 +1144,6 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ - function clientError($msg, $code=400) { $action = $this->trimmed('action'); @@ -1164,7 +1156,6 @@ class Action extends HTMLOutputter // lawsuit * * @return string current URL */ - function selfUrl() { list($action, $args) = $this->returnToArgs(); @@ -1176,7 +1167,6 @@ class Action extends HTMLOutputter // lawsuit * * @return array two elements: action, other args */ - function returnToArgs() { $action = $this->trimmed('action'); @@ -1283,7 +1273,6 @@ class Action extends HTMLOutputter // lawsuit * * @return array Feed object to show in head and links */ - function getFeeds() { return null; @@ -1294,7 +1283,6 @@ class Action extends HTMLOutputter // lawsuit * * @return Design a design object to use */ - function getDesign() { return Design::siteDesign(); @@ -1308,7 +1296,6 @@ class Action extends HTMLOutputter // lawsuit * * @return void */ - // XXX: Finding this type of check with the same message about 50 times. // Possible to refactor? function checkSessionToken() diff --git a/lib/activity.php b/lib/activity.php index f19f10e34d..e974ca991d 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -48,7 +48,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class Activity { const SPEC = 'http://activitystrea.ms/spec/1.0/'; @@ -108,7 +107,6 @@ class Activity * @param DOMElement $entry Atom entry to poke at * @param DOMElement $feed Atom feed, for context */ - function __construct($entry = null, $feed = null) { if (is_null($entry)) { @@ -133,6 +131,7 @@ class Activity $entry->localName == 'item') { $this->_fromRssItem($entry, $feed); } else { + // Low level exception. No need for i18n. throw new Exception("Unknown DOM element: {$entry->namespaceURI} {$entry->localName}"); } } @@ -313,7 +312,6 @@ class Activity * * @return DOMElement Atom entry */ - function toAtomEntry() { return null; diff --git a/lib/activityobject.php b/lib/activityobject.php index 95615d581c..52733c47a0 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -49,7 +49,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ - class ActivityObject { const ARTICLE = 'http://activitystrea.ms/schema/1.0/article'; @@ -116,7 +115,6 @@ class ActivityObject * * @param DOMElement $element DOM thing to turn into an Activity thing */ - function __construct($element = null) { if (empty($element)) { @@ -216,8 +214,7 @@ class ActivityObject } } - // @fixme rationalize with Activity::_fromRssItem() - + // @todo FIXME: rationalize with Activity::_fromRssItem() private function _fromRssItem($item) { $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, Activity::RSS); diff --git a/lib/activityutils.php b/lib/activityutils.php index b975a6382b..c462514c49 100644 --- a/lib/activityutils.php +++ b/lib/activityutils.php @@ -82,13 +82,11 @@ class ActivityUtils $els = $element->childNodes; foreach ($els as $link) { - if (!($link instanceof DOMElement)) { continue; } if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) { - $linkRel = $link->getAttribute(self::REL); $linkType = $link->getAttribute(self::TYPE); @@ -109,7 +107,6 @@ class ActivityUtils foreach ($els as $link) { if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) { - $linkRel = $link->getAttribute(self::REL); $linkType = $link->getAttribute(self::TYPE); diff --git a/lib/adminform.php b/lib/adminform.php index 9b0e45f8a6..1ecb024357 100644 --- a/lib/adminform.php +++ b/lib/adminform.php @@ -79,5 +79,4 @@ class AdminForm extends Form } return $value; } - } diff --git a/lib/apiaction.php b/lib/apiaction.php index 0074b7dc53..0ebf88282a 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -462,7 +462,6 @@ class ApiAction extends Action $entry = array(); if (Event::handle('StartRssEntryArray', array($notice, &$entry))) { - $profile = $notice->getProfile(); // We trim() to avoid extraneous whitespace in the output @@ -552,7 +551,6 @@ class ApiAction extends Action $notifications = false; if ($source->isSubscribed($target)) { - $sub = Subscription::pkeyGet(array('subscriber' => $source->id, 'subscribed' => $target->id)); @@ -738,7 +736,6 @@ class ApiAction extends Action function showXmlTimeline($notice) { - $this->initDocument('xml'); $this->elementStart('statuses', array('type' => 'array', 'xmlns:statusnet' => 'http://status.net/schema/api/1/')); @@ -763,7 +760,6 @@ class ApiAction extends Action function showRssTimeline($notice, $title, $link, $subtitle, $suplink = null, $logo = null, $self = null) { - $this->initDocument('rss'); $this->element('title', null, $title); @@ -819,7 +815,6 @@ class ApiAction extends Action function showAtomTimeline($notice, $title, $id, $link, $subtitle=null, $suplink=null, $selfuri=null, $logo=null) { - $this->initDocument('atom'); $this->element('title', null, $title); @@ -863,7 +858,6 @@ class ApiAction extends Action function showRssGroups($group, $title, $link, $subtitle) { - $this->initDocument('rss'); $this->element('title', null, $title); @@ -1362,7 +1356,6 @@ class ApiAction extends Action function getTargetUser($id) { if (empty($id)) { - // Twitter supports these other ways of passing the user ID if (is_numeric($this->arg('id'))) { return User::staticGet($this->arg('id')); diff --git a/lib/apibareauth.php b/lib/apibareauth.php index 00e0f205ba..043181b07a 100644 --- a/lib/apibareauth.php +++ b/lib/apibareauth.php @@ -62,7 +62,6 @@ require_once INSTALLDIR.'/lib/apiauth.php'; */ class ApiBareAuthAction extends ApiAuthAction { - /** * Take arguments for running * diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 01116ad3e9..eca93866f0 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -149,7 +149,6 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore // Okay, good return new OAuthToken($at->tok, $at->secret); } - } else { return null; } @@ -173,10 +172,12 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $rt->tok = $token_key; $rt->type = $type; $rt->state = 0; + if (!$rt->find(true)) { // TRANS: Exception thrown when an attempt is made to revoke an unknown token. throw new Exception(_('Tried to revoke unknown token.')); } + if (!$rt->delete()) { // TRANS: Exception thrown when an attempt is made to remove a revoked token. throw new Exception(_('Failed to delete revoked token.')); diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index 224b6eaa1b..f53c31feb4 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -197,7 +197,8 @@ class ApplicationEditForm extends Form $maxDesc = Oauth_application::maxDesc(); if ($maxDesc > 0) { // TRANS: Form input field instructions. - $descInstr = sprintf(_('Describe your application in %d characters'), + // 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), $maxDesc); } else { // TRANS: Form input field instructions. diff --git a/lib/applicationlist.php b/lib/applicationlist.php index 1974d2103b..8b6e3a8add 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -1,5 +1,4 @@ application->access_type & Oauth_application::$writeAccess) ? $readWriteText : $readOnlyText; $modifiedDate = common_date_string($appUser->modified); - // TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) + // 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); $this->out->raw($txt); diff --git a/lib/atom10feed.php b/lib/atom10feed.php index a46d49f350..3ae9dc81be 100644 --- a/lib/atom10feed.php +++ b/lib/atom10feed.php @@ -109,7 +109,7 @@ class Atom10Feed extends XMLStringer $xs->element('name', null, $name); } else { throw new Atom10FeedException( - 'author element must contain a name element.' + _('author element must contain a name element.') ); } @@ -323,5 +323,4 @@ class Atom10Feed extends XMLStringer array_push($this->links, $attrs); } - } diff --git a/lib/atomusernoticefeed.php b/lib/atomusernoticefeed.php index 34a1870175..ec368f5ca1 100644 --- a/lib/atomusernoticefeed.php +++ b/lib/atomusernoticefeed.php @@ -55,7 +55,6 @@ class AtomUserNoticeFeed extends AtomNoticeFeed * * @return void */ - function __construct($user, $cur = null, $indent = true) { parent::__construct($cur, $indent); $this->user = $user; diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 59cab9532c..f6b09fb491 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -49,7 +49,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @see NoticeListItem * @see ProfileNoticeList */ - class AttachmentList extends Widget { /** the current stream of notices being displayed. */ @@ -61,7 +60,6 @@ class AttachmentList extends Widget * * @param Notice $notice stream of notices from DB_DataObject */ - function __construct($notice, $out=null) { parent::__construct($out); @@ -76,7 +74,6 @@ class AttachmentList extends Widget * * @return int count of notices listed. */ - function show() { $atts = new File; @@ -111,7 +108,6 @@ class AttachmentList extends Widget * * @return NoticeListItem a list item for displaying the notice */ - function newListItem($attachment) { return new AttachmentListItem($attachment, $this->out); @@ -135,7 +131,6 @@ class AttachmentList extends Widget * @see NoticeList * @see ProfileNoticeListItem */ - class AttachmentListItem extends Widget { /** The attachment this item will show. */ @@ -151,7 +146,6 @@ class AttachmentListItem extends Widget * * @param Notice $notice The notice we'll display */ - function __construct($attachment, $out=null) { parent::__construct($out); @@ -185,7 +179,6 @@ class AttachmentListItem extends Widget * * @return void */ - function show() { $this->showStart(); @@ -221,7 +214,6 @@ class AttachmentListItem extends Widget * * @return void */ - function showStart() { // XXX: RDFa @@ -236,7 +228,6 @@ class AttachmentListItem extends Widget * * @return void */ - function showEnd() { $this->out->elementEnd('li'); @@ -257,7 +248,7 @@ class Attachment extends AttachmentListItem $this->out->elementEnd('div'); if (!empty($this->oembed->author_name) || !empty($this->oembed->provider)) { - $this->out->elementStart('div', array('id' => 'oembed_info', + $this->out->elementStart('div', array('id' => 'oembed_info', 'class' => 'entry-content')); if (!empty($this->oembed->author_name)) { $this->out->elementStart('dl', 'vcard author'); @@ -438,4 +429,3 @@ class Attachment extends AttachmentListItem $this->out->raw(''); } } - diff --git a/lib/attachmentnoticesection.php b/lib/attachmentnoticesection.php index 53a3b63c1c..25e64adf9e 100644 --- a/lib/attachmentnoticesection.php +++ b/lib/attachmentnoticesection.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AttachmentNoticeSection extends NoticeSection { function showContent() { @@ -59,7 +58,7 @@ class AttachmentNoticeSection extends NoticeSection $notice->orderBy('created desc'); $notice->selectAdd('post_id as id'); $notice->find(); - return $notice; + return $notice; } function title() @@ -73,4 +72,3 @@ class AttachmentNoticeSection extends NoticeSection return 'popular_notices'; } } - diff --git a/lib/attachmenttagcloudsection.php b/lib/attachmenttagcloudsection.php index 15aa6dedc3..2c8fc5ee1a 100644 --- a/lib/attachmenttagcloudsection.php +++ b/lib/attachmenttagcloudsection.php @@ -40,7 +40,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 AttachmentTagCloudSection extends TagCloudSection { function title() @@ -81,4 +80,3 @@ class AttachmentTagCloudSection extends TagCloudSection return $notice_tag; } } - diff --git a/lib/authenticationplugin.php b/lib/authenticationplugin.php index dbdf206298..5e878c155b 100644 --- a/lib/authenticationplugin.php +++ b/lib/authenticationplugin.php @@ -40,12 +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/ */ - abstract class AuthenticationPlugin extends Plugin { //is this plugin authoritative for authentication? public $authoritative = false; - + //should accounts be automatically created after a successful login attempt? public $autoregistration = false; @@ -218,12 +217,14 @@ abstract class AuthenticationPlugin extends Plugin //stop handling of other handlers, because what was requested was done return false; }else{ - throw new Exception(_('Password changing failed')); + // TRANS: Exception thrown when a password change fails. + throw new Exception(_('Password changing failed.')); } }else{ if($this->authoritative){ //since we're authoritative, no other plugin could do this - throw new Exception(_('Password changing failed')); + // TRANS: Exception thrown when a password change fails. + throw new Exception(_('Password changing failed.')); }else{ //let another handler try return null; @@ -233,7 +234,8 @@ abstract class AuthenticationPlugin extends Plugin }else{ if($this->authoritative){ //since we're authoritative, no other plugin could do this - throw new Exception(_('Password changing is not allowed')); + // TRANS: Exception thrown when a password change attempt fails because it is not allowed. + throw new Exception(_('Password changing is not allowed.')); } } } @@ -267,4 +269,3 @@ abstract class AuthenticationPlugin extends Plugin return true; } } - diff --git a/lib/authorizationplugin.php b/lib/authorizationplugin.php index d71f772435..dda604addd 100644 --- a/lib/authorizationplugin.php +++ b/lib/authorizationplugin.php @@ -40,7 +40,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 AuthorizationPlugin extends Plugin { //is this plugin authoritative for authorization? @@ -103,4 +102,3 @@ abstract class AuthorizationPlugin extends Plugin } } } - diff --git a/lib/blockform.php b/lib/blockform.php index 54552b3e57..1af5e8cfd0 100644 --- a/lib/blockform.php +++ b/lib/blockform.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * * @see UnblockForm */ - class BlockForm extends ProfileActionForm { /** @@ -63,7 +62,6 @@ class BlockForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { // TRANS: Title for the form to block a user. @@ -75,7 +73,6 @@ class BlockForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { // TRANS: Description of the form to block a user. diff --git a/lib/cache.php b/lib/cache.php index c09a1dd9f2..ea0ff769d1 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -41,7 +41,6 @@ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class Cache { var $_items = array(); @@ -56,7 +55,6 @@ class Cache * * @return Cache cache object */ - static function instance() { if (is_null(self::$_inst)) { @@ -77,7 +75,6 @@ class Cache * * @return string full key */ - static function key($extra) { $base_key = common_config('cache', 'base'); @@ -98,7 +95,6 @@ class Cache * * @return string keyized string */ - static function keyize($str) { $str = strtolower($str); @@ -115,7 +111,6 @@ class Cache * * @return string retrieved value or null if unfound */ - function get($key) { $value = false; @@ -140,7 +135,6 @@ class Cache * * @return boolean success flag */ - function set($key, $value, $flag=null, $expiry=null) { $success = false; @@ -192,7 +186,6 @@ class Cache * * @return boolean success flag */ - function delete($key) { $success = false; @@ -214,7 +207,6 @@ class Cache * * @return boolean success flag */ - function reconnect() { $success = false; diff --git a/lib/channel.php b/lib/channel.php index 689bca0be9..fbc2e8697c 100644 --- a/lib/channel.php +++ b/lib/channel.php @@ -19,6 +19,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +/** + * @todo Needs documentation. + */ class Channel { function on($user) @@ -68,7 +71,6 @@ class CLIChannel extends Channel class XMPPChannel extends Channel { - var $conn = null; function source() @@ -154,6 +156,7 @@ class WebChannel extends Channel # depending on what command was run $this->out->startHTML(); $this->out->elementStart('head'); + // TRANS: Title for command results. $this->out->element('title', null, _('Command results')); $this->out->elementEnd('head'); $this->out->elementStart('body'); @@ -174,6 +177,7 @@ class AjaxWebChannel extends WebChannel { $this->out->startHTML('text/xml;charset=utf-8'); $this->out->elementStart('head'); + // TRANS: Title for command results. $this->out->element('title', null, _('Command results')); $this->out->elementEnd('head'); $this->out->elementStart('body'); @@ -186,7 +190,8 @@ class AjaxWebChannel extends WebChannel { $this->out->startHTML('text/xml;charset=utf-8'); $this->out->elementStart('head'); - $this->out->element('title', null, _('Ajax Error')); + // TRANS: Title for command results. + $this->out->element('title', null, _('AJAX error')); $this->out->elementEnd('head'); $this->out->elementStart('body'); $this->out->element('p', array('id' => 'error'), $text); @@ -197,7 +202,6 @@ class AjaxWebChannel extends WebChannel class MailChannel extends Channel { - var $addr = null; function source() @@ -222,10 +226,10 @@ class MailChannel extends Channel function output($user, $text) { - $headers['From'] = $user->incomingemail; $headers['To'] = $this->addr; + // TRANS: E-mail subject when a command has completed. $headers['Subject'] = _('Command complete'); return mail_send(array($this->addr), $headers, $text); @@ -233,10 +237,10 @@ class MailChannel extends Channel function error($user, $text) { - $headers['From'] = $user->incomingemail; $headers['To'] = $this->addr; + // TRANS: E-mail subject when a command has failed. $headers['Subject'] = _('Command failed'); return mail_send(array($this->addr), $headers, $text); diff --git a/lib/clienterroraction.php b/lib/clienterroraction.php index 1b98a10645..08bced5bda 100644 --- a/lib/clienterroraction.php +++ b/lib/clienterroraction.php @@ -1,5 +1,4 @@ name == $other->name && @@ -122,7 +119,6 @@ class ColumnDef * * @return boolean true if they're about equivalent */ - private function _typeMatch($other) { switch ($this->type) { @@ -145,7 +141,6 @@ class ColumnDef * * @return boolean true if defaults are effectively the same. */ - private function _defaultMatch($other) { return ((is_null($this->default) && is_null($other->default)) || @@ -160,7 +155,6 @@ class ColumnDef * * @return boolean true if these columns 'null' the same. */ - private function _nullMatch($other) { return ((!is_null($this->default) && !is_null($other->default) && diff --git a/lib/command.php b/lib/command.php index b1f95fcb69..658262a090 100644 --- a/lib/command.php +++ b/lib/command.php @@ -23,7 +23,6 @@ require_once(INSTALLDIR.'/lib/channel.php'); class Command { - var $user = null; function __construct($user=null) @@ -49,7 +48,6 @@ class Command } } - /** * Override this with the meat! * @@ -313,7 +311,6 @@ class FavCommand extends Command // TRANS: Text shown when a notice has been marked as favourite successfully. $channel->output($this->user, _('Notice marked as fave.')); } - } class JoinCommand extends Command @@ -361,8 +358,8 @@ class JoinCommand extends Command $cur->nickname, $group->nickname)); } - } + class DropCommand extends Command { var $other = null; @@ -409,7 +406,6 @@ class DropCommand extends Command $cur->nickname, $group->nickname)); } - } class WhoisCommand extends Command @@ -471,6 +467,7 @@ class MessageCommand extends Command throw $e; } // TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). + // TRANS: %s is a remote profile. throw new CommandException(sprintf(_('%s is a remote profile; you can only send direct messages to users on the same server.'), $this->other)); } @@ -611,7 +608,6 @@ class ReplyCommand extends Command class GetCommand extends Command { - var $other = null; function __construct($user, $other) @@ -638,7 +634,6 @@ class GetCommand extends Command class SubCommand extends Command { - var $other = null; function __construct($user, $other) @@ -678,7 +673,6 @@ class SubCommand extends Command class UnsubCommand extends Command { - var $other = null; function __construct($user, $other) @@ -712,6 +706,7 @@ class UnsubCommand extends Command class OffCommand extends Command { var $other = null; + function __construct($user, $other=null) { parent::__construct($user); diff --git a/lib/commandinterpreter.php b/lib/commandinterpreter.php index fbc6174bbf..c288c2e5f0 100644 --- a/lib/commandinterpreter.php +++ b/lib/commandinterpreter.php @@ -272,7 +272,7 @@ class CommandInterpreter return false; } } - + /** * Split arguments without triggering a PHP notice warning */ @@ -285,4 +285,3 @@ class CommandInterpreter return $pieces; } } - diff --git a/lib/common.php b/lib/common.php index e08d530f0f..236f2d68a7 100644 --- a/lib/common.php +++ b/lib/common.php @@ -132,11 +132,17 @@ try { } catch (NoConfigException $e) { // XXX: Throw a conniption if database not installed // XXX: Find a way to use htmlwriter for this instead of handcoded markup + // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. echo '

'. _('No configuration file found. ') .'

'; - echo '

'. _('I looked for configuration files in the following places: ') .'
'; - echo implode($e->configFiles, '
'); + // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. + // TRANS: Is followed by a list of directories (separated by HTML breaks). + echo '

'. _('I looked for configuration files in the following places: ') .'
'; + echo implode($e->configFiles, '
'); + // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. echo '

'. _('You may wish to run the installer to fix this.') .'

'; + // @todo FIXME Link should be in a para? + // TRANS: Error message displayed when no configuration file was found for a StatusNet installation. + // TRANS: The text is link text that leads to the installer page. echo ''. _('Go to the installer.') .''; exit; } - diff --git a/lib/connectsettingsaction.php b/lib/connectsettingsaction.php index b9c14799e0..bb2e86176a 100644 --- a/lib/connectsettingsaction.php +++ b/lib/connectsettingsaction.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/settingsaction.php'; * * @see Widget */ - class ConnectSettingsAction extends SettingsAction { /** @@ -54,7 +53,6 @@ class ConnectSettingsAction extends SettingsAction * * @return void */ - function showLocalNav() { $menu = new ConnectSettingsNav($this); @@ -73,7 +71,6 @@ class ConnectSettingsAction extends SettingsAction * * @see HTMLOutputter */ - class ConnectSettingsNav extends Widget { var $action = null; @@ -83,7 +80,6 @@ class ConnectSettingsNav extends Widget * * @param Action $action current action, used for output */ - function __construct($action=null) { parent::__construct($action); @@ -95,7 +91,6 @@ class ConnectSettingsNav extends Widget * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -107,17 +102,23 @@ class ConnectSettingsNav extends Widget $menu = array(); if (common_config('xmpp', 'enabled')) { $menu['imsettings'] = - array(_('IM'), + // TRANS: Menu item for Instant Messaging settings. + array(_m('MENU','IM'), + // TRANS: Tooltip for Instant Messaging menu item. _('Updates by instant messenger (IM)')); } if (common_config('sms', 'enabled')) { $menu['smssettings'] = - array(_('SMS'), + // TRANS: Menu item for Short Message Service settings. + array(_m('MENU','SMS'), + // TRANS: Tooltip for Short Message Service menu item. _('Updates by SMS')); } - + $menu['oauthconnectionssettings'] = array( - _('Connections'), + // TRANS: Menu item for OAth connection settings. + _m('MENU','Connections'), + // TRANS: Tooltip for connected applications (Connections through OAth) menu item. _('Authorized connected applications') ); @@ -133,6 +134,4 @@ class ConnectSettingsNav extends Widget $this->action->elementEnd('ul'); } - } - diff --git a/lib/currentuserdesignaction.php b/lib/currentuserdesignaction.php index c2f38cd00b..490f87d13c 100644 --- a/lib/currentuserdesignaction.php +++ b/lib/currentuserdesignaction.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ * */ - class CurrentUserDesignAction extends Action { /** @@ -54,7 +53,6 @@ class CurrentUserDesignAction extends Action * * @return Design a design object to use */ - function getDesign() { $cur = common_current_user(); From 588758ed6d14a6c17eba9acf440164867c21cf25 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 15:45:00 -0700 Subject: [PATCH 241/310] Made YammerImport more robust against errors; can now pause/resume/reset the import state from the admin interface. --- .../YammerImport/actions/yammeradminpanel.php | 13 ++++++ plugins/YammerImport/classes/Yammer_state.php | 3 ++ plugins/YammerImport/css/admin.css | 8 +++- plugins/YammerImport/lib/yammerimporter.php | 1 + .../YammerImport/lib/yammerprogressform.php | 39 +++++++++++++++-- .../YammerImport/lib/yammerqueuehandler.php | 23 +++++----- plugins/YammerImport/lib/yammerrunner.php | 42 ++++++++++++++++++- 7 files changed, 113 insertions(+), 16 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 13960d9051..3faf390ac1 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -73,6 +73,7 @@ class YammeradminpanelAction extends AdminPanelAction { // @fixme move this to saveSettings and friends? if ($_SERVER['REQUEST_METHOD'] == 'POST') { + StatusNet::setApi(true); // short error pages :P $this->checkSessionToken(); if ($this->subaction == 'change-apikey') { $form = new YammerApiKeyForm($this); @@ -97,6 +98,18 @@ class YammeradminpanelAction extends AdminPanelAction $this->runner->startBackgroundImport(); $form = new YammerProgressForm($this, $this->runner); + } else if ($this->subaction == 'pause-import') { + $this->runner->recordError(_m('Paused from admin panel.')); + $form = $this->statusForm(); + } else if ($this->subaction == 'continue-import') { + $this->runner->clearError(); + $this->runner->startBackgroundImport(); + $form = $this->statusForm(); + } else if ($this->subaction == 'abort-import') { + $this->runner->reset(); + $form = $this->statusForm(); + } else if ($this->subaction == 'progress') { + $form = $this->statusForm(); } else { throw new ClientException('Invalid POST'); } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 2f1fd7780b..88bd693bfd 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -36,6 +36,7 @@ class Yammer_state extends Memcached_DataObject public $__table = 'yammer_state'; // table name public $id; // int primary_key not_null public $state; // import state key + public $last_error; // text of last-encountered error, if any public $oauth_token; // actual oauth token! clear when import is done? public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched @@ -70,6 +71,7 @@ class Yammer_state extends Memcached_DataObject return array(new ColumnDef('id', 'int', null, false, 'PRI'), new ColumnDef('state', 'text'), + new ColumnDef('last_error', 'text'), new ColumnDef('oauth_token', 'text'), new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), @@ -93,6 +95,7 @@ class Yammer_state extends Memcached_DataObject { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, 'state' => DB_DATAOBJECT_STR, + 'last_error' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 9c99a0b880..80e0e038a2 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -52,4 +52,10 @@ .magiclink { margin-left: 40px; -} \ No newline at end of file +} + +fieldset.import-error { + margin-top: 12px; + margin-bottom: 0px !important; + background-color: #fee !important; +} diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index ed11915259..80cbcff8e7 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -132,6 +132,7 @@ class YammerImporter if ($noticeId) { return Notice::staticGet('id', $noticeId); } else { + $notice = Notice::staticGet('uri', $data['options']['uri']); $content = $data['content']; $user = User::staticGet($data['profile']); diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php index 776efa100f..add8d9ab2f 100644 --- a/plugins/YammerImport/lib/yammerprogressform.php +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -9,7 +9,7 @@ class YammerProgressForm extends Form */ function id() { - return 'yammer-progress'; + return 'yammer-progress-form'; } /** @@ -39,8 +39,11 @@ class YammerProgressForm extends Form */ function formData() { + $this->out->hidden('subaction', 'progress'); + $runner = YammerRunner::init(); + $error = $runner->lastError(); $userCount = $runner->countUsers(); $groupCount = $runner->countGroups(); $fetchedCount = $runner->countFetchedNotices(); @@ -86,7 +89,13 @@ class YammerProgressForm extends Form $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); - $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $classes = array('yammer-import'); + if ($error) { + $classes[] = 'yammer-error'; + } else { + $classes[] = 'yammer-running'; + } + $this->out->elementStart('fieldset', array('class' => implode(' ', $classes))); $this->out->element('legend', array(), _m('Import status')); foreach ($steps as $step => $state) { if ($state == 'init') { @@ -104,7 +113,8 @@ class YammerProgressForm extends Form $this->progressBar($state, 'progress', $labels[$state]['label'], - $labels[$state]['progress']); + $labels[$state]['progress'], + $error); } else { // This step has not yet been done. $this->progressBar($state, @@ -116,13 +126,34 @@ class YammerProgressForm extends Form $this->out->elementEnd('fieldset'); } - private function progressBar($state, $class, $label, $status) + private function progressBar($state, $class, $label, $status, $error=null) { // @fixme prettify ;) $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); $this->out->element('div', array('class' => 'import-label'), $label); $this->out->element('div', array('class' => 'import-status'), $status); + if ($class == 'progress') { + if ($state == 'done') { + $this->out->submit('abort-import', _m('Reset import state')); + } else { + if ($error) { + $this->errorBox($error); + } else { + $this->out->submit('pause-import', _m('Pause import')); + } + } + } $this->out->elementEnd('div'); } + private function errorBox($msg) + { + $errline = sprintf(_m('Encountered error "%s"'), $msg); + $this->out->elementStart('fieldset', array('class' => 'import-error')); + $this->out->element('legend', array(), _m('Paused')); + $this->out->element('p', array(), $errline); + $this->out->submit('continue-import', _m('Continue')); + $this->out->submit('abort-import', _m('Abort import')); + $this->out->elementEnd('fieldset'); + } } diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index acc8073115..0c4e8aec1d 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -38,21 +38,24 @@ class YammerQueueHandler extends QueueHandler { $runner = YammerRunner::init(); if ($runner->hasWork()) { - if ($runner->iterate()) { - if ($runner->hasWork()) { - // More to do? Shove us back on the queue... - $runner->startBackgroundImport(); + try { + if ($runner->iterate()) { + if ($runner->hasWork()) { + // More to do? Shove us back on the queue... + $runner->startBackgroundImport(); + } + } + } catch (Exception $e) { + try { + $runner->recordError($e->getMessage()); + } catch (Exception $f) { + common_log(LOG_ERR, "Error while recording error in Yammer background import: " . $e->getMessage() . " " . $f->getMessage()); } - return true; - } else { - // Something failed? - // @fixme should we be trying again here, or should we give warning? - return false; } } else { // We're done! common_log(LOG_INFO, "Yammer import has no work to do at this time; discarding."); - return true; } + return true; } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e0aec0d166..3e53f3361b 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -298,7 +298,10 @@ class YammerRunner $this->state->state = 'save-messages'; } else { foreach ($messages as $item) { - Yammer_notice_stub::record($item['id'], $item); + $stub = Yammer_notice_stub::staticGet($item['id']); + if (!$stub) { + Yammer_notice_stub::record($item['id'], $item); + } $oldest = $item['id']; } $this->state->messages_oldest = $oldest; @@ -395,4 +398,41 @@ class YammerRunner $qm->enqueue('YammerImport', 'yammer'); } + /** + * Record an error condition from a background run, which we should + * display in progress state for the admin. + * + * @param string $msg + */ + public function recordError($msg) + { + // HACK HACK HACK + try { + $temp = new Yammer_state(); + $temp->query('ROLLBACK'); + } catch (Exception $e) { + common_log(LOG_ERR, 'Exception while confirming rollback while recording error: ' . $e->getMessage()); + } + $old = clone($this->state); + $this->state->last_error = $msg; + $this->state->update($old); + } + + /** + * Clear the error state. + */ + public function clearError() + { + $this->recordError(''); + } + + /** + * Get the last recorded background error message, if any. + * + * @return string + */ + public function lastError() + { + return $this->state->last_error; + } } From 78a711d5566e7bf2347199f034641f44b36f6e09 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 15:46:14 -0700 Subject: [PATCH 242/310] Move blowFavesCache() to Profile --- classes/Profile.php | 14 ++++++++++++++ classes/User.php | 11 +---------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 1a54489ed8..9753b278ec 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -552,6 +552,20 @@ class Profile extends Memcached_DataObject return $cnt; } + function blowFavesCache() + { + $cache = common_memcache(); + if ($cache) { + // Faves don't happen chronologically, so we need to blow + // ;last cache, too + $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); + $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); + $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id)); + $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last')); + } + $this->blowFaveCount(); + } + function blowSubscriberCount() { $c = common_memcache(); diff --git a/classes/User.php b/classes/User.php index 27299e62e0..e784fd9e9a 100644 --- a/classes/User.php +++ b/classes/User.php @@ -482,17 +482,8 @@ class User extends Memcached_DataObject function blowFavesCache() { - $cache = common_memcache(); - if ($cache) { - // Faves don't happen chronologically, so we need to blow - // ;last cache, too - $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); - $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); - $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id)); - $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last')); - } $profile = $this->getProfile(); - $profile->blowFaveCount(); + $profile->blowFavesCache(); } function getSelfTags() From ee6b4c409d9ddc93529a486065998508cda79ecc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 15:54:44 -0700 Subject: [PATCH 243/310] YammerImport admin UI now auto-refreshes during running BG progress, whee --- plugins/YammerImport/lib/yammerprogressform.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php index add8d9ab2f..9bf8332261 100644 --- a/plugins/YammerImport/lib/yammerprogressform.php +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -19,7 +19,16 @@ class YammerProgressForm extends Form */ function formClass() { - return 'form_settings'; + $classes = array('form_settings'); + $runner = YammerRunner::init(); + if ($runner->lastError()) { + $classes[] = 'import-error'; + } else if ($runner->state() == 'done') { + $classes[] = 'import-done'; + } else { + $classes[] = 'import-progress'; + } + return implode(' ', $classes); } /** From ab1d8c4c56dcc4eaa799eb662123bb285cc1aea2 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 15:56:11 -0700 Subject: [PATCH 244/310] Add Start/EndShowNoticeItem event hooks to single notice page --- actions/shownotice.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/actions/shownotice.php b/actions/shownotice.php index 86df5f9f30..c8e9cfe66a 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -314,10 +314,14 @@ class SingleNoticeItem extends NoticeListItem function show() { $this->showStart(); - $this->showNotice(); - $this->showNoticeAttachments(); - $this->showNoticeInfo(); - $this->showNoticeOptions(); + if (Event::handle('StartShowNoticeItem', array($this))) { + $this->showNotice(); + $this->showNoticeAttachments(); + $this->showNoticeInfo(); + $this->showNoticeOptions(); + Event::handle('EndShowNoticeItem', array($this)); + } + $this->showEnd(); } From 782046dc016ac70148447db94c2c45fbe68c056e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:02:34 -0700 Subject: [PATCH 245/310] YammerImporter: 'group_id' field not always present in message data; avoid notice warning when checking it if it's missing --- plugins/YammerImport/lib/yammerimporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 0425b8b04e..0ce8ffb48b 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -287,7 +287,7 @@ class YammerImporter } $options['created'] = $this->timestamp($item['created_at']); - if ($item['group_id']) { + if (!empty($item['group_id'])) { $groupId = $this->findImportedGroup($item['group_id']); if ($groupId) { $options['groups'] = array($groupId); From 3a1f1a49b22c2be4234a78cd36016a373d3ca5fc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:07:55 -0700 Subject: [PATCH 246/310] YammerImport: set some more default fields for user_group registration (still need a group admin tho) --- plugins/YammerImport/lib/yammerimporter.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 0ce8ffb48b..ae916dc221 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -249,8 +249,11 @@ class YammerImporter $options['mainpage'] = common_local_url('showgroup', array('nickname' => $options['nickname'])); + // Set some default vals or User_group::register will whine + $options['homepage'] = ''; + $options['location'] = ''; + $options['aliases'] = array(); // @fixme what about admin user for the group? - // bio? homepage etc? aliases? $options['local'] = true; return array('orig_id' => $origId, From c62e4d08008faf7fdfb67f0e5eda3db6d8d1ceef Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 13:24:25 -0700 Subject: [PATCH 247/310] YammerImport: fix for importing over existing user/group nicknames; copies the new data if available onto the existing entry --- plugins/YammerImport/lib/yammerimporter.php | 37 +++++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index ae916dc221..ed11915259 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -41,13 +41,22 @@ class YammerImporter function importUser($item) { $data = $this->prepUser($item); + $nickname = $data['options']['nickname']; $profileId = $this->findImportedUser($data['orig_id']); if ($profileId) { return Profile::staticGet('id', $profileId); } else { - $user = User::register($data['options']); - $profile = $user->getProfile(); + $user = User::staticGet('nickname', $nickname); + if ($user) { + common_log(LOG_WARN, "Copying Yammer profile info onto existing user $nickname"); + $profile = $user->getProfile(); + $this->savePropertiesOn($profile, $data['options'], + array('fullname', 'homepage', 'bio', 'location')); + } else { + $user = User::register($data['options']); + $profile = $user->getProfile(); + } if ($data['avatar']) { try { $this->saveAvatar($data['avatar'], $profile); @@ -69,12 +78,21 @@ class YammerImporter function importGroup($item) { $data = $this->prepGroup($item); + $nickname = $data['options']['nickname']; $groupId = $this->findImportedGroup($data['orig_id']); if ($groupId) { return User_group::staticGet('id', $groupId); } else { - $group = User_group::register($data['options']); + $local = Local_group::staticGet('nickname', $nickname); + if ($local) { + common_log(LOG_WARN, "Copying Yammer group info onto existing group $nickname"); + $group = User_group::staticGet('id', $local->group_id); + $this->savePropertiesOn($group, $data['options'], + array('fullname', 'description')); + } else { + $group = User_group::register($data['options']); + } if ($data['avatar']) { try { $this->saveAvatar($data['avatar'], $group); @@ -87,6 +105,19 @@ class YammerImporter } } + private function savePropertiesOn($target, $options, $propList) + { + $changed = 0; + $orig = clone($target); + foreach ($propList as $prop) { + if (!empty($options[$prop]) && $target->$prop != $options[$prop]) { + $target->$prop = $options[$prop]; + $changed++; + } + } + $target->update($orig); + } + /** * Load or create an imported notice from Yammer data. * From 62d9b66dffb0000122cd611a9d991da008f9a527 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 15:45:00 -0700 Subject: [PATCH 248/310] Made YammerImport more robust against errors; can now pause/resume/reset the import state from the admin interface. --- .../YammerImport/actions/yammeradminpanel.php | 13 ++++++ plugins/YammerImport/classes/Yammer_state.php | 3 ++ plugins/YammerImport/css/admin.css | 8 +++- plugins/YammerImport/lib/yammerimporter.php | 1 + .../YammerImport/lib/yammerprogressform.php | 39 +++++++++++++++-- .../YammerImport/lib/yammerqueuehandler.php | 23 +++++----- plugins/YammerImport/lib/yammerrunner.php | 42 ++++++++++++++++++- 7 files changed, 113 insertions(+), 16 deletions(-) diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 13960d9051..3faf390ac1 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -73,6 +73,7 @@ class YammeradminpanelAction extends AdminPanelAction { // @fixme move this to saveSettings and friends? if ($_SERVER['REQUEST_METHOD'] == 'POST') { + StatusNet::setApi(true); // short error pages :P $this->checkSessionToken(); if ($this->subaction == 'change-apikey') { $form = new YammerApiKeyForm($this); @@ -97,6 +98,18 @@ class YammeradminpanelAction extends AdminPanelAction $this->runner->startBackgroundImport(); $form = new YammerProgressForm($this, $this->runner); + } else if ($this->subaction == 'pause-import') { + $this->runner->recordError(_m('Paused from admin panel.')); + $form = $this->statusForm(); + } else if ($this->subaction == 'continue-import') { + $this->runner->clearError(); + $this->runner->startBackgroundImport(); + $form = $this->statusForm(); + } else if ($this->subaction == 'abort-import') { + $this->runner->reset(); + $form = $this->statusForm(); + } else if ($this->subaction == 'progress') { + $form = $this->statusForm(); } else { throw new ClientException('Invalid POST'); } diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 2f1fd7780b..88bd693bfd 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -36,6 +36,7 @@ class Yammer_state extends Memcached_DataObject public $__table = 'yammer_state'; // table name public $id; // int primary_key not_null public $state; // import state key + public $last_error; // text of last-encountered error, if any public $oauth_token; // actual oauth token! clear when import is done? public $oauth_secret; // actual oauth secret! clear when import is done? public $users_page; // last page of users we've fetched @@ -70,6 +71,7 @@ class Yammer_state extends Memcached_DataObject return array(new ColumnDef('id', 'int', null, false, 'PRI'), new ColumnDef('state', 'text'), + new ColumnDef('last_error', 'text'), new ColumnDef('oauth_token', 'text'), new ColumnDef('oauth_secret', 'text'), new ColumnDef('users_page', 'int'), @@ -93,6 +95,7 @@ class Yammer_state extends Memcached_DataObject { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, 'state' => DB_DATAOBJECT_STR, + 'last_error' => DB_DATAOBJECT_STR, 'oauth_token' => DB_DATAOBJECT_STR, 'oauth_secret' => DB_DATAOBJECT_STR, 'users_page' => DB_DATAOBJECT_INT, diff --git a/plugins/YammerImport/css/admin.css b/plugins/YammerImport/css/admin.css index 9c99a0b880..80e0e038a2 100644 --- a/plugins/YammerImport/css/admin.css +++ b/plugins/YammerImport/css/admin.css @@ -52,4 +52,10 @@ .magiclink { margin-left: 40px; -} \ No newline at end of file +} + +fieldset.import-error { + margin-top: 12px; + margin-bottom: 0px !important; + background-color: #fee !important; +} diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index ed11915259..80cbcff8e7 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -132,6 +132,7 @@ class YammerImporter if ($noticeId) { return Notice::staticGet('id', $noticeId); } else { + $notice = Notice::staticGet('uri', $data['options']['uri']); $content = $data['content']; $user = User::staticGet($data['profile']); diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php index 776efa100f..add8d9ab2f 100644 --- a/plugins/YammerImport/lib/yammerprogressform.php +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -9,7 +9,7 @@ class YammerProgressForm extends Form */ function id() { - return 'yammer-progress'; + return 'yammer-progress-form'; } /** @@ -39,8 +39,11 @@ class YammerProgressForm extends Form */ function formData() { + $this->out->hidden('subaction', 'progress'); + $runner = YammerRunner::init(); + $error = $runner->lastError(); $userCount = $runner->countUsers(); $groupCount = $runner->countGroups(); $fetchedCount = $runner->countFetchedNotices(); @@ -86,7 +89,13 @@ class YammerProgressForm extends Form $steps = array_keys($labels); $currentStep = array_search($runner->state(), $steps); - $this->out->elementStart('fieldset', array('class' => 'yammer-import')); + $classes = array('yammer-import'); + if ($error) { + $classes[] = 'yammer-error'; + } else { + $classes[] = 'yammer-running'; + } + $this->out->elementStart('fieldset', array('class' => implode(' ', $classes))); $this->out->element('legend', array(), _m('Import status')); foreach ($steps as $step => $state) { if ($state == 'init') { @@ -104,7 +113,8 @@ class YammerProgressForm extends Form $this->progressBar($state, 'progress', $labels[$state]['label'], - $labels[$state]['progress']); + $labels[$state]['progress'], + $error); } else { // This step has not yet been done. $this->progressBar($state, @@ -116,13 +126,34 @@ class YammerProgressForm extends Form $this->out->elementEnd('fieldset'); } - private function progressBar($state, $class, $label, $status) + private function progressBar($state, $class, $label, $status, $error=null) { // @fixme prettify ;) $this->out->elementStart('div', array('class' => "import-step import-step-$state $class")); $this->out->element('div', array('class' => 'import-label'), $label); $this->out->element('div', array('class' => 'import-status'), $status); + if ($class == 'progress') { + if ($state == 'done') { + $this->out->submit('abort-import', _m('Reset import state')); + } else { + if ($error) { + $this->errorBox($error); + } else { + $this->out->submit('pause-import', _m('Pause import')); + } + } + } $this->out->elementEnd('div'); } + private function errorBox($msg) + { + $errline = sprintf(_m('Encountered error "%s"'), $msg); + $this->out->elementStart('fieldset', array('class' => 'import-error')); + $this->out->element('legend', array(), _m('Paused')); + $this->out->element('p', array(), $errline); + $this->out->submit('continue-import', _m('Continue')); + $this->out->submit('abort-import', _m('Abort import')); + $this->out->elementEnd('fieldset'); + } } diff --git a/plugins/YammerImport/lib/yammerqueuehandler.php b/plugins/YammerImport/lib/yammerqueuehandler.php index acc8073115..0c4e8aec1d 100644 --- a/plugins/YammerImport/lib/yammerqueuehandler.php +++ b/plugins/YammerImport/lib/yammerqueuehandler.php @@ -38,21 +38,24 @@ class YammerQueueHandler extends QueueHandler { $runner = YammerRunner::init(); if ($runner->hasWork()) { - if ($runner->iterate()) { - if ($runner->hasWork()) { - // More to do? Shove us back on the queue... - $runner->startBackgroundImport(); + try { + if ($runner->iterate()) { + if ($runner->hasWork()) { + // More to do? Shove us back on the queue... + $runner->startBackgroundImport(); + } + } + } catch (Exception $e) { + try { + $runner->recordError($e->getMessage()); + } catch (Exception $f) { + common_log(LOG_ERR, "Error while recording error in Yammer background import: " . $e->getMessage() . " " . $f->getMessage()); } - return true; - } else { - // Something failed? - // @fixme should we be trying again here, or should we give warning? - return false; } } else { // We're done! common_log(LOG_INFO, "Yammer import has no work to do at this time; discarding."); - return true; } + return true; } } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index e0aec0d166..3e53f3361b 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -298,7 +298,10 @@ class YammerRunner $this->state->state = 'save-messages'; } else { foreach ($messages as $item) { - Yammer_notice_stub::record($item['id'], $item); + $stub = Yammer_notice_stub::staticGet($item['id']); + if (!$stub) { + Yammer_notice_stub::record($item['id'], $item); + } $oldest = $item['id']; } $this->state->messages_oldest = $oldest; @@ -395,4 +398,41 @@ class YammerRunner $qm->enqueue('YammerImport', 'yammer'); } + /** + * Record an error condition from a background run, which we should + * display in progress state for the admin. + * + * @param string $msg + */ + public function recordError($msg) + { + // HACK HACK HACK + try { + $temp = new Yammer_state(); + $temp->query('ROLLBACK'); + } catch (Exception $e) { + common_log(LOG_ERR, 'Exception while confirming rollback while recording error: ' . $e->getMessage()); + } + $old = clone($this->state); + $this->state->last_error = $msg; + $this->state->update($old); + } + + /** + * Clear the error state. + */ + public function clearError() + { + $this->recordError(''); + } + + /** + * Get the last recorded background error message, if any. + * + * @return string + */ + public function lastError() + { + return $this->state->last_error; + } } From 91f25ca8170fa537a80161ff80190eea55c88b06 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Sep 2010 15:54:44 -0700 Subject: [PATCH 249/310] YammerImport admin UI now auto-refreshes during running BG progress, whee --- plugins/YammerImport/lib/yammerprogressform.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php index add8d9ab2f..9bf8332261 100644 --- a/plugins/YammerImport/lib/yammerprogressform.php +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -19,7 +19,16 @@ class YammerProgressForm extends Form */ function formClass() { - return 'form_settings'; + $classes = array('form_settings'); + $runner = YammerRunner::init(); + if ($runner->lastError()) { + $classes[] = 'import-error'; + } else if ($runner->state() == 'done') { + $classes[] = 'import-done'; + } else { + $classes[] = 'import-progress'; + } + return implode(' ', $classes); } /** From f42d4b18551eee1a8a8541047465d5beedb24bc2 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 17:09:34 -0700 Subject: [PATCH 250/310] New eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm --- EVENTS.txt | 16 ++++++++++++++-- lib/noticelist.php | 38 ++++++++++++++++++++++---------------- 2 files changed, 36 insertions(+), 18 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index fd2bdb9d56..7b6ad40eb9 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -258,10 +258,22 @@ EndShowExportData: just after showing the
with export data (feeds) - $action: action object being shown StartShowNoticeItem: just before showing the notice item -- $action: action object being shown +- $item: The NoticeListItem object being shown EndShowNoticeItem: just after showing the notice item -- $action: action object being shown +- $item: the NoticeListItem object being shown + +StartShowNoticeOptions: just before showing notice options like fave, repeat, etc. +- $item: the NoticeListItem object being shown + +EndShowNoticeOptions: just after showing notice options like fave, repeat, etc. +- $item: the NoticeListItem object being shown + +StartShowFaveForm: just before showing the fave form +- $item: the NoticeListItem object being shown + +EndShowFaveForm: just after showing the fave form +- $item: the NoticeListItem object being shown StartShowPageNotice: just before showing the page notice (instructions or error) - $action: action object being shown diff --git a/lib/noticelist.php b/lib/noticelist.php index 529d6a3f90..cc460005ad 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -236,14 +236,17 @@ class NoticeListItem extends Widget function showNoticeOptions() { - $user = common_current_user(); - if ($user) { - $this->out->elementStart('div', 'notice-options'); - $this->showFaveForm(); - $this->showReplyLink(); - $this->showRepeatForm(); - $this->showDeleteLink(); - $this->out->elementEnd('div'); + if (Event::handle('StartShowNoticeOptions', array($this))) { + $user = common_current_user(); + if ($user) { + $this->out->elementStart('div', 'notice-options'); + $this->showFaveForm(); + $this->showReplyLink(); + $this->showRepeatForm(); + $this->showDeleteLink(); + $this->out->elementEnd('div'); + } + Event::handle('EndShowNoticeOptions', array($this)); } } @@ -270,15 +273,18 @@ class NoticeListItem extends Widget function showFaveForm() { - $user = common_current_user(); - if ($user) { - if ($user->hasFave($this->notice)) { - $disfavor = new DisfavorForm($this->out, $this->notice); - $disfavor->show(); - } else { - $favor = new FavorForm($this->out, $this->notice); - $favor->show(); + if (Event::handle('StartShowFaveForm', array($this))) { + $user = common_current_user(); + if ($user) { + if ($user->hasFave($this->notice)) { + $disfavor = new DisfavorForm($this->out, $this->notice); + $disfavor->show(); + } else { + $favor = new FavorForm($this->out, $this->notice); + $favor->show(); + } } + Event::handle('EndShowFaveForm', array($this)); } } From daeb220b132ff5f901ab28e1ea961d08482256fe Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 17:17:09 -0700 Subject: [PATCH 251/310] Initial plugin for allowing anonymous favoriting --- plugins/AnonymousFave/AnonymousFavePlugin.php | 198 ++++++++++++++++++ plugins/AnonymousFave/anondisfavor.php | 132 ++++++++++++ plugins/AnonymousFave/anondisfavorform.php | 74 +++++++ plugins/AnonymousFave/anonfavor.php | 125 +++++++++++ plugins/AnonymousFave/anonfavorform.php | 74 +++++++ 5 files changed, 603 insertions(+) create mode 100644 plugins/AnonymousFave/AnonymousFavePlugin.php create mode 100644 plugins/AnonymousFave/anondisfavor.php create mode 100644 plugins/AnonymousFave/anondisfavorform.php create mode 100644 plugins/AnonymousFave/anonfavor.php create mode 100644 plugins/AnonymousFave/anonfavorform.php diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php new file mode 100644 index 0000000000..3dccaf538a --- /dev/null +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -0,0 +1,198 @@ +. + * + * @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/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +define('ANONYMOUS_FAVE_PLUGIN_VERSION', '0.1'); + +/** + * Anonymous Fave plugin to allow anonymous (not logged in) users + * to favorite notices + * + * @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 AnonymousFavePlugin extends Plugin { + + function onArgsInitialize() { + // We always want a session because we're tracking anon users + common_ensure_session(); + } + + function onEndShowHTML($action) + { + if (!common_logged_in()) { + // Set a place to return to when submitting forms + common_set_returnto($action->selfUrl()); + } + } + + function onEndShowScripts($action) + { + // Setup ajax calls for favoriting. Usually this is only done when + // a user is logged in. + $action->inlineScript('SN.U.NoticeFavor();'); + } + + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) { + case 'AnonFavorAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'AnonDisFavorAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'AnonFavorForm': + include_once $dir . '/anonfavorform.php'; + return false; + case 'AnonDisFavorForm': + include_once $dir . '/anondisfavorform.php'; + return false; + default: + return true; + } + } + + function onStartInitializeRouter($m) { + + $m->connect('main/anonfavor', array('action' => 'AnonFavor')); + $m->connect('main/anondisfavor', array('action' => 'AnonDisFavor')); + + return true; + } + + function onStartShowNoticeOptions($item) { + + if (!common_logged_in()) { + $item->out->elementStart('div', 'notice-options'); + $item->showFaveForm(); + $item->out->elementEnd('div'); + } + + return true; + } + + function onStartShowFaveForm($item) { + + if (!common_logged_in()) { + + $profile = $this->getAnonProfile(); + if (!empty($profile)) { + if ($profile->hasFave($item->notice)) { + $disfavor = new AnonDisFavorForm($item->out, $item->notice); + $disfavor->show(); + } else { + $favor = new AnonFavorForm($item->out, $item->notice); + $favor->show(); + } + } + } + + return true; + } + + function createAnonProfile() { + + // Get the anon user's IP, and turn it into a nickname + list($proxy, $ip) = common_client_ip(); + // IP + time + random number should avoid collisions + $nickname = 'anonymous-' . $ip . '-' . time() . '-' . common_good_rand(5); + + $profile = new Profile(); + $profile->nickname = $nickname; + $id = $profile->insert(); + + if (!empty($id)) { + common_log( + LOG_INFO, + "AnonymousFavePlugin - created profile for anonymous user from IP: " + . $ip + . ', nickname = ' + . $nickname + ); + } + + return $profile; + } + + function getAnonProfile() { + + $anon = $_SESSION['anon_nickname']; + + $profile = null; + + if (!empty($anon)) { + $profile = Profile::staticGet('nickname', $anon); + } else { + $profile = $this->createAnonProfile(); + $_SESSION['anon_nickname'] = $profile->nickname; + } + + if (!empty($profile)) { + return $profile; + } + } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:AnonymousFave'; + + $versions[] = array('name' => 'AnonymousFave', + 'version' => ANONYMOUS_FAVE_PLUGIN_VERSION, + 'author' => 'Zach Copley', + 'homepage' => $url, + 'rawdescription' => + _m('Allow anonymous users to favorite notices.')); + + return true; + } + +} diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php new file mode 100644 index 0000000000..9fd56fdc32 --- /dev/null +++ b/plugins/AnonymousFave/anondisfavor.php @@ -0,0 +1,132 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Anonymous disfavor class + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ +class AnonDisfavorAction extends RedirectingAction +{ + /** + * Class handler. + * + * @param array $args query arguments + * + * @return void + */ + function handle($args) + { + parent::handle($args); + + $anon = $_SESSION['anon_nickname']; + + $profile = Profile::staticGet('nickname', $anon); + + if (empty($profile)) { + common_debug( + "AnonDisFavorAction - Anon user tried to disfave a notice but doesn't have a profile." + ); + } + + if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { + $this->clientError( + _m('Could not disfavor notice! Please make sure your browser has cookies enabled.') + ); + return; + } + + $id = $this->trimmed('notice'); + $notice = Notice::staticGet($id); + $token = $this->trimmed('token-' . $notice->id); + + if (!$token || $token != common_session_token()) { + $this->clientError(_m('There was a problem with your session token. Try again, please.')); + return; + } + + $fave = new Fave(); + $fave->user_id = $profile->id; + $fave->notice_id = $notice->id; + + if (!$fave->find(true)) { + $this->clientError(_m('This notice is not a favorite!')); + return; + } + + $result = $fave->delete(); + + if (!$result) { + common_log_db_error($fave, 'DELETE', __FILE__); + $this->serverError(_m('Could not delete favorite.')); + return; + } + + $profile->blowFavesCache(); + + if ($this->boolean('ajax')) { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Add to favorites')); + $this->elementEnd('head'); + $this->elementStart('body'); + $favor = new AnonFavorForm($this, $notice); + $favor->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + $this->returnToPrevious(); + } + } + + /** + * If returnto not set, return to the public stream. + * + * @return string URL + */ + function defaultReturnTo() + { + $returnto = common_get_returnto(); + if (empty($returnto)) { + return common_local_url('public'); + } else { + return $returnto; + } + } +} + diff --git a/plugins/AnonymousFave/anondisfavorform.php b/plugins/AnonymousFave/anondisfavorform.php new file mode 100644 index 0000000000..c347ed7b43 --- /dev/null +++ b/plugins/AnonymousFave/anondisfavorform.php @@ -0,0 +1,74 @@ +. + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/form.php'; + +/** + * Form for disfavoring a notice anonymously + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see DisFavorForm + */ + +class AnonDisfavorForm extends DisFavorForm +{ + + /** + * Constructor + * + * @param HTMLOutputter $out output channel + * @param Notice $notice notice to disfavor + */ + + function __construct($out=null, $notice=null) + { + parent::__construct($out, $notice); + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('AnonDisFavor'); + } + +} diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php new file mode 100644 index 0000000000..c972f202e4 --- /dev/null +++ b/plugins/AnonymousFave/anonfavor.php @@ -0,0 +1,125 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Anonymous favor class + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ +class AnonFavorAction extends RedirectingAction +{ + /** + * Class handler. + * + * @param array $args query arguments + * + * @return void + */ + function handle($args) + { + parent::handle($args); + + $anon = $_SESSION['anon_nickname']; + $profile = Profile::staticGet('nickname', $anon); + + if (empty($profile)) { + common_debug( + "AnonFavorAction - Anon user tried to fave a notice but doesn't have a profile." + ); + } + + if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { + $this->clientError( + _m('Could not favor notice! Please make sure your browser has cookies enabled.') + ); + return; + } + + $id = $this->trimmed('notice'); + $notice = Notice::staticGet($id); + $token = $this->trimmed('token-' . $notice->id); + + if (empty($token) || $token != common_session_token()) { + $this->clientError(_m('There was a problem with your session token. Try again, please.')); + return; + } + + + if ($profile->hasFave($notice)) { + $this->clientError(_m('This notice is already a favorite!')); + return; + } + $fave = Fave::addNew($profile, $notice); + + if (!$fave) { + $this->serverError(_m('Could not create favorite.')); + return; + } + + $profile->blowFavesCache(); + + if ($this->boolean('ajax')) { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Disfavor favorite')); + $this->elementEnd('head'); + $this->elementStart('body'); + $disfavor = new AnonDisFavorForm($this, $notice); + $disfavor->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + $this->returnToPrevious(); + } + } + + /** + * If returnto not set, return to the public stream. + * + * @return string URL + */ + function defaultReturnTo() + { + $returnto = common_get_returnto(); + if (empty($returnto)) { + return common_local_url('public'); + } else { + return $returnto; + } + } +} diff --git a/plugins/AnonymousFave/anonfavorform.php b/plugins/AnonymousFave/anonfavorform.php new file mode 100644 index 0000000000..d73c2831d0 --- /dev/null +++ b/plugins/AnonymousFave/anonfavorform.php @@ -0,0 +1,74 @@ +. + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @copyright 20010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/form.php'; + +/** + * Form for favoring a notice anonymously + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see AnonDisfavorForm + */ + +class AnonFavorForm extends FavorForm +{ + + /** + * Constructor + * + * @param HTMLOutputter $out output channel + * @param Notice $notice notice to favor + */ + + function __construct($out=null, $notice=null) + { + parent::__construct($out, $notice); + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('AnonFavor'); + } + +} From 8fc904e95b66ac4ce97fa3b493797da9aa0a54af Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 19:07:45 -0700 Subject: [PATCH 252/310] New DB_DataObject for storing favorites tally --- plugins/AnonymousFave/AnonymousFavePlugin.php | 36 +++ plugins/AnonymousFave/Fave_tally.php | 209 ++++++++++++++++++ 2 files changed, 245 insertions(+) create mode 100644 plugins/AnonymousFave/Fave_tally.php diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 3dccaf538a..98f747748c 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -55,6 +55,39 @@ class AnonymousFavePlugin extends Plugin { common_ensure_session(); } + /** + * Hook for ensuring our tables are created + * + * Ensures the fave_tally table is there and has the right columns + * + * @return boolean hook return + */ + + function onCheckSchema() + { + $schema = Schema::get(); + + // For storing total number of times a notice has been faved + + $schema->ensureTable('fave_tally', + array( + new ColumnDef('notice_id', 'integer', null, false, 'PRI'), + new ColumnDef('count', 'integer', null, false), + new ColumnDef( + 'modified', + 'timestamp', + null, + false, + null, + 'CURRENT_TIMESTAMP', + 'on update CURRENT_TIMESTAMP' + ) + ) + ); + + return true; + } + function onEndShowHTML($action) { if (!common_logged_in()) { @@ -75,6 +108,9 @@ class AnonymousFavePlugin extends Plugin { $dir = dirname(__FILE__); switch ($cls) { + case 'Fave_tally': + include_once $dir . '/' . $cls . '.php'; + return false; case 'AnonFavorAction': include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php new file mode 100644 index 0000000000..fc7e4a5790 --- /dev/null +++ b/plugins/AnonymousFave/Fave_tally.php @@ -0,0 +1,209 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; + +/** + * Data class for favorites tally + * + * A class representing a total number of times a notice has been favorited + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ + +class Fave_tally extends Memcached_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'fave_tally'; // table name + public $notice_id; // int(4) primary_key not_null + public $count; // int(4) primary_key not_null + public $modified; // datetime not_null default_0000-00-00%2000%3A00%3A00 + + /* Static get */ + function staticGet($k, $v = NULL) { return Memcached_DataObject::staticGet('Fave_tally', $k, $v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE + + /** + * return table definition for DB_DataObject + * + * @return array array of column definitions + */ + + function table() + { + return array( + 'notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'count' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'modified' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL + ); + } + + /** + * return key definitions for DB_DataObject + * + * @return array key definitions + */ + + function keys() + { + return array('notice_id' => 'K'); + } + + /** + * return key definitions for DB_DataObject + * + * @return array key definitions + */ + + function keyTypes() + { + return $this->keys(); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Get a single object with multiple keys + * + * @param array $kv Map of key-value pairs + * + * @return User_flag_profile found object or null + */ + + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('Fave_tally', $kv); + } + + /** + * Increment a notice's tally + * + * @param integer $notice_id ID of notice we're tallying + * + * @return integer the total times the notice has been faved + */ + + static function increment($notice_id) + { + $tally = Fave_tally::ensureTally($notice_id); + $count = $tally->count + 1; + $tally->count = $count; + $result = $tally->update(); + $tally->free(); + + if ($result === false) { + $msg = sprintf( + _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + + return $count; + } + + /** + * Decrement a notice's tally + * + * @param integer $notice_id ID of notice we're tallying + * + * @return integer the total times the notice has been faved + */ + + static function decrement($notice_id) + { + $tally = Fave_tally::ensureTally($notice_id); + + $count = 0; + + if ($tally->count > 0) { + $count = $tally->count - 1; + $tally->count = $count; + $result = $tally->update(); + $tally->free(); + + if ($result === false) { + $msg = sprintf( + _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + } + + return $count; + } + + /** + * Ensure a tally exists for a given notice. If we can't find + * one create one. + * + * @param integer $notice_id + * + * @return Fave_tally the tally data object + */ + + static function ensureTally($notice_id) + { + $tally = new Fave_tally(); + $result = $tally->get($notice_id); + + if (empty($result)) { + $tally->notice_id = $notice_id; + $tally->count = 0; + if ($tally->insert() === false) { + $msg = sprintf( + _m("Couldn't create favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + } + + return $tally; + } +} From d2ef0cf233e7e3f4567aff6ff7c94e666da5ee95 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 29 Sep 2010 19:23:46 +0200 Subject: [PATCH 253/310] add hooks to the feedlist widget to give fine-grained control over feed links --- EVENTS.txt | 16 ++++++++++++ lib/feedlist.php | 66 +++++++++++++++++++++++++++--------------------- 2 files changed, 53 insertions(+), 29 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index fd2bdb9d56..cad93a7121 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -1086,3 +1086,19 @@ StartDeleteOwnNotice: when a user starts to delete their own notice EndDeleteOwnNotice: when a user has deleted their own notice - $user: the user doing the delete - $notice: the notice being deleted + +StartShowFeedLinkList: before showing the feed list in the sidebar +- $action: action being executed +- $feeds: list of feeds to show + +EndShowFeedLinkList: after showing the feed list in the sidebar +- $action: action being executed +- $feeds: list of feeds shown + +StartShowFeedLink: before showing an individual feed item +- $action: action being executed +- $feed: feed to show + +EndShowFeedLink: after showing an individual feed +- $action: action being executed +- $feed: feed to show diff --git a/lib/feedlist.php b/lib/feedlist.php index 7493e3575e..4aacf0b3d8 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -59,42 +59,50 @@ class FeedList extends Widget function show($feeds) { - $this->out->elementStart('div', array('id' => 'export_data', - 'class' => 'section')); - $this->out->element('h2', null, _('Feeds')); - $this->out->elementStart('ul', array('class' => 'xoxo')); + if (Event::handle('StartShowFeedLinkList', array($this->action, &$feeds))) { + if (!empty($feeds)) { + $this->out->elementStart('div', array('id' => 'export_data', + 'class' => 'section')); + $this->out->element('h2', null, _('Feeds')); + $this->out->elementStart('ul', array('class' => 'xoxo')); - foreach ($feeds as $feed) { - $this->feedItem($feed); + foreach ($feeds as $feed) { + $this->feedItem($feed); + } + + $this->out->elementEnd('ul'); + $this->out->elementEnd('div'); + } + Event::handle('EndShowFeedLinkList', array($this->action, &$feeds)); } - - $this->out->elementEnd('ul'); - $this->out->elementEnd('div'); } function feedItem($feed) { - $classname = null; + if (Event::handle('StartShowFeedLink', array($this->action, &$feed))) { + $classname = null; - switch ($feed->type) { - case Feed::RSS1: - case Feed::RSS2: - $classname = 'rss'; - break; - case Feed::ATOM: - $classname = 'atom'; - break; - case Feed::FOAF: - $classname = 'foaf'; - break; + switch ($feed->type) { + case Feed::RSS1: + case Feed::RSS2: + $classname = 'rss'; + break; + case Feed::ATOM: + $classname = 'atom'; + break; + case Feed::FOAF: + $classname = 'foaf'; + break; + } + + $this->out->elementStart('li'); + $this->out->element('a', array('href' => $feed->url, + 'class' => $classname, + 'type' => $feed->mimeType(), + 'title' => $feed->title), + $feed->typeName()); + $this->out->elementEnd('li'); + Event::handle('EndShowFeedLink', array($this->action, $feed)); } - - $this->out->elementStart('li'); - $this->out->element('a', array('href' => $feed->url, - 'class' => $classname, - 'type' => $feed->mimeType(), - 'title' => $feed->title), - $feed->typeName()); - $this->out->elementEnd('li'); } } From 968ec4cb4212480f60c6c7b5522b5ef56ca73e51 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 12:49:26 -0700 Subject: [PATCH 254/310] Add Start/EndShowNoticeInfo events --- EVENTS.txt | 6 ++++++ lib/noticelist.php | 14 +++++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index 7b6ad40eb9..e0dc7514d6 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -263,6 +263,12 @@ StartShowNoticeItem: just before showing the notice item EndShowNoticeItem: just after showing the notice item - $item: the NoticeListItem object being shown +StartShowNoticeInfo: just before showing notice info +- $item: The NoticeListItem object being shown + +EndShowNoticeInfo: just after showing notice info +- $item: The NoticeListItem object being shown + StartShowNoticeOptions: just before showing notice options like fave, repeat, etc. - $item: the NoticeListItem object being shown diff --git a/lib/noticelist.php b/lib/noticelist.php index cc460005ad..df1533980a 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -226,11 +226,15 @@ class NoticeListItem extends Widget function showNoticeInfo() { $this->out->elementStart('div', 'entry-content'); - $this->showNoticeLink(); - $this->showNoticeSource(); - $this->showNoticeLocation(); - $this->showContext(); - $this->showRepeat(); + if (Event::handle('StartShowNoticeInfo', array($this))) { + $this->showNoticeLink(); + $this->showNoticeSource(); + $this->showNoticeLocation(); + $this->showContext(); + $this->showRepeat(); + Event::handle('EndShowNoticeInfo', array($this)); + } + $this->out->elementEnd('div'); } From 21708f0fa3e0950e8060ed240b4da0c643aad2fd Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 12:49:53 -0700 Subject: [PATCH 255/310] - Increment/decrement notice fave tally - Display tally in notice output --- plugins/AnonymousFave/AnonymousFavePlugin.php | 31 +++++ plugins/AnonymousFave/Fave_tally.php | 108 +++++++++++------- 2 files changed, 96 insertions(+), 43 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 98f747748c..984625a881 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -136,6 +136,27 @@ class AnonymousFavePlugin extends Plugin { return true; } + + function onEndShowNoticeInfo($item) + { + common_debug("XXXXXXXXXXX onEndShowNoticeInfo"); + + $tally = Fave_tally::ensureTally($item->notice->id); + + if (!empty($tally)) { + $item->out->elementStart( + 'div', + array( + 'id' => 'notice-' . $item->notice->id . '-tally', + 'class' => 'notice-tally' + ) + ); + $item->out->raw(sprintf(_m("favored %d times"), $tally->count)); + $item->out->elementEnd('div'); + } + return true; + } + function onStartShowNoticeOptions($item) { if (!common_logged_in()) { @@ -166,6 +187,16 @@ class AnonymousFavePlugin extends Plugin { return true; } + function onEndFavorNotice($profile, $notice) + { + $tally = Fave_tally::increment($notice->id); + } + + function onEndDisfavorNotice($profile, $notice) + { + $tally = Fave_tally::decrement($notice->id); + } + function createAnonProfile() { // Get the anon user's IP, and turn it into a nickname diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index fc7e4a5790..0eaa3fdc76 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -52,7 +52,7 @@ class Fave_tally extends Memcached_DataObject public $__table = 'fave_tally'; // table name public $notice_id; // int(4) primary_key not_null - public $count; // int(4) primary_key not_null + public $count; // int(4) not_null public $modified; // datetime not_null default_0000-00-00%2000%3A00%3A00 /* Static get */ @@ -79,31 +79,48 @@ class Fave_tally extends Memcached_DataObject /** * return key definitions for DB_DataObject * - * @return array key definitions + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names */ function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() { return array('notice_id' => 'K'); } - /** - * return key definitions for DB_DataObject - * - * @return array key definitions - */ - - function keyTypes() - { - return $this->keys(); - } - /** * Magic formula for non-autoincrementing integer primary keys * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * * @return array magic three-false array that stops auto-incrementing. */ + function sequenceKey() { return array(false, false, false); @@ -125,80 +142,85 @@ class Fave_tally extends Memcached_DataObject /** * Increment a notice's tally * - * @param integer $notice_id ID of notice we're tallying + * @param integer $noticeID ID of notice we're tallying * - * @return integer the total times the notice has been faved + * @return Fave_tally $tally the tally data object */ - static function increment($notice_id) + static function increment($noticeID) { - $tally = Fave_tally::ensureTally($notice_id); - $count = $tally->count + 1; - $tally->count = $count; - $result = $tally->update(); - $tally->free(); + common_debug("XXXXXXXXX Fave_tally::increment()"); + $tally = Fave_tally::ensureTally($noticeID); - if ($result === false) { + $orig = clone($tally); + $tally->count++; + $result = $tally->update($orig); + + if (!$result) { $msg = sprintf( - _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + _m("Couldn't update favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } - return $count; + return $tally; } /** * Decrement a notice's tally * - * @param integer $notice_id ID of notice we're tallying + * @param integer $noticeID ID of notice we're tallying * - * @return integer the total times the notice has been faved + * @return Fave_tally $tally the tally data object */ - static function decrement($notice_id) + static function decrement($noticeID) { - $tally = Fave_tally::ensureTally($notice_id); + common_debug("XXXXXXXXX Fave_tally::decrement()"); - $count = 0; + $tally = Fave_tally::ensureTally($noticeID); if ($tally->count > 0) { - $count = $tally->count - 1; - $tally->count = $count; - $result = $tally->update(); - $tally->free(); + $orig = clone($tally); + $tally->count--; + $result = $tally->update($orig); - if ($result === false) { + if (!$result) { $msg = sprintf( - _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + _m("Couldn't update favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } } - return $count; + return $tally; } /** * Ensure a tally exists for a given notice. If we can't find * one create one. * - * @param integer $notice_id + * @param integer $noticeID * * @return Fave_tally the tally data object */ - static function ensureTally($notice_id) + static function ensureTally($noticeID) { - $tally = new Fave_tally(); - $result = $tally->get($notice_id); + $tally = Fave_tally::staticGet('notice_id', $notice_id); - if (empty($result)) { + if (!$tally) { + common_debug("Fave_tally::ensureTally - creating tally for notice " . $notice_id); + $tally = new Fave_tally(); $tally->notice_id = $notice_id; $tally->count = 0; - if ($tally->insert() === false) { + $result = $tally->insert(); + if (!$result) { $msg = sprintf( - _m("Couldn't create favorite tally for notice ID %d.", $notice_id) + _m("Couldn't create favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } From 9ef3549a7145dc6e041da15fd569bc4f42654f2e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 13:29:58 -0700 Subject: [PATCH 256/310] Intialize new fave tallys with total existing fave count per notice --- plugins/AnonymousFave/Fave_tally.php | 38 ++++++++++++++----- .../scripts/initialize_fave_tallys.php | 38 +++++++++++++++++++ 2 files changed, 67 insertions(+), 9 deletions(-) create mode 100644 plugins/AnonymousFave/scripts/initialize_fave_tallys.php diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index 0eaa3fdc76..35ace6d01b 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -36,7 +36,7 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; /** * Data class for favorites tally * - * A class representing a total number of times a notice has been favorited + * A class representing a total number of times a notice has been favored * * @category Action * @package StatusNet @@ -159,7 +159,7 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( _m("Couldn't update favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -189,7 +189,7 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( _m("Couldn't update favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -200,7 +200,7 @@ class Fave_tally extends Memcached_DataObject /** * Ensure a tally exists for a given notice. If we can't find - * one create one. + * one create one with the total number of existing faves * * @param integer $noticeID * @@ -209,18 +209,18 @@ class Fave_tally extends Memcached_DataObject static function ensureTally($noticeID) { - $tally = Fave_tally::staticGet('notice_id', $notice_id); + $tally = Fave_tally::staticGet('notice_id', $noticeID); if (!$tally) { - common_debug("Fave_tally::ensureTally - creating tally for notice " . $notice_id); + common_debug("Fave_tally::ensureTally - creating tally for notice " . $noticeID); $tally = new Fave_tally(); - $tally->notice_id = $notice_id; - $tally->count = 0; + $tally->notice_id = $noticeID; + $tally->count = Fave_tally::countExistingFaves($noticeID); $result = $tally->insert(); if (!$result) { $msg = sprintf( _m("Couldn't create favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -228,4 +228,24 @@ class Fave_tally extends Memcached_DataObject return $tally; } + + /** + * Count the number of faves a notice already has. Used to initalize + * a tally for a notice. + * + * @param integer $noticeID ID of the notice to count faves for + * + * @return integer $total total number of time the notice has been favored + */ + + static function countExistingFaves($noticeID) + { + $fave = new Fave(); + $fave->notice_id = $noticeID; + $total = $fave->count(); + + common_debug("ZZZZZZZ notice " . $noticeID . ' has ' . $total . " faves"); + + return $total; + } } diff --git a/plugins/AnonymousFave/scripts/initialize_fave_tallys.php b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php new file mode 100644 index 0000000000..f7ea6d1ef7 --- /dev/null +++ b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php @@ -0,0 +1,38 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); + +$helptext = <<find(); + +while ($notice->fetch()) { + Fave_tally::ensureTally($notice->id); +} + From b4765594f9ea3dcd4ce5ed99c733a057e4c7db48 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 13:31:01 -0700 Subject: [PATCH 257/310] Set initialize_fave_tallys.php executable --- plugins/AnonymousFave/scripts/initialize_fave_tallys.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 plugins/AnonymousFave/scripts/initialize_fave_tallys.php diff --git a/plugins/AnonymousFave/scripts/initialize_fave_tallys.php b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php old mode 100644 new mode 100755 From de6bd5c129f07a8c19aaf1094b2e4d9856d47a33 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 14:07:46 -0700 Subject: [PATCH 258/310] Add Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks --- EVENTS.txt | 16 ++++++++++++++++ lib/disfavorform.php | 10 +++++++--- lib/favorform.php | 9 ++++++--- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index e0dc7514d6..bb84cc4d6a 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -774,6 +774,22 @@ EndDisfavorNotice: After saving a notice as a favorite - $profile: profile of the person faving (can be remote!) - $notice: notice being faved +StartFavorNoticeForm: starting the data in the form for favoring a notice +- $FavorForm: the favor form being shown +- $notice: notice being favored + +EndFavorNoticeForm: Ending the data in the form for favoring a notice +- $FavorForm: the favor form being shown +- $notice: notice being favored + +StartDisFavorNoticeForm: starting the data in the form for disfavoring a notice +- $DisfavorForm: the disfavor form being shown +- $notice: notice being difavored + +EndDisFavorNoticeForm: Ending the data in the form for disfavoring a notice +- $DisfavorForm: the disfavor form being shown +- $notice: notice being disfavored + StartFindMentions: start finding mentions in a block of text - $sender: sender profile - $text: plain text version of the notice diff --git a/lib/disfavorform.php b/lib/disfavorform.php index 5b135b38ad..6023766d7b 100644 --- a/lib/disfavorform.php +++ b/lib/disfavorform.php @@ -123,9 +123,13 @@ class DisfavorForm extends Form function formData() { - $this->out->hidden('notice-n'.$this->notice->id, - $this->notice->id, - 'notice'); + if (Event::handle('StartDisFavorNoticeForm', array($this, $this->notice))) { + $this->out->hidden('notice-n'.$this->notice->id, + $this->notice->id, + 'notice'); + Event::handle('EndDisFavorNoticeForm', array($this, $this->notice)); + } + } /** diff --git a/lib/favorform.php b/lib/favorform.php index 625df7c8b5..4e2891ffd5 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -123,9 +123,12 @@ class FavorForm extends Form function formData() { - $this->out->hidden('notice-n'.$this->notice->id, - $this->notice->id, - 'notice'); + if (Event::handle('StartFavorNoticeForm', array($this, $this->notice))) { + $this->out->hidden('notice-n'.$this->notice->id, + $this->notice->id, + 'notice'); + Event::handle('EndFavorNoticeForm', array($this, $this->notice)); + } } /** From 5ca280f203a3ab41a367d0d034ed1952c4bb7ee6 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 14:08:31 -0700 Subject: [PATCH 259/310] Ajax update notice tally --- plugins/AnonymousFave/AnonymousFavePlugin.php | 48 +++++++++++-------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 984625a881..41542c8493 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -136,27 +136,6 @@ class AnonymousFavePlugin extends Plugin { return true; } - - function onEndShowNoticeInfo($item) - { - common_debug("XXXXXXXXXXX onEndShowNoticeInfo"); - - $tally = Fave_tally::ensureTally($item->notice->id); - - if (!empty($tally)) { - $item->out->elementStart( - 'div', - array( - 'id' => 'notice-' . $item->notice->id . '-tally', - 'class' => 'notice-tally' - ) - ); - $item->out->raw(sprintf(_m("favored %d times"), $tally->count)); - $item->out->elementEnd('div'); - } - return true; - } - function onStartShowNoticeOptions($item) { if (!common_logged_in()) { @@ -187,6 +166,33 @@ class AnonymousFavePlugin extends Plugin { return true; } + function onEndFavorNoticeForm($form, $notice) + { + $this->showTally($form->out, $notice); + } + + function onEndDisFavorNoticeForm($form, $notice) + { + $this->showTally($form->out, $notice); + } + + function showTally($out, $notice) + { + $tally = Fave_tally::ensureTally($notice->id); + + if (!empty($tally)) { + $out->elementStart( + 'div', + array( + 'id' => 'notice-' . $notice->id . '-tally', + 'class' => 'notice-tally' + ) + ); + $out->raw(sprintf(_m("favored %d times"), $tally->count)); + $out->elementEnd('div'); + } + } + function onEndFavorNotice($profile, $notice) { $tally = Fave_tally::increment($notice->id); From ba6984284425f4556777523338fa4f15a03e3884 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 15:52:18 -0700 Subject: [PATCH 260/310] - Lookup anon profiles by ID (safer because they are guranteed to be unique) and probably faster - Obfuscate the anonymous user session token to make it hard to figure out the profile ID --- plugins/AnonymousFave/AnonymousFavePlugin.php | 56 ++++++++++++------- plugins/AnonymousFave/anondisfavor.php | 10 +--- plugins/AnonymousFave/anonfavor.php | 9 +-- 3 files changed, 38 insertions(+), 37 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 41542c8493..264cad1748 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -151,7 +151,7 @@ class AnonymousFavePlugin extends Plugin { if (!common_logged_in()) { - $profile = $this->getAnonProfile(); + $profile = AnonymousFavePlugin::getAnonProfile(); if (!empty($profile)) { if ($profile->hasFave($item->notice)) { $disfavor = new AnonDisFavorForm($item->out, $item->notice); @@ -207,42 +207,58 @@ class AnonymousFavePlugin extends Plugin { // Get the anon user's IP, and turn it into a nickname list($proxy, $ip) = common_client_ip(); - // IP + time + random number should avoid collisions - $nickname = 'anonymous-' . $ip . '-' . time() . '-' . common_good_rand(5); + + // IP + time + random number should help to avoid collisions + $baseNickname = $ip . '-' . time() . '-' . common_good_rand(5); $profile = new Profile(); - $profile->nickname = $nickname; + $profile->nickname = $baseNickname; $id = $profile->insert(); - if (!empty($id)) { - common_log( - LOG_INFO, - "AnonymousFavePlugin - created profile for anonymous user from IP: " - . $ip - . ', nickname = ' - . $nickname - ); + if (!$id) { + throw new ServerException(_m("Couldn't create anonymous user session")); } + // Stick the Profile ID into the nickname + $orig = clone($profile); + + $profile->nickname = 'anon-' . $id . '-' . $baseNickname; + $result = $profile->update($orig); + + if (!$result) { + throw new ServerException(_m("Couldn't create anonymous user session")); + } + + common_log( + LOG_INFO, + "AnonymousFavePlugin - created profile for anonymous user from IP: " + . $ip + . ', nickname = ' + . $profile->nickname + ); + return $profile; } - function getAnonProfile() { + static function getAnonProfile() { - $anon = $_SESSION['anon_nickname']; + $token = $_SESSION['anon_token']; + $anon = base64_decode($token); $profile = null; - if (!empty($anon)) { - $profile = Profile::staticGet('nickname', $anon); + if (!empty($anon) && substr($anon, 0, 5) == 'anon-') { + $parts = explode('-', $anon); + $id = $parts[1]; + // Do Profile lookup by ID instead of nickname for safety/performance + $profile = Profile::staticGet('id', $id); } else { $profile = $this->createAnonProfile(); - $_SESSION['anon_nickname'] = $profile->nickname; + // Obfuscate so it's hard to figure out the Profile ID + $_SESSION['anon_token'] = base64_encode($profile->nickname); } - if (!empty($profile)) { - return $profile; - } + return $profile; } /** diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php index 9fd56fdc32..f39d5a7780 100644 --- a/plugins/AnonymousFave/anondisfavor.php +++ b/plugins/AnonymousFave/anondisfavor.php @@ -54,15 +54,7 @@ class AnonDisfavorAction extends RedirectingAction { parent::handle($args); - $anon = $_SESSION['anon_nickname']; - - $profile = Profile::staticGet('nickname', $anon); - - if (empty($profile)) { - common_debug( - "AnonDisFavorAction - Anon user tried to disfave a notice but doesn't have a profile." - ); - } + $profile = AnonymousFavePlugin::getAnonProfile(); if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php index c972f202e4..58570ced9a 100644 --- a/plugins/AnonymousFave/anonfavor.php +++ b/plugins/AnonymousFave/anonfavor.php @@ -54,14 +54,7 @@ class AnonFavorAction extends RedirectingAction { parent::handle($args); - $anon = $_SESSION['anon_nickname']; - $profile = Profile::staticGet('nickname', $anon); - - if (empty($profile)) { - common_debug( - "AnonFavorAction - Anon user tried to fave a notice but doesn't have a profile." - ); - } + $profile = AnonymousFavePlugin::getAnonProfile(); if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( From f3390599901d7b7766d9813e281e0ca78e9729fd Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 16:11:32 -0700 Subject: [PATCH 261/310] Make createAnonProfile() static --- plugins/AnonymousFave/AnonymousFavePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 264cad1748..47eebef9ba 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -203,7 +203,7 @@ class AnonymousFavePlugin extends Plugin { $tally = Fave_tally::decrement($notice->id); } - function createAnonProfile() { + static function createAnonProfile() { // Get the anon user's IP, and turn it into a nickname list($proxy, $ip) = common_client_ip(); @@ -253,7 +253,7 @@ class AnonymousFavePlugin extends Plugin { // Do Profile lookup by ID instead of nickname for safety/performance $profile = Profile::staticGet('id', $id); } else { - $profile = $this->createAnonProfile(); + $profile = AnonymousFavePlugin::createAnonProfile(); // Obfuscate so it's hard to figure out the Profile ID $_SESSION['anon_token'] = base64_encode($profile->nickname); } From 148ab660b69b665d949835e047d93906cebe614e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 16:28:29 -0700 Subject: [PATCH 262/310] Remove debugging statements --- plugins/AnonymousFave/AnonymousFavePlugin.php | 4 ++-- plugins/AnonymousFave/Fave_tally.php | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 47eebef9ba..72093e7f7e 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -216,7 +216,7 @@ class AnonymousFavePlugin extends Plugin { $id = $profile->insert(); if (!$id) { - throw new ServerException(_m("Couldn't create anonymous user session")); + throw new ServerException(_m("Couldn't create anonymous user session.")); } // Stick the Profile ID into the nickname @@ -226,7 +226,7 @@ class AnonymousFavePlugin extends Plugin { $result = $profile->update($orig); if (!$result) { - throw new ServerException(_m("Couldn't create anonymous user session")); + throw new ServerException(_m("Couldn't create anonymous user session.")); } common_log( diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index 35ace6d01b..b350d5a0a5 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -149,7 +149,6 @@ class Fave_tally extends Memcached_DataObject static function increment($noticeID) { - common_debug("XXXXXXXXX Fave_tally::increment()"); $tally = Fave_tally::ensureTally($noticeID); $orig = clone($tally); @@ -177,8 +176,6 @@ class Fave_tally extends Memcached_DataObject static function decrement($noticeID) { - common_debug("XXXXXXXXX Fave_tally::decrement()"); - $tally = Fave_tally::ensureTally($noticeID); if ($tally->count > 0) { @@ -212,7 +209,6 @@ class Fave_tally extends Memcached_DataObject $tally = Fave_tally::staticGet('notice_id', $noticeID); if (!$tally) { - common_debug("Fave_tally::ensureTally - creating tally for notice " . $noticeID); $tally = new Fave_tally(); $tally->notice_id = $noticeID; $tally->count = Fave_tally::countExistingFaves($noticeID); @@ -243,9 +239,6 @@ class Fave_tally extends Memcached_DataObject $fave = new Fave(); $fave->notice_id = $noticeID; $total = $fave->count(); - - common_debug("ZZZZZZZ notice " . $noticeID . ' has ' . $total . " faves"); - return $total; } } From c19e592fa80f616a18718c4650ea0ffc9661f7ce Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 27 Sep 2010 15:01:03 -0700 Subject: [PATCH 263/310] Move hasFave() to Profile --- classes/Profile.php | 35 +++++++++++++++++++++++++++++++++++ classes/User.php | 33 ++------------------------------- 2 files changed, 37 insertions(+), 31 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 3a381fcc89..668f25d2e4 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -473,6 +473,41 @@ class Profile extends Memcached_DataObject return $cnt; } + function hasFave($notice) + { + $cache = common_memcache(); + + // XXX: Kind of a hack. + + if (!empty($cache)) { + // This is the stream of favorite notices, in rev chron + // order. This forces it into cache. + + $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW); + + // If it's in the list, then it's a fave + + if (in_array($notice->id, $ids)) { + return true; + } + + // If we're not past the end of the cache window, + // then the cache has all available faves, so this one + // is not a fave. + + if (count($ids) < NOTICE_CACHE_WINDOW) { + return false; + } + + // Otherwise, cache doesn't have all faves; + // fall through to the default + } + + $fave = Fave::pkeyGet(array('user_id' => $this->id, + 'notice_id' => $notice->id)); + return ((is_null($fave)) ? false : true); + } + function faveCount() { $c = common_memcache(); diff --git a/classes/User.php b/classes/User.php index b85192b29c..27299e62e0 100644 --- a/classes/User.php +++ b/classes/User.php @@ -412,37 +412,8 @@ class User extends Memcached_DataObject function hasFave($notice) { - $cache = common_memcache(); - - // XXX: Kind of a hack. - - if ($cache) { - // This is the stream of favorite notices, in rev chron - // order. This forces it into cache. - - $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW); - - // If it's in the list, then it's a fave - - if (in_array($notice->id, $ids)) { - return true; - } - - // If we're not past the end of the cache window, - // then the cache has all available faves, so this one - // is not a fave. - - if (count($ids) < NOTICE_CACHE_WINDOW) { - return false; - } - - // Otherwise, cache doesn't have all faves; - // fall through to the default - } - - $fave = Fave::pkeyGet(array('user_id' => $this->id, - 'notice_id' => $notice->id)); - return ((is_null($fave)) ? false : true); + $profile = $this->getProfile(); + return $profile->hasFave($notice); } function mutuallySubscribed($other) From 3960c9ad39d96cdfef390065f15f9f0fc280f37c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 15:46:14 -0700 Subject: [PATCH 264/310] Move blowFavesCache() to Profile --- classes/Profile.php | 14 ++++++++++++++ classes/User.php | 11 +---------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/classes/Profile.php b/classes/Profile.php index 668f25d2e4..3844077e62 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -551,6 +551,20 @@ class Profile extends Memcached_DataObject return $cnt; } + function blowFavesCache() + { + $cache = common_memcache(); + if ($cache) { + // Faves don't happen chronologically, so we need to blow + // ;last cache, too + $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); + $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); + $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id)); + $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last')); + } + $this->blowFaveCount(); + } + function blowSubscriberCount() { $c = common_memcache(); diff --git a/classes/User.php b/classes/User.php index 27299e62e0..e784fd9e9a 100644 --- a/classes/User.php +++ b/classes/User.php @@ -482,17 +482,8 @@ class User extends Memcached_DataObject function blowFavesCache() { - $cache = common_memcache(); - if ($cache) { - // Faves don't happen chronologically, so we need to blow - // ;last cache, too - $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id)); - $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last')); - $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id)); - $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last')); - } $profile = $this->getProfile(); - $profile->blowFaveCount(); + $profile->blowFavesCache(); } function getSelfTags() From fd779009b8636399472d74e86531ba9bc86cfb59 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 15:56:11 -0700 Subject: [PATCH 265/310] Add Start/EndShowNoticeItem event hooks to single notice page --- actions/shownotice.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/actions/shownotice.php b/actions/shownotice.php index 86df5f9f30..c8e9cfe66a 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -314,10 +314,14 @@ class SingleNoticeItem extends NoticeListItem function show() { $this->showStart(); - $this->showNotice(); - $this->showNoticeAttachments(); - $this->showNoticeInfo(); - $this->showNoticeOptions(); + if (Event::handle('StartShowNoticeItem', array($this))) { + $this->showNotice(); + $this->showNoticeAttachments(); + $this->showNoticeInfo(); + $this->showNoticeOptions(); + Event::handle('EndShowNoticeItem', array($this)); + } + $this->showEnd(); } From 21759c31326ace83498466794d9b692f3f2ae077 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 17:09:34 -0700 Subject: [PATCH 266/310] New eventsi: Start/EndShowNoticeOptions and Start/EndShowFaveForm --- EVENTS.txt | 16 ++++++++++++++-- lib/noticelist.php | 38 ++++++++++++++++++++++---------------- 2 files changed, 36 insertions(+), 18 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index cad93a7121..d722bc4ac7 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -258,10 +258,22 @@ EndShowExportData: just after showing the
with export data (feeds) - $action: action object being shown StartShowNoticeItem: just before showing the notice item -- $action: action object being shown +- $item: The NoticeListItem object being shown EndShowNoticeItem: just after showing the notice item -- $action: action object being shown +- $item: the NoticeListItem object being shown + +StartShowNoticeOptions: just before showing notice options like fave, repeat, etc. +- $item: the NoticeListItem object being shown + +EndShowNoticeOptions: just after showing notice options like fave, repeat, etc. +- $item: the NoticeListItem object being shown + +StartShowFaveForm: just before showing the fave form +- $item: the NoticeListItem object being shown + +EndShowFaveForm: just after showing the fave form +- $item: the NoticeListItem object being shown StartShowPageNotice: just before showing the page notice (instructions or error) - $action: action object being shown diff --git a/lib/noticelist.php b/lib/noticelist.php index 529d6a3f90..cc460005ad 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -236,14 +236,17 @@ class NoticeListItem extends Widget function showNoticeOptions() { - $user = common_current_user(); - if ($user) { - $this->out->elementStart('div', 'notice-options'); - $this->showFaveForm(); - $this->showReplyLink(); - $this->showRepeatForm(); - $this->showDeleteLink(); - $this->out->elementEnd('div'); + if (Event::handle('StartShowNoticeOptions', array($this))) { + $user = common_current_user(); + if ($user) { + $this->out->elementStart('div', 'notice-options'); + $this->showFaveForm(); + $this->showReplyLink(); + $this->showRepeatForm(); + $this->showDeleteLink(); + $this->out->elementEnd('div'); + } + Event::handle('EndShowNoticeOptions', array($this)); } } @@ -270,15 +273,18 @@ class NoticeListItem extends Widget function showFaveForm() { - $user = common_current_user(); - if ($user) { - if ($user->hasFave($this->notice)) { - $disfavor = new DisfavorForm($this->out, $this->notice); - $disfavor->show(); - } else { - $favor = new FavorForm($this->out, $this->notice); - $favor->show(); + if (Event::handle('StartShowFaveForm', array($this))) { + $user = common_current_user(); + if ($user) { + if ($user->hasFave($this->notice)) { + $disfavor = new DisfavorForm($this->out, $this->notice); + $disfavor->show(); + } else { + $favor = new FavorForm($this->out, $this->notice); + $favor->show(); + } } + Event::handle('EndShowFaveForm', array($this)); } } From c10f17dc6b1e357e37fea31adbf74de003e6429c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 17:17:09 -0700 Subject: [PATCH 267/310] Initial plugin for allowing anonymous favoriting --- plugins/AnonymousFave/AnonymousFavePlugin.php | 198 ++++++++++++++++++ plugins/AnonymousFave/anondisfavor.php | 132 ++++++++++++ plugins/AnonymousFave/anondisfavorform.php | 74 +++++++ plugins/AnonymousFave/anonfavor.php | 125 +++++++++++ plugins/AnonymousFave/anonfavorform.php | 74 +++++++ 5 files changed, 603 insertions(+) create mode 100644 plugins/AnonymousFave/AnonymousFavePlugin.php create mode 100644 plugins/AnonymousFave/anondisfavor.php create mode 100644 plugins/AnonymousFave/anondisfavorform.php create mode 100644 plugins/AnonymousFave/anonfavor.php create mode 100644 plugins/AnonymousFave/anonfavorform.php diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php new file mode 100644 index 0000000000..3dccaf538a --- /dev/null +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -0,0 +1,198 @@ +. + * + * @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/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +define('ANONYMOUS_FAVE_PLUGIN_VERSION', '0.1'); + +/** + * Anonymous Fave plugin to allow anonymous (not logged in) users + * to favorite notices + * + * @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 AnonymousFavePlugin extends Plugin { + + function onArgsInitialize() { + // We always want a session because we're tracking anon users + common_ensure_session(); + } + + function onEndShowHTML($action) + { + if (!common_logged_in()) { + // Set a place to return to when submitting forms + common_set_returnto($action->selfUrl()); + } + } + + function onEndShowScripts($action) + { + // Setup ajax calls for favoriting. Usually this is only done when + // a user is logged in. + $action->inlineScript('SN.U.NoticeFavor();'); + } + + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) { + case 'AnonFavorAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'AnonDisFavorAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'AnonFavorForm': + include_once $dir . '/anonfavorform.php'; + return false; + case 'AnonDisFavorForm': + include_once $dir . '/anondisfavorform.php'; + return false; + default: + return true; + } + } + + function onStartInitializeRouter($m) { + + $m->connect('main/anonfavor', array('action' => 'AnonFavor')); + $m->connect('main/anondisfavor', array('action' => 'AnonDisFavor')); + + return true; + } + + function onStartShowNoticeOptions($item) { + + if (!common_logged_in()) { + $item->out->elementStart('div', 'notice-options'); + $item->showFaveForm(); + $item->out->elementEnd('div'); + } + + return true; + } + + function onStartShowFaveForm($item) { + + if (!common_logged_in()) { + + $profile = $this->getAnonProfile(); + if (!empty($profile)) { + if ($profile->hasFave($item->notice)) { + $disfavor = new AnonDisFavorForm($item->out, $item->notice); + $disfavor->show(); + } else { + $favor = new AnonFavorForm($item->out, $item->notice); + $favor->show(); + } + } + } + + return true; + } + + function createAnonProfile() { + + // Get the anon user's IP, and turn it into a nickname + list($proxy, $ip) = common_client_ip(); + // IP + time + random number should avoid collisions + $nickname = 'anonymous-' . $ip . '-' . time() . '-' . common_good_rand(5); + + $profile = new Profile(); + $profile->nickname = $nickname; + $id = $profile->insert(); + + if (!empty($id)) { + common_log( + LOG_INFO, + "AnonymousFavePlugin - created profile for anonymous user from IP: " + . $ip + . ', nickname = ' + . $nickname + ); + } + + return $profile; + } + + function getAnonProfile() { + + $anon = $_SESSION['anon_nickname']; + + $profile = null; + + if (!empty($anon)) { + $profile = Profile::staticGet('nickname', $anon); + } else { + $profile = $this->createAnonProfile(); + $_SESSION['anon_nickname'] = $profile->nickname; + } + + if (!empty($profile)) { + return $profile; + } + } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:AnonymousFave'; + + $versions[] = array('name' => 'AnonymousFave', + 'version' => ANONYMOUS_FAVE_PLUGIN_VERSION, + 'author' => 'Zach Copley', + 'homepage' => $url, + 'rawdescription' => + _m('Allow anonymous users to favorite notices.')); + + return true; + } + +} diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php new file mode 100644 index 0000000000..9fd56fdc32 --- /dev/null +++ b/plugins/AnonymousFave/anondisfavor.php @@ -0,0 +1,132 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Anonymous disfavor class + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ +class AnonDisfavorAction extends RedirectingAction +{ + /** + * Class handler. + * + * @param array $args query arguments + * + * @return void + */ + function handle($args) + { + parent::handle($args); + + $anon = $_SESSION['anon_nickname']; + + $profile = Profile::staticGet('nickname', $anon); + + if (empty($profile)) { + common_debug( + "AnonDisFavorAction - Anon user tried to disfave a notice but doesn't have a profile." + ); + } + + if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { + $this->clientError( + _m('Could not disfavor notice! Please make sure your browser has cookies enabled.') + ); + return; + } + + $id = $this->trimmed('notice'); + $notice = Notice::staticGet($id); + $token = $this->trimmed('token-' . $notice->id); + + if (!$token || $token != common_session_token()) { + $this->clientError(_m('There was a problem with your session token. Try again, please.')); + return; + } + + $fave = new Fave(); + $fave->user_id = $profile->id; + $fave->notice_id = $notice->id; + + if (!$fave->find(true)) { + $this->clientError(_m('This notice is not a favorite!')); + return; + } + + $result = $fave->delete(); + + if (!$result) { + common_log_db_error($fave, 'DELETE', __FILE__); + $this->serverError(_m('Could not delete favorite.')); + return; + } + + $profile->blowFavesCache(); + + if ($this->boolean('ajax')) { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Add to favorites')); + $this->elementEnd('head'); + $this->elementStart('body'); + $favor = new AnonFavorForm($this, $notice); + $favor->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + $this->returnToPrevious(); + } + } + + /** + * If returnto not set, return to the public stream. + * + * @return string URL + */ + function defaultReturnTo() + { + $returnto = common_get_returnto(); + if (empty($returnto)) { + return common_local_url('public'); + } else { + return $returnto; + } + } +} + diff --git a/plugins/AnonymousFave/anondisfavorform.php b/plugins/AnonymousFave/anondisfavorform.php new file mode 100644 index 0000000000..c347ed7b43 --- /dev/null +++ b/plugins/AnonymousFave/anondisfavorform.php @@ -0,0 +1,74 @@ +. + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/form.php'; + +/** + * Form for disfavoring a notice anonymously + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see DisFavorForm + */ + +class AnonDisfavorForm extends DisFavorForm +{ + + /** + * Constructor + * + * @param HTMLOutputter $out output channel + * @param Notice $notice notice to disfavor + */ + + function __construct($out=null, $notice=null) + { + parent::__construct($out, $notice); + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('AnonDisFavor'); + } + +} diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php new file mode 100644 index 0000000000..c972f202e4 --- /dev/null +++ b/plugins/AnonymousFave/anonfavor.php @@ -0,0 +1,125 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, 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); +} + +/** + * Anonymous favor class + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ +class AnonFavorAction extends RedirectingAction +{ + /** + * Class handler. + * + * @param array $args query arguments + * + * @return void + */ + function handle($args) + { + parent::handle($args); + + $anon = $_SESSION['anon_nickname']; + $profile = Profile::staticGet('nickname', $anon); + + if (empty($profile)) { + common_debug( + "AnonFavorAction - Anon user tried to fave a notice but doesn't have a profile." + ); + } + + if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { + $this->clientError( + _m('Could not favor notice! Please make sure your browser has cookies enabled.') + ); + return; + } + + $id = $this->trimmed('notice'); + $notice = Notice::staticGet($id); + $token = $this->trimmed('token-' . $notice->id); + + if (empty($token) || $token != common_session_token()) { + $this->clientError(_m('There was a problem with your session token. Try again, please.')); + return; + } + + + if ($profile->hasFave($notice)) { + $this->clientError(_m('This notice is already a favorite!')); + return; + } + $fave = Fave::addNew($profile, $notice); + + if (!$fave) { + $this->serverError(_m('Could not create favorite.')); + return; + } + + $profile->blowFavesCache(); + + if ($this->boolean('ajax')) { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + $this->element('title', null, _m('Disfavor favorite')); + $this->elementEnd('head'); + $this->elementStart('body'); + $disfavor = new AnonDisFavorForm($this, $notice); + $disfavor->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + $this->returnToPrevious(); + } + } + + /** + * If returnto not set, return to the public stream. + * + * @return string URL + */ + function defaultReturnTo() + { + $returnto = common_get_returnto(); + if (empty($returnto)) { + return common_local_url('public'); + } else { + return $returnto; + } + } +} diff --git a/plugins/AnonymousFave/anonfavorform.php b/plugins/AnonymousFave/anonfavorform.php new file mode 100644 index 0000000000..d73c2831d0 --- /dev/null +++ b/plugins/AnonymousFave/anonfavorform.php @@ -0,0 +1,74 @@ +. + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @copyright 20010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/form.php'; + +/** + * Form for favoring a notice anonymously + * + * @category Form + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see AnonDisfavorForm + */ + +class AnonFavorForm extends FavorForm +{ + + /** + * Constructor + * + * @param HTMLOutputter $out output channel + * @param Notice $notice notice to favor + */ + + function __construct($out=null, $notice=null) + { + parent::__construct($out, $notice); + } + + /** + * Action of the form + * + * @return string URL of the action + */ + + function action() + { + return common_local_url('AnonFavor'); + } + +} From 73297d374974a431b40d0cc45a7180613b8d5762 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 28 Sep 2010 19:07:45 -0700 Subject: [PATCH 268/310] New DB_DataObject for storing favorites tally --- plugins/AnonymousFave/AnonymousFavePlugin.php | 36 +++ plugins/AnonymousFave/Fave_tally.php | 209 ++++++++++++++++++ 2 files changed, 245 insertions(+) create mode 100644 plugins/AnonymousFave/Fave_tally.php diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 3dccaf538a..98f747748c 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -55,6 +55,39 @@ class AnonymousFavePlugin extends Plugin { common_ensure_session(); } + /** + * Hook for ensuring our tables are created + * + * Ensures the fave_tally table is there and has the right columns + * + * @return boolean hook return + */ + + function onCheckSchema() + { + $schema = Schema::get(); + + // For storing total number of times a notice has been faved + + $schema->ensureTable('fave_tally', + array( + new ColumnDef('notice_id', 'integer', null, false, 'PRI'), + new ColumnDef('count', 'integer', null, false), + new ColumnDef( + 'modified', + 'timestamp', + null, + false, + null, + 'CURRENT_TIMESTAMP', + 'on update CURRENT_TIMESTAMP' + ) + ) + ); + + return true; + } + function onEndShowHTML($action) { if (!common_logged_in()) { @@ -75,6 +108,9 @@ class AnonymousFavePlugin extends Plugin { $dir = dirname(__FILE__); switch ($cls) { + case 'Fave_tally': + include_once $dir . '/' . $cls . '.php'; + return false; case 'AnonFavorAction': include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php new file mode 100644 index 0000000000..fc7e4a5790 --- /dev/null +++ b/plugins/AnonymousFave/Fave_tally.php @@ -0,0 +1,209 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2010, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; + +/** + * Data class for favorites tally + * + * A class representing a total number of times a notice has been favorited + * + * @category Action + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + */ + +class Fave_tally extends Memcached_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'fave_tally'; // table name + public $notice_id; // int(4) primary_key not_null + public $count; // int(4) primary_key not_null + public $modified; // datetime not_null default_0000-00-00%2000%3A00%3A00 + + /* Static get */ + function staticGet($k, $v = NULL) { return Memcached_DataObject::staticGet('Fave_tally', $k, $v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE + + /** + * return table definition for DB_DataObject + * + * @return array array of column definitions + */ + + function table() + { + return array( + 'notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'count' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'modified' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL + ); + } + + /** + * return key definitions for DB_DataObject + * + * @return array key definitions + */ + + function keys() + { + return array('notice_id' => 'K'); + } + + /** + * return key definitions for DB_DataObject + * + * @return array key definitions + */ + + function keyTypes() + { + return $this->keys(); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + /** + * Get a single object with multiple keys + * + * @param array $kv Map of key-value pairs + * + * @return User_flag_profile found object or null + */ + + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('Fave_tally', $kv); + } + + /** + * Increment a notice's tally + * + * @param integer $notice_id ID of notice we're tallying + * + * @return integer the total times the notice has been faved + */ + + static function increment($notice_id) + { + $tally = Fave_tally::ensureTally($notice_id); + $count = $tally->count + 1; + $tally->count = $count; + $result = $tally->update(); + $tally->free(); + + if ($result === false) { + $msg = sprintf( + _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + + return $count; + } + + /** + * Decrement a notice's tally + * + * @param integer $notice_id ID of notice we're tallying + * + * @return integer the total times the notice has been faved + */ + + static function decrement($notice_id) + { + $tally = Fave_tally::ensureTally($notice_id); + + $count = 0; + + if ($tally->count > 0) { + $count = $tally->count - 1; + $tally->count = $count; + $result = $tally->update(); + $tally->free(); + + if ($result === false) { + $msg = sprintf( + _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + } + + return $count; + } + + /** + * Ensure a tally exists for a given notice. If we can't find + * one create one. + * + * @param integer $notice_id + * + * @return Fave_tally the tally data object + */ + + static function ensureTally($notice_id) + { + $tally = new Fave_tally(); + $result = $tally->get($notice_id); + + if (empty($result)) { + $tally->notice_id = $notice_id; + $tally->count = 0; + if ($tally->insert() === false) { + $msg = sprintf( + _m("Couldn't create favorite tally for notice ID %d.", $notice_id) + ); + throw new ServerException($msg); + } + } + + return $tally; + } +} From 331502a9790806ca48e61eb94d9489ddf7baeb55 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 12:49:26 -0700 Subject: [PATCH 269/310] Add Start/EndShowNoticeInfo events --- EVENTS.txt | 6 ++++++ lib/noticelist.php | 14 +++++++++----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index d722bc4ac7..7f6890ff0c 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -263,6 +263,12 @@ StartShowNoticeItem: just before showing the notice item EndShowNoticeItem: just after showing the notice item - $item: the NoticeListItem object being shown +StartShowNoticeInfo: just before showing notice info +- $item: The NoticeListItem object being shown + +EndShowNoticeInfo: just after showing notice info +- $item: The NoticeListItem object being shown + StartShowNoticeOptions: just before showing notice options like fave, repeat, etc. - $item: the NoticeListItem object being shown diff --git a/lib/noticelist.php b/lib/noticelist.php index cc460005ad..df1533980a 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -226,11 +226,15 @@ class NoticeListItem extends Widget function showNoticeInfo() { $this->out->elementStart('div', 'entry-content'); - $this->showNoticeLink(); - $this->showNoticeSource(); - $this->showNoticeLocation(); - $this->showContext(); - $this->showRepeat(); + if (Event::handle('StartShowNoticeInfo', array($this))) { + $this->showNoticeLink(); + $this->showNoticeSource(); + $this->showNoticeLocation(); + $this->showContext(); + $this->showRepeat(); + Event::handle('EndShowNoticeInfo', array($this)); + } + $this->out->elementEnd('div'); } From 5b49fc25bfe89c081ad1aa5af2005616eb319484 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 12:49:53 -0700 Subject: [PATCH 270/310] - Increment/decrement notice fave tally - Display tally in notice output --- plugins/AnonymousFave/AnonymousFavePlugin.php | 31 +++++ plugins/AnonymousFave/Fave_tally.php | 108 +++++++++++------- 2 files changed, 96 insertions(+), 43 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 98f747748c..984625a881 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -136,6 +136,27 @@ class AnonymousFavePlugin extends Plugin { return true; } + + function onEndShowNoticeInfo($item) + { + common_debug("XXXXXXXXXXX onEndShowNoticeInfo"); + + $tally = Fave_tally::ensureTally($item->notice->id); + + if (!empty($tally)) { + $item->out->elementStart( + 'div', + array( + 'id' => 'notice-' . $item->notice->id . '-tally', + 'class' => 'notice-tally' + ) + ); + $item->out->raw(sprintf(_m("favored %d times"), $tally->count)); + $item->out->elementEnd('div'); + } + return true; + } + function onStartShowNoticeOptions($item) { if (!common_logged_in()) { @@ -166,6 +187,16 @@ class AnonymousFavePlugin extends Plugin { return true; } + function onEndFavorNotice($profile, $notice) + { + $tally = Fave_tally::increment($notice->id); + } + + function onEndDisfavorNotice($profile, $notice) + { + $tally = Fave_tally::decrement($notice->id); + } + function createAnonProfile() { // Get the anon user's IP, and turn it into a nickname diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index fc7e4a5790..0eaa3fdc76 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -52,7 +52,7 @@ class Fave_tally extends Memcached_DataObject public $__table = 'fave_tally'; // table name public $notice_id; // int(4) primary_key not_null - public $count; // int(4) primary_key not_null + public $count; // int(4) not_null public $modified; // datetime not_null default_0000-00-00%2000%3A00%3A00 /* Static get */ @@ -79,31 +79,48 @@ class Fave_tally extends Memcached_DataObject /** * return key definitions for DB_DataObject * - * @return array key definitions + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names */ function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + + function keyTypes() { return array('notice_id' => 'K'); } - /** - * return key definitions for DB_DataObject - * - * @return array key definitions - */ - - function keyTypes() - { - return $this->keys(); - } - /** * Magic formula for non-autoincrementing integer primary keys * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * * @return array magic three-false array that stops auto-incrementing. */ + function sequenceKey() { return array(false, false, false); @@ -125,80 +142,85 @@ class Fave_tally extends Memcached_DataObject /** * Increment a notice's tally * - * @param integer $notice_id ID of notice we're tallying + * @param integer $noticeID ID of notice we're tallying * - * @return integer the total times the notice has been faved + * @return Fave_tally $tally the tally data object */ - static function increment($notice_id) + static function increment($noticeID) { - $tally = Fave_tally::ensureTally($notice_id); - $count = $tally->count + 1; - $tally->count = $count; - $result = $tally->update(); - $tally->free(); + common_debug("XXXXXXXXX Fave_tally::increment()"); + $tally = Fave_tally::ensureTally($noticeID); - if ($result === false) { + $orig = clone($tally); + $tally->count++; + $result = $tally->update($orig); + + if (!$result) { $msg = sprintf( - _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + _m("Couldn't update favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } - return $count; + return $tally; } /** * Decrement a notice's tally * - * @param integer $notice_id ID of notice we're tallying + * @param integer $noticeID ID of notice we're tallying * - * @return integer the total times the notice has been faved + * @return Fave_tally $tally the tally data object */ - static function decrement($notice_id) + static function decrement($noticeID) { - $tally = Fave_tally::ensureTally($notice_id); + common_debug("XXXXXXXXX Fave_tally::decrement()"); - $count = 0; + $tally = Fave_tally::ensureTally($noticeID); if ($tally->count > 0) { - $count = $tally->count - 1; - $tally->count = $count; - $result = $tally->update(); - $tally->free(); + $orig = clone($tally); + $tally->count--; + $result = $tally->update($orig); - if ($result === false) { + if (!$result) { $msg = sprintf( - _m("Couldn't update favorite tally for notice ID %d.", $notice_id) + _m("Couldn't update favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } } - return $count; + return $tally; } /** * Ensure a tally exists for a given notice. If we can't find * one create one. * - * @param integer $notice_id + * @param integer $noticeID * * @return Fave_tally the tally data object */ - static function ensureTally($notice_id) + static function ensureTally($noticeID) { - $tally = new Fave_tally(); - $result = $tally->get($notice_id); + $tally = Fave_tally::staticGet('notice_id', $notice_id); - if (empty($result)) { + if (!$tally) { + common_debug("Fave_tally::ensureTally - creating tally for notice " . $notice_id); + $tally = new Fave_tally(); $tally->notice_id = $notice_id; $tally->count = 0; - if ($tally->insert() === false) { + $result = $tally->insert(); + if (!$result) { $msg = sprintf( - _m("Couldn't create favorite tally for notice ID %d.", $notice_id) + _m("Couldn't create favorite tally for notice ID %d."), + $notice_id ); throw new ServerException($msg); } From 4d6973cd700ff3fa9c84ead56e64852832281b31 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 13:29:58 -0700 Subject: [PATCH 271/310] Intialize new fave tallys with total existing fave count per notice --- plugins/AnonymousFave/Fave_tally.php | 38 ++++++++++++++----- .../scripts/initialize_fave_tallys.php | 38 +++++++++++++++++++ 2 files changed, 67 insertions(+), 9 deletions(-) create mode 100644 plugins/AnonymousFave/scripts/initialize_fave_tallys.php diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index 0eaa3fdc76..35ace6d01b 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -36,7 +36,7 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; /** * Data class for favorites tally * - * A class representing a total number of times a notice has been favorited + * A class representing a total number of times a notice has been favored * * @category Action * @package StatusNet @@ -159,7 +159,7 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( _m("Couldn't update favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -189,7 +189,7 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( _m("Couldn't update favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -200,7 +200,7 @@ class Fave_tally extends Memcached_DataObject /** * Ensure a tally exists for a given notice. If we can't find - * one create one. + * one create one with the total number of existing faves * * @param integer $noticeID * @@ -209,18 +209,18 @@ class Fave_tally extends Memcached_DataObject static function ensureTally($noticeID) { - $tally = Fave_tally::staticGet('notice_id', $notice_id); + $tally = Fave_tally::staticGet('notice_id', $noticeID); if (!$tally) { - common_debug("Fave_tally::ensureTally - creating tally for notice " . $notice_id); + common_debug("Fave_tally::ensureTally - creating tally for notice " . $noticeID); $tally = new Fave_tally(); - $tally->notice_id = $notice_id; - $tally->count = 0; + $tally->notice_id = $noticeID; + $tally->count = Fave_tally::countExistingFaves($noticeID); $result = $tally->insert(); if (!$result) { $msg = sprintf( _m("Couldn't create favorite tally for notice ID %d."), - $notice_id + $noticeID ); throw new ServerException($msg); } @@ -228,4 +228,24 @@ class Fave_tally extends Memcached_DataObject return $tally; } + + /** + * Count the number of faves a notice already has. Used to initalize + * a tally for a notice. + * + * @param integer $noticeID ID of the notice to count faves for + * + * @return integer $total total number of time the notice has been favored + */ + + static function countExistingFaves($noticeID) + { + $fave = new Fave(); + $fave->notice_id = $noticeID; + $total = $fave->count(); + + common_debug("ZZZZZZZ notice " . $noticeID . ' has ' . $total . " faves"); + + return $total; + } } diff --git a/plugins/AnonymousFave/scripts/initialize_fave_tallys.php b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php new file mode 100644 index 0000000000..f7ea6d1ef7 --- /dev/null +++ b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php @@ -0,0 +1,38 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); + +$helptext = <<find(); + +while ($notice->fetch()) { + Fave_tally::ensureTally($notice->id); +} + From 9109fe3c631ebef14f2de061fc6fc565ee0f7174 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 13:31:01 -0700 Subject: [PATCH 272/310] Set initialize_fave_tallys.php executable --- plugins/AnonymousFave/scripts/initialize_fave_tallys.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 plugins/AnonymousFave/scripts/initialize_fave_tallys.php diff --git a/plugins/AnonymousFave/scripts/initialize_fave_tallys.php b/plugins/AnonymousFave/scripts/initialize_fave_tallys.php old mode 100644 new mode 100755 From 0ac333ec801b8df68da69fa38a13d07960bd9649 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 14:07:46 -0700 Subject: [PATCH 273/310] Add Start/EndFavorNoticeForm and Start/EndDisFavorNoticeForm hooks --- EVENTS.txt | 16 ++++++++++++++++ lib/disfavorform.php | 10 +++++++--- lib/favorform.php | 9 ++++++--- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index 7f6890ff0c..2496416173 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -774,6 +774,22 @@ EndDisfavorNotice: After saving a notice as a favorite - $profile: profile of the person faving (can be remote!) - $notice: notice being faved +StartFavorNoticeForm: starting the data in the form for favoring a notice +- $FavorForm: the favor form being shown +- $notice: notice being favored + +EndFavorNoticeForm: Ending the data in the form for favoring a notice +- $FavorForm: the favor form being shown +- $notice: notice being favored + +StartDisFavorNoticeForm: starting the data in the form for disfavoring a notice +- $DisfavorForm: the disfavor form being shown +- $notice: notice being difavored + +EndDisFavorNoticeForm: Ending the data in the form for disfavoring a notice +- $DisfavorForm: the disfavor form being shown +- $notice: notice being disfavored + StartFindMentions: start finding mentions in a block of text - $sender: sender profile - $text: plain text version of the notice diff --git a/lib/disfavorform.php b/lib/disfavorform.php index 5b135b38ad..6023766d7b 100644 --- a/lib/disfavorform.php +++ b/lib/disfavorform.php @@ -123,9 +123,13 @@ class DisfavorForm extends Form function formData() { - $this->out->hidden('notice-n'.$this->notice->id, - $this->notice->id, - 'notice'); + if (Event::handle('StartDisFavorNoticeForm', array($this, $this->notice))) { + $this->out->hidden('notice-n'.$this->notice->id, + $this->notice->id, + 'notice'); + Event::handle('EndDisFavorNoticeForm', array($this, $this->notice)); + } + } /** diff --git a/lib/favorform.php b/lib/favorform.php index 625df7c8b5..4e2891ffd5 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -123,9 +123,12 @@ class FavorForm extends Form function formData() { - $this->out->hidden('notice-n'.$this->notice->id, - $this->notice->id, - 'notice'); + if (Event::handle('StartFavorNoticeForm', array($this, $this->notice))) { + $this->out->hidden('notice-n'.$this->notice->id, + $this->notice->id, + 'notice'); + Event::handle('EndFavorNoticeForm', array($this, $this->notice)); + } } /** From 0fe0f421731ee3cfa5e0bafd08559cc9bfc44422 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 14:08:31 -0700 Subject: [PATCH 274/310] Ajax update notice tally --- plugins/AnonymousFave/AnonymousFavePlugin.php | 48 +++++++++++-------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 984625a881..41542c8493 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -136,27 +136,6 @@ class AnonymousFavePlugin extends Plugin { return true; } - - function onEndShowNoticeInfo($item) - { - common_debug("XXXXXXXXXXX onEndShowNoticeInfo"); - - $tally = Fave_tally::ensureTally($item->notice->id); - - if (!empty($tally)) { - $item->out->elementStart( - 'div', - array( - 'id' => 'notice-' . $item->notice->id . '-tally', - 'class' => 'notice-tally' - ) - ); - $item->out->raw(sprintf(_m("favored %d times"), $tally->count)); - $item->out->elementEnd('div'); - } - return true; - } - function onStartShowNoticeOptions($item) { if (!common_logged_in()) { @@ -187,6 +166,33 @@ class AnonymousFavePlugin extends Plugin { return true; } + function onEndFavorNoticeForm($form, $notice) + { + $this->showTally($form->out, $notice); + } + + function onEndDisFavorNoticeForm($form, $notice) + { + $this->showTally($form->out, $notice); + } + + function showTally($out, $notice) + { + $tally = Fave_tally::ensureTally($notice->id); + + if (!empty($tally)) { + $out->elementStart( + 'div', + array( + 'id' => 'notice-' . $notice->id . '-tally', + 'class' => 'notice-tally' + ) + ); + $out->raw(sprintf(_m("favored %d times"), $tally->count)); + $out->elementEnd('div'); + } + } + function onEndFavorNotice($profile, $notice) { $tally = Fave_tally::increment($notice->id); From f79f44801cfd76b7e9e4cbfb94917bc8b395a886 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 15:52:18 -0700 Subject: [PATCH 275/310] - Lookup anon profiles by ID (safer because they are guranteed to be unique) and probably faster - Obfuscate the anonymous user session token to make it hard to figure out the profile ID --- plugins/AnonymousFave/AnonymousFavePlugin.php | 56 ++++++++++++------- plugins/AnonymousFave/anondisfavor.php | 10 +--- plugins/AnonymousFave/anonfavor.php | 9 +-- 3 files changed, 38 insertions(+), 37 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 41542c8493..264cad1748 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -151,7 +151,7 @@ class AnonymousFavePlugin extends Plugin { if (!common_logged_in()) { - $profile = $this->getAnonProfile(); + $profile = AnonymousFavePlugin::getAnonProfile(); if (!empty($profile)) { if ($profile->hasFave($item->notice)) { $disfavor = new AnonDisFavorForm($item->out, $item->notice); @@ -207,42 +207,58 @@ class AnonymousFavePlugin extends Plugin { // Get the anon user's IP, and turn it into a nickname list($proxy, $ip) = common_client_ip(); - // IP + time + random number should avoid collisions - $nickname = 'anonymous-' . $ip . '-' . time() . '-' . common_good_rand(5); + + // IP + time + random number should help to avoid collisions + $baseNickname = $ip . '-' . time() . '-' . common_good_rand(5); $profile = new Profile(); - $profile->nickname = $nickname; + $profile->nickname = $baseNickname; $id = $profile->insert(); - if (!empty($id)) { - common_log( - LOG_INFO, - "AnonymousFavePlugin - created profile for anonymous user from IP: " - . $ip - . ', nickname = ' - . $nickname - ); + if (!$id) { + throw new ServerException(_m("Couldn't create anonymous user session")); } + // Stick the Profile ID into the nickname + $orig = clone($profile); + + $profile->nickname = 'anon-' . $id . '-' . $baseNickname; + $result = $profile->update($orig); + + if (!$result) { + throw new ServerException(_m("Couldn't create anonymous user session")); + } + + common_log( + LOG_INFO, + "AnonymousFavePlugin - created profile for anonymous user from IP: " + . $ip + . ', nickname = ' + . $profile->nickname + ); + return $profile; } - function getAnonProfile() { + static function getAnonProfile() { - $anon = $_SESSION['anon_nickname']; + $token = $_SESSION['anon_token']; + $anon = base64_decode($token); $profile = null; - if (!empty($anon)) { - $profile = Profile::staticGet('nickname', $anon); + if (!empty($anon) && substr($anon, 0, 5) == 'anon-') { + $parts = explode('-', $anon); + $id = $parts[1]; + // Do Profile lookup by ID instead of nickname for safety/performance + $profile = Profile::staticGet('id', $id); } else { $profile = $this->createAnonProfile(); - $_SESSION['anon_nickname'] = $profile->nickname; + // Obfuscate so it's hard to figure out the Profile ID + $_SESSION['anon_token'] = base64_encode($profile->nickname); } - if (!empty($profile)) { - return $profile; - } + return $profile; } /** diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php index 9fd56fdc32..f39d5a7780 100644 --- a/plugins/AnonymousFave/anondisfavor.php +++ b/plugins/AnonymousFave/anondisfavor.php @@ -54,15 +54,7 @@ class AnonDisfavorAction extends RedirectingAction { parent::handle($args); - $anon = $_SESSION['anon_nickname']; - - $profile = Profile::staticGet('nickname', $anon); - - if (empty($profile)) { - common_debug( - "AnonDisFavorAction - Anon user tried to disfave a notice but doesn't have a profile." - ); - } + $profile = AnonymousFavePlugin::getAnonProfile(); if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php index c972f202e4..58570ced9a 100644 --- a/plugins/AnonymousFave/anonfavor.php +++ b/plugins/AnonymousFave/anonfavor.php @@ -54,14 +54,7 @@ class AnonFavorAction extends RedirectingAction { parent::handle($args); - $anon = $_SESSION['anon_nickname']; - $profile = Profile::staticGet('nickname', $anon); - - if (empty($profile)) { - common_debug( - "AnonFavorAction - Anon user tried to fave a notice but doesn't have a profile." - ); - } + $profile = AnonymousFavePlugin::getAnonProfile(); if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( From 54f19da3ab534f5f416fc4902841439ddbe0f10e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 16:11:32 -0700 Subject: [PATCH 276/310] Make createAnonProfile() static --- plugins/AnonymousFave/AnonymousFavePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 264cad1748..47eebef9ba 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -203,7 +203,7 @@ class AnonymousFavePlugin extends Plugin { $tally = Fave_tally::decrement($notice->id); } - function createAnonProfile() { + static function createAnonProfile() { // Get the anon user's IP, and turn it into a nickname list($proxy, $ip) = common_client_ip(); @@ -253,7 +253,7 @@ class AnonymousFavePlugin extends Plugin { // Do Profile lookup by ID instead of nickname for safety/performance $profile = Profile::staticGet('id', $id); } else { - $profile = $this->createAnonProfile(); + $profile = AnonymousFavePlugin::createAnonProfile(); // Obfuscate so it's hard to figure out the Profile ID $_SESSION['anon_token'] = base64_encode($profile->nickname); } From 8e7532245a9ba98c6a70a114cedb7c841482bf2a Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 16:28:29 -0700 Subject: [PATCH 277/310] Remove debugging statements --- plugins/AnonymousFave/AnonymousFavePlugin.php | 4 ++-- plugins/AnonymousFave/Fave_tally.php | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 47eebef9ba..72093e7f7e 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -216,7 +216,7 @@ class AnonymousFavePlugin extends Plugin { $id = $profile->insert(); if (!$id) { - throw new ServerException(_m("Couldn't create anonymous user session")); + throw new ServerException(_m("Couldn't create anonymous user session.")); } // Stick the Profile ID into the nickname @@ -226,7 +226,7 @@ class AnonymousFavePlugin extends Plugin { $result = $profile->update($orig); if (!$result) { - throw new ServerException(_m("Couldn't create anonymous user session")); + throw new ServerException(_m("Couldn't create anonymous user session.")); } common_log( diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index 35ace6d01b..b350d5a0a5 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -149,7 +149,6 @@ class Fave_tally extends Memcached_DataObject static function increment($noticeID) { - common_debug("XXXXXXXXX Fave_tally::increment()"); $tally = Fave_tally::ensureTally($noticeID); $orig = clone($tally); @@ -177,8 +176,6 @@ class Fave_tally extends Memcached_DataObject static function decrement($noticeID) { - common_debug("XXXXXXXXX Fave_tally::decrement()"); - $tally = Fave_tally::ensureTally($noticeID); if ($tally->count > 0) { @@ -212,7 +209,6 @@ class Fave_tally extends Memcached_DataObject $tally = Fave_tally::staticGet('notice_id', $noticeID); if (!$tally) { - common_debug("Fave_tally::ensureTally - creating tally for notice " . $noticeID); $tally = new Fave_tally(); $tally->notice_id = $noticeID; $tally->count = Fave_tally::countExistingFaves($noticeID); @@ -243,9 +239,6 @@ class Fave_tally extends Memcached_DataObject $fave = new Fave(); $fave->notice_id = $noticeID; $total = $fave->count(); - - common_debug("ZZZZZZZ notice " . $noticeID . ' has ' . $total . " faves"); - return $total; } } From 1acc7d66c63e0b9f794791e3a2e2b0f60bc2ebb1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 11:29:31 -0700 Subject: [PATCH 278/310] Always specify UTF-8 targt charset for html_entity_decode(); default is 8-bit ISO-8859-1 which causes things to break when we later pass them through things that expect to work with UTF-8. For instance, running through preg_replace() with the /u option results in NULL, leading to problems with OStatus and SubMirror generating their plaintext versions and doing length-cropping. --- lib/activityobject.php | 2 +- plugins/OStatus/classes/Ostatus_profile.php | 4 ++-- plugins/TwitterBridge/daemons/twitterstatusfetcher.php | 2 +- scripts/importtwitteratom.php | 2 +- scripts/install_cli.php | 2 +- scripts/restoreuser.php | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/activityobject.php b/lib/activityobject.php index 95615d581c..c957933d04 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -203,7 +203,7 @@ class ActivityObject $title = ActivityUtils::childHtmlContent($element, self::TITLE); - $this->title = html_entity_decode(strip_tags($title)); + $this->title = html_entity_decode(strip_tags($title), ENT_QUOTES, 'UTF-8'); $this->source = $this->_getSource($element); diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 047435f668..10cee917e1 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -558,7 +558,7 @@ class Ostatus_profile extends Memcached_DataObject // Get (safe!) HTML and text versions of the content $rendered = $this->purify($sourceContent); - $content = html_entity_decode(strip_tags($rendered)); + $content = html_entity_decode(strip_tags($rendered), ENT_QUOTES, 'UTF-8'); $shortened = common_shorten_links($content); @@ -569,7 +569,7 @@ class Ostatus_profile extends Memcached_DataObject if (Notice::contentTooLong($shortened)) { $attachment = $this->saveHTMLFile($note->title, $rendered); - $summary = html_entity_decode(strip_tags($note->summary)); + $summary = html_entity_decode(strip_tags($note->summary), ENT_QUOTES, 'UTF-8'); if (empty($summary)) { $summary = $content; } diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 590fa2954d..cef67b1806 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -321,7 +321,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon $notice->is_local = Notice::GATEWAY; - $notice->content = html_entity_decode($status->text); + $notice->content = html_entity_decode($status->text, ENT_QUOTES, 'UTF-8'); $notice->rendered = $this->linkify($status); if (Event::handle('StartNoticeSave', array(&$notice))) { diff --git a/scripts/importtwitteratom.php b/scripts/importtwitteratom.php index 261dfb1d02..a29526f27e 100644 --- a/scripts/importtwitteratom.php +++ b/scripts/importtwitteratom.php @@ -89,7 +89,7 @@ function importActivityStream($user, $doc) $html = htmLawed($html, $config); - $content = html_entity_decode(strip_tags($html)); + $content = html_entity_decode(strip_tags($html), ENT_QUOTES, 'UTF-8'); $notice = Notice::saveNew($user->id, $content, diff --git a/scripts/install_cli.php b/scripts/install_cli.php index 61fbe18ef6..dadbcf66f0 100755 --- a/scripts/install_cli.php +++ b/scripts/install_cli.php @@ -208,7 +208,7 @@ END_HELP; $breakout = preg_replace('/+]\bhref="(.*)"[^>]*>(.*)<\/a>/', '\2 <\1>', $html); - return html_entity_decode(strip_tags($breakout)); + return html_entity_decode(strip_tags($breakout), ENT_QUOTES, 'UTF-8'); } } diff --git a/scripts/restoreuser.php b/scripts/restoreuser.php index de3816dd53..82eb9bbaa1 100644 --- a/scripts/restoreuser.php +++ b/scripts/restoreuser.php @@ -213,7 +213,7 @@ function postNote($user, $activity) // Get (safe!) HTML and text versions of the content $rendered = purify($sourceContent); - $content = html_entity_decode(strip_tags($rendered)); + $content = html_entity_decode(strip_tags($rendered), ENT_QUOTES, 'UTF-8'); $shortened = common_shorten_links($content); From 93bea7ff28434dee5202659a99a024476d43592f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 12:35:25 -0700 Subject: [PATCH 279/310] Fix for OpenID-only private sites: we were removing the 'login' and 'register' actions from the routing system entirely, which meant that login links & redirects from unauthenticated views on private sites (as well as various re-auth situations even on non-private sites) would break and send to the main page instead. Changed it to leave the 'login' and 'register' actions in the system; we're already taking them over and redirecting them to the OpenID login page, so they won't be reached by accident; but now those redirects can be reached on purpose. ;) Better long-term fix may be to allow some aliasing, so we can have common_local_url('login') actually send us straight to the OpenID login page instead of having to go through an intermediate redirect, but this'll do. --- plugins/OpenID/OpenIDPlugin.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 7d6a5dc000..a033a50109 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -102,9 +102,14 @@ class OpenIDPlugin extends Plugin function onStartConnectPath(&$path, &$defaults, &$rules, &$result) { if (common_config('site', 'openidonly')) { - static $block = array('main/login', - 'main/register', - 'main/recoverpassword', + // Note that we should not remove the login and register + // actions. Lots of auth-related things link to them, + // such as when visiting a private site without a session + // or revalidating a remembered login for admin work. + // + // We take those two over with redirects to ourselves + // over in onArgsInitialize(). + static $block = array('main/recoverpassword', 'settings/password'); if (in_array($path, $block)) { From 8c37b86e7304880d830ce8f94db08bf928ad1a9d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:22:25 -0700 Subject: [PATCH 280/310] Added an option to TinyMCE plugin to restrict the rich-text editor to users who have the 'richedit' role. This allows enabling it for a subset of accounts on a site while leaving other users using the regular posting system, which is more stable. --- plugins/TinyMCE/TinyMCEPlugin.php | 34 +++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/plugins/TinyMCE/TinyMCEPlugin.php b/plugins/TinyMCE/TinyMCEPlugin.php index 2ec4b71608..e0640ebdf3 100644 --- a/plugins/TinyMCE/TinyMCEPlugin.php +++ b/plugins/TinyMCE/TinyMCEPlugin.php @@ -50,9 +50,14 @@ class TinyMCEPlugin extends Plugin { var $html; + // By default, TinyMCE editor will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + function onEndShowScripts($action) { - if (common_logged_in ()) { + if (common_logged_in() && $this->isAllowedRichEdit()) { $action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js')); $action->inlineScript($this->_inlineScript()); } @@ -62,7 +67,9 @@ class TinyMCEPlugin extends Plugin function onEndShowStyles($action) { - $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + if ($this->isAllowedRichEdit()) { + $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + } return true; } @@ -116,7 +123,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeWeb($action, $user, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { $html = $this->sanitizeHtml($content); $options['rendered'] = $html; $content = $this->stripHtml($html); @@ -135,7 +142,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeAppendAttachment($action, $media, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { // See if we've got a placeholder inline image; if so, fill it! $dom = new DOMDocument(); @@ -320,4 +327,23 @@ END_OF_SCRIPT; return $scr; } + + /** + * Does the current user have permission to use the rich-text editor? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } } From bc2b72a8723054affc4c71ab9ae55cf40aba7447 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:30:39 -0700 Subject: [PATCH 281/310] Add 'restricted' option to NoticeTitle; if set, only users with 'richedit' role get the fancy extra title field. --- plugins/NoticeTitle/NoticeTitlePlugin.php | 48 ++++++++++++++++++----- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/plugins/NoticeTitle/NoticeTitlePlugin.php b/plugins/NoticeTitle/NoticeTitlePlugin.php index dea0417f5f..269f061893 100644 --- a/plugins/NoticeTitle/NoticeTitlePlugin.php +++ b/plugins/NoticeTitle/NoticeTitlePlugin.php @@ -51,6 +51,12 @@ define('NOTICE_TITLE_PLUGIN_VERSION', '0.1'); class NoticeTitlePlugin extends Plugin { + + // By default, notice-title widget will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + /** * Database schema setup * @@ -137,14 +143,16 @@ class NoticeTitlePlugin extends Plugin function onStartShowNoticeFormData($form) { - $form->out->element('style', - null, - 'label#notice_data-text-label { display: none }'); - $form->out->element('input', array('type' => 'text', - 'id' => 'notice_title', - 'name' => 'notice_title', - 'size' => 40, - 'maxlength' => Notice_title::MAXCHARS)); + if ($this->isAllowedRichEdit()) { + $form->out->element('style', + null, + 'label#notice_data-text-label { display: none }'); + $form->out->element('input', array('type' => 'text', + 'id' => 'notice_title', + 'name' => 'notice_title', + 'size' => 40, + 'maxlength' => Notice_title::MAXCHARS)); + } return true; } @@ -162,7 +170,7 @@ class NoticeTitlePlugin extends Plugin function onStartNoticeSaveWeb($action, &$authorId, &$text, &$options) { $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { if (mb_strlen($title) > Notice_title::MAXCHARS) { throw new Exception(sprintf(_m("The notice title is too long (max %d characters).", Notice_title::MAXCHARS))); @@ -186,7 +194,7 @@ class NoticeTitlePlugin extends Plugin $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { $nt = new Notice_title(); @@ -327,4 +335,24 @@ class NoticeTitlePlugin extends Plugin return true; } + + /** + * Does the current user have permission to use the notice-title widget? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } + } From d7f03dab9e563d4bb712920ef668a4c282a12e46 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:22:25 -0700 Subject: [PATCH 282/310] Added an option to TinyMCE plugin to restrict the rich-text editor to users who have the 'richedit' role. This allows enabling it for a subset of accounts on a site while leaving other users using the regular posting system, which is more stable. --- plugins/TinyMCE/TinyMCEPlugin.php | 34 +++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/plugins/TinyMCE/TinyMCEPlugin.php b/plugins/TinyMCE/TinyMCEPlugin.php index 2ec4b71608..e0640ebdf3 100644 --- a/plugins/TinyMCE/TinyMCEPlugin.php +++ b/plugins/TinyMCE/TinyMCEPlugin.php @@ -50,9 +50,14 @@ class TinyMCEPlugin extends Plugin { var $html; + // By default, TinyMCE editor will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + function onEndShowScripts($action) { - if (common_logged_in ()) { + if (common_logged_in() && $this->isAllowedRichEdit()) { $action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js')); $action->inlineScript($this->_inlineScript()); } @@ -62,7 +67,9 @@ class TinyMCEPlugin extends Plugin function onEndShowStyles($action) { - $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + if ($this->isAllowedRichEdit()) { + $action->style('span#notice_data-text_container, span#notice_data-text_parent { float: left }'); + } return true; } @@ -116,7 +123,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeWeb($action, $user, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { $html = $this->sanitizeHtml($content); $options['rendered'] = $html; $content = $this->stripHtml($html); @@ -135,7 +142,7 @@ class TinyMCEPlugin extends Plugin */ function onStartSaveNewNoticeAppendAttachment($action, $media, &$content, &$options) { - if ($action->arg('richedit')) { + if ($action->arg('richedit') && $this->isAllowedRichEdit()) { // See if we've got a placeholder inline image; if so, fill it! $dom = new DOMDocument(); @@ -320,4 +327,23 @@ END_OF_SCRIPT; return $scr; } + + /** + * Does the current user have permission to use the rich-text editor? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } } From 8ad933c86f8593e61eea9692f863f9adaa6820b7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 13:30:39 -0700 Subject: [PATCH 283/310] Add 'restricted' option to NoticeTitle; if set, only users with 'richedit' role get the fancy extra title field. --- plugins/NoticeTitle/NoticeTitlePlugin.php | 48 ++++++++++++++++++----- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/plugins/NoticeTitle/NoticeTitlePlugin.php b/plugins/NoticeTitle/NoticeTitlePlugin.php index dea0417f5f..269f061893 100644 --- a/plugins/NoticeTitle/NoticeTitlePlugin.php +++ b/plugins/NoticeTitle/NoticeTitlePlugin.php @@ -51,6 +51,12 @@ define('NOTICE_TITLE_PLUGIN_VERSION', '0.1'); class NoticeTitlePlugin extends Plugin { + + // By default, notice-title widget will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; + /** * Database schema setup * @@ -137,14 +143,16 @@ class NoticeTitlePlugin extends Plugin function onStartShowNoticeFormData($form) { - $form->out->element('style', - null, - 'label#notice_data-text-label { display: none }'); - $form->out->element('input', array('type' => 'text', - 'id' => 'notice_title', - 'name' => 'notice_title', - 'size' => 40, - 'maxlength' => Notice_title::MAXCHARS)); + if ($this->isAllowedRichEdit()) { + $form->out->element('style', + null, + 'label#notice_data-text-label { display: none }'); + $form->out->element('input', array('type' => 'text', + 'id' => 'notice_title', + 'name' => 'notice_title', + 'size' => 40, + 'maxlength' => Notice_title::MAXCHARS)); + } return true; } @@ -162,7 +170,7 @@ class NoticeTitlePlugin extends Plugin function onStartNoticeSaveWeb($action, &$authorId, &$text, &$options) { $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { if (mb_strlen($title) > Notice_title::MAXCHARS) { throw new Exception(sprintf(_m("The notice title is too long (max %d characters).", Notice_title::MAXCHARS))); @@ -186,7 +194,7 @@ class NoticeTitlePlugin extends Plugin $title = $action->trimmed('notice_title'); - if (!empty($title)) { + if (!empty($title) && $this->isAllowedRichEdit()) { $nt = new Notice_title(); @@ -327,4 +335,24 @@ class NoticeTitlePlugin extends Plugin return true; } + + /** + * Does the current user have permission to use the notice-title widget? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. + * + * @fixme make that more sanely configurable :) + * + * @return boolean + */ + private function isAllowedRichEdit() + { + if ($this->restricted) { + $user = common_current_user(); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; + } + } + } From 143897bf45a1643329535703c8ff24710e8c0ee8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:46:32 -0700 Subject: [PATCH 284/310] Initial SlicedFavorites plugin to allow for customized variants of 'Popular' tab (favorited action) that include or exclude a given set of users. No added UI tabs in this version, beware! --- .../SlicedFavorites/SlicedFavoritesPlugin.php | 109 ++++++++++++ .../SlicedFavorites/favoritedsliceaction.php | 155 ++++++++++++++++++ 2 files changed, 264 insertions(+) create mode 100644 plugins/SlicedFavorites/SlicedFavoritesPlugin.php create mode 100644 plugins/SlicedFavorites/favoritedsliceaction.php diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php new file mode 100644 index 0000000000..0a1a591efb --- /dev/null +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -0,0 +1,109 @@ +. + */ + +/** + * @package YammerImportPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class SlicedFavoritesPlugin extends Plugin +{ + /** + * Example: + * + * addPlugin('SlicedFavorites', array( + * 'slices' => array( + * // show only pop's notices on /favorited + * 'default' => array('include' => array('pop')), + * + * // show only son's notices on /favorited/blog + * 'blog' => array('include' => array('son')), + * + * // show all favorited notices except pop's and son's on /favorited/submitted + * 'submitted' => array('exclude' => array('pop', 'son')), + * + * // show all favorited notices on /favorited/everybody + * 'everybody' => array(), + * ) + * )); + * + * @var array + */ + public $slices = array(); + + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('favorited/:slice', + array('action' => 'favoritedslice'), + array('slice' => '[a-zA-Z0-9]+')); + + return true; + } + + // Take over the default... :D + function onArgsInitialize($args) + { + if (array_key_exists('action', $args)) { + $action = trim($args['action']); + if ($action == 'favorited') { + common_redirect(common_local_url('favoritedslice', array('slice' => 'default'))); + exit(0); + } + } + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'favoritedsliceaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onSlicedFavoritesGetSettings($slice, &$data) + { + if (isset($this->slices[$slice])) { + $data = $this->slices[$slice]; + return false; + } + return true; + } +} diff --git a/plugins/SlicedFavorites/favoritedsliceaction.php b/plugins/SlicedFavorites/favoritedsliceaction.php new file mode 100644 index 0000000000..020688cfa4 --- /dev/null +++ b/plugins/SlicedFavorites/favoritedsliceaction.php @@ -0,0 +1,155 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + + +class FavoritedSliceAction extends FavoritedAction +{ + private $includeUsers = array(), $excludeUsers = array(); + + /** + * Take arguments for running + * + * @param array $args $_REQUEST args + * + * @return boolean success flag + * + * @todo move queries from showContent() to here + */ + + function prepare($args) + { + parent::prepare($args); + + $this->slice = $this->arg('slice', 'default'); + $data = array(); + if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { + throw new ClientException(_m('Unknown favorites slice.')); + } + if (isset($data['include'])) { + $this->includeUsers = $data['include']; + } + if (isset($data['exclude'])) { + $this->excludeUsers = $data['exclude']; + } + + return true; + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $slice = $this->sliceWhereClause(); + if (!$slice) { + return parent::showContent(); + } + + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND $slice " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + $this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'favorited'); + } + + private function sliceWhereClause() + { + $include = $this->nicknamesToIds($this->includeUsers); + $exclude = $this->nicknamesToIds($this->excludeUsers); + + if (count($include) == 1) { + return "profile_id = " . intval($include[0]); + } else if (count($include) > 1) { + return "profile_id IN (" . implode(',', $include) . ")"; + } else if (count($exclude) == 1) { + return "profile_id != " . intval($exclude[0]); + } else if (count($exclude) > 1) { + return "profile_id NOT IN (" . implode(',', $exclude) . ")"; + } else { + return false; + } + } + + /** + * + * @param array $nicks array of user nicknames + * @return array of profile/user IDs + */ + private function nicknamesToIds($nicks) + { + $ids = array(); + foreach ($nicks as $nick) { + // not the most efficient way for a big list! + $user = User::staticGet('nickname', $nick); + if ($user) { + $ids[] = intval($user->id); + } + } + return $ids; + } +} From 5c11ad15e14811a4094224b1f6995354ec443df9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:52:00 -0700 Subject: [PATCH 285/310] fix comment --- plugins/SlicedFavorites/SlicedFavoritesPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index 0a1a591efb..ed7f5ebb96 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -18,7 +18,7 @@ */ /** - * @package YammerImportPlugin + * @package SlicedFavoritesPlugin * @maintainer Brion Vibber */ From 2ecbae308d0fba0ace43009f0d062301b2a86c81 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 15:56:38 -0700 Subject: [PATCH 286/310] GroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages subset for just posts in the group. Not necessarily terribly efficient, should be tested and benchmarked on non-trivial sites --- .../GroupFavorited/GroupFavoritedPlugin.php | 79 +++++++++++++ .../GroupFavorited/groupfavoritedaction.php | 111 ++++++++++++++++++ 2 files changed, 190 insertions(+) create mode 100644 plugins/GroupFavorited/GroupFavoritedPlugin.php create mode 100644 plugins/GroupFavorited/groupfavoritedaction.php diff --git a/plugins/GroupFavorited/GroupFavoritedPlugin.php b/plugins/GroupFavorited/GroupFavoritedPlugin.php new file mode 100644 index 0000000000..68815530aa --- /dev/null +++ b/plugins/GroupFavorited/GroupFavoritedPlugin.php @@ -0,0 +1,79 @@ +. + */ + +/** + * @package GroupFavoritedPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class GroupFavoritedPlugin extends Plugin +{ + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('group/:nickname/favorited', + array('action' => 'groupfavorited'), + array('nickname' => '[a-zA-Z0-9]+')); + + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'groupfavoritedaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onEndGroupGroupNav(GroupNav $nav) + { + $action_name = $nav->action->trimmed('action'); + $nickname = $nav->group->nickname; + $nav->out->menuItem(common_local_url('groupfavorited', array('nickname' => + $nickname)), + // TRANS: Menu item in the group navigation page. + _m('MENU', 'Popular'), + // TRANS: Tooltip for menu item in the group navigation page. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Popular notices in %s group'), $nickname), + $action_name == 'groupfavorited', + 'nav_group_group'); + } +} diff --git a/plugins/GroupFavorited/groupfavoritedaction.php b/plugins/GroupFavorited/groupfavoritedaction.php new file mode 100644 index 0000000000..6803bea8d6 --- /dev/null +++ b/plugins/GroupFavorited/groupfavoritedaction.php @@ -0,0 +1,111 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + + +class GroupFavoritedAction extends ShowgroupAction +{ + + /** + * Title of the page + * + * @return string page title, with page number + */ + + function title() + { + if (!empty($this->group->fullname)) { + $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; + } else { + $base = $this->group->nickname; + } + + if ($this->page == 1) { + return sprintf(_m('Popular posts in %s group'), $base); + } else { + return sprintf(_m('Popular posts in %1$s group, page %2$d'), + $base, + $this->page); + } + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $groupId = intval($this->group->id); + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice ' . + "JOIN group_inbox ON notice.id = group_inbox.notice_id " . + 'JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND group_id = $groupId " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + //$this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'groupfavorited', + array('nickname' => $this->group->nickname)); + } +} From 55a080ea4e662ae719e8956c93389f3c689bb73a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 16:25:15 -0700 Subject: [PATCH 287/310] ForceGroup plugin: optionally force new users to join a particular group or set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core. --- classes/Notice.php | 1 + lib/distribqueuehandler.php | 10 ++- plugins/ForceGroup/ForceGroupPlugin.php | 82 +++++++++++++++++++++++++ 3 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 plugins/ForceGroup/ForceGroupPlugin.php diff --git a/classes/Notice.php b/classes/Notice.php index 79626f8898..e268544b50 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2034,6 +2034,7 @@ class Notice extends Memcached_DataObject { // We always insert for the author so they don't // have to wait + Event::handle('StartNoticeDistribute', array($this)); $user = User::staticGet('id', $this->profile_id); if (!empty($user)) { diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php index 8f4b72d5c3..a7519c1d50 100644 --- a/lib/distribqueuehandler.php +++ b/lib/distribqueuehandler.php @@ -78,13 +78,19 @@ class DistribQueueHandler } try { - Event::handle('EndNoticeSave', array($notice)); - // Enqueue for other handlers + Event::handle('EndNoticeDistribute', array($notice)); } catch (Exception $e) { $this->logit($notice, $e); } try { + Event::handle('EndNoticeSave', array($notice)); + } catch (Exception $e) { + $this->logit($notice, $e); + } + + try { + // Enqueue for other handlers common_enqueue_notice($notice); } catch (Exception $e) { $this->logit($notice, $e); diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php new file mode 100644 index 0000000000..e0a04fccac --- /dev/null +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -0,0 +1,82 @@ +. + */ + +/** + * @package ForceGroupPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ForceGroupPlugin extends Plugin +{ + /** + * Members of these groups will have all their posts mirrored into + * the group even if they don't explicitly mention it. + * + * List by local nickname. + */ + public $post = array(); + + /** + * New user registrations will automatically join these groups on + * registration. They're not prevented from leaving, however. + * + * List by local nickname. + */ + public $join = array(); + + /** + * If poster is in one of the forced groups, make sure their notice + * gets saved into that group even if not explicitly mentioned. + * + * @param Notice $notice + * @return boolean event hook return + */ + function onStartNoticeDistribute($notice) + { + $profile = $notice->getProfile(); + foreach ($this->post as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && $profile->isMember($group)) { + $notice->addToGroupInbox($group); + } + } + return true; + } + + function onEndUserRegister($profile, $user) + { + $profile = $user->getProfile(); + foreach ($this->join as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && !$profile->isMember($group)) { + try { + if (Event::handle('StartJoinGroup', array($group, $user))) { + Group_member::join($group->id, $user->id); + Event::handle('EndJoinGroup', array($group, $user)); + } + } catch (Exception $e) { + throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + $user->nickname, $group->nickname)); + } + } + } + } +} From 0d5dadc81d8477dad885b52c89bf69cdd2ad0cc5 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 30 Sep 2010 16:39:56 -0700 Subject: [PATCH 288/310] Change Disqus plugin to allow restricting to users with "richedit" role --- plugins/Disqus/DisqusPlugin.php | 51 ++++++++++++++++++--------------- 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index ec5857dd74..10155c3381 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -52,16 +52,19 @@ if (!defined('STATUSNET')) { * ); * * If you only want to allow commenting on a specific user's notices or - * a specific set of user's notices, use the "nicknames" array, e.g.: + * a specific set of users' notices initialize the plugin with the "restricted" + * parameter and grant the "richedit" role to those users. E.g.: * * addPlugin( * 'Disqus', array( - * 'shortname' => 'YOURSHORTNAME', - * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;', - * 'nicknames' => array('spock', 'kirk', 'bones') + * 'shortname' => 'YOURSHORTNAME', + * 'divStyle' => 'width:675px; padding-top:10px; position:relative; float:left;', + * 'restricted' => true * ) * ); * + * $ php userrole.php -s#### -nusername -rrichedit + * * * NOTE: the 'divStyle' in an optional parameter that passes in some * inline CSS when creating the Disqus widget. It's a shortcut to make @@ -85,7 +88,11 @@ class DisqusPlugin extends Plugin { public $shortname; // Required 'shortname' for actually triggering Disqus public $divStyle; // Optional CSS chunk for the main
- public $nicknames; // Optional array of nicks to restrict commenting to (default on for all users) + + // By default, Disqus commenting will be available to all users. + // With restricted on, only users who have been granted the + // "richedit" role get it. + public $restricted = false; /** * Add a Disqus commenting section to the end of an individual @@ -185,9 +192,9 @@ ENDOFSCRIPT; $profile = Profile::staticGet('id', $noticeListItem->notice->profile_id); - if ($this->hasCommenting($profile)) { + if ($this->isAllowedRichEdit($profile)) { - // @todo Refactor individual notice display to have it's own event hooks + // @todo Refactor individual notice display to have its own event hooks $noticeListItem->showNotice(); $noticeListItem->showNoticeInfo(); @@ -196,7 +203,9 @@ ENDOFSCRIPT; $noticeUrl .= '#disqus_thread'; $noticeListItem->out->element( - 'a', array('href' => $noticeUrl, 'class' => 'disqus_count'), 'Comments' + 'a', + array('href' => $noticeUrl, 'class' => 'disqus_count'), + _m('Comments') ); $noticeListItem->showNoticeOptions(); @@ -209,28 +218,24 @@ ENDOFSCRIPT; } /** - * Helper to check whether commenting should be enabled - * for a given notice + * Does the current user have permission to use the Disqus plugin? + * Always true unless the plugin's "restricted" setting is on, in which + * case it's limited to users with the "richedit" role. * - * Assumes commenting should be enabled, unless the - * nicknames array is populated + * @fixme make that more sanely configurable :) * * @param Profile $profile the profile to check * - * @return boolean true if yes + * @return boolean */ - private function hasCommenting($profile) + private function isAllowedRichEdit($profile) { - if (!empty($this->nicknames)) { - foreach ($this->nicknames as $nickname) { - if ($profile->nickname == $nickname) { - return true; - } - } - return false; + if ($this->restricted) { + $user = User::staticGet($profile->id); + return !empty($user) && $user->hasRole('richedit'); + } else { + return true; } - - return true; } /** From cdd43d8da97e4188327c7f9f5fab29a20d1868c3 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 30 Sep 2010 16:51:19 -0700 Subject: [PATCH 289/310] Less intrusive insertion of Disqus notice count into notice lists --- plugins/Disqus/DisqusPlugin.php | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index 10155c3381..3024d81a62 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -176,29 +176,22 @@ ENDOFSCRIPT; } /** - * Override the default Notice display to add Disqus comments link + * Tack on a Disqus comments link to the notice options stanza * (the link displays the total number of comments for each notice) * * @param NoticeListItem $noticeListItem * - * @return boolean override */ - function onStartShowNoticeItem($noticeListItem) + function onEndShowNoticeInfo($noticeListItem) { // Don't enable commenting for remote notices if (empty($noticeListItem->notice->is_local)) { - return true; + return; } $profile = Profile::staticGet('id', $noticeListItem->notice->profile_id); if ($this->isAllowedRichEdit($profile)) { - - // @todo Refactor individual notice display to have its own event hooks - - $noticeListItem->showNotice(); - $noticeListItem->showNoticeInfo(); - $noticeUrl = $noticeListItem->notice->bestUrl(); $noticeUrl .= '#disqus_thread'; @@ -207,13 +200,6 @@ ENDOFSCRIPT; array('href' => $noticeUrl, 'class' => 'disqus_count'), _m('Comments') ); - - $noticeListItem->showNoticeOptions(); - Event::handle('EndShowNoticeItem', array($noticeListItem)); - - return false; - } else { - return true; } } From 84fba0271de3aa32be9e0444e647a063d4f5062e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 30 Sep 2010 16:59:05 -0700 Subject: [PATCH 290/310] Forgot to update a call in DisqusPlugin --- plugins/Disqus/DisqusPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index 3024d81a62..51be78362b 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -106,7 +106,7 @@ class DisqusPlugin extends Plugin $profile = Profile::staticGet('id', $action->notice->profile_id); - if ($this->hasCommenting($profile)) { + if ($this->isAllowedRichEdit($profile)) { $attrs = array(); $attrs['id'] = 'disqus_thread'; From 46167d6b3567d49f052a372fc97e43eefbd064d7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 18:02:02 -0700 Subject: [PATCH 291/310] ShareNotice plugin -- basic buttons per-notice to share the text & a link to the notice on other sites. Default settings list Twitter, Facebook, and Identi.ca as targets. Using icons built-in, and no magic offsite JS or anything so it won't slow down or break if third-party site goes down. Default styles are a little limited, but can be customized in theme should one be so inclined. --- plugins/ShareNotice/ShareNoticePlugin.php | 194 +++++++++++++++++++++ plugins/ShareNotice/css/README | 9 + plugins/ShareNotice/css/icon-facebook.png | Bin 0 -> 312 bytes plugins/ShareNotice/css/icon-share.png | Bin 0 -> 3838 bytes plugins/ShareNotice/css/icon-statusnet.png | Bin 0 -> 488 bytes plugins/ShareNotice/css/icon-twitter.png | Bin 0 -> 469 bytes plugins/ShareNotice/css/sharenotice.css | 23 +++ 7 files changed, 226 insertions(+) create mode 100644 plugins/ShareNotice/ShareNoticePlugin.php create mode 100644 plugins/ShareNotice/css/README create mode 100644 plugins/ShareNotice/css/icon-facebook.png create mode 100644 plugins/ShareNotice/css/icon-share.png create mode 100644 plugins/ShareNotice/css/icon-statusnet.png create mode 100644 plugins/ShareNotice/css/icon-twitter.png create mode 100644 plugins/ShareNotice/css/sharenotice.css diff --git a/plugins/ShareNotice/ShareNoticePlugin.php b/plugins/ShareNotice/ShareNoticePlugin.php new file mode 100644 index 0000000000..d44e234529 --- /dev/null +++ b/plugins/ShareNotice/ShareNoticePlugin.php @@ -0,0 +1,194 @@ +. + */ + +/** + * @package ShareNoticePlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ShareNoticePlugin extends Plugin +{ + public $targets = array( + array('Twitter'), + array('Facebook'), + array('StatusNet', array('baseurl' => 'http://identi.ca')) + ); + + function onEndShowStatusNetStyles($action) { + $action->cssLink('plugins/ShareNotice/css/sharenotice.css'); + return true; + } + + function onStartShowNoticeItem($item) + { + $notice = $item->notice; + $out = $item->out; + + $out->elementStart('ul', array('class' => 'notice-share')); + foreach ($this->targets as $data) { + $type = $data[0]; + $args = (count($data) > 1) ? $data[1] : array(); + $target = $this->getShareTarget($type, $notice, $args); + $this->showShareTarget($out, $target); + } + $out->elementEnd('ul'); + } + + private function getShareTarget($type, $notice, $args) + { + $class = ucfirst($type) . 'ShareTarget'; + + return new $class($notice, $args); + } + + private function showShareTarget(HTMLOutputter $out, NoticeShareTarget $target) + { + $class = $target->getClass(); + $text = $target->getText(); + $url = $target->targetUrl(); + + $out->elementStart('li', array('class' => 'notice-share-' . $class)); + $out->elementStart('a', array( + 'href' => $url, + 'title' => $text, + 'target' => '_blank' + )); + $out->element('span', array(), $text); + $out->elementEnd('a'); + $out->elementEnd('li'); + } +} + +abstract class NoticeShareTarget +{ + protected $notice; + + public function __construct($notice) + { + $this->notice = $notice; + } + + public abstract function getClass(); + + public abstract function getText(); + + public abstract function targetUrl(); +} + +abstract class GenericNoticeShareTarget extends NoticeShareTarget +{ + protected function maxLength() + { + return 140; // typical + } + + protected function statusText() + { + $pattern = _m('"%s"'); + $url = $this->notice->bestUrl(); + $suffix = ' ' . $url; + $room = $this->maxLength() - mb_strlen($suffix) - (mb_strlen($pattern) - mb_strlen('%s')); + + $content = $this->notice->content; + if (mb_strlen($content) > $room) { + $content = mb_substr($content, 0, $room - 1) . '…'; + } + + return sprintf($pattern, $content) . $suffix; + } +} + +class TwitterShareTarget extends GenericNoticeShareTarget +{ + public function getClass() + { + return 'twitter'; + } + + public function getText() + { + return _m('Share on Twitter'); + } + + public function targetUrl() + { + $args = array( + 'status' => $this->statusText() + ); + return 'http://twitter.com/home?' . + http_build_query($args, null, '&'); + } +} + +class StatusNetShareTarget extends GenericNoticeShareTarget +{ + protected $baseurl; + + public function __construct($notice, $args) + { + parent::__construct($notice); + $this->baseurl = $args['baseurl']; + } + + public function getClass() + { + return 'statusnet'; + } + + public function getText() + { + $host = parse_url($this->baseurl, PHP_URL_HOST); + return sprintf(_m('Share on %s'), $host); + } + + public function targetUrl() + { + $args = array( + 'status_textarea' => $this->statusText() + ); + return $this->baseurl . '/notice/new?' . + http_build_query($args, null, '&'); + } + +} + +class FacebookShareTarget extends NoticeShareTarget +{ + public function getClass() + { + return 'facebook'; + } + + public function getText() + { + return _m('Share on Facebook'); + } + + public function targetUrl() + { + $args = array( + 'u' => $this->notice->bestUrl(), + 't' => sprintf(_m('"%s"'), $this->notice->content), + ); + return 'http://www.facebook.com/sharer.php?' . + http_build_query($args, null, '&'); + } +} \ No newline at end of file diff --git a/plugins/ShareNotice/css/README b/plugins/ShareNotice/css/README new file mode 100644 index 0000000000..a3f4661973 --- /dev/null +++ b/plugins/ShareNotice/css/README @@ -0,0 +1,9 @@ +icon-sharing.png is from http://www.openshareicons.com/ + +Shareaholic has made the Open Share Icon freely available for use by others under the +Creative Commons Attribution-Share Alike 3.0 Unported License. + + +icon-twitter.png is from http://twitter.com/favicon.ico and distributed under fair use +icon-facebook.png is from http://facebook.com/favicon.ico and distributed under fair use +icon-statusnet.png is from http://status.net/favicon.ico and distributed under fair use diff --git a/plugins/ShareNotice/css/icon-facebook.png b/plugins/ShareNotice/css/icon-facebook.png new file mode 100644 index 0000000000000000000000000000000000000000..3105e306963f11c32534a935b5984446dbee0768 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4E=C3oW=~B~TcD6qiEBiObAE1a zYF-J0b5UwyNotBhd1gt5g1e`0fI@zrLZX6iVsiV6a%Z6GE>9Q75R22v2@3=aj0_A6 zB3#e@^6z_=eEO2aOpQ`TZo@7U5f%w6uNny#77Gaw$Vqy3;Auw@rMraS)o}V9>k8&H>UDV?^5!sYv+~a@MV1b{)r-BUz87n*lLUI-@5iUd{D)_1`xj^(n%1y_jp0b8a-80b3u}R{V(@hJb6Mw<&;$VT%w?+p literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-share.png b/plugins/ShareNotice/css/icon-share.png new file mode 100644 index 0000000000000000000000000000000000000000..5be2b46c8a41d3485555bc5cdf686b03a35fcd45 GIT binary patch literal 3838 zcmeHKX;4#F7`=IthzJ^xMW~%VBgHifLBYhtfF>%kh=3Y*9?1n_LK2gQ1aO0@P^cme zs8vA`QCk$oDX7Q@1!@&nbX>+2sUR-HrU6Bu=}Vw!r@xq~|F|=6-uv!7-#Pa?_xo|* z_d$X4ZLD0Z001_=3xvVMn`(M2DFBe73^(5sfio@=;~}aDJQmYH;3HLqL)14Ki-f@t zlg6#Dfjj`LPRc^XxH!O{D^W!=FcXHMi&hia0PqAlH71cm91Vw&G9{nZT2?_rWl}zE z*^B^IfO;;Bk}ZhWz>xUBP)WR8!jaMhv#oeKE)Vt#APAkS(m-@N!<{Z+d3d7JJsE5-PcJrW8XBNdqVr%l>drygES49_W^<>r zxU89I|DesbLU|f#1UFbXuV0af__Qb-S96)n*w|P`tOrA-iDbHSI2S zcnFT+X4L^|l^QCwQN(e}Bq~D2Bw#KM{7`3+0D^E^gQOj#QUJ1IZfpB%@HR^^bd2O zf%-RR+V2+}Wpd1(!c&NLE>>88R2hz_6FTLZ49G!|>u7c7(0Hr1a*qM`3?`5Kw^yH7_>%fy8m?JhvUs0-qai z*73VWQ@yRxjQyo?#@6z4oq~v8YPPuTHsl?e=v=<3`$k*Oi!GF`00=>uk+dM*^M(Z( zI3NfKG{5Xg0X}jMV^43l@%7sVhU)e=Z(K5Aea)&dy-#v2`GGZ5beU*@4zKAHXpC$zwmb zxRU+4I*g#P=?&;I08ms}0NPsLfl*ErfCPE}F>S;)64+GtB=UGf&c#G3g=}++>M&k3 zw>~&g@8@~O@y_jFp-?~fnO$+QFt6h9s+CEW!^cOl?2uea>!|d?vX=8J>kLoF+}hcD zFgFK~kZn}qM0NHvc^Fy5`Eg0%$(-RM4&iQzwX1$OJ+21X-twq54bK*AeATAz@-M1` zQv}tOPbhm{9nQ~M4CN*M&yUo!H#0iZYh-z;57MV@tfDqNf5Tst?Z$3&7nIt`EN52; z#QWFet(Yp>C>GsC?loOe+;{q^Hj-0UdJI43z4@`Xn+L)`~A#!7q*bNZV9!Mk|ymkZrHHleG89ux>nd46xuV> z*2mRx&xWL<)FN92l3E$|vuOWT%PEr`Y$(MGB$&%co0P;iw=F_WG_<8%ewEvP?b6f2 z2TzvQJ!Vx~r(a4ic3s~xEm=N`VyHeUPazj+@{b%3TCwjO<-WFU)6Q=uanhpdDyROo zZdP6|-T5xEeq&xX>geqkoVjD%Q|-2TkC=7cfnoKGvwQX#SyzkN3hdj2qFqa}nr~bx zIqY@C1K02F&2ky7yw;Y`Jn?;`>TU6QC#HJl3jU4CE91G>9dAXX`evcmYHa2uw^KTP z-OKU9Z6{=uUUcFeIMmRYKXF_^PSvjTQzEyVwc`UC;w@a)GfI~irD!+*X-F-~PNnLV z3ti`Ubyp`Qx^(2a`%}`_Jjtyn*4Jb>m-j@yExjwnN-GcK@2xA*C5JD^V)3MsrVI7= ztvj0`?9iXOYUtqHtEzas-zC4jg-%}LSlwv5%WoK)Rj*D8?T;Bo$1hzyKMgJ_Uz<|2=WIbnm1l`xA-p_e#d-ARi`NGak2Pdo lw$EP(CpUKldeRdw8A+*5+lxc7FfY>|sjnzdSU4vv>2KGf(H{T+ literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-statusnet.png b/plugins/ShareNotice/css/icon-statusnet.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b39090d0d723228699030e242d099fe029aa9d GIT binary patch literal 488 zcmVP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igh& z04Ex%+MzN400C%8L_t(I%Z-yUZo)tiMW0QiAVoq>5s63?E2T>XojY7bbod646C^$X zzJbLFa83}rbmvqlV;ZCsC@v@>(U??FM5M6ST8MG-rImJOcmB-I{?Sn2fdM=MBS0ue zDG&ftC*POQlwcc}k&~Q41~?A*2Lwg%GyliEB+-hpKh(?}%i?x4q9p|DBw-nbtm62% zlAZ%89=IOt<$879eHEhdc(2~`^5>!#4J$L7lSyUGce5EC%TisoBq+Pxdw8gQ_|0&r znuZ5LS3T#3QA=>u?H;=h33gdlOYoJZzrIy3Itsut3~LG2^Z9}8K%y5417P9%EPVeY zL8sqW%>bY=fO#R`vWnei!&$RQO9)nR%rXeLXt%jGP2Q$czPDR|&j_BR5?x^Om;72n zu*)*FSCTB8Ud?0(60PMSKEmkB3dG%H-wZ5`YE7Kq|+$ eIJ1F1VE+JesE2#dVa!_q0000QL70(Y)*K0-AbW|YuPgg4E=C45tB&;>b_0c!N?apKobz*Y zQ}ap~oQqNuOHxx5$}>wc6x=<10~GS}6cQDD6O-Fllsg0MRQGgo46!)9bn-?&CP#s` z{mFZubp+mfz$Gl4`_%K?yzqtz5lqw6)E)@0*lTlgX28UR9KBm}Tg7BJi*`E~vNPUM zcAt~=FXj8~ne}B4=0D8oQn*sPAhP&jHRFMVi14*ROBAmBJ$K}UiD>6@rOP2pj14C_ zdo!lY>e_NVswu#`dd^FQE1TZmySQwHR!3T-+*zZy)si;$pO|fUUav}Lz47SZqD|+7 z&t`r^_R?gd3BPK3P;HJ@k8@u0d=JF~HK_s62G zXZ=lVYPk+P@MjGTUDs6+XK>6#K50>eZ_mEEho5fT%zotKe0J;XAAf!*-kD?BDsZ3K zf9>}pzvjA^zju4IGve?z`99W5%u)^SH6xzPzfrpBQ@MEwr^L>Mp2wrFE(ZoMgQu&X J%Q~loCICc+#CZS! literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/sharenotice.css b/plugins/ShareNotice/css/sharenotice.css new file mode 100644 index 0000000000..f4f847e66c --- /dev/null +++ b/plugins/ShareNotice/css/sharenotice.css @@ -0,0 +1,23 @@ +.notice-share { + width: 24px; + float: right; +} + +.notice-share li a { + display: block; + width: 16px; + height: 16px; + background: url(icon-share.png) no-repeat; +} +.notice-share li.notice-share-twitter a { + background-image: url(icon-twitter.png); +} +.notice-share li.notice-share-facebook a { + background-image: url(icon-facebook.png); +} +.notice-share li.notice-share-statusnet a { + background-image: url(icon-statusnet.png); +} +.notice-share li a span { + display: none; +} From cb449682e3c0d4aa3b735f203836ce03330740a0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:46:32 -0700 Subject: [PATCH 292/310] Initial SlicedFavorites plugin to allow for customized variants of 'Popular' tab (favorited action) that include or exclude a given set of users. No added UI tabs in this version, beware! --- .../SlicedFavorites/SlicedFavoritesPlugin.php | 109 ++++++++++++ .../SlicedFavorites/favoritedsliceaction.php | 155 ++++++++++++++++++ 2 files changed, 264 insertions(+) create mode 100644 plugins/SlicedFavorites/SlicedFavoritesPlugin.php create mode 100644 plugins/SlicedFavorites/favoritedsliceaction.php diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php new file mode 100644 index 0000000000..0a1a591efb --- /dev/null +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -0,0 +1,109 @@ +. + */ + +/** + * @package YammerImportPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class SlicedFavoritesPlugin extends Plugin +{ + /** + * Example: + * + * addPlugin('SlicedFavorites', array( + * 'slices' => array( + * // show only pop's notices on /favorited + * 'default' => array('include' => array('pop')), + * + * // show only son's notices on /favorited/blog + * 'blog' => array('include' => array('son')), + * + * // show all favorited notices except pop's and son's on /favorited/submitted + * 'submitted' => array('exclude' => array('pop', 'son')), + * + * // show all favorited notices on /favorited/everybody + * 'everybody' => array(), + * ) + * )); + * + * @var array + */ + public $slices = array(); + + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('favorited/:slice', + array('action' => 'favoritedslice'), + array('slice' => '[a-zA-Z0-9]+')); + + return true; + } + + // Take over the default... :D + function onArgsInitialize($args) + { + if (array_key_exists('action', $args)) { + $action = trim($args['action']); + if ($action == 'favorited') { + common_redirect(common_local_url('favoritedslice', array('slice' => 'default'))); + exit(0); + } + } + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'favoritedsliceaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onSlicedFavoritesGetSettings($slice, &$data) + { + if (isset($this->slices[$slice])) { + $data = $this->slices[$slice]; + return false; + } + return true; + } +} diff --git a/plugins/SlicedFavorites/favoritedsliceaction.php b/plugins/SlicedFavorites/favoritedsliceaction.php new file mode 100644 index 0000000000..020688cfa4 --- /dev/null +++ b/plugins/SlicedFavorites/favoritedsliceaction.php @@ -0,0 +1,155 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + + +class FavoritedSliceAction extends FavoritedAction +{ + private $includeUsers = array(), $excludeUsers = array(); + + /** + * Take arguments for running + * + * @param array $args $_REQUEST args + * + * @return boolean success flag + * + * @todo move queries from showContent() to here + */ + + function prepare($args) + { + parent::prepare($args); + + $this->slice = $this->arg('slice', 'default'); + $data = array(); + if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { + throw new ClientException(_m('Unknown favorites slice.')); + } + if (isset($data['include'])) { + $this->includeUsers = $data['include']; + } + if (isset($data['exclude'])) { + $this->excludeUsers = $data['exclude']; + } + + return true; + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $slice = $this->sliceWhereClause(); + if (!$slice) { + return parent::showContent(); + } + + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND $slice " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + $this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'favorited'); + } + + private function sliceWhereClause() + { + $include = $this->nicknamesToIds($this->includeUsers); + $exclude = $this->nicknamesToIds($this->excludeUsers); + + if (count($include) == 1) { + return "profile_id = " . intval($include[0]); + } else if (count($include) > 1) { + return "profile_id IN (" . implode(',', $include) . ")"; + } else if (count($exclude) == 1) { + return "profile_id != " . intval($exclude[0]); + } else if (count($exclude) > 1) { + return "profile_id NOT IN (" . implode(',', $exclude) . ")"; + } else { + return false; + } + } + + /** + * + * @param array $nicks array of user nicknames + * @return array of profile/user IDs + */ + private function nicknamesToIds($nicks) + { + $ids = array(); + foreach ($nicks as $nick) { + // not the most efficient way for a big list! + $user = User::staticGet('nickname', $nick); + if ($user) { + $ids[] = intval($user->id); + } + } + return $ids; + } +} From ff906331d6f8c94a5aec25ef0f7be36b983495f9 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 14:52:00 -0700 Subject: [PATCH 293/310] fix comment --- plugins/SlicedFavorites/SlicedFavoritesPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index 0a1a591efb..ed7f5ebb96 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -18,7 +18,7 @@ */ /** - * @package YammerImportPlugin + * @package SlicedFavoritesPlugin * @maintainer Brion Vibber */ From 8c85f83300fc2545f0d5e4ba767346082ebec5ba Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 15:56:38 -0700 Subject: [PATCH 294/310] GroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages subset for just posts in the group. Not necessarily terribly efficient, should be tested and benchmarked on non-trivial sites --- .../GroupFavorited/GroupFavoritedPlugin.php | 79 +++++++++++++ .../GroupFavorited/groupfavoritedaction.php | 111 ++++++++++++++++++ 2 files changed, 190 insertions(+) create mode 100644 plugins/GroupFavorited/GroupFavoritedPlugin.php create mode 100644 plugins/GroupFavorited/groupfavoritedaction.php diff --git a/plugins/GroupFavorited/GroupFavoritedPlugin.php b/plugins/GroupFavorited/GroupFavoritedPlugin.php new file mode 100644 index 0000000000..68815530aa --- /dev/null +++ b/plugins/GroupFavorited/GroupFavoritedPlugin.php @@ -0,0 +1,79 @@ +. + */ + +/** + * @package GroupFavoritedPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class GroupFavoritedPlugin extends Plugin +{ + /** + * Hook for RouterInitialized event. + * + * @param Net_URL_Mapper $m path-to-action mapper + * @return boolean hook return + */ + function onRouterInitialized($m) + { + $m->connect('group/:nickname/favorited', + array('action' => 'groupfavorited'), + array('nickname' => '[a-zA-Z0-9]+')); + + return true; + } + + /** + * Automatically load the actions and libraries used by the plugin + * + * @param Class $cls the class + * + * @return boolean hook return + * + */ + function onAutoload($cls) + { + $base = dirname(__FILE__); + $lower = strtolower($cls); + switch ($lower) { + case 'groupfavoritedaction': + require_once "$base/$lower.php"; + return false; + default: + return true; + } + } + + function onEndGroupGroupNav(GroupNav $nav) + { + $action_name = $nav->action->trimmed('action'); + $nickname = $nav->group->nickname; + $nav->out->menuItem(common_local_url('groupfavorited', array('nickname' => + $nickname)), + // TRANS: Menu item in the group navigation page. + _m('MENU', 'Popular'), + // TRANS: Tooltip for menu item in the group navigation page. + // TRANS: %s is the nickname of the group. + sprintf(_m('TOOLTIP','Popular notices in %s group'), $nickname), + $action_name == 'groupfavorited', + 'nav_group_group'); + } +} diff --git a/plugins/GroupFavorited/groupfavoritedaction.php b/plugins/GroupFavorited/groupfavoritedaction.php new file mode 100644 index 0000000000..6803bea8d6 --- /dev/null +++ b/plugins/GroupFavorited/groupfavoritedaction.php @@ -0,0 +1,111 @@ +. + * + * @category Public + * @package StatusNet + * @author Zach Copley + * @author Evan Prodromou + * @copyright 2008-2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + + +class GroupFavoritedAction extends ShowgroupAction +{ + + /** + * Title of the page + * + * @return string page title, with page number + */ + + function title() + { + if (!empty($this->group->fullname)) { + $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; + } else { + $base = $this->group->nickname; + } + + if ($this->page == 1) { + return sprintf(_m('Popular posts in %s group'), $base); + } else { + return sprintf(_m('Popular posts in %1$s group, page %2$d'), + $base, + $this->page); + } + } + + /** + * Content area + * + * Shows the list of popular notices + * + * @return void + */ + + function showContent() + { + $groupId = intval($this->group->id); + $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("fave.modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $qry = 'SELECT notice.*, '. + $weightexpr . ' as weight ' . + 'FROM notice ' . + "JOIN group_inbox ON notice.id = group_inbox.notice_id " . + 'JOIN fave ON notice.id = fave.notice_id ' . + "WHERE $cutoff AND group_id = $groupId " . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . + 'ORDER BY weight DESC'; + + $offset = ($this->page - 1) * NOTICES_PER_PAGE; + $limit = NOTICES_PER_PAGE + 1; + + if (common_config('db', 'type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $notice = Memcached_DataObject::cachedQuery('Notice', + $qry, + 600); + + $nl = new NoticeList($notice, $this); + + $cnt = $nl->show(); + + if ($cnt == 0) { + //$this->showEmptyList(); + } + + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, + $this->page, 'groupfavorited', + array('nickname' => $this->group->nickname)); + } +} From 6e58a926e3b3889d96df37c71f4aa090700041fd Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 16:25:15 -0700 Subject: [PATCH 295/310] ForceGroup plugin: optionally force new users to join a particular group or set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core. --- classes/Notice.php | 1 + lib/distribqueuehandler.php | 10 ++- plugins/ForceGroup/ForceGroupPlugin.php | 82 +++++++++++++++++++++++++ 3 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 plugins/ForceGroup/ForceGroupPlugin.php diff --git a/classes/Notice.php b/classes/Notice.php index 79626f8898..e268544b50 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2034,6 +2034,7 @@ class Notice extends Memcached_DataObject { // We always insert for the author so they don't // have to wait + Event::handle('StartNoticeDistribute', array($this)); $user = User::staticGet('id', $this->profile_id); if (!empty($user)) { diff --git a/lib/distribqueuehandler.php b/lib/distribqueuehandler.php index 8f4b72d5c3..a7519c1d50 100644 --- a/lib/distribqueuehandler.php +++ b/lib/distribqueuehandler.php @@ -78,13 +78,19 @@ class DistribQueueHandler } try { - Event::handle('EndNoticeSave', array($notice)); - // Enqueue for other handlers + Event::handle('EndNoticeDistribute', array($notice)); } catch (Exception $e) { $this->logit($notice, $e); } try { + Event::handle('EndNoticeSave', array($notice)); + } catch (Exception $e) { + $this->logit($notice, $e); + } + + try { + // Enqueue for other handlers common_enqueue_notice($notice); } catch (Exception $e) { $this->logit($notice, $e); diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php new file mode 100644 index 0000000000..e0a04fccac --- /dev/null +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -0,0 +1,82 @@ +. + */ + +/** + * @package ForceGroupPlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ForceGroupPlugin extends Plugin +{ + /** + * Members of these groups will have all their posts mirrored into + * the group even if they don't explicitly mention it. + * + * List by local nickname. + */ + public $post = array(); + + /** + * New user registrations will automatically join these groups on + * registration. They're not prevented from leaving, however. + * + * List by local nickname. + */ + public $join = array(); + + /** + * If poster is in one of the forced groups, make sure their notice + * gets saved into that group even if not explicitly mentioned. + * + * @param Notice $notice + * @return boolean event hook return + */ + function onStartNoticeDistribute($notice) + { + $profile = $notice->getProfile(); + foreach ($this->post as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && $profile->isMember($group)) { + $notice->addToGroupInbox($group); + } + } + return true; + } + + function onEndUserRegister($profile, $user) + { + $profile = $user->getProfile(); + foreach ($this->join as $nickname) { + $group = User_group::getForNickname($nickname); + if ($group && !$profile->isMember($group)) { + try { + if (Event::handle('StartJoinGroup', array($group, $user))) { + Group_member::join($group->id, $user->id); + Event::handle('EndJoinGroup', array($group, $user)); + } + } catch (Exception $e) { + throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + $user->nickname, $group->nickname)); + } + } + } + } +} From d8df140ebb3a051a9b95583e5b6564177b643173 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 18:02:02 -0700 Subject: [PATCH 296/310] ShareNotice plugin -- basic buttons per-notice to share the text & a link to the notice on other sites. Default settings list Twitter, Facebook, and Identi.ca as targets. Using icons built-in, and no magic offsite JS or anything so it won't slow down or break if third-party site goes down. Default styles are a little limited, but can be customized in theme should one be so inclined. --- plugins/ShareNotice/ShareNoticePlugin.php | 194 +++++++++++++++++++++ plugins/ShareNotice/css/README | 9 + plugins/ShareNotice/css/icon-facebook.png | Bin 0 -> 312 bytes plugins/ShareNotice/css/icon-share.png | Bin 0 -> 3838 bytes plugins/ShareNotice/css/icon-statusnet.png | Bin 0 -> 488 bytes plugins/ShareNotice/css/icon-twitter.png | Bin 0 -> 469 bytes plugins/ShareNotice/css/sharenotice.css | 23 +++ 7 files changed, 226 insertions(+) create mode 100644 plugins/ShareNotice/ShareNoticePlugin.php create mode 100644 plugins/ShareNotice/css/README create mode 100644 plugins/ShareNotice/css/icon-facebook.png create mode 100644 plugins/ShareNotice/css/icon-share.png create mode 100644 plugins/ShareNotice/css/icon-statusnet.png create mode 100644 plugins/ShareNotice/css/icon-twitter.png create mode 100644 plugins/ShareNotice/css/sharenotice.css diff --git a/plugins/ShareNotice/ShareNoticePlugin.php b/plugins/ShareNotice/ShareNoticePlugin.php new file mode 100644 index 0000000000..d44e234529 --- /dev/null +++ b/plugins/ShareNotice/ShareNoticePlugin.php @@ -0,0 +1,194 @@ +. + */ + +/** + * @package ShareNoticePlugin + * @maintainer Brion Vibber + */ + +if (!defined('STATUSNET')) { exit(1); } + +class ShareNoticePlugin extends Plugin +{ + public $targets = array( + array('Twitter'), + array('Facebook'), + array('StatusNet', array('baseurl' => 'http://identi.ca')) + ); + + function onEndShowStatusNetStyles($action) { + $action->cssLink('plugins/ShareNotice/css/sharenotice.css'); + return true; + } + + function onStartShowNoticeItem($item) + { + $notice = $item->notice; + $out = $item->out; + + $out->elementStart('ul', array('class' => 'notice-share')); + foreach ($this->targets as $data) { + $type = $data[0]; + $args = (count($data) > 1) ? $data[1] : array(); + $target = $this->getShareTarget($type, $notice, $args); + $this->showShareTarget($out, $target); + } + $out->elementEnd('ul'); + } + + private function getShareTarget($type, $notice, $args) + { + $class = ucfirst($type) . 'ShareTarget'; + + return new $class($notice, $args); + } + + private function showShareTarget(HTMLOutputter $out, NoticeShareTarget $target) + { + $class = $target->getClass(); + $text = $target->getText(); + $url = $target->targetUrl(); + + $out->elementStart('li', array('class' => 'notice-share-' . $class)); + $out->elementStart('a', array( + 'href' => $url, + 'title' => $text, + 'target' => '_blank' + )); + $out->element('span', array(), $text); + $out->elementEnd('a'); + $out->elementEnd('li'); + } +} + +abstract class NoticeShareTarget +{ + protected $notice; + + public function __construct($notice) + { + $this->notice = $notice; + } + + public abstract function getClass(); + + public abstract function getText(); + + public abstract function targetUrl(); +} + +abstract class GenericNoticeShareTarget extends NoticeShareTarget +{ + protected function maxLength() + { + return 140; // typical + } + + protected function statusText() + { + $pattern = _m('"%s"'); + $url = $this->notice->bestUrl(); + $suffix = ' ' . $url; + $room = $this->maxLength() - mb_strlen($suffix) - (mb_strlen($pattern) - mb_strlen('%s')); + + $content = $this->notice->content; + if (mb_strlen($content) > $room) { + $content = mb_substr($content, 0, $room - 1) . '…'; + } + + return sprintf($pattern, $content) . $suffix; + } +} + +class TwitterShareTarget extends GenericNoticeShareTarget +{ + public function getClass() + { + return 'twitter'; + } + + public function getText() + { + return _m('Share on Twitter'); + } + + public function targetUrl() + { + $args = array( + 'status' => $this->statusText() + ); + return 'http://twitter.com/home?' . + http_build_query($args, null, '&'); + } +} + +class StatusNetShareTarget extends GenericNoticeShareTarget +{ + protected $baseurl; + + public function __construct($notice, $args) + { + parent::__construct($notice); + $this->baseurl = $args['baseurl']; + } + + public function getClass() + { + return 'statusnet'; + } + + public function getText() + { + $host = parse_url($this->baseurl, PHP_URL_HOST); + return sprintf(_m('Share on %s'), $host); + } + + public function targetUrl() + { + $args = array( + 'status_textarea' => $this->statusText() + ); + return $this->baseurl . '/notice/new?' . + http_build_query($args, null, '&'); + } + +} + +class FacebookShareTarget extends NoticeShareTarget +{ + public function getClass() + { + return 'facebook'; + } + + public function getText() + { + return _m('Share on Facebook'); + } + + public function targetUrl() + { + $args = array( + 'u' => $this->notice->bestUrl(), + 't' => sprintf(_m('"%s"'), $this->notice->content), + ); + return 'http://www.facebook.com/sharer.php?' . + http_build_query($args, null, '&'); + } +} \ No newline at end of file diff --git a/plugins/ShareNotice/css/README b/plugins/ShareNotice/css/README new file mode 100644 index 0000000000..a3f4661973 --- /dev/null +++ b/plugins/ShareNotice/css/README @@ -0,0 +1,9 @@ +icon-sharing.png is from http://www.openshareicons.com/ + +Shareaholic has made the Open Share Icon freely available for use by others under the +Creative Commons Attribution-Share Alike 3.0 Unported License. + + +icon-twitter.png is from http://twitter.com/favicon.ico and distributed under fair use +icon-facebook.png is from http://facebook.com/favicon.ico and distributed under fair use +icon-statusnet.png is from http://status.net/favicon.ico and distributed under fair use diff --git a/plugins/ShareNotice/css/icon-facebook.png b/plugins/ShareNotice/css/icon-facebook.png new file mode 100644 index 0000000000000000000000000000000000000000..3105e306963f11c32534a935b5984446dbee0768 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85p>QL70(Y)*K0-AbW|YuPgg4E=C3oW=~B~TcD6qiEBiObAE1a zYF-J0b5UwyNotBhd1gt5g1e`0fI@zrLZX6iVsiV6a%Z6GE>9Q75R22v2@3=aj0_A6 zB3#e@^6z_=eEO2aOpQ`TZo@7U5f%w6uNny#77Gaw$Vqy3;Auw@rMraS)o}V9>k8&H>UDV?^5!sYv+~a@MV1b{)r-BUz87n*lLUI-@5iUd{D)_1`xj^(n%1y_jp0b8a-80b3u}R{V(@hJb6Mw<&;$VT%w?+p literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-share.png b/plugins/ShareNotice/css/icon-share.png new file mode 100644 index 0000000000000000000000000000000000000000..5be2b46c8a41d3485555bc5cdf686b03a35fcd45 GIT binary patch literal 3838 zcmeHKX;4#F7`=IthzJ^xMW~%VBgHifLBYhtfF>%kh=3Y*9?1n_LK2gQ1aO0@P^cme zs8vA`QCk$oDX7Q@1!@&nbX>+2sUR-HrU6Bu=}Vw!r@xq~|F|=6-uv!7-#Pa?_xo|* z_d$X4ZLD0Z001_=3xvVMn`(M2DFBe73^(5sfio@=;~}aDJQmYH;3HLqL)14Ki-f@t zlg6#Dfjj`LPRc^XxH!O{D^W!=FcXHMi&hia0PqAlH71cm91Vw&G9{nZT2?_rWl}zE z*^B^IfO;;Bk}ZhWz>xUBP)WR8!jaMhv#oeKE)Vt#APAkS(m-@N!<{Z+d3d7JJsE5-PcJrW8XBNdqVr%l>drygES49_W^<>r zxU89I|DesbLU|f#1UFbXuV0af__Qb-S96)n*w|P`tOrA-iDbHSI2S zcnFT+X4L^|l^QCwQN(e}Bq~D2Bw#KM{7`3+0D^E^gQOj#QUJ1IZfpB%@HR^^bd2O zf%-RR+V2+}Wpd1(!c&NLE>>88R2hz_6FTLZ49G!|>u7c7(0Hr1a*qM`3?`5Kw^yH7_>%fy8m?JhvUs0-qai z*73VWQ@yRxjQyo?#@6z4oq~v8YPPuTHsl?e=v=<3`$k*Oi!GF`00=>uk+dM*^M(Z( zI3NfKG{5Xg0X}jMV^43l@%7sVhU)e=Z(K5Aea)&dy-#v2`GGZ5beU*@4zKAHXpC$zwmb zxRU+4I*g#P=?&;I08ms}0NPsLfl*ErfCPE}F>S;)64+GtB=UGf&c#G3g=}++>M&k3 zw>~&g@8@~O@y_jFp-?~fnO$+QFt6h9s+CEW!^cOl?2uea>!|d?vX=8J>kLoF+}hcD zFgFK~kZn}qM0NHvc^Fy5`Eg0%$(-RM4&iQzwX1$OJ+21X-twq54bK*AeATAz@-M1` zQv}tOPbhm{9nQ~M4CN*M&yUo!H#0iZYh-z;57MV@tfDqNf5Tst?Z$3&7nIt`EN52; z#QWFet(Yp>C>GsC?loOe+;{q^Hj-0UdJI43z4@`Xn+L)`~A#!7q*bNZV9!Mk|ymkZrHHleG89ux>nd46xuV> z*2mRx&xWL<)FN92l3E$|vuOWT%PEr`Y$(MGB$&%co0P;iw=F_WG_<8%ewEvP?b6f2 z2TzvQJ!Vx~r(a4ic3s~xEm=N`VyHeUPazj+@{b%3TCwjO<-WFU)6Q=uanhpdDyROo zZdP6|-T5xEeq&xX>geqkoVjD%Q|-2TkC=7cfnoKGvwQX#SyzkN3hdj2qFqa}nr~bx zIqY@C1K02F&2ky7yw;Y`Jn?;`>TU6QC#HJl3jU4CE91G>9dAXX`evcmYHa2uw^KTP z-OKU9Z6{=uUUcFeIMmRYKXF_^PSvjTQzEyVwc`UC;w@a)GfI~irD!+*X-F-~PNnLV z3ti`Ubyp`Qx^(2a`%}`_Jjtyn*4Jb>m-j@yExjwnN-GcK@2xA*C5JD^V)3MsrVI7= ztvj0`?9iXOYUtqHtEzas-zC4jg-%}LSlwv5%WoK)Rj*D8?T;Bo$1hzyKMgJ_Uz<|2=WIbnm1l`xA-p_e#d-ARi`NGak2Pdo lw$EP(CpUKldeRdw8A+*5+lxc7FfY>|sjnzdSU4vv>2KGf(H{T+ literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/icon-statusnet.png b/plugins/ShareNotice/css/icon-statusnet.png new file mode 100644 index 0000000000000000000000000000000000000000..a7b39090d0d723228699030e242d099fe029aa9d GIT binary patch literal 488 zcmVP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2igh& z04Ex%+MzN400C%8L_t(I%Z-yUZo)tiMW0QiAVoq>5s63?E2T>XojY7bbod646C^$X zzJbLFa83}rbmvqlV;ZCsC@v@>(U??FM5M6ST8MG-rImJOcmB-I{?Sn2fdM=MBS0ue zDG&ftC*POQlwcc}k&~Q41~?A*2Lwg%GyliEB+-hpKh(?}%i?x4q9p|DBw-nbtm62% zlAZ%89=IOt<$879eHEhdc(2~`^5>!#4J$L7lSyUGce5EC%TisoBq+Pxdw8gQ_|0&r znuZ5LS3T#3QA=>u?H;=h33gdlOYoJZzrIy3Itsut3~LG2^Z9}8K%y5417P9%EPVeY zL8sqW%>bY=fO#R`vWnei!&$RQO9)nR%rXeLXt%jGP2Q$czPDR|&j_BR5?x^Om;72n zu*)*FSCTB8Ud?0(60PMSKEmkB3dG%H-wZ5`YE7Kq|+$ eIJ1F1VE+JesE2#dVa!_q0000QL70(Y)*K0-AbW|YuPgg4E=C45tB&;>b_0c!N?apKobz*Y zQ}ap~oQqNuOHxx5$}>wc6x=<10~GS}6cQDD6O-Fllsg0MRQGgo46!)9bn-?&CP#s` z{mFZubp+mfz$Gl4`_%K?yzqtz5lqw6)E)@0*lTlgX28UR9KBm}Tg7BJi*`E~vNPUM zcAt~=FXj8~ne}B4=0D8oQn*sPAhP&jHRFMVi14*ROBAmBJ$K}UiD>6@rOP2pj14C_ zdo!lY>e_NVswu#`dd^FQE1TZmySQwHR!3T-+*zZy)si;$pO|fUUav}Lz47SZqD|+7 z&t`r^_R?gd3BPK3P;HJ@k8@u0d=JF~HK_s62G zXZ=lVYPk+P@MjGTUDs6+XK>6#K50>eZ_mEEho5fT%zotKe0J;XAAf!*-kD?BDsZ3K zf9>}pzvjA^zju4IGve?z`99W5%u)^SH6xzPzfrpBQ@MEwr^L>Mp2wrFE(ZoMgQu&X J%Q~loCICc+#CZS! literal 0 HcmV?d00001 diff --git a/plugins/ShareNotice/css/sharenotice.css b/plugins/ShareNotice/css/sharenotice.css new file mode 100644 index 0000000000..f4f847e66c --- /dev/null +++ b/plugins/ShareNotice/css/sharenotice.css @@ -0,0 +1,23 @@ +.notice-share { + width: 24px; + float: right; +} + +.notice-share li a { + display: block; + width: 16px; + height: 16px; + background: url(icon-share.png) no-repeat; +} +.notice-share li.notice-share-twitter a { + background-image: url(icon-twitter.png); +} +.notice-share li.notice-share-facebook a { + background-image: url(icon-facebook.png); +} +.notice-share li.notice-share-statusnet a { + background-image: url(icon-statusnet.png); +} +.notice-share li a span { + display: none; +} From 8b8450f9ad96c1ca267e5362457b0200429bf42b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 18:21:38 -0700 Subject: [PATCH 297/310] Add helper metadata on individual notice pages to aid sharing to Facebook (use poster's avatar as image, indicate the text content) --- actions/shownotice.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/actions/shownotice.php b/actions/shownotice.php index c8e9cfe66a..005335e3b4 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -298,6 +298,16 @@ class ShownoticeAction extends OwnerDesignAction array(), array('format'=>'xml','url'=>$this->notice->uri)), 'title'=>'oEmbed'),null); + + // Extras to aid in sharing notices to Facebook + $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + $avatarUrl = ($avatar) ? + $avatar->displayUrl() : + Avatar::defaultImage($avatar_size); + $this->element('meta', array('property' => 'og:image', + 'content' => $avatarUrl)); + $this->element('meta', array('property' => 'og:description', + 'content' => $this->notice->content)); } } From 54c88cba571a74a901f2d15e7d8db0d349d896d3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 30 Sep 2010 19:18:46 -0700 Subject: [PATCH 298/310] Add a $config['plugins']['locale_path'] which can be set to override the individual plugins' locale subdirectories. This will apply to *ALL* plugins in *ALL* languages, so should probably only be used when doing site customization... You'd probably do: $config['site']['locale_path'] = '/srv/awesome/data/locale'; $config['plugins']['locale_path'] = '/srv/awesome/data/locale'; with a structure like: srv/ awesome/ data/ locale/ en/ LC_MESSAGES/ statusnet.po OpenID.po AnonymousFave.po etc, all alongside each other. You could separate plugins from the core if you like. Where locale files have not already been generated, you can build one for a plugin like so: php scripts/update_po_templates.php --plugin=MyPlugin and pull out the template file: plugins/MyPlugin/locale/MyPlugin.pot Edit that (make sure you at least set the CHARSET, probably to UTF-8) and save your customized .po files into the structure as above, and use msgfmt to generate .mo files for final output. --- lib/default.php | 1 + lib/plugin.php | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 6200abada1..45e35e83d3 100644 --- a/lib/default.php +++ b/lib/default.php @@ -298,6 +298,7 @@ $default = 'WikiHashtags' => null, 'RSSCloud' => null, 'OpenID' => null), + 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories ), 'admin' => array('panels' => array('design', 'site', 'user', 'paths', 'access', 'sessions', 'sitenotice', 'license')), diff --git a/lib/plugin.php b/lib/plugin.php index ee57f59043..3f84afa27e 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -88,7 +88,12 @@ class Plugin $class = get_class($this); if (substr($class, -6) == 'Plugin') { $name = substr($class, 0, -6); - $path = INSTALLDIR . "/plugins/$name/locale"; + $path = common_config('plugins', 'locale_path'); + if (!$path) { + // @fixme this will fail for things installed in local/plugins + // ... but then so will web links so far. + $path = INSTALLDIR . "/plugins/$name/locale"; + } if (file_exists($path) && is_dir($path)) { bindtextdomain($name, $path); bind_textdomain_codeset($name, 'UTF-8'); From 06ca06fbd16f11e3c37d22f1f9c4b64c0089193c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 21:45:19 +0200 Subject: [PATCH 299/310] * L10/i18n review. * Translator hints added * whitespace updates --- plugins/AnonymousFave/AnonymousFavePlugin.php | 7 ++++++- plugins/AnonymousFave/Fave_tally.php | 16 ++++++---------- plugins/AnonymousFave/anondisfavor.php | 7 +++++-- plugins/AnonymousFave/anondisfavorform.php | 5 ----- plugins/AnonymousFave/anonfavor.php | 9 ++++++--- plugins/AnonymousFave/anonfavorform.php | 3 --- 6 files changed, 23 insertions(+), 24 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 72093e7f7e..6561114bab 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -188,7 +188,9 @@ class AnonymousFavePlugin extends Plugin { 'class' => 'notice-tally' ) ); - $out->raw(sprintf(_m("favored %d times"), $tally->count)); + // TRANS: Tally for number of times a notice was favored. + // TRANS: %d is the number of times a notice was favored. + $out->raw(sprintf(_m("favored once", "favored %d times", $tally->count), $tally->count)); $out->elementEnd('div'); } } @@ -216,6 +218,7 @@ class AnonymousFavePlugin extends Plugin { $id = $profile->insert(); if (!$id) { + // TRANS: Server exception. throw new ServerException(_m("Couldn't create anonymous user session.")); } @@ -226,6 +229,7 @@ class AnonymousFavePlugin extends Plugin { $result = $profile->update($orig); if (!$result) { + // TRANS: Server exception. throw new ServerException(_m("Couldn't create anonymous user session.")); } @@ -279,6 +283,7 @@ class AnonymousFavePlugin extends Plugin { 'author' => 'Zach Copley', 'homepage' => $url, 'rawdescription' => + // TRANS: Plugin description. _m('Allow anonymous users to favorite notices.')); return true; diff --git a/plugins/AnonymousFave/Fave_tally.php b/plugins/AnonymousFave/Fave_tally.php index b350d5a0a5..f48a1e82b3 100644 --- a/plugins/AnonymousFave/Fave_tally.php +++ b/plugins/AnonymousFave/Fave_tally.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class Fave_tally extends Memcached_DataObject { ###START_AUTOCODE @@ -85,7 +84,6 @@ class Fave_tally extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -103,7 +101,6 @@ class Fave_tally extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('notice_id' => 'K'); @@ -119,8 +116,6 @@ class Fave_tally extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - - function sequenceKey() { return array(false, false, false); @@ -133,7 +128,6 @@ class Fave_tally extends Memcached_DataObject * * @return User_flag_profile found object or null */ - function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Fave_tally', $kv); @@ -146,7 +140,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally $tally the tally data object */ - static function increment($noticeID) { $tally = Fave_tally::ensureTally($noticeID); @@ -157,6 +150,8 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't update favorite tally for notice ID %d."), $noticeID ); @@ -173,7 +168,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally $tally the tally data object */ - static function decrement($noticeID) { $tally = Fave_tally::ensureTally($noticeID); @@ -185,6 +179,8 @@ class Fave_tally extends Memcached_DataObject if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't update favorite tally for notice ID %d."), $noticeID ); @@ -203,7 +199,6 @@ class Fave_tally extends Memcached_DataObject * * @return Fave_tally the tally data object */ - static function ensureTally($noticeID) { $tally = Fave_tally::staticGet('notice_id', $noticeID); @@ -215,6 +210,8 @@ class Fave_tally extends Memcached_DataObject $result = $tally->insert(); if (!$result) { $msg = sprintf( + // TRANS: Server exception. + // TRANS: %d is the notice ID (number). _m("Couldn't create favorite tally for notice ID %d."), $noticeID ); @@ -233,7 +230,6 @@ class Fave_tally extends Memcached_DataObject * * @return integer $total total number of time the notice has been favored */ - static function countExistingFaves($noticeID) { $fave = new Fave(); diff --git a/plugins/AnonymousFave/anondisfavor.php b/plugins/AnonymousFave/anondisfavor.php index f39d5a7780..859e4bd427 100644 --- a/plugins/AnonymousFave/anondisfavor.php +++ b/plugins/AnonymousFave/anondisfavor.php @@ -1,5 +1,4 @@ clientError( + // TRANS: Client error. _m('Could not disfavor notice! Please make sure your browser has cookies enabled.') ); return; @@ -68,6 +68,7 @@ class AnonDisfavorAction extends RedirectingAction $token = $this->trimmed('token-' . $notice->id); if (!$token || $token != common_session_token()) { + // TRANS: Client error. $this->clientError(_m('There was a problem with your session token. Try again, please.')); return; } @@ -77,6 +78,7 @@ class AnonDisfavorAction extends RedirectingAction $fave->notice_id = $notice->id; if (!$fave->find(true)) { + // TRANS: Client error. $this->clientError(_m('This notice is not a favorite!')); return; } @@ -85,6 +87,7 @@ class AnonDisfavorAction extends RedirectingAction if (!$result) { common_log_db_error($fave, 'DELETE', __FILE__); + // TRANS: Server error. $this->serverError(_m('Could not delete favorite.')); return; } @@ -94,6 +97,7 @@ class AnonDisfavorAction extends RedirectingAction if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Title. $this->element('title', null, _m('Add to favorites')); $this->elementEnd('head'); $this->elementStart('body'); @@ -121,4 +125,3 @@ class AnonDisfavorAction extends RedirectingAction } } } - diff --git a/plugins/AnonymousFave/anondisfavorform.php b/plugins/AnonymousFave/anondisfavorform.php index c347ed7b43..38e2903db1 100644 --- a/plugins/AnonymousFave/anondisfavorform.php +++ b/plugins/AnonymousFave/anondisfavorform.php @@ -44,17 +44,14 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see DisFavorForm */ - class AnonDisfavorForm extends DisFavorForm { - /** * Constructor * * @param HTMLOutputter $out output channel * @param Notice $notice notice to disfavor */ - function __construct($out=null, $notice=null) { parent::__construct($out, $notice); @@ -65,10 +62,8 @@ class AnonDisfavorForm extends DisFavorForm * * @return string URL of the action */ - function action() { return common_local_url('AnonDisFavor'); } - } diff --git a/plugins/AnonymousFave/anonfavor.php b/plugins/AnonymousFave/anonfavor.php index 58570ced9a..ad13525a07 100644 --- a/plugins/AnonymousFave/anonfavor.php +++ b/plugins/AnonymousFave/anonfavor.php @@ -1,5 +1,4 @@ clientError( - _m('Could not favor notice! Please make sure your browser has cookies enabled.') + // TRANS: Client error. + $this->clientError( _m('Could not favor notice! Please make sure your browser has cookies enabled.') ); return; } @@ -68,18 +67,21 @@ class AnonFavorAction extends RedirectingAction $token = $this->trimmed('token-' . $notice->id); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error. $this->clientError(_m('There was a problem with your session token. Try again, please.')); return; } if ($profile->hasFave($notice)) { + // TRANS: Client error. $this->clientError(_m('This notice is already a favorite!')); return; } $fave = Fave::addNew($profile, $notice); if (!$fave) { + // TRANS: Server error. $this->serverError(_m('Could not create favorite.')); return; } @@ -89,6 +91,7 @@ class AnonFavorAction extends RedirectingAction if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Title. $this->element('title', null, _m('Disfavor favorite')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/plugins/AnonymousFave/anonfavorform.php b/plugins/AnonymousFave/anonfavorform.php index d73c2831d0..2fbd015e36 100644 --- a/plugins/AnonymousFave/anonfavorform.php +++ b/plugins/AnonymousFave/anonfavorform.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see AnonDisfavorForm */ - class AnonFavorForm extends FavorForm { @@ -54,7 +53,6 @@ class AnonFavorForm extends FavorForm * @param HTMLOutputter $out output channel * @param Notice $notice notice to favor */ - function __construct($out=null, $notice=null) { parent::__construct($out, $notice); @@ -65,7 +63,6 @@ class AnonFavorForm extends FavorForm * * @return string URL of the action */ - function action() { return common_local_url('AnonFavor'); From 267d7b6bffc2dc094d525c36e251adcb61be32ef Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 21:53:20 +0200 Subject: [PATCH 300/310] * i18n review * onPluginVersion() added --- plugins/ForceGroup/ForceGroupPlugin.php | 28 ++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/plugins/ForceGroup/ForceGroupPlugin.php b/plugins/ForceGroup/ForceGroupPlugin.php index e0a04fccac..fb98644846 100644 --- a/plugins/ForceGroup/ForceGroupPlugin.php +++ b/plugins/ForceGroup/ForceGroupPlugin.php @@ -73,10 +73,36 @@ class ForceGroupPlugin extends Plugin Event::handle('EndJoinGroup', array($group, $user)); } } catch (Exception $e) { - throw new ServerException(sprintf(_('Could not join user %1$s to group %2$s.'), + // TRANS: Server exception. + // TRANS: %1$s is a user nickname, %2$s is a group nickname. + throw new ServerException(sprintf(_m('Could not join user %1$s to group %2$s.'), $user->nickname, $group->nickname)); } } } } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:ForceGroup'; + + $versions[] = array('name' => 'ForceGroup', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Allows forced group memberships and forces all notices to appear in groups that users were forced in.')); + + return true; + } } From f415e2353d7cd7ac4c9b7ab77b7af393c040bb65 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:01:18 +0200 Subject: [PATCH 301/310] * i18n review * onPluginVersion --- .../GroupFavorited/GroupFavoritedPlugin.php | 24 +++++++++++++++++++ .../GroupFavorited/groupfavoritedaction.php | 7 +++--- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/plugins/GroupFavorited/GroupFavoritedPlugin.php b/plugins/GroupFavorited/GroupFavoritedPlugin.php index 68815530aa..27ce289c2e 100644 --- a/plugins/GroupFavorited/GroupFavoritedPlugin.php +++ b/plugins/GroupFavorited/GroupFavoritedPlugin.php @@ -76,4 +76,28 @@ class GroupFavoritedPlugin extends Plugin $action_name == 'groupfavorited', 'nav_group_group'); } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:GroupFavorited'; + + $versions[] = array('name' => 'GroupFavorited', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin adds a menu item for popular notices in groups.')); + + return true; + } } diff --git a/plugins/GroupFavorited/groupfavoritedaction.php b/plugins/GroupFavorited/groupfavoritedaction.php index 6803bea8d6..dbd37abbcf 100644 --- a/plugins/GroupFavorited/groupfavoritedaction.php +++ b/plugins/GroupFavorited/groupfavoritedaction.php @@ -32,27 +32,27 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - class GroupFavoritedAction extends ShowgroupAction { - /** * Title of the page * * @return string page title, with page number */ - function title() { if (!empty($this->group->fullname)) { + // @todo Create a core method to create this properly. i18n issue. $base = $this->group->fullname . ' (' . $this->group->nickname . ')'; } else { $base = $this->group->nickname; } if ($this->page == 1) { + // TRANS: %s is a group name. return sprintf(_m('Popular posts in %s group'), $base); } else { + // TRANS: %1$s is a group name, %2$s is a group number. return sprintf(_m('Popular posts in %1$s group, page %2$d'), $base, $this->page); @@ -66,7 +66,6 @@ class GroupFavoritedAction extends ShowgroupAction * * @return void */ - function showContent() { $groupId = intval($this->group->id); From 2188b6d501eb107ddc72301fbe3cc999d30d1788 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:11:38 +0200 Subject: [PATCH 302/310] * i18n review/translator documentation added. * onPluginVersion() added. --- plugins/ShareNotice/ShareNoticePlugin.php | 33 +++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/plugins/ShareNotice/ShareNoticePlugin.php b/plugins/ShareNotice/ShareNoticePlugin.php index d44e234529..8b94f83c8f 100644 --- a/plugins/ShareNotice/ShareNoticePlugin.php +++ b/plugins/ShareNotice/ShareNoticePlugin.php @@ -102,6 +102,7 @@ abstract class GenericNoticeShareTarget extends NoticeShareTarget protected function statusText() { + // TRANS: Leave this message unchanged. $pattern = _m('"%s"'); $url = $this->notice->bestUrl(); $suffix = ' ' . $url; @@ -125,6 +126,7 @@ class TwitterShareTarget extends GenericNoticeShareTarget public function getText() { + // TRANS: Tooltip for image to share a notice on Twitter. return _m('Share on Twitter'); } @@ -156,6 +158,8 @@ class StatusNetShareTarget extends GenericNoticeShareTarget public function getText() { $host = parse_url($this->baseurl, PHP_URL_HOST); + // TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). + // TRANS: %s is a host name. return sprintf(_m('Share on %s'), $host); } @@ -167,7 +171,6 @@ class StatusNetShareTarget extends GenericNoticeShareTarget return $this->baseurl . '/notice/new?' . http_build_query($args, null, '&'); } - } class FacebookShareTarget extends NoticeShareTarget @@ -179,6 +182,7 @@ class FacebookShareTarget extends NoticeShareTarget public function getText() { + // TRANS: Tooltip for image to share a notice on Facebook. return _m('Share on Facebook'); } @@ -186,9 +190,34 @@ class FacebookShareTarget extends NoticeShareTarget { $args = array( 'u' => $this->notice->bestUrl(), + // TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. 't' => sprintf(_m('"%s"'), $this->notice->content), ); return 'http://www.facebook.com/sharer.php?' . http_build_query($args, null, '&'); } -} \ No newline at end of file + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:ShareNotice'; + + $versions[] = array('name' => 'ShareNotice', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows sharing of notices to Twitter, Facebook and other platforms.')); + + return true; + } +} From 04b70219dbf9539f8eaca1e210a7062d72fe612f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:15:26 +0200 Subject: [PATCH 303/310] * i18n review/translator hints added. * whitespace updates. * added @todo because of missing plugin description. I wasn't able to find out what this does exactly quick enough. --- .../SlicedFavorites/SlicedFavoritesPlugin.php | 33 +++++++++++++++++-- .../SlicedFavorites/favoritedsliceaction.php | 4 +-- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index ed7f5ebb96..75b9847f44 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -33,13 +33,13 @@ class SlicedFavoritesPlugin extends Plugin * 'slices' => array( * // show only pop's notices on /favorited * 'default' => array('include' => array('pop')), - * + * * // show only son's notices on /favorited/blog * 'blog' => array('include' => array('son')), - * + * * // show all favorited notices except pop's and son's on /favorited/submitted * 'submitted' => array('exclude' => array('pop', 'son')), - * + * * // show all favorited notices on /favorited/everybody * 'everybody' => array(), * ) @@ -106,4 +106,31 @@ class SlicedFavoritesPlugin extends Plugin } return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + * @todo Needs a proper plugin description. + */ +/* + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:SlicedFavorites'; + + $versions[] = array('name' => 'SlicedFavorites', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Needs a proper plugin description.')); + + return true; + } +*/ } diff --git a/plugins/SlicedFavorites/favoritedsliceaction.php b/plugins/SlicedFavorites/favoritedsliceaction.php index 020688cfa4..9c8a9f53fb 100644 --- a/plugins/SlicedFavorites/favoritedsliceaction.php +++ b/plugins/SlicedFavorites/favoritedsliceaction.php @@ -32,7 +32,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } - class FavoritedSliceAction extends FavoritedAction { private $includeUsers = array(), $excludeUsers = array(); @@ -46,7 +45,6 @@ class FavoritedSliceAction extends FavoritedAction * * @todo move queries from showContent() to here */ - function prepare($args) { parent::prepare($args); @@ -54,6 +52,7 @@ class FavoritedSliceAction extends FavoritedAction $this->slice = $this->arg('slice', 'default'); $data = array(); if (Event::handle('SlicedFavoritesGetSettings', array($this->slice, &$data))) { + // TRANS: Client exception. throw new ClientException(_m('Unknown favorites slice.')); } if (isset($data['include'])) { @@ -73,7 +72,6 @@ class FavoritedSliceAction extends FavoritedAction * * @return void */ - function showContent() { $slice = $this->sliceWhereClause(); From 3dd921332d4da25314f3ff62d5194d3a595c3004 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:21:12 +0200 Subject: [PATCH 304/310] Add plugin description thanks to Brion. --- plugins/SlicedFavorites/SlicedFavoritesPlugin.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php index 75b9847f44..d2407484da 100644 --- a/plugins/SlicedFavorites/SlicedFavoritesPlugin.php +++ b/plugins/SlicedFavorites/SlicedFavoritesPlugin.php @@ -115,9 +115,7 @@ class SlicedFavoritesPlugin extends Plugin * @param array &$versions array of version data arrays; see EVENTS.txt * * @return boolean hook value - * @todo Needs a proper plugin description. */ -/* function onPluginVersion(&$versions) { $url = 'http://status.net/wiki/Plugin:SlicedFavorites'; @@ -128,9 +126,8 @@ class SlicedFavoritesPlugin extends Plugin 'homepage' => $url, 'rawdescription' => // TRANS: Plugin description. - _m('Needs a proper plugin description.')); + _m('Shows timelines of popular notices for defined subsets of users.')); return true; } -*/ } From 08054e85fe4b47b6d28acb83b4c251be92f12316 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Oct 2010 22:34:59 +0200 Subject: [PATCH 305/310] Localisation updates from http://translatewiki.net. --- locale/af/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ar/LC_MESSAGES/statusnet.po | 529 ++++---- locale/arz/LC_MESSAGES/statusnet.po | 529 ++++---- locale/bg/LC_MESSAGES/statusnet.po | 522 ++++---- locale/br/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ca/LC_MESSAGES/statusnet.po | 527 ++++---- locale/cs/LC_MESSAGES/statusnet.po | 528 ++++---- locale/de/LC_MESSAGES/statusnet.po | 604 +++++---- locale/en_GB/LC_MESSAGES/statusnet.po | 527 ++++---- locale/eo/LC_MESSAGES/statusnet.po | 527 ++++---- locale/es/LC_MESSAGES/statusnet.po | 527 ++++---- locale/fa/LC_MESSAGES/statusnet.po | 526 ++++---- locale/fi/LC_MESSAGES/statusnet.po | 524 ++++---- locale/fr/LC_MESSAGES/statusnet.po | 609 +++++---- locale/ga/LC_MESSAGES/statusnet.po | 525 ++++---- locale/gl/LC_MESSAGES/statusnet.po | 527 ++++---- locale/hsb/LC_MESSAGES/statusnet.po | 529 ++++---- locale/hu/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ia/LC_MESSAGES/statusnet.po | 544 ++++---- locale/is/LC_MESSAGES/statusnet.po | 522 ++++---- locale/it/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ja/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ka/LC_MESSAGES/statusnet.po | 526 ++++---- locale/ko/LC_MESSAGES/statusnet.po | 524 ++++---- locale/mk/LC_MESSAGES/statusnet.po | 544 ++++---- locale/nb/LC_MESSAGES/statusnet.po | 526 ++++---- locale/nl/LC_MESSAGES/statusnet.po | 551 ++++---- locale/nn/LC_MESSAGES/statusnet.po | 522 ++++---- locale/pl/LC_MESSAGES/statusnet.po | 611 +++++---- locale/pt/LC_MESSAGES/statusnet.po | 527 ++++---- locale/pt_BR/LC_MESSAGES/statusnet.po | 527 ++++---- locale/ru/LC_MESSAGES/statusnet.po | 528 ++++---- locale/statusnet.pot | 513 ++++---- locale/sv/LC_MESSAGES/statusnet.po | 527 ++++---- locale/te/LC_MESSAGES/statusnet.po | 525 ++++---- locale/tr/LC_MESSAGES/statusnet.po | 518 ++++---- locale/uk/LC_MESSAGES/statusnet.po | 1148 +++++++++-------- locale/zh_CN/LC_MESSAGES/statusnet.po | 539 ++++---- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/pl/LC_MESSAGES/APC.po | 31 + .../AnonymousFave/locale/AnonymousFave.pot | 98 ++ .../locale/uk/LC_MESSAGES/AutoSandbox.po | 14 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 10 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 26 + .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 27 + .../locale/de/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/fr/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 27 + .../uk/LC_MESSAGES/CasAuthentication.po | 12 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 28 + .../Comet/locale/zh_CN/LC_MESSAGES/Comet.po | 27 + .../locale/fr/LC_MESSAGES/DiskCache.po | 28 + plugins/Disqus/locale/Disqus.pot | 12 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 18 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 18 +- .../locale/gl/LC_MESSAGES/Facebook.po | 540 ++++++++ .../locale/uk/LC_MESSAGES/Facebook.po | 42 +- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 12 +- plugins/ForceGroup/locale/ForceGroup.pot | 31 + .../locale/uk/LC_MESSAGES/Geonames.po | 12 +- .../locale/de/LC_MESSAGES/Gravatar.po | 11 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 14 +- .../GroupFavorited/locale/GroupFavorited.pot | 48 + .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 12 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 10 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 58 + .../locale/uk/LC_MESSAGES/Mapstraction.po | 12 +- .../locale/uk/LC_MESSAGES/Memcache.po | 12 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 40 + .../locale/uk/LC_MESSAGES/MobileProfile.po | 10 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 12 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 12 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 101 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 67 +- plugins/OpenID/locale/OpenID.pot | 26 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 59 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 32 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 78 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 12 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 12 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 12 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 10 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 14 +- plugins/ShareNotice/locale/ShareNotice.pot | 48 + .../locale/SlicedFavorites.pot | 27 + .../locale/uk/LC_MESSAGES/SubMirror.po | 12 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 13 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 11 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 10 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 10 +- plugins/TinyMCE/locale/TinyMCE.pot | 4 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 10 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 10 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 100 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 40 +- plugins/YammerImport/locale/YammerImport.pot | 83 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/ia/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/mk/LC_MESSAGES/YammerImport.po | 284 ++++ .../locale/nl/LC_MESSAGES/YammerImport.po | 285 ++++ .../locale/uk/LC_MESSAGES/YammerImport.po | 294 +++++ 122 files changed, 14743 insertions(+), 10075 deletions(-) create mode 100644 plugins/APC/locale/gl/LC_MESSAGES/APC.po create mode 100644 plugins/APC/locale/pl/LC_MESSAGES/APC.po create mode 100644 plugins/AnonymousFave/locale/AnonymousFave.pot create mode 100644 plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/Comet/locale/fr/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po create mode 100644 plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po create mode 100644 plugins/ForceGroup/locale/ForceGroup.pot create mode 100644 plugins/GroupFavorited/locale/GroupFavorited.pot create mode 100644 plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po create mode 100644 plugins/ShareNotice/locale/ShareNotice.pot create mode 100644 plugins/SlicedFavorites/locale/SlicedFavorites.pot create mode 100644 plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po create mode 100644 plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index b52613afae..069438eb2e 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:51+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Stoor toegangsinstellings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Stoor" @@ -110,7 +110,7 @@ msgstr "Hierdie bladsy bestaan nie." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -346,7 +346,7 @@ msgid "This status is already a favorite." msgstr "Hierdie status is reeds 'n gunsteling." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Dit was nie moontlik om 'n gunsteling te skep nie." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "Nie gevind nie." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U is reeds 'n lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Dit was nie moontlik om die groep by te werk nie." @@ -489,7 +489,7 @@ msgstr "U is nie 'n lid van die groep nie." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, fuzzy, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kon nie die groep skep nie." @@ -603,7 +603,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Gebruiker" @@ -617,7 +617,7 @@ msgstr "Bynaam" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wagwoord" @@ -647,12 +647,12 @@ msgid "No such notice." msgstr "Die kennisgewing bestaan nie." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." @@ -763,7 +763,7 @@ msgstr "Ongeldige grootte." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -795,7 +795,7 @@ msgid "Preview" msgstr "Voorskou" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Skrap" @@ -878,7 +878,7 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkeer hierdie gebruiker" @@ -897,8 +897,8 @@ msgstr "" #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Die groep bestaan nie." @@ -1018,7 +1018,7 @@ msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1078,7 +1078,7 @@ msgid "Do not delete this notice" msgstr "Moenie hierdie kennisgewing verwyder nie" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Verwyder hierdie kennisgewing" @@ -1107,7 +1107,7 @@ msgstr "Verwyder die gebruiker" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Ontwerp" @@ -1237,7 +1237,7 @@ msgstr "Stel terug na standaard" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Stoor" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "Dit was nie moontlik om die groep by te werk nie." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Dit was nie moontlik om die aliasse te skep nie." @@ -1411,7 +1411,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Kanselleer" @@ -1606,7 +1606,7 @@ msgstr "Geen inkomende e-posadres." msgid "This notice is already a favorite!" msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "Voeg by gunstelinge" @@ -1913,7 +1913,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tydlyn" @@ -2178,7 +2178,7 @@ msgstr "U volg hierdie gebruiker:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2281,7 +2281,7 @@ msgid "You must be logged in to leave a group." msgstr "U moet aanteken alvorens u 'n groep kan verlaat." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "U is nie 'n lid van daardie groep nie." @@ -2502,14 +2502,14 @@ msgid "New message" msgstr "Nuwe boodskap" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "U kan nie 'n boodskap aan hierdie gebruiker stuur nie." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Geen inhoud nie!" @@ -2518,7 +2518,7 @@ msgid "No recipient specified." msgstr "Geen ontvanger gespesifiseer nie." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2529,12 +2529,12 @@ msgstr "Boodskap is gestuur." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Direkte boodskappe aan %s" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-fout" @@ -2670,8 +2670,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Nie-ondersteunde formaat." @@ -3034,7 +3034,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Tuisblad" @@ -3434,7 +3434,7 @@ msgstr "Dieselfde as wagwoord hierbo" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-pos" @@ -3574,7 +3574,7 @@ msgstr "U kan nie u eie kennisgewings herhaal nie." msgid "You already repeated that notice." msgstr "U het reeds die kennisgewing herhaal." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Herhalend" @@ -3713,13 +3713,13 @@ msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisasie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrywing" @@ -4486,7 +4486,7 @@ msgstr "%s volg niemand nie." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4610,7 +4610,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4804,7 +4804,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Opdaterings van %1$s op %2$s." @@ -4853,7 +4853,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Weergawe" @@ -4861,30 +4861,26 @@ msgstr "Weergawe" msgid "Author(s)" msgstr "Outeur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Gunstelinge" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4893,20 +4889,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ongeldige grootte." @@ -4928,13 +4924,28 @@ msgstr "Nie lid van die groep nie." msgid "Group leave failed." msgstr "Groepsprofiel" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fout tydens stoor van gebruiker; ongeldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Aansluit" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4958,19 +4969,19 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "U inkomende boodskappe" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "Kan nie boodskap verwerk nie." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Kan nie boodskap verwerk nie." @@ -5024,32 +5035,32 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5108,13 +5119,9 @@ msgid "Could not delete subscription." msgstr "" "Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5125,61 +5132,61 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom by %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 #, fuzzy msgid "Could not set group URI." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 #, fuzzy msgid "Could not set group membership." msgstr "Kon nie die groep skep nie." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Kon nie die profiel stoor nie." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Verander u profiel gegewens" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Die opdatering van die avatar het gefaal." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Verander u wagwoord" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Ontwerp u profiel" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Ander opsies" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Ander" @@ -5195,190 +5202,191 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoonlik" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Verander u wagwoord" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Konnekteer" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Uitnodig" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Meld by die webwerf aan" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Teken uit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skep 'n gebruiker" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registreer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Meld by die webwerf aan" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Teken in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help my!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Soek na mense of teks" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Soek" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Verwyder kennisgewing" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 #, fuzzy msgid "Local views" msgstr "Lokaal" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Populêre kennisgewings" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Aangaande" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Gewilde vrae" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Gebruiksvoorwaardes" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privaatheid" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Bron" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontak" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Aanpor" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5386,7 +5394,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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5394,7 +5402,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5403,7 +5411,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5412,71 +5420,71 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registratie" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Na" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Voor" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5612,7 +5620,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5629,194 +5637,214 @@ msgid "Icon for this application" msgstr "Moenie die applikasie verwyder nie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Skrap applikasie" +msgstr[1] "Skrap applikasie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Skrap applikasie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Bron" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "U is nie die eienaar van hierdie applikasie nie." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Webblaaier" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lees-alleen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lees-skryf" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Kanselleer" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 #, fuzzy msgid "read-write" msgstr "Lees-skryf" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 #, fuzzy msgid "read-only" msgstr "Lees-alleen" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Verwyder" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Aanhangsels" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Outeur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Verskaffer" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "Etikette vir hierdie aanhangsel" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etikette vir hierdie aanhangsel" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Wagwoord wysiging het misluk" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Wagwoord verandering word nie toegelaat nie" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkeer" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Opdragresultate" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-fout" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Opdrag voltooi" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 #, fuzzy msgid "Command failed" msgstr "Opdrag voltooi" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5825,7 +5853,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5834,52 +5862,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Volle naam: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Ligging: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Tuisblad: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Oor: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5888,7 +5917,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5896,124 +5925,124 @@ msgstr "" "gestuur." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 #, fuzzy msgid "Error repeating notice." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, 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:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Fout tydens stoor van gebruiker; ongeldig." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Opdrag voltooi" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Geen bevestigingskode." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Geen bevestigingskode." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "U kan nie u eie kennisgewings herhaal nie." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "U volg hierdie gebruiker:" @@ -6021,7 +6050,7 @@ msgstr "U volg hierdie gebruiker:" #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U volg hierdie gebruiker:" @@ -6029,7 +6058,7 @@ msgstr[1] "U volg hierdie gebruikers:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Hierdie gebruiker volg u:" @@ -6037,7 +6066,7 @@ msgstr "Hierdie gebruiker volg u:" #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Hierdie gebruiker volg u:" @@ -6045,21 +6074,21 @@ msgstr[1] "Hierdie gebruikers volg u:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "U is nie 'n lid van enige groep nie." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U is 'n lid van hierdie groep:" msgstr[1] "U is 'n lid van hierdie groepe:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6101,41 +6130,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Geen bevestigingskode." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Gaan na die installeerder." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konnekteer" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Skrap applikasie" @@ -6158,12 +6208,12 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Verwyder hierdie kennisgewing" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Verwyder hierdie kennisgewing" @@ -6184,7 +6234,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Vriende van vriende (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6620,7 +6670,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "van" @@ -6770,56 +6820,56 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "op" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in konteks" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Herhaal deur" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 #, fuzzy msgid "Reply to this notice" msgstr "Verwyder hierdie kennisgewing" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antwoord" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Hierdie kennisgewing is verwyder." @@ -6895,7 +6945,7 @@ msgid "Tags in %s's notices" msgstr "Etikette in die aankondigings van %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Onbekend" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 404488ab3f..8a50f1da89 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:35+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:54+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -114,7 +114,7 @@ msgstr "لا صفحة كهذه." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -350,7 +350,7 @@ msgid "This status is already a favorite." msgstr "هذه الحالة مفضلة بالفعل." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضلة." @@ -467,20 +467,20 @@ msgid "Group not found." msgstr "المجموعة غير موجودة." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "أنت بالفعل عضو في هذه المجموعة" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." @@ -492,7 +492,7 @@ msgstr "لست عضوًا في هذه المجموعة" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "لم يمكن إزالة المستخدم %1$s من المجموعة %2$s." @@ -606,7 +606,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "الحساب" @@ -620,7 +620,7 @@ msgstr "الاسم المستعار" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمة السر" @@ -652,12 +652,12 @@ msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "لا يمكنك تكرار ملحوظتك الخاصة." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "كرر بالفعل هذه الملاحظة." @@ -768,7 +768,7 @@ msgstr "حجم غير صالح." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" @@ -799,7 +799,7 @@ msgid "Preview" msgstr "معاينة" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "احذف" @@ -883,7 +883,7 @@ msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -902,8 +902,8 @@ msgstr "فشل حفظ معلومات المنع." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "لا مجموعة كهذه." @@ -1021,7 +1021,7 @@ msgstr "أنت لست مالك هذا التطبيق." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1081,7 +1081,7 @@ msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1110,7 +1110,7 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "التصميم" @@ -1237,7 +1237,7 @@ msgstr "ارجع إلى المبدئي" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1360,7 +1360,7 @@ msgid "Could not update group." msgstr "تعذر تحديث المجموعة." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1414,7 +1414,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" @@ -1606,7 +1606,7 @@ msgstr "لا عنوان بريد إلكتروني وارد." msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضلة مسبقًا!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" @@ -1901,7 +1901,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2173,7 +2173,7 @@ msgstr "لست مشتركًا بأحد." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2277,7 +2277,7 @@ msgid "You must be logged in to leave a group." msgstr "يجب أن تلج لتغادر مجموعة." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "لست عضوا في تلك المجموعة." @@ -2497,14 +2497,14 @@ msgid "New message" msgstr "رسالة جديدة" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "لا محتوى!" @@ -2513,7 +2513,7 @@ msgid "No recipient specified." msgstr "لا مستلم حُدّد." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2524,12 +2524,12 @@ msgstr "أُرسلت الرسالة" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "رسالة مباشرة ل%s تم إرسالها." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطأ أجاكس" @@ -2662,8 +2662,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -3014,7 +3014,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحة الرئيسية" @@ -3403,7 +3403,7 @@ msgstr "نفس كلمة السر أعلاه. مطلوب." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" @@ -3538,7 +3538,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية." msgid "You already repeated that notice." msgstr "أنت كررت هذه الملاحظة بالفعل." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "مكرر" @@ -3672,13 +3672,13 @@ msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمة" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -4446,7 +4446,7 @@ msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "رسائل قصيرة" @@ -4569,7 +4569,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4755,7 +4755,7 @@ msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) وال #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" @@ -4806,7 +4806,7 @@ msgid "Plugins" msgstr "الملحقات" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "النسخة" @@ -4814,29 +4814,25 @@ msgstr "النسخة" msgid "Author(s)" msgstr "المؤلف(ون)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "فضّل" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4845,20 +4841,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "حجم غير صالح." @@ -4878,13 +4874,28 @@ msgstr "ليس جزءا من المجموعة." msgid "Group leave failed." msgstr "ترك المجموعة فشل." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "انضم" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4907,17 +4918,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "أنت ممنوع من إرسال رسائل مباشرة." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "تعذّر إدراج الرسالة." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "تعذّر تحليل الرسالة." @@ -4971,33 +4982,33 @@ msgid "Problem saving notice." msgstr "مشكلة أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5049,13 +5060,9 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5066,57 +5073,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "تعذّر إنشاء المجموعة." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "تعذر تحديث المجموعة المحلية." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ارفع أفتارًا" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "غير كلمة سرّك" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "خيارات أخرى" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "أخرى" @@ -5132,186 +5139,187 @@ msgid "Untitled page" msgstr "صفحة غير مُعنونة" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصي ومسار الأصدقاء الزمني" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "الصفحة الشخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصل بالخدمات" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ حسابًا" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نصوص" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "المشاهدات المحلية" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "إشعار الصفحة" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "مساعدة" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "عن" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "الأسئلة المكررة" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "الشروط" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصية" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "المصدر" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "اتصل" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "الجسر" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" @@ -5319,7 +5327,7 @@ msgstr "رخصة برنامج StatusNet" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5329,7 +5337,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5338,7 +5346,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5350,71 +5358,71 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "رخصة محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "تسجيل" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5542,7 +5550,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5557,192 +5565,216 @@ msgid "Icon for this application" msgstr "أيقونة لهذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "صف تطبيقك" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "صف تطبيقك" +msgstr[1] "صف تطبيقك" +msgstr[2] "صف تطبيقك" +msgstr[3] "صف تطبيقك" +msgstr[4] "صف تطبيقك" +msgstr[5] "صف تطبيقك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "صف تطبيقك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "مسار صفحة هذا التطبيق" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "مسار المصدر" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "أيقونة لهذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "مسار صفحة هذا التطبيق" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "متصفح" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "أزل" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "مرفقات" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "المؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "المزود" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "وسوم هذا المرفق" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغيير كلمة السر فشل" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغيير كلمة السر غير مسموح به" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "امنع" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتائج الأمر" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطأ أجاكس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "اكتمل الأمر" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فشل الأمر" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "لا ملف بهذه الهوية." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 #, fuzzy msgid "Sorry, this command is not yet implemented." msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "أرسل التنبيه" @@ -5751,7 +5783,7 @@ msgstr "أرسل التنبيه" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5763,53 +5795,54 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "الموقع: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "الصفحة الرئيسية: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "عن: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5818,132 +5851,132 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "أنت ممنوع من إرسال رسائل مباشرة." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "رُد على رسالة %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "الإشعار مُطفأ." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "تعذّر إطفاء الإشعارات." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "الإشعار يعمل." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "تعذّر تشغيل الإشعار." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -5955,14 +5988,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -5974,14 +6007,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا في أي مجموعة." @@ -5992,7 +6025,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6072,40 +6105,62 @@ msgstr "" "tracks - لم يطبق بعد.\n" "tracking - لم يطبق بعد.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "لا رمز تأكيد." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "محادثة فورية" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "تحديثات عبر الرسائل القصيرة" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصالات" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "تطبيقات OAuth" @@ -6127,11 +6182,11 @@ msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للمل msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "فضّل هذا الإشعار" @@ -6151,7 +6206,7 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6609,7 +6664,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "من" @@ -6756,55 +6811,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ش" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ج" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ر" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "غ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "في" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "في السياق" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "مكرر بواسطة" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -6876,7 +6931,7 @@ msgid "Tags in %s's notices" msgstr "وسوم في إشعارات %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "غير معروفة" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 50c8aa2a30..3d7eed84ad 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: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:36+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:55+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "اذف إعدادت الموقع" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -118,7 +118,7 @@ msgstr "لا وسم كهذا." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "لا مستخدم كهذا." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "الحاله دى موجوده فعلا فى التفضيلات." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "تعذّر إنشاء مفضله." @@ -471,20 +471,20 @@ msgid "Group not found." msgstr "لم يوجد." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "انت اصلا عضو فى الجروپ ده" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "لم تمنع هذا المستخدم." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ما نفعش يضم %1$s للجروپ %2$s." @@ -497,7 +497,7 @@ msgstr "لست عضوا فى تلك المجموعه." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ما نفعش يتشال اليوزر %1$s من الجروپ %2$s." @@ -613,7 +613,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "الحساب" @@ -627,7 +627,7 @@ msgstr "الاسم المستعار" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمه السر" @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "لا إشعار كهذا." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "الملاحظه اتكررت فعلا." @@ -776,7 +776,7 @@ msgstr "حجم غير صالح." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "أفتار" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "عاين" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "احذف" @@ -893,7 +893,7 @@ msgstr "نعم" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "امنع هذا المستخدم" @@ -912,8 +912,8 @@ msgstr "فشل حفظ معلومات المنع." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "لا مجموعه كهذه." @@ -1032,7 +1032,7 @@ msgstr "انت مش بتملك الapplication دى." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1094,7 +1094,7 @@ msgid "Do not delete this notice" msgstr "لا تحذف هذا الإشعار" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -1123,7 +1123,7 @@ msgstr "احذف هذا المستخدم" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "التصميم" @@ -1251,7 +1251,7 @@ msgstr "ارجع إلى المبدئي" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "أرسل" @@ -1375,7 +1375,7 @@ msgid "Could not update group." msgstr "تعذر تحديث المجموعه." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1630,7 +1630,7 @@ msgstr "لا عنوان بريد إلكترونى." msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضله مسبقًا!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "ألغِ تفضيل المفضلة" @@ -1930,7 +1930,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "مسار %s الزمني" @@ -2199,7 +2199,7 @@ msgstr "لست مشتركًا بأحد." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2306,7 +2306,7 @@ msgid "You must be logged in to leave a group." msgstr "يجب أن تكون والجًا لتنشئ مجموعه." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "لست عضوا فى تلك المجموعه." @@ -2525,15 +2525,15 @@ msgid "New message" msgstr "رساله جديدة" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 #, fuzzy msgid "You can't send a message to this user." msgstr "أرسل رساله مباشره إلى هذا المستخدم" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "لا محتوى!" @@ -2542,7 +2542,7 @@ msgid "No recipient specified." msgstr "لا مستلم حُدّد." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2553,12 +2553,12 @@ msgstr "أُرسلت الرسالة" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "رساله مباشره اتبعتت لـ%s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطأ أجاكس" @@ -2689,8 +2689,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -3040,7 +3040,7 @@ msgstr "الاسم الكامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "الصفحه الرئيسية" @@ -3429,7 +3429,7 @@ msgstr "نفس كلمه السر أعلاه. مطلوب." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" @@ -3564,7 +3564,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك." msgid "You already repeated that notice." msgstr "انت عيدت الملاحظه دى فعلا." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "مكرر" @@ -3699,13 +3699,13 @@ msgid "Name" msgstr "الاسم" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "المنظمه" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "الوصف" @@ -4483,7 +4483,7 @@ msgstr "لست مُشتركًا بأى أحد." msgid "Jabber" msgstr "جابر" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "رسائل قصيرة" @@ -4606,7 +4606,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "الملف الشخصي" @@ -4792,7 +4792,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" @@ -4842,7 +4842,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "النسخه" @@ -4850,29 +4850,25 @@ msgstr "النسخه" msgid "Author(s)" msgstr "المؤلف/ين" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "فضّل" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4881,20 +4877,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "حجم غير صالح." @@ -4914,13 +4910,28 @@ msgstr "مش جزء من الجروپ." msgid "Group leave failed." msgstr "الخروج من الجروپ فشل." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "انضم" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4944,17 +4955,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "أنت ممنوع من إرسال رسائل مباشره." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "تعذّر إدراج الرساله." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "تعذّر تحليل الرساله." @@ -5008,33 +5019,33 @@ msgid "Problem saving notice." msgstr "مشكله أثناء حفظ الإشعار." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5085,13 +5096,9 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5102,58 +5109,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم فى %1$s يا @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "تعذّر إنشاء المجموعه." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر حفظ الاشتراك." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ارفع أفتارًا" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "غير كلمه سرّك" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "صمّم ملفك الشخصي" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "خيارات أخرى" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "أخرى" @@ -5169,130 +5176,130 @@ msgid "Untitled page" msgstr "صفحه غير مُعنونة" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "الملف الشخصى ومسار الأصدقاء الزمني" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمه سرّك" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "كونيكشونات (Connections)" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعُ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "سمه الموقع." #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "الشعار" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ مجموعه جديدة" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "لُج إلى الموقع" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "لُج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "مساعدة" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابحث عن أشخاص أو نص" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5300,68 +5307,69 @@ msgstr "ابحث" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "إشعار الموقع" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "المشاهدات المحلية" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "إشعار الصفحة" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "ضبط الموقع الأساسي" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "مساعدة" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "عن" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "الأسئله المكررة" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "الشروط" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصية" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "المصدر" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "اتصل" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "نبّه" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 #, fuzzy msgid "StatusNet software license" msgstr "رخصه محتوى الموقع" @@ -5370,7 +5378,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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5380,7 +5388,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5389,7 +5397,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5401,71 +5409,71 @@ msgstr "" "agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "رخصه محتوى الموقع" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "المنظمه" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5599,7 +5607,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5616,191 +5624,215 @@ msgid "Icon for this application" msgstr "ما فيش application زى كده." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "اوصف الapplication بتاعتك" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "اوصف الapplication بتاعتك" +msgstr[1] "اوصف الapplication بتاعتك" +msgstr[2] "اوصف الapplication بتاعتك" +msgstr[3] "اوصف الapplication بتاعتك" +msgstr[4] "اوصف الapplication بتاعتك" +msgstr[5] "اوصف الapplication بتاعتك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "اوصف الapplication بتاعتك" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "انت مش بتملك الapplication دى." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "انت مش بتملك الapplication دى." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "ألغِ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "استرجع" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "مرفقات" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "المؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "المزود" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 #, fuzzy msgid "Notices where this attachment appears" msgstr "وسوم هذا المرفق" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغيير الپاسوورد فشل" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغيير الپاسوورد مش مسموح" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "امنع" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتائج الأمر" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطأ أجاكس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "اكتمل الأمر" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فشل الأمر" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "لا ملف بهذه الهويه." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "تعذّر إيجاد المستخدم الهدف." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "أرسل التنبيه" @@ -5809,7 +5841,7 @@ msgstr "أرسل التنبيه" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5821,53 +5853,54 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "هذا الإشعار مفضله مسبقًا!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "الاسم الكامل: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "الموقع: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "الصفحه الرئيسية: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "عن: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5876,136 +5909,136 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "أنت ممنوع من إرسال رسائل مباشره." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "خطأ تكرار الإشعار." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "رُد على رساله %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "خطأ أثناء حفظ الإشعار." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "اكتمل الأمر" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "لا رمز تأكيد." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "لا رمز تأكيد." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "لست مشتركًا بأحد." @@ -6017,14 +6050,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "لا أحد مشترك بك." @@ -6036,14 +6069,14 @@ msgstr[5] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "لست عضوًا فى أى مجموعه." @@ -6054,7 +6087,7 @@ msgstr[4] "" msgstr[5] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6096,40 +6129,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "لا رمز تأكيد." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "محادثه فورية" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "كونيكشونات (Connections)" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "OAuth applications" @@ -6151,11 +6206,11 @@ msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للمل msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "فضّل هذا الإشعار" @@ -6175,7 +6230,7 @@ msgstr "أتوم" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6612,7 +6667,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "من" @@ -6759,55 +6814,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ش" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ج" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ر" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "غ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "في" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "فى السياق" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "متكرر من" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "رُد" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "الإشعار مكرر" @@ -6879,7 +6934,7 @@ msgid "Tags in %s's notices" msgstr "ليس للمستخدم إشعار أخير" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "مش معروف" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 450230e476..9cfc38adaa 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:37+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:56+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Запазване" @@ -111,7 +111,7 @@ msgstr "Няма такака страница." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Няма такъв потребител" @@ -347,7 +347,7 @@ msgid "This status is already a favorite." msgstr "Тази бележка вече е отбелязана като любима." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." @@ -463,19 +463,19 @@ msgid "Group not found." msgstr "Групата не е открита." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Вече членувате в тази група." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 #, fuzzy msgid "You have been blocked from that group by the admin." msgstr "Не сте блокирали този потребител." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Грешка при обновяване на групата." @@ -487,7 +487,7 @@ msgstr "Не членувате в тази група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Грешка при създаване на групата." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Сметка" @@ -616,7 +616,7 @@ msgstr "Псевдоним" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Парола" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "Няма такава бележка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Не можете да повтаряте собствени бележки." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Вече сте повторили тази бележка." @@ -761,7 +761,7 @@ msgstr "Неправилен размер." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" @@ -793,7 +793,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Изтриване" @@ -876,7 +876,7 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокиране на потребителя" @@ -895,8 +895,8 @@ msgstr "Грешка при записване данните за блокир #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Няма такава група" @@ -1013,7 +1013,7 @@ msgstr "Не сте собственик на това приложение." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -1073,7 +1073,7 @@ msgid "Do not delete this notice" msgstr "Да не се изтрива бележката" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -1102,7 +1102,7 @@ msgstr "Изтриване на този потребител" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 #, fuzzy msgid "Design" msgstr "Версия" @@ -1237,7 +1237,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" @@ -1366,7 +1366,7 @@ msgid "Could not update group." msgstr "Грешка при обновяване на групата." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." @@ -1423,7 +1423,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Отказ" @@ -1617,7 +1617,7 @@ msgstr "Добавен е нов входящ адрес на е-поща." msgid "This notice is already a favorite!" msgstr "Тази бележка вече е отбелязана като любима!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Добавяне към любимите" @@ -1920,7 +1920,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Поток на %s" @@ -2193,7 +2193,7 @@ msgstr "Вече сте абонирани за следните потреби #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2328,7 +2328,7 @@ msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Не членувате в тази група." @@ -2556,14 +2556,14 @@ msgid "New message" msgstr "Ново съобщение" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Не може да изпращате съобщения до този потребител." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Няма съдържание!" @@ -2572,7 +2572,7 @@ msgid "No recipient specified." msgstr "Не е указан получател." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2585,12 +2585,12 @@ msgstr "Съобщението е изпратено" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Прякото съобщение до %s е изпратено." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Грешка в Ajax" @@ -2722,8 +2722,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" @@ -3078,7 +3078,7 @@ msgstr "Пълно име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Лична страница" @@ -3463,7 +3463,7 @@ msgstr "Същото като паролата по-горе. Задължите #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-поща" @@ -3620,7 +3620,7 @@ msgstr "Не можете да повтаряте собствена бележ msgid "You already repeated that notice." msgstr "Вече сте повторили тази бележка." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3752,13 +3752,13 @@ msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -4514,7 +4514,7 @@ msgstr "%s не получава ничии бележки." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4635,7 +4635,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4836,7 +4836,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -4885,7 +4885,7 @@ msgid "Plugins" msgstr "Приставки" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версия" @@ -4893,29 +4893,25 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Любимо" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4924,20 +4920,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Неправилен размер." @@ -4960,13 +4956,28 @@ msgstr "Грешка при обновяване на групата." msgid "Group leave failed." msgstr "Профил на групата" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка при запазване на потребител — невалидност." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Присъединяване" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4990,18 +5001,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Грешка при изпращане на прякото съобщение" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Грешка при вмъкване на съобщението." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." @@ -5059,33 +5070,33 @@ msgid "Problem saving notice." msgstr "Проблем при записване на бележката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5139,13 +5150,9 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Could not delete subscription." msgstr "Грешка при добавяне на нов абонамент." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5156,58 +5163,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Грешка при създаване на групата." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Грешка при запазване на етикетите." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Промяна настройките на профила" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Качване на аватар" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Смяна на паролата" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Промяна обработката на писмата" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Други настройки" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Друго" @@ -5223,190 +5230,191 @@ msgid "Untitled page" msgstr "Неозаглавена страница" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Основна настройка на сайта" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към услуги" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Свързване" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промяна настройките на сайта" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от сайта" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Изход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова сметка" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистриране" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помощ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Търсене" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Нова бележка" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Нова бележка" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Основна настройка на сайта" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помощ" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Относно" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Въпроси" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Условия" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Поверителност" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Изходен код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Табелка" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" @@ -5414,7 +5422,7 @@ msgstr "Лиценз на програмата StatusNet" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5424,7 +5432,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е услуга за микроблогване." @@ -5433,7 +5441,7 @@ msgstr "**%%site.name%%** е услуга за микроблогване." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5445,70 +5453,70 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лиценз на съдържанието" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Страниране" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Преди" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5642,7 +5650,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5659,196 +5667,214 @@ msgid "Icon for this application" msgstr "Да не се изтрива приложението" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Опишете групата или темата в до %d букви" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишете групата или темата в до %d букви" +msgstr[1] "Опишете групата или темата в до %d букви" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Изтриване на приложението" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Не сте собственик на това приложение." #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Изходен код" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "Не сте собственик на това приложение." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Адрес на страница, блог или профил в друг сайт на групата" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Отказ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Премахване" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "Няма прикачени файлове." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Доставчик" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Няма прикачени файлове." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Паролата е записана." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Паролата е записана." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокиране" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Резултат от командата" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Грешка в Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Командата е изпълнена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Грешка при изпълнение на командата" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Не е открита бележка с такъв идентификатор." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Потребителят няма последна бележка" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Грешка при обновяване на потребител с потвърден email адрес." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "За съжаление тази команда все още не се поддържа." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Изпратено е побутване на %s" @@ -5857,7 +5883,7 @@ msgstr "Изпратено е побутване на %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5869,52 +5895,53 @@ msgstr "" "Бележки: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Пълно име: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Относно: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5923,7 +5950,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5931,25 +5958,25 @@ msgstr "" "$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Бележката от %s е повторена" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Грешка при повтаряне на бележката." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5957,103 +5984,103 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Отговорът до %s е изпратен" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Грешка при записване на бележката." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy 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:664 +#: lib/command.php:659 #, fuzzy 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Уведомлението е изключено." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Уведомлението е включено." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вече сте абонирани за следните потребители:" @@ -6061,14 +6088,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:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Грешка при абониране на друг потребител за вас." @@ -6076,21 +6103,21 @@ msgstr[1] "Грешка при абониране на друг потребит #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не членувате в тази група." msgstr[1] "Не членувате в тази група." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6132,41 +6159,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Не е открит файл с настройки. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Влизане в сайта" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Бележки през SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Свързване" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Изтриване на приложението" @@ -6190,11 +6238,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Отбелязване като любимо" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Отбелязване като любимо" @@ -6214,7 +6262,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6655,7 +6703,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "от" @@ -6801,56 +6849,56 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "С" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Ю" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "И" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "З" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 #, fuzzy msgid "at" msgstr "Път" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "в контекст" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено от" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Бележката е повторена." @@ -6921,7 +6969,7 @@ msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Непознато" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index b727faea9c..09a22da36d 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:38+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:57+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -112,7 +112,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -350,7 +350,7 @@ msgid "This status is already a favorite." msgstr "Ur pennroll eo dija an ali-mañ." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Diposupl eo krouiñ ar pennroll-mañ." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "N'eo ket bet kavet ar strollad." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Un ezel eus ar strollad-mañ eo dija." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." @@ -489,7 +489,7 @@ msgstr "N'oc'h ket ezel eus ar strollad-mañ." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Kont" @@ -616,7 +616,7 @@ msgstr "Lesanv" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Ger-tremen" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "N'eus ket eus an ali-se." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Ne c'helloc'h ket adlavar ho alioù." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Adlavaret o peus dija an ali-mañ." @@ -761,7 +761,7 @@ msgstr "Ment direizh." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "Rakwelet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Diverkañ" @@ -875,7 +875,7 @@ msgstr "Ya" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Stankañ an implijer-mañ" @@ -894,8 +894,8 @@ msgstr "Diposubl eo enrollañ an titouroù stankañ." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "N'eus ket eus ar strollad-se." @@ -1012,7 +1012,7 @@ msgstr "N'oc'h ket perc'henn ar poellad-se." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "Arabat dilemel an ali-mañ" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Dilemel an ali-mañ" @@ -1101,7 +1101,7 @@ msgstr "Diverkañ an implijer-mañ" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1227,7 +1227,7 @@ msgstr "Adlakaat an arventennoù dre ziouer" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Enrollañ" @@ -1347,7 +1347,7 @@ msgid "Could not update group." msgstr "Diposubl eo hizivaat ar strollad." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Diposubl eo krouiñ an aliasoù." @@ -1401,7 +1401,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Nullañ" @@ -1597,7 +1597,7 @@ msgstr "Chomlec'h postel ebet o tont." msgid "This notice is already a favorite!" msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Tennañ ar pennroll" @@ -1897,7 +1897,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oberezhioù %s" @@ -2167,7 +2167,7 @@ msgstr "Koumanantet oc'h dija d'an implijerien-mañ :" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2273,7 +2273,7 @@ msgid "You must be logged in to leave a group." msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "N'oc'h ket un ezel eus ar strollad-mañ." @@ -2498,14 +2498,14 @@ msgid "New message" msgstr "Kemennadenn nevez" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Goullo eo !" @@ -2514,7 +2514,7 @@ msgid "No recipient specified." msgstr "N'o peus ket lakaet a resever." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2527,12 +2527,12 @@ msgstr "Kemennadenn kaset" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Kaset eo bet da %s ar gemennadenn war-eeun." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Fazi Ajax" @@ -2667,8 +2667,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Diembreget eo ar furmad-se." @@ -3031,7 +3031,7 @@ msgstr "Anv klok" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pajenn degemer" @@ -3426,7 +3426,7 @@ msgstr "Memestra hag ar ger-tremen a-us. Rekis." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Postel" @@ -3565,7 +3565,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." msgid "You already repeated that notice." msgstr "Adkemeret o peus dija an ali-mañ." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Adlavaret" @@ -3698,13 +3698,13 @@ msgid "Name" msgstr "Anv" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Aozadur" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Deskrivadur" @@ -4470,7 +4470,7 @@ msgstr "Ne heuilh %s den ebet." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4597,7 +4597,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4786,7 +4786,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Hizivadennoù eus %1$s e %2$s!" @@ -4835,7 +4835,7 @@ msgid "Plugins" msgstr "Pluginoù" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Stumm" @@ -4843,29 +4843,25 @@ msgstr "Stumm" msgid "Author(s)" msgstr "Aozer(ien)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Pennrolloù" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4874,20 +4870,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ment direizh." @@ -4907,13 +4903,28 @@ msgstr "N'eo ezel eus strollad ebet." msgid "Group leave failed." msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Stagañ" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4937,18 +4948,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Dibosupl eo hizivaat ar gemennadenn gant un URI nevez." @@ -5001,32 +5012,32 @@ msgid "Problem saving notice." msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5076,13 +5087,9 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Could not delete subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5093,57 +5100,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Deuet mat da %1$s, @%2$s !" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Dibosupl eo krouiñ ar strollad." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Dibosupl eo termeniñ URI ar strollad." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Dibosupl eo en em enskrivañ d'ar strollad." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Kemmañ arventennoù ho profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Enporzhiañ un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cheñch ar ger-tremen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Kemmañ tretadur ar posteloù" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Krouit ho profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Dibarzhioù all" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "All" @@ -5159,186 +5166,187 @@ msgid "Untitled page" msgstr "Pajenn hep anv" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Arventennoù diazez al lec'hienn" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Liammañ d'ar servijoù" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kevreañ" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Kemmañ arventennoù al lec'hienn" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Merañ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Pediñ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Digevreañ diouzh al lec'hienn" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Krouiñ ur gont" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "En em enskrivañ" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kevreañ d'al lec'hienn" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Kevreañ" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Sikour din !" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Skoazell" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Klask tud pe un tamm testenn" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Klask" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Ali al lec'hienn" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Selloù lec'hel" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Ali ar bajenn" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Arventennoù diazez al lec'hienn" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Skoazell" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Diwar-benn" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAG" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "AIH" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Prevezded" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Mammenn" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Darempred" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badj" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Aotre-implijout ar meziant StatusNet" @@ -5346,7 +5354,7 @@ msgstr "Aotre-implijout ar meziant StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5354,7 +5362,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** a zo ur servij microblogging." @@ -5363,7 +5371,7 @@ msgstr "**%%site.name%%** a zo ur servij microblogging." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5372,70 +5380,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Aotre-implijout diwar-benn danvez al lec'hienn" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, fuzzy, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pajennadur" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "War-lerc'h" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Kent" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5561,7 +5569,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5576,189 +5584,209 @@ msgid "Icon for this application" msgstr "Arlun evit ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Diskrivit ho poellad gant %d arouezenn" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Diskrivit ho poellad gant %d arouezenn" +msgstr[1] "Diskrivit ho poellad gant %d arouezenn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Deskrivit ho poellad" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL pajenn degemer ar poellad-mañ" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Mammenn URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "An aozadur e karg eus ar poellad-mañ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL pajenn degemer an aozadur-se" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL davet pehini e o ret adkas goude bezañ kevreet" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Merdeer" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Burev" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Seurt ar poellad, merdeer pe burev" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lenn hepken" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lenn-skrivañ" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Nullañ" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lenn-skrivañ" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lenn hepken" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprouet d'an %1$s - moned \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Dilemel" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Pezhioù stag" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Aozer" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Pourvezer" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "N'eo ket bet kavet ar restr stag." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "N'eo ket aet betek penn kemmañ ar ger-tremen" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "N'eo ket aotreet kemmañ ar ger-tremen" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Stankañ" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Disoc'hoù an urzhiad" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Fazi Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Urzhiad bet klokaet" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "C'hwitet en deus an urzhiad" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Digarezit, n'eo ket bet emplementet an urzhiad-mañ c'hoazh." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" "N'eus tamm talvoudegezh ebet ober ur blinkadenn deoc'h c'hwi oc'h unan !" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5767,7 +5795,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5779,52 +5807,53 @@ msgstr "" "kemennadennoù : %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Ali bet ouzhpennet d'ar pennroll." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Anv klok : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Lec'hiadur : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Lec'hienn Web : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Diwar-benn : %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5833,7 +5862,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5841,128 +5870,128 @@ msgstr "" "arouezenn o peus lakaet." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 #, 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, 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:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Ur gudenn 'zo bet pa veze enrollet an ali." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Digarezit, n'eo ket bet emplementet an urzhiad-mañ c'hoazh." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Kemennoù diweredekaet." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Dibosupl eo diweredekaat ar c'hemennoù." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Kemennoù gweredekaet" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Dibosupl eo gweredekaat ar c'hemennoù." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "N'hoc'h ket koumanantet da zen ebet." #. 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:836 +#: lib/command.php:831 #, fuzzy msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" @@ -5971,14 +6000,14 @@ msgstr[1] "You are subscribed to these people:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Den n'eo koumanantet deoc'h." #. 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:863 +#: lib/command.php:858 #, fuzzy msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" @@ -5987,14 +6016,14 @@ msgstr[1] "These people are subscribed to you:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "N'oc'h ezel eus strollad ebet." #. 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:890 +#: lib/command.php:885 #, fuzzy msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" @@ -6002,7 +6031,7 @@ msgstr[0] "You are a member of this group:" msgstr[1] "You are a member of these groups:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6044,39 +6073,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "N'eo bet kavet restr kefluniadur ebet. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Mont d'ar meziant staliañ" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Hizivadennoù dre SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kevreadennoù" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Poeladoù kevreet." @@ -6099,11 +6150,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Enrollet eo bet an arventennoù design." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Tennañ eus ar pennrolloù" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ouzhpennañ d'ar pennrolloù" @@ -6123,7 +6174,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6565,7 +6616,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "eus" @@ -6715,55 +6766,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "R" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "K" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "e" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en amdro" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Adkemeret gant" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Respont d'an ali-mañ" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respont" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Ali adkemeret" @@ -6835,7 +6886,7 @@ msgid "Tags in %s's notices" msgstr "N'eus ali nevez evit an implijer-mañ" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Dianav" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index f61b70ab60..ddaf88036f 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:58+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -115,7 +115,7 @@ msgstr "No existeix la pàgina." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existeix l'usuari." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Aquest estat ja és un preferit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "No es pot crear el preferit." @@ -476,18 +476,18 @@ msgid "Group not found." msgstr "No s'ha trobat el grup." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ja sou membre del grup." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "L'administrador us ha blocat del grup." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." @@ -499,7 +499,7 @@ msgstr "No sou un membre del grup." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No s'ha pogut eliminar l'usuari %1$s del grup %2$s." @@ -618,7 +618,7 @@ msgstr "" "hauríeu de donar accés al compte %4$s a terceres parts en què confieu." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Compte" @@ -632,7 +632,7 @@ msgstr "Sobrenom" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasenya" @@ -662,12 +662,12 @@ msgid "No such notice." msgstr "No existeix aquest avís." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No podeu repetir els vostres propis avisos." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Avís duplicat." @@ -777,7 +777,7 @@ msgstr "La mida no és vàlida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -809,7 +809,7 @@ msgid "Preview" msgstr "Vista prèvia" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Elimina" @@ -897,7 +897,7 @@ msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloca aquest usuari" @@ -916,8 +916,8 @@ msgstr "No s'ha pogut desar la informació del bloc." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No s'ha trobat el grup." @@ -1033,7 +1033,7 @@ msgstr "No sou el propietari d'aquesta aplicació." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -1098,7 +1098,7 @@ msgid "Do not delete this notice" msgstr "No eliminis aquest avís" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina aquest avís" @@ -1129,7 +1129,7 @@ msgstr "Elimina l'usuari" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Disseny" @@ -1256,7 +1256,7 @@ msgstr "Torna a restaurar al valor per defecte" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Desa" @@ -1376,7 +1376,7 @@ msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No s'han pogut crear els àlies." @@ -1432,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" @@ -1625,7 +1625,7 @@ msgstr "Nou correu electrònic entrant afegit." msgid "This notice is already a favorite!" msgstr "Aquest avís ja és un preferit." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fes que deixi de ser preferit" @@ -1928,7 +1928,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s línia temporal" @@ -2214,7 +2214,7 @@ msgstr "Ja estàs subscrit a aquests usuaris:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2347,7 +2347,7 @@ msgid "You must be logged in to leave a group." msgstr "Heu d'haver iniciat una sessió per deixar un grup." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." @@ -2572,14 +2572,14 @@ msgid "New message" msgstr "Nou missatge" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "No podeu enviar un misssatge a aquest usuari." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Cap contingut!" @@ -2588,7 +2588,7 @@ msgid "No recipient specified." msgstr "No has especificat el destinatari." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." @@ -2599,12 +2599,12 @@ msgstr "S'ha enviat el missatge" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "S'ha enviat un missatge directe a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Error" @@ -2744,8 +2744,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Si us plau, només URL %s sobre HTTP pla." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -3102,7 +3102,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pàgina personal" @@ -3501,7 +3501,7 @@ msgstr "Igual a la contrasenya de dalt. Requerit." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correu electrònic" @@ -3663,7 +3663,7 @@ msgstr "No podeu repetir el vostre propi avís." msgid "You already repeated that notice." msgstr "Ja havíeu repetit l'avís." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetit" @@ -3798,13 +3798,13 @@ msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organització" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" @@ -4594,7 +4594,7 @@ msgstr "%s no escolta a ningú." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4722,7 +4722,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4917,7 +4917,7 @@ msgstr "Proveu de [cercar grups](%%action.groupsearch%%) i unir-vos-hi." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -4978,7 +4978,7 @@ msgid "Plugins" msgstr "Connectors" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versió" @@ -4986,29 +4986,25 @@ msgstr "Versió" msgid "Author(s)" msgstr "Autoria" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Preferit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "No es pot processar l'URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "El Robin pensa que quelcom és impossible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5019,7 +5015,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5027,14 +5023,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Un fitxer d'aquesta mida excediria la vostra quota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "El nom del fitxer no és vàlid." @@ -5053,13 +5049,28 @@ msgstr "No s'és part del grup." msgid "Group leave failed." msgstr "La sortida del grup ha fallat." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "S'ha produït un error en desar l'usuari; no és vàlid." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Inici de sessió" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5082,17 +5093,17 @@ msgid "No database name or DSN found anywhere." msgstr "No s'ha trobat el nom de la base de dades o el DSN enlloc." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Se us ha bandejat enviar missatges directes." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "No s'ha pogut inserir el missatge." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." @@ -5149,32 +5160,32 @@ msgid "Problem saving notice." msgstr "S'ha produït un problema en desar l'avís." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "S'ha produït un problema en desar la safata d'entrada del grup." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "No es pot revocar el rol «%1$s» de l'usuari #%2$d; no existeix." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5226,13 +5237,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ó." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5243,57 +5250,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "No es pot definir l'URI del grup." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "No s'ha pogut desar la informació del grup local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Puja un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Canvieu la vostra contrasenya" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Canvieu la gestió del correu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Dissenyeu el vostre perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altres opcions" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altres" @@ -5309,184 +5316,185 @@ msgid "Untitled page" msgstr "Pàgina sense titol" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegació primària del lloc" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canvia l'adreça electrònica, l'avatar, la contrasenya o el perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecta als serveis" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connexió" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convida amics i coneguts perquè participin a %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convida" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registre" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Avís del lloc" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistes locals" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Avís de pàgina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Quant a" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntes més freqüents" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termes del servei" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privadesa" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Font" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacte" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insígnia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" @@ -5494,7 +5502,7 @@ msgstr "Llicència del programari StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5504,7 +5512,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** és un servei de microblogging." @@ -5513,7 +5521,7 @@ msgstr "**%%site.name%%** és un servei de microblogging." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5525,27 +5533,27 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Llicència de contingut del lloc" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contingut i les dades de %1$s són privades i confidencials." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "El contingut i les dades són copyright de %1$s. Tots els drets reservats." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "El contingut i les dades són copyright dels col·laboradors. Tots els drets " @@ -5553,7 +5561,7 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5561,41 +5569,41 @@ msgstr "" "llicència %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginació" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriors" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriors" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "S'esperava un element del canal arrel, però se n'ha obtingut tot un document " "XML sencer." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "No es pot gestionar el contingut remot encara." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "No es pot gestionar el contingut XML incrustat encara." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "No es pot gestionar el contingut Base64 incrustat encara." @@ -5722,7 +5730,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5737,187 +5745,207 @@ msgid "Icon for this application" msgstr "Icona de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descriviu la vostra aplicació en %d caràcters" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descriviu la vostra aplicació en %d caràcters" +msgstr[1] "Descriviu la vostra aplicació en %d caràcters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descriviu la vostra aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la pàgina d'inici de l'aplicació" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL d'origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organització responsable de l'aplicació" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "L'URL de la pàgina d'inici de l'organització" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL on redirigir-hi després de l'autenticació." #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escriptori" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipus d'aplicació, navegador o escriptori" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Només lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura i escriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancel·la" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "de lectura i d'escriptura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "només de lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovat: %1$s - accés «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Adjuncions" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autoria" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Proveïdor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avisos on apareix l'adjunt" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetes de l'adjunció" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "El canvi de contrasenya ha fallat" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "No es permet el canvi de contrasenya" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloca" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultats de les comandes" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Error" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comanda completada" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comanda fallida" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "No existeix cap avís amb aquest identificador." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "L'usuari no té un darrer avís." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "No es pot trobar un usuari amb el sobrenom %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "No s'ha pogut trobar un usuari local amb el sobrenom %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Perdona, aquesta comanda no està implementada." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "No té massa sentit avisar-se a un mateix!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "S'ha cridat l'atenció a %s." @@ -5926,7 +5954,7 @@ msgstr "S'ha cridat l'atenció a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5938,52 +5966,53 @@ msgstr "" "Avisos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "L'avís està marcat com a preferit." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s s'ha unit al grup %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s ha deixat el grup %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nom complet: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localització: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Informació personal: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5994,112 +6023,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "S'ha produït un error en enviar el missatge directe." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "L'avís és massa llarg - el màxim és %1$d caràcters, n'heu enviat %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "S'ha enviat la resposta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "S'ha produït un error en desar l'avís." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especifiqueu el nom de l'usuari al qual voleu subscriure-us." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "No es pot subscriure a perfils de OMB amb ordres." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscrit a %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifiqueu el nom de l'usuari del qui voleu deixar la subscripció." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "S'ha deixat d'estar subscrit a %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Avisos desactivats." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No es poden desactivar els avisos." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Avisos activitats." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "No es poden activar els avisos." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "L'ordre d'inici de sessió no està habilitada." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6108,20 +6137,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "S'ha cancel·lat la subscripció de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "No esteu subscrit a ningú." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ja estàs subscrit a aquests usuaris:" @@ -6129,14 +6158,14 @@ msgstr[1] "Ja estàs subscrit a aquests usuaris:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ningú no us ha subscrit." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No pots subscriure a un altre a tu mateix." @@ -6144,21 +6173,21 @@ msgstr[1] "No pots subscriure a un altre a tu mateix." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "No sou membre de cap grup." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sou un membre d'aquest grup:" msgstr[1] "Sou un membre d'aquests grups:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6238,39 +6267,61 @@ msgstr "" "tracks - no s'ha implementat encara.\n" "tracking - no s'ha implementat encara.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No s'ha trobat cap fitxer de configuració. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "S'han cercat fitxers de configuracions en els llocs següents: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Podeu voler executar l'instal·lador per corregir-ho." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Vés a l'instal·lador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per missatgeria instantània (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualitzacions per SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicacions de connexió autoritzades" @@ -6293,11 +6344,11 @@ msgstr "" msgid "Design defaults restored." msgstr "S'han restaurat els paràmetres de disseny per defecte." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Deixa de tenir com a preferit aquest avís" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Fes preferit aquest avís" @@ -6317,7 +6368,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6851,7 +6902,7 @@ msgstr "" "usuaris en la conversa. La gent pot enviar-vos missatges només per als " "vostres ulls." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7004,55 +7055,55 @@ msgstr "" "l'esperat; torneu-ho a provar més tard" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "a" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetit per" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respon" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avís repetit" @@ -7123,7 +7174,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetes en els avisos de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconegut" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 0e345fbcb9..a779d40496 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:23:59+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Uložit" @@ -112,7 +112,7 @@ msgstr "Tady žádná taková stránka není." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Uživatel neexistuje." @@ -355,7 +355,7 @@ msgid "This status is already a favorite." msgstr "Tuto hlášku již máte v oblíbených." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nelze vytvořit oblíbenou položku." @@ -468,18 +468,18 @@ msgid "Group not found." msgstr "Skupina nebyla nalezena." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jste již členem této skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Z této skupiny jste byl zablokován adminem." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." @@ -491,7 +491,7 @@ msgstr "Nejste členem této skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nelze odebrat uživatele %1$S ze skupiny %2$s." @@ -607,7 +607,7 @@ msgstr "" "vašeho účtu na %4$s jen třetím stranám kterým věříte.." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Účet" @@ -621,7 +621,7 @@ msgstr "Přezdívka" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Heslo" @@ -651,12 +651,12 @@ msgid "No such notice." msgstr "Žádné takové oznámení." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nelze opakovat své vlastní oznámení." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Již jste zopakoval toto oznámení." @@ -766,7 +766,7 @@ msgstr "Neplatná velikost" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -797,7 +797,7 @@ msgid "Preview" msgstr "Náhled" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Odstranit" @@ -883,7 +883,7 @@ msgstr "Ano" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokovat tohoto uživatele" @@ -902,8 +902,8 @@ msgstr "Nepodařilo se uložit blokování." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Žádný takový uživatel." @@ -1019,7 +1019,7 @@ msgstr "Nejste vlastníkem této aplikace." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -1083,7 +1083,7 @@ msgid "Do not delete this notice" msgstr "Neodstraňujte toto oznámení" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -1114,7 +1114,7 @@ msgstr "Odstranit tohoto uživatele" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Vzhled" @@ -1241,7 +1241,7 @@ msgstr "Reset zpět do výchozího" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" @@ -1361,7 +1361,7 @@ msgid "Could not update group." msgstr "Nelze aktualizovat skupinu." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nelze vytvořit aliasy." @@ -1417,7 +1417,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Zrušit" @@ -1608,7 +1608,7 @@ msgstr "Přidána nová příchozí e-mailová adresa." msgid "This notice is already a favorite!" msgstr "Tuto hlášku již máte v oblíbených." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Znemilostnit oblíbenou" @@ -1911,7 +1911,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "časová osa %s" @@ -2192,7 +2192,7 @@ msgstr "Jste již přihlášeni k těmto uživatelům:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2324,7 +2324,7 @@ msgid "You must be logged in to leave a group." msgstr "Musíte být přihlášen abyste mohl opustit skupinu." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nejste členem této skupiny." @@ -2546,15 +2546,15 @@ msgid "New message" msgstr "Nová zpráva" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "" "Nemůžete odesílat zprávy tomuto uživateli. (musíte být vzájemně prihlášení)" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Chybí obsah!" @@ -2563,7 +2563,7 @@ msgid "No recipient specified." msgstr "Neuveden příjemce." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Neposílejte si zprávu, potichu si ji pro sebe řekněte." @@ -2574,12 +2574,12 @@ msgstr "Zpráva odeslána" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Přímá zpráva pro %s odeslána." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Chyba" @@ -2716,8 +2716,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Only %s URLs over plain HTTP please." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Nepodporovaný formát dat." @@ -3070,7 +3070,7 @@ msgstr "Celé jméno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Moje stránky" @@ -3460,7 +3460,7 @@ msgstr "Stejné jako heslo uvedeno výše. Povinné." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3618,7 +3618,7 @@ msgstr "Nemůžete opakovat své vlastní oznámení." msgid "You already repeated that notice." msgstr "Již jste zopakoval toto oznámení." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Opakované" @@ -3754,13 +3754,13 @@ msgid "Name" msgstr "Název" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizace" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Popis" @@ -4539,7 +4539,7 @@ msgstr "%s nikoho nesleduje." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4665,7 +4665,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4860,7 +4860,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oznámení od %1$s na %2$s!" @@ -4921,7 +4921,7 @@ msgid "Plugins" msgstr "Pluginy" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Verze" @@ -4929,29 +4929,25 @@ msgstr "Verze" msgid "Author(s)" msgstr "Autoři" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Oblíbit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Nemůžu zpracovat URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin si myslí, že je něco nemožné." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4962,20 +4958,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Takto velký soubor by překročil vaši uživatelskou kvótu %d bajtů." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Neplatné jméno souboru." @@ -4994,13 +4990,28 @@ msgstr "Není součástí skupiny." msgid "Group leave failed." msgstr "Nepodařilo se opustit skupinu." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Chyba při ukládaní uživatele; neplatný." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Připojit se" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5023,17 +5034,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nenalezeno jméno databáze ani DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Nemůžete posílat přímé zprávy (banned)" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Nemohu vložit zprávu." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Nelze aktualizovat zprávu novým URI." @@ -5089,32 +5100,32 @@ msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups obdrželo špatný typ." #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problém při ukládání skupinového inboxu" #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, neexistuje." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, chyba databáze." @@ -5164,13 +5175,9 @@ msgstr "Nelze smazat OMB token přihlášení." msgid "Could not delete subscription." msgstr "Nelze smazat odebírání" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5181,57 +5188,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Vítejte na %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nelze vytvořit skupinu." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Nelze nastavit URI skupiny." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nelze nastavit členství ve skupině." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Nelze uložit místní info skupiny." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Změňte nastavení profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Nahrát avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Změňte své heslo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Změnit manipulaci emailu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Změňte vzhled svého profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Další možnosti" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Jiné" @@ -5247,184 +5254,185 @@ msgid "Untitled page" msgstr "stránka bez názvu" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primární navigace na webu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Osobní profil a časová osa přátel" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Osobní" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změňte svůj e-mail, avatar, heslo, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Připojení ke službám" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Připojit" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Změna konfigurace webu" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" 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: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Pozvat" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Odhlášení z webu" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Zaregistrujte se" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrovat" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Přihlásit se na stránky" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Přihlásit" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Nápověda" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Nápověda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Vyhledávání osob nebo textu" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Sdělení" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Místní zobrazení" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sdělení stránky" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Sekundární navigace na webu" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Nápověda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "O nás" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS (pravidla použití služby)" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Soukromí" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Zdroj" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Odznak" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licence softwaru StatusNet" @@ -5432,7 +5440,7 @@ msgstr "Licence softwaru StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5442,7 +5450,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** je služba mikroblogů." @@ -5451,7 +5459,7 @@ msgstr "**%%site.name%%** je služba mikroblogů." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5463,70 +5471,70 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licence k obsahu stránek" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Obsah a data z %1$S jsou soukromé a důvěrné." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Obsah a data copyright %1$s. Všechna práva vyhrazena." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "Obsah a data copyright přispěvatelů. Všechna práva vyhrazena." #. 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Stránkování" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Před" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Očekávám kořenový element feedu, ale dostal jsem celý XML dokument." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ještě neumí zpracovat vzdálený obsah." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Neumí zacházet s vloženým XML obsahem." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Neumí zacházet s vloženým Base64 obsahem." @@ -5653,7 +5661,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5668,186 +5676,207 @@ msgid "Icon for this application" msgstr "Ikona pro tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Popište vaši aplikaci v %d znacích" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Popište vaši aplikaci v %d znacích" +msgstr[1] "Popište vaši aplikaci v %d znacích" +msgstr[2] "Popište vaši aplikaci v %d znacích" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Popište vaši aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL domovské stránky této aplikace" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Zdrojové URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizace odpovědná za tuto aplikaci" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL homepage organizace" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL pro přesměrování po autentikaci" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Prohlížeč" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ aplikace, prohlížeč nebo desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "pouze pro čtení" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "čtení a zápis" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Zrušit" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "číst-psát" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "pouze pro čtení" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Schváleno %1$s - přístup \"%2$s\"" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Obnovit" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Přílohy" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Poskytovatel" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notices where this attachment appears" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Označení této přílohy" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Změna hesla se nezdařila" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Změna hesla není povolena" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokovat" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Výsledky příkazu" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Chyba" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Příkaz dokončen" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Příkaz selhal" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Oznámení s tímto id neexistuje." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Uživatel nemá žádné poslední oznámení" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Nelze nalézt uživatele s přezdívkou %s" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Nelze nalézt místního uživatele s přezdívkou %s" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Je nám líto, ale tento příkaz dosud nebyl implementován." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "To nemá moc smyslu postrkovat sám sebe!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Šťouchnutí posláno %s." @@ -5856,7 +5885,7 @@ msgstr "Šťouchnutí posláno %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5868,52 +5897,53 @@ msgstr "" "Hlášky: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Oznámení označené jako oblíbené." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se připojil(a) ke skupině %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s opustil(a) skupinu %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Celé jméno %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Poloha: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Domovská stránka: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "O uživateli: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5924,131 +5954,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Chyba při odesílání přímé zprávy." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Chyba nastavení uživatele" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Oznámení je příliš dlouhé - maximum je %1$d znaků, poslal jsi %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Odpověď %s odeslána." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problém při ukládání sdělení." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Uveďte jméno uživatele ke kterému se přihlásit." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Nelze se přihlásit k odběru OMB profilů příkazem." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Přihlášeno k %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Uveďte jméno uživatele od kterého se odhlásit." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Odhlášeno od %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Příkaz ještě nebyl implementován." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Oznámení vypnuta." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Nelze vypnout oznámení." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Oznámení zapnuta." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Nelze zapnout oznámení." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Příkaz login je vypnut." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Tento odkaz je použitelný pouze jednou a je platný pouze 2 minuty: %s." #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s odhlášen." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Nejste přihlášen k nikomu." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Jste přihlášeni k této osobě:" @@ -6057,14 +6087,14 @@ msgstr[2] "Jste přihlášeni k těmto lidem:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nikdo k vám není přihlášen." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tato osoba je k vám přihlášena:" @@ -6073,14 +6103,14 @@ msgstr[2] "Tito lidé jsou k vám přihlášeni:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nejste členem žádné skupiny." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jste členem této skupiny:" @@ -6088,7 +6118,7 @@ msgstr[1] "Jste členem těchto skupin:" msgstr[2] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6168,39 +6198,61 @@ msgstr "" "tracks - Dosud neimplementován.\n" "tracking - Dosud neimplementován.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Žádný konfigurační soubor nalezen. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Díval jsem se po konfiguračních souborech na těchto místech: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Možná budete chtít spustit instalační program abyste to vyřešili." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Jdi na instalaci." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizace z a na instant messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizace z a na SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Připojení" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Autorizované propojené aplikace" @@ -6223,11 +6275,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Obnoveno výchozí nastavení vzhledu." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Odebrat toto oznámení z oblíbených" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Přidat toto oznámení do oblíbených" @@ -6247,7 +6299,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6783,7 +6835,7 @@ msgstr "" "zapojili ostatní uživatelé v rozhovoru. Lidé mohou posílat zprávy jen pro " "vaše oči." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "od" @@ -6933,55 +6985,55 @@ msgstr "" "prosím znovu později" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "S" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "J" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "V" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Z" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "v" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "v kontextu" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Opakováno" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Odpovědět na toto oznámení" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Odpovědět" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Sdělení opakováno" @@ -7052,7 +7104,7 @@ msgid "Tags in %s's notices" msgstr "Značky v oznámeních %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Neznámé" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d1edee32be..d6d63669b4 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -121,7 +121,7 @@ msgstr "Seite nicht vorhanden" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Unbekannter Benutzer." @@ -308,7 +308,7 @@ msgstr "Konnte Benutzerdesign nicht aktualisieren." #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" -msgstr "Du kannst dich nicht selbst sperren!" +msgstr "Du kannst dich nicht selbst blockieren!" #: actions/apiblockcreate.php:127 msgid "Block user failed." @@ -368,7 +368,7 @@ msgid "This status is already a favorite." msgstr "Diese Nachricht ist bereits ein Favorit!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." @@ -415,20 +415,20 @@ msgstr "Konnte keine Statusmeldungen finden." #: actions/register.php:212 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" -"Der Nutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. Leerzeichen " -"sind nicht erlaubt." +"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. " +"Leerzeichen sind nicht erlaubt." #: actions/apigroupcreate.php:177 actions/editgroup.php:190 #: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/register.php:215 msgid "Nickname already in use. Try another one." -msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/apigroupcreate.php:184 actions/editgroup.php:193 #: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/register.php:217 msgid "Not a valid nickname." -msgstr "Ungültiger Nutzername." +msgstr "Ungültiger Benutzername." #: actions/apigroupcreate.php:200 actions/editapplication.php:215 #: actions/editgroup.php:199 actions/newapplication.php:203 @@ -485,18 +485,18 @@ msgid "Group not found." msgstr "Gruppe nicht gefunden!" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." -msgstr "Der Admin dieser Gruppe hat dich gesperrt." +msgstr "Der Admin dieser Gruppe hat dich blockiert." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." @@ -508,7 +508,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Konnte Benutzer %1$s nicht aus der Gruppe %2$s entfernen." @@ -577,7 +577,7 @@ msgstr "Datenbankfehler beim Löschen des OAuth Anwendungs Nutzers." #: actions/apioauthauthorize.php:185 msgid "Database error inserting OAuth application user." -msgstr "Datenbankfehler beim Einfügen des OAuth Programm Benutzers." +msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." #: actions/apioauthauthorize.php:214 #, php-format @@ -625,7 +625,7 @@ msgstr "" "vertrauenswürdigen Quellen Erlaubnis zu deinem %4$s Zugang geben." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Profil" @@ -635,11 +635,11 @@ msgstr "Profil" #: actions/userauthorization.php:145 lib/groupeditform.php:152 #: lib/userprofile.php:132 msgid "Nickname" -msgstr "Nutzername" +msgstr "Benutzername" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passwort" @@ -669,12 +669,12 @@ msgid "No such notice." msgstr "Unbekannte Nachricht." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Nachricht bereits wiederholt" @@ -777,7 +777,7 @@ msgstr "Kein solcher Anhang." #: actions/grouplogo.php:86 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:121 msgid "No nickname." -msgstr "Kein Nutzername." +msgstr "Kein Benutzername." #: actions/avatarbynickname.php:64 msgid "No size." @@ -789,7 +789,7 @@ msgstr "Ungültige Größe." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -821,7 +821,7 @@ msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Löschen" @@ -908,7 +908,7 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Diesen Benutzer blockieren" @@ -927,8 +927,8 @@ msgstr "Konnte Blockierungsdaten nicht speichern." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Keine derartige Gruppe." @@ -948,7 +948,7 @@ msgstr "Liste der blockierten Benutzer in dieser Gruppe." #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" -msgstr "Sperrung des Nutzers für die Gruppe aufheben." +msgstr "Blockierung des Benutzers für die Gruppe aufheben." #. TRANS: Title for the form to unblock a user. #: actions/blockedfromgroup.php:320 lib/unblockform.php:70 @@ -1044,7 +1044,7 @@ msgstr "Du bist Besitzer dieses Programms" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1108,7 +1108,7 @@ msgid "Do not delete this notice" msgstr "Diese Nachricht nicht löschen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Nachricht löschen" @@ -1139,7 +1139,7 @@ msgstr "Diesen Benutzer löschen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1267,7 +1267,7 @@ msgstr "Standard wiederherstellen" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" @@ -1388,7 +1388,7 @@ msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." @@ -1444,7 +1444,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" @@ -1623,7 +1623,7 @@ msgstr "Keine Eingangs-E-Mail-Adresse." #: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 msgid "Couldn't update user record." -msgstr "Konnte Nutzereintrag nicht schreiben" +msgstr "Konnte Benutzereintrag nicht schreiben" #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 @@ -1639,7 +1639,7 @@ msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." msgid "This notice is already a favorite!" msgstr "Diese Nachricht ist bereits ein Favorit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" @@ -1797,11 +1797,11 @@ msgstr "Keine Gruppe angegeben" #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "Nur ein Admin kann Mitglieder der Gruppe sperren." +msgstr "Nur ein Admin kann Mitglieder der Gruppe blockieren." #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "Dieser Benutzer ist bereits von der Gruppe gesperrt" +msgstr "Dieser Benutzer ist bereits von der Gruppe blockiert" #: actions/groupblock.php:100 msgid "User is not a member of group." @@ -1830,7 +1830,7 @@ msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" -msgstr "Diesen Benutzer von der Gruppe sperren" +msgstr "Diesen Benutzer von der Gruppe blockieren" #: actions/groupblock.php:206 msgid "Database error blocking user from group." @@ -1922,7 +1922,7 @@ msgstr "Blockieren" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Diesen Benutzer blockieren" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1944,7 +1944,7 @@ msgstr "Diesen Benutzer zum Admin ernennen" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" @@ -2023,11 +2023,11 @@ msgstr "" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "Nur Admins können Gruppenmitglieder entsperren." +msgstr "Nur Admins können Blockierungen von Gruppenmitglieder aufheben." #: actions/groupunblock.php:95 msgid "User is not blocked from group." -msgstr "Dieser Benutzer ist nicht von der Gruppe gesperrt." +msgstr "Dieser Benutzer ist nicht von der Gruppe blockiert." #: actions/groupunblock.php:128 actions/unblock.php:86 msgid "Error removing the block." @@ -2230,7 +2230,7 @@ msgstr "Du hast diese Benutzer bereits abonniert:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2239,7 +2239,7 @@ msgstr "%1$s (%2$s)" msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -"Diese Leute sind bereits registrierte Benutzer und du hast Sie automatisch " +"Diese Leute sind bereits registrierte Benutzer und du hast sie automatisch " "abonniert." #: actions/invite.php:144 @@ -2367,7 +2367,7 @@ msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." @@ -2525,14 +2525,14 @@ msgstr "" #: actions/login.php:292 msgid "Login with your username and password." -msgstr "Mit Nutzernamen und Passwort anmelden." +msgstr "Mit Benutzernamen und Passwort anmelden." #: actions/login.php:295 #, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." msgstr "" -"Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein " +"Du hast noch keinen Benutzernamen? [Registriere](%%action.register%%) ein " "neues Konto." #: actions/makeadmin.php:92 @@ -2591,14 +2591,14 @@ msgid "New message" msgstr "Neue Nachricht" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Kein Inhalt!" @@ -2607,7 +2607,7 @@ msgid "No recipient specified." msgstr "Kein Empfänger angegeben." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2619,12 +2619,12 @@ msgstr "Nachricht gesendet" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direkte Nachricht an %s abgeschickt" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-Fehler" @@ -2766,14 +2766,14 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bitte nur %s URLs über einfaches HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." #: actions/opensearch.php:64 msgid "People Search" -msgstr "Suche nach Nutzern" +msgstr "Suche nach Benutzern" #: actions/opensearch.php:67 msgid "Notice Search" @@ -2813,7 +2813,7 @@ msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (max. 50 Zeichen)." #: actions/otp.php:69 msgid "No user ID specified." -msgstr "Keine Benutzer ID angegeben" +msgstr "Keine Benutzer-ID angegeben" #: actions/otp.php:83 msgid "No login token specified." @@ -2897,7 +2897,7 @@ msgstr "Altes Passwort falsch" #: actions/passwordsettings.php:181 msgid "Error saving user; invalid." -msgstr "Fehler beim Speichern des Nutzers, ungültig." +msgstr "Fehler beim Speichern des Benutzers, ungültig." #: actions/passwordsettings.php:186 actions/recoverpassword.php:381 msgid "Can't save new password." @@ -3072,7 +3072,7 @@ msgstr "" #: actions/peoplesearch.php:58 msgid "People search" -msgstr "Suche nach anderen Nutzern" +msgstr "Suche nach anderen Benutzern" #: actions/peopletag.php:68 #, php-format @@ -3122,7 +3122,7 @@ msgstr "Vollständiger Name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3462,7 +3462,7 @@ msgstr "Passwort und seine Bestätigung stimmen nicht überein." #: actions/recoverpassword.php:388 actions/register.php:255 msgid "Error setting user." -msgstr "Fehler bei den Nutzereinstellungen." +msgstr "Fehler bei den Benutzereinstellungen." #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." @@ -3524,7 +3524,7 @@ msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-Mail" @@ -3637,7 +3637,7 @@ msgstr "Benutzername" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Nutzername des Nutzers, dem du folgen möchtest" +msgstr "Name des Benutzers, dem du folgen möchtest" #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -3685,7 +3685,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen." msgid "You already repeated that notice." msgstr "Nachricht bereits wiederholt" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Wiederholt" @@ -3753,7 +3753,7 @@ msgstr "Antworten an %1$s auf %2$s!" #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." -msgstr "Du kannst die Rollen von Nutzern dieser Seite nicht widerrufen." +msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen." #: actions/revokerole.php:82 msgid "User doesn't have this role." @@ -3821,13 +3821,13 @@ msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beschreibung" @@ -4616,7 +4616,7 @@ msgstr "%s hat niemanden abonniert." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4743,7 +4743,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ungültiges Abonnement: „%1$s“ ist kein Benutzer" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4786,7 +4786,7 @@ msgstr "Einladungen aktivieren" #: actions/useradminpanel.php:259 msgid "Whether to allow users to invite new users." -msgstr "Ist es Nutzern erlaubt neue Nutzer einzuladen." +msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen." #: actions/useradminpanel.php:295 msgid "Save user settings" @@ -4803,7 +4803,7 @@ msgid "" "click “Reject”." msgstr "" "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " -"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"dieses Benutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "„Abbrechen“." #. TRANS: Menu item for site administration @@ -4939,7 +4939,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" @@ -5000,7 +5000,7 @@ msgid "Plugins" msgstr "Erweiterungen" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -5008,29 +5008,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(en)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Zu Favoriten hinzufügen" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s markierte Nachricht %s als Favorit." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Die URL „%s“ konnte nicht verarbeitet werden" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin denkt, dass etwas unmöglich ist." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5041,14 +5037,14 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Eine Datei dieser Größe überschreitet deine User Quota von %d Byte." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -5056,7 +5052,7 @@ msgstr "" "überschreiten." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ungültiger Dateiname." @@ -5075,13 +5071,28 @@ msgstr "Nicht Mitglied der Gruppe" msgid "Group leave failed." msgstr "Konnte Gruppe nicht verlassen" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fehler beim Speichern des Benutzers, ungültig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Beitreten" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." @@ -5104,17 +5115,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nirgendwo einen Datenbanknamen oder DSN gefunden." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Direktes Senden von Nachrichten wurde blockiert" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Konnte Nachricht nicht einfügen." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." @@ -5171,26 +5182,26 @@ msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" "Der Methode saveKnownGroups wurde ein schlechter Wert zur Verfügung gestellt" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5199,7 +5210,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5252,15 +5263,11 @@ msgstr "Konnte OMB-Abonnement-Token nicht löschen." msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Folgen" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5269,57 +5276,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Konnte die Gruppen-URI nicht setzen." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Konnte die lokale Gruppen Information nicht speichern." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar hochladen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ändere dein Passwort" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Passe dein Profil an" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Sonstige Optionen" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Sonstige" @@ -5335,184 +5342,185 @@ msgid "Untitled page" msgstr "Seite ohne Titel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Zum Dienst verbinden" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Seiteneinstellung ändern" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Benutzerkonto erstellen" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Seitennachricht" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale Ansichten" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Neue Nachricht" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Unternavigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hilfe" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Über" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "AGB" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privatsphäre" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Quellcode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Plakette" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" @@ -5520,7 +5528,7 @@ msgstr "StatusNet-Software-Lizenz" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5530,7 +5538,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ist ein Mikrobloggingdienst." @@ -5539,7 +5547,7 @@ msgstr "**%%site.name%%** ist ein Mikrobloggingdienst." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5551,20 +5559,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhalte und Daten von %1$s sind privat und vertraulich." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5572,7 +5580,7 @@ msgstr "" "vorbehalten." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte " @@ -5580,45 +5588,45 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Seitenerstellung" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Später" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Vorher" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Root-Element eines Feeds erwartet, aber ganzes XML-Dokument erhalten." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Fremdinhalt kann noch nicht eingebunden werden." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Kann eingebundenen XML-Inhalt nicht verarbeiten." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Eingebundener Base64-Inhalt kann noch nicht verarbeitet werden." @@ -5743,7 +5751,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5758,188 +5766,208 @@ msgid "Icon for this application" msgstr "Programmsymbol" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beschreibe dein Programm in %d Zeichen" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beschreibe dein Programm in %d Zeichen" +msgstr[1] "Beschreibe dein Programm in %d Zeichen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beschreibe dein Programm" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Adresse der Homepage dieses Programms" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Quelladresse" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Für diese Anwendung verantwortliche Organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "Homepage der Gruppe oder des Themas" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "aufzurufende Adresse nach der Authentifizierung" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Arbeitsfläche" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ der Anwendung, Browser oder Arbeitsfläche" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Schreibgeschützt" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardeinstellung dieses Programms: Schreibgeschützt oder Lese/" "Schreibzugriff" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Abbrechen" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "Lese/Schreibzugriff" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "Schreibgeschützt" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Genehmigte %1$s - „%2$s“ Zugriff." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Widerrufen" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anhänge" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Anbieter" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Nachrichten in denen dieser Anhang erscheint" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Stichworte für diesen Anhang" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Passwort konnte nicht geändert werden" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Passwort kann nicht geändert werden" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blockieren" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Befehl-Ergebnisse" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-Fehler" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Befehl ausgeführt" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Befehl fehlgeschlagen" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Nachricht mit dieser ID existiert nicht" #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Benutzer hat keine letzte Nachricht" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Konnte keinen Benutzer mit dem Namen %s finden" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Konnte keinen lokalen Benutzer mit dem Nick %s finden" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Es macht keinen Sinn dich selbst anzustupsen!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Stups an %s abgeschickt" @@ -5948,7 +5976,7 @@ msgstr "Stups an %s abgeschickt" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5960,52 +5988,53 @@ msgstr "" "Mitteilungen: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s ist der Gruppe %2$s beigetreten." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s hat die Gruppe %2$s verlassen." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Vollständiger Name: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Standort: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Über: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6016,32 +6045,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Fehler beim Senden der Nachricht" #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nachricht von %s wiederholt." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Fehler beim Wiederholen der Nachricht" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6049,100 +6078,100 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Antwort an %s gesendet" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problem beim Speichern der Nachricht." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-Profile können nicht mit einem Kommando abonniert werden." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s abboniert" #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Abgemeldet von %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Benachrichtigung aktiviert." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Die Anmeldung ist deaktiviert" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Der Link ist nur einmal und für eine Dauer von 2 Minuten gültig: %s" #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s nicht mehr abonniert" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Du hast niemanden abonniert." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du hast diesen Benutzer bereits abonniert:" @@ -6150,14 +6179,14 @@ msgstr[1] "Du hast diese Benutzer bereits abonniert:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Niemand hat dich abonniert." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Die Gegenseite konnte dich nicht abonnieren." @@ -6165,21 +6194,21 @@ msgstr[1] "Die Gegenseite konnte dich nicht abonnieren." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du bist in keiner Gruppe Mitglied." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du bist Mitglied dieser Gruppe:" msgstr[1] "Du bist Mitglied dieser Gruppen:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6259,39 +6288,61 @@ msgstr "" "tracks - noch nicht implementiert\n" "tracking - noch nicht implementiert\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Keine Konfigurationsdatei gefunden." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Bitte die Installation erneut starten um das Problem zu beheben." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Zur Installation gehen." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualisierungen via Instant Messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindungen" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Programme mit Zugriffserlaubnis" @@ -6314,11 +6365,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Standard-Design wieder hergestellt." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Aus Favoriten entfernen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Zu den Favoriten hinzufügen" @@ -6338,7 +6389,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6428,7 +6479,7 @@ msgstr "%s-Gruppen-Mitglieder" #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Blockiert" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6436,7 +6487,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Blockierte Benutzer der Gruppe „%s“" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6540,11 +6591,11 @@ msgstr "Verlassen" #: lib/logingroupnav.php:80 msgid "Login with a username and password" -msgstr "Mit Nutzernamen und Passwort anmelden" +msgstr "Mit Benutzernamen und Passwort anmelden" #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "Registriere ein neues Nutzerkonto" +msgstr "Registriere ein neues Benutzerkonto" #. TRANS: Subject for address confirmation email #: lib/mail.php:174 @@ -6872,7 +6923,7 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "Nachrichten schicken, die nur du sehen kannst." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "von" @@ -7027,55 +7078,55 @@ msgstr "" "Bitte versuche es später wieder." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "in" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "Web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "im Zusammenhang" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Wiederholt von" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nachricht wiederholt" @@ -7146,7 +7197,7 @@ msgid "Tags in %s's notices" msgstr "Stichworte in %ss Nachrichten" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Unbekannter Befehl" @@ -7417,7 +7468,7 @@ msgstr "Benutzeraktionen" #: lib/userprofile.php:237 msgid "User deletion in progress..." -msgstr "Löschung des Nutzers in Arbeit …" +msgstr "Löschung des Benutzers in Arbeit …" #: lib/userprofile.php:263 msgid "Edit profile settings" @@ -7531,11 +7582,16 @@ msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Keine Benutzer ID angegeben" +msgstr "Keine Benutzer-ID angegeben" #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." msgstr "" + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s markierte Nachricht %s als Favorit." + +#~ msgid "%s is now following %s." +#~ msgstr "%s folgt nun %s." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d394864fb3..8cddfc2b7d 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:41+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:01+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Save access settings" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Save" @@ -113,7 +113,7 @@ msgstr "No such page." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No such user." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "This status is already a favourite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Could not create favourite." @@ -471,18 +471,18 @@ msgid "Group not found." msgstr "Group not found." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "You are already a member of that group." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "You have been blocked from that group by the admin." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Could not join user %1$s to group %2$s." @@ -494,7 +494,7 @@ msgstr "You are not a member of this group." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Could not remove user %1$s to group %2$s." @@ -612,7 +612,7 @@ msgstr "" "give access to your %4$s account to third parties you trust." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Account" @@ -626,7 +626,7 @@ msgstr "Nickname" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "No such notice." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Cannot repeat your own notice." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Already repeated that notice." @@ -771,7 +771,7 @@ msgstr "Invalid size." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Delete" @@ -888,7 +888,7 @@ msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Block this user" @@ -907,8 +907,8 @@ msgstr "Failed to save block information." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No such group." @@ -1024,7 +1024,7 @@ msgstr "You are not the owner of this application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1089,7 +1089,7 @@ msgid "Do not delete this notice" msgstr "Do not delete this notice" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Delete this notice" @@ -1120,7 +1120,7 @@ msgstr "Delete this user" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1249,7 +1249,7 @@ msgstr "Reset back to default" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Save" @@ -1369,7 +1369,7 @@ msgid "Could not update group." msgstr "Could not update group." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Could not create aliases" @@ -1425,7 +1425,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel" @@ -1615,7 +1615,7 @@ msgstr "New incoming e-mail address added." msgid "This notice is already a favorite!" msgstr "This notice is already a favourite!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Disfavor favourite" @@ -1917,7 +1917,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s timeline" @@ -2198,7 +2198,7 @@ msgstr "You are already subscribed to these users:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2331,7 +2331,7 @@ msgid "You must be logged in to leave a group." msgstr "You must be logged in to leave a group." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "You are not a member of that group." @@ -2551,14 +2551,14 @@ msgid "New message" msgstr "New message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "You can't send a message to this user." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "No content!" @@ -2567,7 +2567,7 @@ msgid "No recipient specified." msgstr "No recipient specified." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2579,12 +2579,12 @@ msgstr "Message sent" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Could not create application." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax Error" @@ -2721,8 +2721,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -3081,7 +3081,7 @@ msgstr "Full name" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Homepage" @@ -3472,7 +3472,7 @@ msgstr "Same as password above. Required." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3628,7 +3628,7 @@ msgstr "You can't repeat your own notice." msgid "You already repeated that notice." msgstr "You already repeated that notice." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repeated" @@ -3763,13 +3763,13 @@ msgid "Name" msgstr "Name" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organization" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4544,7 +4544,7 @@ msgstr "%s is not listening to anyone." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4667,7 +4667,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profile" @@ -4864,7 +4864,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -4924,7 +4924,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4932,29 +4932,25 @@ msgstr "Version" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Favour" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4963,20 +4959,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Invalid size." @@ -4996,13 +4992,28 @@ msgstr "Not part of group." msgid "Group leave failed." msgstr "Group leave failed." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error saving user; invalid." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Join" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5025,17 +5036,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "You are banned from sending direct messages." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Could not insert message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Could not update message with new URI." @@ -5090,32 +5101,32 @@ msgid "Problem saving notice." msgstr "Problem saving notice." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5169,13 +5180,9 @@ msgstr "Could not delete subscription OMB token." msgid "Could not delete subscription." msgstr "Could not delete subscription." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5186,57 +5193,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Could not create group." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Could not set group URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Could not set group membership." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Could not save local group info." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Change your profile settings" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Upload an avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Change your password" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Change e-mail handling" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Design your profile" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Other options" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Other" @@ -5252,184 +5259,185 @@ msgid "Untitled page" msgstr "Untitled page" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primary site navigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your email, avatar, password, profile" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connect to services" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connect" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Change site configuration" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invite" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logout" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Register" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Login" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Site notice" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Local views" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Page notice" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Secondary site navigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "About" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "F.A.Q." #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Source" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badge" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet software licence" @@ -5437,7 +5445,7 @@ msgstr "StatusNet software licence" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5447,7 +5455,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service." @@ -5456,7 +5464,7 @@ msgstr "**%%site.name%%** is a microblogging service." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5468,70 +5476,70 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Site content license" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "All %1$s content and data are available under the %2$s licence." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "After" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Before" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5656,7 +5664,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5673,191 +5681,211 @@ msgid "Icon for this application" msgstr "Do not delete this application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe your application in %d characters" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe your application in %d characters" +msgstr[1] "Describe your application in %d characters" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe your application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL of the homepage of this application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Source URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsible for this application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL for the homepage of the organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancel" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "No attachments." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 #, fuzzy msgid "Author" msgstr "Authorise URL" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "No such attachment." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Password changing failed" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Password changing is not allowed" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Block" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Command results" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax Error" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Command complete" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Command failed" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "No profile with that id." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "User has no last notice" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Could not find a user with nickname %s" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Sorry, this command is not yet implemented." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Nudge sent to %s" @@ -5866,7 +5894,7 @@ msgstr "Nudge sent to %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5875,52 +5903,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notice marked as fave." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullname: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Location: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "About: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5929,133 +5958,133 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error sending direct message." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Notice posted" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Error repeating notice." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Notice too long - maximum is %d characters, you sent %d" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Reply to %s sent" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Error saving notice." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Specify the name of the user to subscribe to" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Can't subscribe to OMB profiles by command." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Specify the name of the user to unsubscribe from" #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Command not yet implemented." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notification off." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Can't turn off notification." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notification on." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Can't turn on notification." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "You are not subscribed to anyone." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "You are already subscribed to these users:" @@ -6063,14 +6092,14 @@ msgstr[1] "You are already subscribed to these users:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "No one is subscribed to you." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Could not subscribe other to you." @@ -6078,21 +6107,21 @@ msgstr[1] "Could not subscribe other to you." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "You are not a member of any groups." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "You are not a member of that group." msgstr[1] "You are not a member of that group." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6172,39 +6201,61 @@ msgstr "" "tracks - not yet implemented.\n" "tracking - not yet implemented.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "No configuration file found" -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Go to the installer." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "I.M." -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (I.M.)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Updates by SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connections" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Authorised connected applications" @@ -6227,11 +6278,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Design preferences saved." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Disfavour this notice" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favour this notice" @@ -6251,7 +6302,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6700,7 +6751,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "from" @@ -6845,55 +6896,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repeated by" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notice repeated" @@ -6964,7 +7015,7 @@ msgid "Tags in %s's notices" msgstr "Tags in %s's notices" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Unknown" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 0f92eec540..453327949a 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:42+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:03+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Konservu atingan agordon" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Konservu" @@ -115,7 +115,7 @@ msgstr "Ne estas tiu paĝo." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ne ekzistas tiu uzanto." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Ĉi tiu stato jam estas ŝatata." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Malsukcesis krei ŝataton." @@ -472,18 +472,18 @@ msgid "Group not found." msgstr "Grupo ne troviĝas." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vi estas jam grupano." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "La administranto blokis vin de tiu grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." @@ -495,7 +495,7 @@ msgstr "Vi ne estas grupano." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Malsukcesis forigi uzanton %1$s de grupo %2$s." @@ -612,7 +612,7 @@ msgstr "" "via %4$s konto al triaj partioj, kiujn vi fidas." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -626,7 +626,7 @@ msgstr "Kromnomo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Pasvorto" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "Ne estas tiu avizo." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vi ne povas ripeti vian propran avizon." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "La avizo jam ripetiĝis." @@ -771,7 +771,7 @@ msgstr "Grando nevalida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Vizaĝbildo" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "Antaŭrigardo" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Forigi" @@ -887,7 +887,7 @@ msgstr "Jes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloki la uzanton" @@ -906,8 +906,8 @@ msgstr "Eraris konservi blokado-informon." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ne estas tiu grupo." @@ -1023,7 +1023,7 @@ msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -1086,7 +1086,7 @@ msgid "Do not delete this notice" msgstr "Ne forigi la avizon" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Forigi la avizon" @@ -1117,7 +1117,7 @@ msgstr "Forigi la uzanton" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aspekto" @@ -1243,7 +1243,7 @@ msgstr "Redefaŭltiĝi" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Konservi" @@ -1363,7 +1363,7 @@ msgid "Could not update group." msgstr "Malsukcesis ĝisdatigi grupon." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Malsukcesis krei alinomon." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Nuligi" @@ -1609,7 +1609,7 @@ msgstr "Nova alvena retpoŝtadreso aldonita." msgid "This notice is already a favorite!" msgstr "Ĉi tiu avizo jam estas ŝatata." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Malŝati ŝataton." @@ -1907,7 +1907,7 @@ msgstr "Estrigi la uzanton" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Tempstrio de %s" @@ -2188,7 +2188,7 @@ msgstr "Vi jam abonas jenajn uzantojn:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2318,7 +2318,7 @@ msgid "You must be logged in to leave a group." msgstr "Ensalutu por eksaniĝi." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Vi ne estas grupano." @@ -2537,14 +2537,14 @@ msgid "New message" msgstr "Nova mesaĝo" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Vi ne povas sendi mesaĝon al la uzanto." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Neniu enhavo!" @@ -2553,7 +2553,7 @@ msgid "No recipient specified." msgstr "Neniu ricevonto speifiĝas." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Ne sendu mesaĝon al vi mem! Simple suspiru anstataŭ." @@ -2564,12 +2564,12 @@ msgstr "Mesaĝo sendita" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Rekta mesaĝo al %s sendiĝis." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Eraro de Ajax" @@ -2706,8 +2706,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bonvolu, nur %s-URL per plata HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Datumformato ne subteniĝas." @@ -3059,7 +3059,7 @@ msgstr "Plena nomo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hejmpaĝo" @@ -3449,7 +3449,7 @@ msgstr "Same kiel supra pasvorto. Bezonate." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Retpoŝto" @@ -3605,7 +3605,7 @@ msgstr "Vi ne povas ripeti vian propran avizon." msgid "You already repeated that notice." msgstr "La avizo jam ripetiĝis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Ripetita" @@ -3741,13 +3741,13 @@ msgid "Name" msgstr "Nomo" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizaĵo" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Priskribo" @@ -4518,7 +4518,7 @@ msgstr "%s ne abonas iun ajn." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4640,7 +4640,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4830,7 +4830,7 @@ msgstr "Provu [serĉi grupojn](%%*action.*groupsearch%%) kaj aniĝi." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Ĝisdatiĝoj de %1$s ĉe %2$s!" @@ -4890,7 +4890,7 @@ msgid "Plugins" msgstr "Kromprogramo" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versio" @@ -4898,29 +4898,25 @@ msgstr "Versio" msgid "Author(s)" msgstr "Aŭtoro(j)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Ŝati" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Malsukcesis trakti URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensas ke io neeblas." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4931,20 +4927,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Dosiero tiel granda superos vian uzantan kvoton kun %d bajtoj." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nevalida dosiernomo." @@ -4963,13 +4959,28 @@ msgstr "Ne grupano." msgid "Group leave failed." msgstr "Malsukcesis foriri de grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Eraris konservi uzanton: nevalida." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Aniĝi" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4992,17 +5003,17 @@ msgid "No database name or DSN found anywhere." msgstr "Ne troviĝas datumbaza nomo aŭ DSN ie ajn." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Vi blokiĝis de sendi rektan mesaĝon." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Malsukcesis enmeti mesaĝon." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Malsukcesis ĝisdatigi mesaĝon per nova URI" @@ -5056,32 +5067,32 @@ msgid "Problem saving notice." msgstr "Malsukcesis konservi avizon." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Fuŝa tipo donita al saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Malsukcesis konservi grupan alvenkeston." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; ĝi ne ekzistas." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; datumbaza eraro." @@ -5131,13 +5142,9 @@ msgstr "Malsukcesis forigi abonan OMB-ĵetonon." msgid "Could not delete subscription." msgstr "Malsukcesis forigi abonon." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5148,57 +5155,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bonvenon al %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Malsukcesis krei grupon." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Malsukcesis ĝisdatigi grupan URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Malsukcesis ĝisdatigi grupan anecon." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Malsukcesis lokan grupan informon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ŝanĝi vian profilan agordon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Alŝuti vizaĝbildon" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ŝanĝi vian pasvorton." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ŝanĝi retpoŝtan disponadon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Desegni vian profilon" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Aliaj" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Alia" @@ -5214,184 +5221,185 @@ msgid "Untitled page" msgstr "Sentitola paĝo" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Unua reteja navigado" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Tempstrio pri vi kaj amikoj" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persona" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ŝanĝu la retpoŝtadreson, vizaĝbildon, pasvorton aŭ la profilon" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Konekti al servoj" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Konekti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ŝanĝi agordojn de la retejo" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administri" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviti amikojn kaj kolegojn al %s kun vi" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviti" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Elsaluti el la retejo" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr " Elsaluti" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Krei konton" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registriĝi" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ensaluti al la retejo" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Ensaluti" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Helpu min!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Helpo" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Serĉi homon aŭ tekston" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Serĉi" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Reteja anonco" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Loka vido" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Paĝa anonco" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Dua reteja navigado" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Helpo" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Enkonduko" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Oftaj demandoj" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Serva Kondiĉo" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privateco" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fontkodo" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insigno" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenco de la programaro StatusNet" @@ -5399,7 +5407,7 @@ msgstr "Licenco de la programaro StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5409,7 +5417,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** estas mikrobloga servo." @@ -5418,7 +5426,7 @@ msgstr "**%%site.name%%** estas mikrobloga servo." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5430,27 +5438,27 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Reteja enhava permesilo" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Enhavo kaj datumo de %1$s estas privata kaj konfidenca." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Enhava kaj datuma aŭtorrajto apartenas al %1$s. Ĉiuj rajtoj rezervitaj." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Enhava kaj datuma aŭtorrajto apartenas al kontribuintoj. Ĉiuj rajtoj " @@ -5458,45 +5466,45 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Ĉiuj enhavo kaj datumo ĉe %1$s estas havebla sub permesilo %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paĝado" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Poste" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Antaŭe" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ankoraŭ ne eblas trakti foran enhavon." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ankoraŭ ne eblas trakti enigitan XML-aĵon." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ankoraŭ ne eblas trakti enigitan Base64-enhavon." @@ -5621,7 +5629,7 @@ msgid "Tried to revoke unknown token." msgstr "Provis revoki nekonatan ĵetonon." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Malsukcesis forigi revokitan ĵetonon." @@ -5636,186 +5644,206 @@ msgid "Icon for this application" msgstr "Emblemo por tiu ĉi aplikaĵo" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Priskribu vian aplikaĵon per malpli ol %d literoj." +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Priskribu vian aplikaĵon per malpli ol %d literoj." +msgstr[1] "Priskribu vian aplikaĵon per malpli ol %d literoj." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Priskribu vian aplikaĵon" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL al la hejmpaĝo de tiu ĉi aplikaĵo" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Fonta URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizo, kiu prizorgi la aplikaĵon" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL al la hejmpaĝo de la organizo" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL por alidirekto post aŭtentigado" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Foliumilo" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Labortablo" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplikaĵo, foliumilo aŭ labortablo" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Nur-lege" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leg-skribe" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Nuligi" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leg-skribe" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "nur-lege" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Permesita %1$s - aliro \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoki" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Aldonaĵo" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Aŭtoro" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Donanto" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avizo, kie ĉi tiu aldonaĵo aperos" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etikedoj por ĉi tiu aldonaĵo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "La ŝanĝo de pasvorto maltrafis" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Ne estas permesita ŝanĝi la pasvorton" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloki" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Komandaj rezultoj" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Eraro de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Komando kompleta" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Komando maltrafis" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Avizo kun tiu identigaĵo ne ekzistas." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "La uzanto ne havas lastan averton." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Ne povas trovi uzanton kun kromnomo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Ne troviĝas loka uzanto kun alnomo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Pardonon, la komando ankoraŭ ne realiĝas." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Iom sensencas puŝeti vin mem!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Puŝeto sendiĝas al %s" @@ -5824,7 +5852,7 @@ msgstr "Puŝeto sendiĝas al %s" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5836,52 +5864,53 @@ msgstr "" "Avizoj: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Avizo ŝatiĝas." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s aniĝis al grupo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s foriras de grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Plennomo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Loko: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hejmpaĝo: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Biografio: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5892,31 +5921,31 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Eraris sendi rektan mesaĝon." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Avizo de %s ripetiĝas." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Eraris ripeti avizon." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5925,100 +5954,100 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Respondo al %s sendiĝas." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Eraris sendi avizon." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifu nomon de la abonota uzanto." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Malsukcesis aboni OMB-profilon per komando." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s abonita" #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifu la nomon de uzanto malabonota." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "%s malabonita." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Komando ankoraŭ ne realigita." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Sciigo for." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Malsukcesis malŝalti sciigon." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Sciigo en." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Malsukcesis ŝalti sciigon." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Ensaluta komando malebliĝas." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Ĉi tiu ligilo estas uzebla nur unufoje kaj valida nur 2 minutojn: %s." #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s malaboniĝas." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Vi ne abonas iun ajn." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vi abonas jenan homon:" @@ -6026,14 +6055,14 @@ msgstr[1] "Vi abonas jenajn homojn:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Neniu abonas vin." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "La homo abonas vin:" @@ -6041,21 +6070,21 @@ msgstr[1] "La homoj abonas vin:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Vi ne estas grupano de iu ajn grupo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vi estas grupano de jena grupo:" msgstr[1] "Vi estas grupano de jenaj grupoj:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6135,39 +6164,61 @@ msgstr "" "tracks - ankoraŭ ne realigita.\n" "tracking -ankoraŭ ne realigita.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ne troviĝas agorda dosiero. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Mi serĉis agordan dosieron je jenaj lokoj: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Al la instalilo." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Tujmesaĝilo" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Ĝisdatiĝo per tujmesaĝilo." -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Ĝisdatiĝo per SMM" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konektoj" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Konektitaj aplikaĵoj rajtigitaj" @@ -6189,11 +6240,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Desegnaj defaŭltoj konserviĝas." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Neŝati la avizon" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ŝati la avizon" @@ -6213,7 +6264,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6746,7 +6797,7 @@ 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." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -6900,55 +6951,55 @@ msgstr "" "poste." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "al" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "TTT" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "kuntekste" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Ripetita de" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Respondi ĉi tiun avizon" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respondi" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avizo ripetiĝas" @@ -7019,7 +7070,7 @@ msgid "Tags in %s's notices" msgstr "Etikedoj en avizoj de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Nekonata" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 49fdce520b..c203a1d94d 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:43+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -117,7 +117,7 @@ msgstr "No existe tal página." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "No existe ese usuario." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Este status ya está en favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "No se pudo crear favorito." @@ -476,18 +476,18 @@ msgid "Group not found." msgstr "Grupo no encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Has sido bloqueado de ese grupo por el administrador." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "No se pudo unir el usuario %s al grupo %s" @@ -499,7 +499,7 @@ msgstr "No eres miembro de este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "No se pudo eliminar al usuario %1$s del grupo %2$s." @@ -619,7 +619,7 @@ msgstr "" "debes dar acceso a tu cuenta %4$s a terceras partes en las que confíes." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Cuenta" @@ -633,7 +633,7 @@ msgstr "Usuario" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contraseña" @@ -663,12 +663,12 @@ msgid "No such notice." msgstr "No existe ese mensaje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "No puedes repetir tus propios mensajes" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Este mensaje ya se ha repetido." @@ -779,7 +779,7 @@ msgstr "Tamaño inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Imagen" @@ -810,7 +810,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Borrar" @@ -896,7 +896,7 @@ msgstr "Sí" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario." @@ -915,8 +915,8 @@ msgstr "No se guardó información de bloqueo." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "No existe ese grupo." @@ -1033,7 +1033,7 @@ msgstr "No eres el propietario de esta aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1098,7 +1098,7 @@ msgid "Do not delete this notice" msgstr "No eliminar este mensaje" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar este mensaje" @@ -1129,7 +1129,7 @@ msgstr "Borrar este usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Diseño" @@ -1257,7 +1257,7 @@ msgstr "Volver a los valores predeterminados" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" @@ -1377,7 +1377,7 @@ msgid "Could not update group." msgstr "No se pudo actualizar el grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "No fue posible crear alias." @@ -1433,7 +1433,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1627,7 +1627,7 @@ msgstr "Nueva dirección de correo entrante agregada." msgid "This notice is already a favorite!" msgstr "¡Este mensaje ya está en favoritos!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Sacar favorito" @@ -1933,7 +1933,7 @@ msgstr "Convertir a este usuario en administrador" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" @@ -2217,7 +2217,7 @@ msgstr "Ya estás suscrito a estos usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2350,7 +2350,7 @@ msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "No eres miembro de este grupo." @@ -2574,14 +2574,14 @@ msgid "New message" msgstr "Nuevo Mensaje " #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "No puedes enviar mensaje a este usuario." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "¡Ningún contenido!" @@ -2590,7 +2590,7 @@ msgid "No recipient specified." msgstr "No se especificó receptor." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." @@ -2601,12 +2601,12 @@ msgstr "Mensaje enviado" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Se ha enviado un mensaje directo a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Error de Ajax" @@ -2747,8 +2747,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solamente %s URL sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "No es un formato de datos compatible." @@ -3103,7 +3103,7 @@ msgstr "Nombre completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página de inicio" @@ -3508,7 +3508,7 @@ msgstr "Igual a la contraseña de arriba. Requerida" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" @@ -3671,7 +3671,7 @@ msgstr "No puedes repetir tus propios mensajes." msgid "You already repeated that notice." msgstr "Ya has repetido este mensaje." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetido" @@ -3807,13 +3807,13 @@ msgid "Name" msgstr "Nombre" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descripción" @@ -4602,7 +4602,7 @@ msgstr "%s no está escuchando a nadie." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4729,7 +4729,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4924,7 +4924,7 @@ msgstr "Intenta [buscar gupos](%%action.groupsearch%%) y unirte a ellos." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -4985,7 +4985,7 @@ msgid "Plugins" msgstr "Complementos" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versión" @@ -4993,29 +4993,25 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Aceptar" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "No se puede procesar URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr " Robin piensa que algo es imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5026,7 +5022,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5034,13 +5030,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un archivo tan grande podría sobrepasar tu cuota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nombre de archivo inválido." @@ -5059,13 +5055,28 @@ msgstr "No es parte del grupo." msgid "Group leave failed." msgstr "Ha fallado la acción de abandonar el grupo" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error al guardar el usuario; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Unirse" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Ningún nombre de base de datos o DSN encontrado." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Se te ha inhabilitado para enviar mensajes directos." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "No se pudo insertar mensaje." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." @@ -5154,32 +5165,32 @@ msgid "Problem saving notice." msgstr "Hubo un problema al guardar el mensaje." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Mal tipo proveído a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "No se puede revocar rol \"%1$s\" para usuario #%2$d; no existe." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5231,13 +5242,9 @@ msgstr "No se pudo eliminar la ficha OMB de suscripción." msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5248,57 +5255,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "No se pudo crear grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "No se pudo configurar el URI del grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "No se pudo configurar la membresía del grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "No se ha podido guardar la información del grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Subir una imagen." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambia tu contraseña" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambiar el manejo del correo." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Diseñar tu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Otras opciones" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Otro" @@ -5314,184 +5321,185 @@ msgid "Untitled page" msgstr "Página sin título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegación de sitio primario" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea temporal de amistades" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, imagen, contraseña, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amistades y compañeros a unirse a tí en %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Cerrar sesión en el sitio" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar sesión en el sitio" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "¡Ayúdame!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ayuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Mensaje de sitio" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locales" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Mensaje de página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ayuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Acerca de" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas Frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidad" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fuente" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" @@ -5499,7 +5507,7 @@ msgstr "Licencia de software de StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5509,7 +5517,7 @@ msgstr "" "[%%site.broughtby%%**](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblogueo." @@ -5518,7 +5526,7 @@ msgstr "**%%site.name%%** es un servicio de microblogueo." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5530,27 +5538,27 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licencia de contenido del sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "El contenido y datos de %1$s son privados y confidenciales." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Copyright del contenido y los datos de%1$s. Todos los derechos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " @@ -5558,7 +5566,7 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5566,41 +5574,41 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Después" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Antes" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "A espera de un elemento de alimentación de raíz, pero se obtuvo un documento " "XML entero." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Aún no se puede manejar contenido remoto." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Aún no se puede manejar contenido XML incrustado." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Aún no se puede manejar contenido incrustado Base64." @@ -5727,7 +5735,7 @@ msgid "Tried to revoke unknown token." msgstr "Se intentó revocar un token desconocido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "No se pudo eliminar el token revocado." @@ -5742,188 +5750,208 @@ msgid "Icon for this application" msgstr "Icono para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe tu aplicación en %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe tu aplicación en %d caracteres" +msgstr[1] "Describe tu aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe tu aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la página principal de esta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "La URL de origen" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organización responsable de esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL de la página principal de la organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL al que se redirigirá después de la autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador o de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Solo lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Solo escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura y escritura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "sólo lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado el %1$s - acceso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Adjuntos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Proveedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mensajes donde aparece este adjunto" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas de este archivo adjunto" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "El cambio de contraseña ha fallado" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "No está permitido cambiar la contraseña" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados de comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Error de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completo" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando falló" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "No existe ningún mensaje con ese ID." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "El/La usuario/a no tiene ningún último mensaje" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "No se pudo encontrar el usuario con el nombre de usuario %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" "No se pudo encontrar a ningún usuario local con el nombre de usuario %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "¡No tiene sentido darte un toque a ti mismo!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Toque enviado a %s." @@ -5932,7 +5960,7 @@ msgstr "Toque enviado a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5944,52 +5972,53 @@ msgstr "" "Avisos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Mensaje marcado como favorito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se unió al grupo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s dejo el grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nombre completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Lugar: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6000,111 +6029,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error al enviar mensaje directo." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaje demasiado largo - el máximo es de 140 caracteres, enviaste %d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Se ha enviado la respuesta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Error al guardar el mensaje." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especificar el nombre del usuario al cual se quiere suscribir." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "No te puedes suscribir a perfiles de OMB por orden." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Suscrito a %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifica el nombre del usuario del cual cancelar la suscripción." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Cancelada la suscripción a %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificación no activa." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificación activada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "No se puede activar notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "El comando de inicio de sesión está inhabilitado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6113,20 +6142,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Cancelada la suscripción a %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "No estás suscrito a nadie." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ya estás suscrito a estos usuarios:" @@ -6134,14 +6163,14 @@ msgstr[1] "Ya estás suscrito a estos usuarios:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nadie está suscrito a ti." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "No se pudo suscribir otro a ti." @@ -6149,21 +6178,21 @@ msgstr[1] "No se pudo suscribir otro a ti." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "No eres miembro de ningún grupo" #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Eres miembro de este grupo:" msgstr[1] "Eres miembro de estos grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6243,39 +6272,61 @@ msgstr "" "tracks - aún sin implementar.\n" "tracking - aún sin implementar.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ningún archivo de configuración encontrado. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "He buscado archivos de configuración en los siguientes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Quizá desees ejecutar el instalador para solucionar este problema." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir al instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizaciones por sms" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conecciones" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicaciones conectadas autorizadas" @@ -6298,11 +6349,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Diseño predeterminado restaurado." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Excluir este mensaje de mis favoritos" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Incluir este mensaje en tus favoritos" @@ -6322,7 +6373,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amistad de amistad" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6861,7 +6912,7 @@ msgstr "" "otros usuarios partícipes de la conversación. La gente puede enviarte " "mensajes que sólo puedas leer tú." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "desde" @@ -7015,55 +7066,55 @@ msgstr "" "favor, inténtalo más tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "en" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "red" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "en contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetido por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a este mensaje." -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mensaje repetido" @@ -7134,7 +7185,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas en mensajes de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconocido" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 61e15d415b..b7769db2d5 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:05+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" @@ -116,7 +116,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -356,7 +356,7 @@ msgid "This status is already a favorite." msgstr "این پیغام را پیش‌تر به برگزیده‌های خود اضافه کرده‌اید" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "نمی‌توان پیام را برگزید." @@ -470,18 +470,18 @@ msgid "Group not found." msgstr "گروه یافت نشد." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "شما از پیش یک عضو این گروه هستید." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." @@ -493,7 +493,7 @@ msgstr "شما یک عضو این گروه نیستید." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "خارج شدن %s از گروه %s نا موفق بود" @@ -610,7 +610,7 @@ msgstr "" "بدهید." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "حساب کاربری" @@ -624,7 +624,7 @@ msgstr "نام کاربری" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "گذرواژه" @@ -654,12 +654,12 @@ msgid "No such notice." msgstr "چنین پیامی وجود ندارد." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "نمی توانید پیام خود را تکرار کنید." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "قبلا آن پیام تکرار شده است." @@ -769,7 +769,7 @@ msgstr "اندازه نادرست است." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "چهره" @@ -801,7 +801,7 @@ msgid "Preview" msgstr "پیش‌نمایش" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "حذف" @@ -889,7 +889,7 @@ msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "کاربر را مسدود کن" @@ -908,8 +908,8 @@ msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "چنین گروهی وجود ندارد." @@ -1025,7 +1025,7 @@ msgstr "شما مالک این برنامه نیستید." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1090,7 +1090,7 @@ msgid "Do not delete this notice" msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -1121,7 +1121,7 @@ msgstr "حذف این کاربر" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "طرح" @@ -1251,7 +1251,7 @@ msgstr "برگشت به حالت پیش گزیده" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "ذخیره‌کردن" @@ -1373,7 +1373,7 @@ msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "انصراف" @@ -1622,7 +1622,7 @@ msgstr "نشانی ورودی جدید اضافه شد." msgid "This notice is already a favorite!" msgstr "این پیام ازقبل برگزیده شده است!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "خارج‌کردن از برگزیده‌ها" @@ -1922,7 +1922,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "خط‌زمانی %s" @@ -2201,7 +2201,7 @@ msgstr "شما هم‌اکنون مشترک این کاربران هستید:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2334,7 +2334,7 @@ msgid "You must be logged in to leave a group." msgstr "برای ترک یک گروه، شما باید وارد شده باشید." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "شما یک کاربر این گروه نیستید." @@ -2554,14 +2554,14 @@ msgid "New message" msgstr "پیام جدید" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "شما نمی توانید به این کاربر پیام بفرستید." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "محتوایی وحود ندارد!" @@ -2570,7 +2570,7 @@ msgid "No recipient specified." msgstr "هیچ گیرنده ای مشخص نشده" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "یک پیام را به خودتان نفرستید؛ در عوض آن را آهسته برای خود بگویید." @@ -2581,12 +2581,12 @@ msgstr "پیام فرستاده‌شد" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "پیام مستقیم به %s فرستاده شد." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "خطای آژاکس" @@ -2724,8 +2724,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "لطفا تنها از نشانی‌های اینترنتی %s از راه HTTP ساده استفاده کنید." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -3078,7 +3078,7 @@ msgstr "نام‌کامل" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "صفحهٔ خانگی" @@ -3470,7 +3470,7 @@ msgstr "با گذرواژهٔ بالا یکسان باشد. مورد نیاز ا #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "پست الکترونیکی" @@ -3629,7 +3629,7 @@ msgstr "شما نمی‌توانید پیام خودتان را تکرار کن msgid "You already repeated that notice." msgstr "شما قبلا آن پیام را تکرار کرده‌اید." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "تکرار شده" @@ -3766,13 +3766,13 @@ msgid "Name" msgstr "نام" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "سازمان" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "توصیف" @@ -4558,7 +4558,7 @@ msgstr "%s هیچ‌کس را دنبال نمی‌کند." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "پیامک" @@ -4682,7 +4682,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "نمایه" @@ -4872,7 +4872,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "به روز رسانی‌های %1$s در %2$s" @@ -4931,7 +4931,7 @@ msgid "Plugins" msgstr "افزونه‌ها" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "نسخه" @@ -4939,29 +4939,25 @@ msgstr "نسخه" msgid "Author(s)" msgstr "مؤلف(ها)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "برگزیده‌کردن" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4972,7 +4968,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4980,7 +4976,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -4988,7 +4984,7 @@ msgstr "" "بگذرد." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "نام‌پرونده نادرست است." @@ -5007,13 +5003,28 @@ msgstr "بخشی از گروه نیست." msgid "Group leave failed." msgstr "ترک کردن گروه شکست خورد." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "مشارکت کردن" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5036,17 +5047,17 @@ msgid "No database name or DSN found anywhere." msgstr "هیچ پایگاه‌داده یا DSN هیچ‌جا پیدا نشد." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "شما از فرستادن پیام مستقیم مردود شده اید." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "پیغام نمی تواند درج گردد" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "نمی‌توان پیام را تجزیه کرد." @@ -5103,32 +5114,32 @@ msgid "Problem saving notice." msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "نمی‌توان نقش «%1$s» را از کاربر #%2$d گرفت، وجود ندارد." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5180,13 +5191,9 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Could not delete subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5197,58 +5204,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s، به %1$s خوش آمدید!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 #, fuzzy msgid "Could not set group URI." msgstr "نمیتوان گروه را تشکیل داد" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "نمی‌توان عضویت گروه را تعیین کرد." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کرد." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "تنظیمات نمایه‌تان را تغییر دهید" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "بارگذاری یک چهره" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "تغییر گذرواژهٔ شما" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "نمایهٔ خود را طراحی کنید" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "انتخابات دیگر" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "دیگر" @@ -5264,184 +5271,185 @@ msgid "Untitled page" msgstr "صفحهٔ بدون عنوان" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "مسیریابی اصلی وب‌گاه" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "نمایهٔ شخصی و خط‌زمانی دوستان" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "شخصی" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "پست الکترونیکی، تصویر، گذرواژه یا نمایهٔ خودتان را تغییر دهید" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصال به سرویس‌ها" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "وصل‌شدن" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی وب‌گاه" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "مدیر" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "دوستان و همکاران‌تان را دعوت کنید تا به شما در %s بپیوندند" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج‌شدن از وب‌گاه" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "خروج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "ساختن یک جساب‌کاربری" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "ثبت‌نام" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "ورود" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من کمک کنید!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "کمک" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جست‌وجو برای افراد یا متن" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "پیام وب‌گاه" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "دید محلی" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "پیام صفحه" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "مسیریابی فرعی وب‌گاه" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "کمک" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "دربارهٔ" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "سوال‌های رایج" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "شرایط سرویس" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "خصوصی" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "منبع" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "تماس" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "نشان" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم افزار" @@ -5449,7 +5457,7 @@ msgstr "StatusNet مجوز نرم افزار" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5459,7 +5467,7 @@ msgstr "" "broughtbyurl%%) برای شما راه‌اندازی شده است." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است." @@ -5468,7 +5476,7 @@ msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5480,71 +5488,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html) در دسترس است." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "مجوز محتویات وب‌گاه" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "محتویات و داده‌های %1$s خصوصی و محرمانه هستند." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "حق تکثیر محتوا و داده‌ها با %1$s است. تمام حقوق محفوظ است." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "تمام محتویات و داده‌های %1$s زیر مجوز %2$s در دسترس هستند." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "صفحه بندى" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "قبل از" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "در حال انتظار برای یک عامل خوراک ریشه‌ای، اما یک سند XML کامل دریافت شد." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "هنوز نمی‌توان محتویات ازراه‌دور را به‌کار برد." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "هنوز نمی‌توان محتویات XML جاسازی‌شده را به‌کار برد." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "هنوز نمی‌توان محتوای جاسازی‌شدهٔ Base64 را به‌کار برد." @@ -5671,7 +5679,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5686,187 +5694,206 @@ msgid "Icon for this application" msgstr "شمایل این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "برنامهٔ خود را در %d نویسه توصیف کنید" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "برنامهٔ خود را در %d نویسه توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "برنامهٔ خود را توصیف کنید" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "نشانی اینترنتی صفحهٔ خانگی این برنامه" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "نشانی اینترنتی منبع" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "سازمان مسئول این برنامه" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "نشانی اینترنتی برای صفحهٔ خانگی سازمان" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "نشانی اینترنتی برای دوباره‌هدایت‌کردن بعد از تصدیق" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "مرورگر" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "میزکار" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "نوع برنامه، مرورگر یا میزکار" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "تنها خواندنی" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "خواندن-نوشتن" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "انصراف" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "خواندن-نوشتن" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "تایید شده %1$s - با دسترسی «%2$s»" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "لغو کردن" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "ضمائم" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "مؤلف" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "مهیا کننده" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "پیام‌هایی که این پیوست در آن‌جا ظاهر می‌شود" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "برچسب‌ها برای این پیوست" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "تغییر گذرواژه شکست خورد" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "تغییر گذرواژه مجاز نیست" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "بازداشتن" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "نتیجه دستور" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "خطای آژاکس" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "دستور انجام شد" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "فرمان شکست خورد" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "پیامی با آن شناسه وجود ندارد." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "کاربر آگهی آخر ندارد" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "نمی‌توان یک کاربر را با نام مستعار %s پیدا کرد." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "نمی‌توان یک کاربر را با نام مستعار %s پیدا کرد." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "متاسفانه این دستور هنوز پیاده نشده است." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "خیلی جالب نیست که به خودتان یادآوری کنید!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "یادآوری به %s فرستاده شد." @@ -5875,7 +5902,7 @@ msgstr "یادآوری به %s فرستاده شد." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5887,52 +5914,53 @@ msgstr "" "پیام‌ها: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "پیام به‌عنوان برگزیده مشخص شد." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." 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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s گروه %2$s را ترک کرد." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "نام کامل : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "موقعیت : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "صفحه خانگی : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "دربارهٔ: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5943,7 +5971,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5951,25 +5979,25 @@ msgstr "" "فرستادید." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "خطا در فرستادن پیام مستقیم." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "پیام %s تکرار شد." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "هنگام تکرار پیام خطایی رخ داد." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5978,80 +6006,80 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "پاسخ به %s فرستاده شد." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "هنگام ذخیرهٔ پیام خطا رخ داد." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "نمی‌توان با دستور مشترک نمایه‌های OMB شد." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "اشتراک از %s لغو شد." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "دستور هنوز پیاده نشده است." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "آگاه‌سازی خاموش شد." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "ناتوان در خاموش کردن آگاه سازی." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "آگاه سازی فعال است." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "ناتوان در روشن کردن آگاه سازی." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "فرمان ورود غیرفعال شده است." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6059,54 +6087,54 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%s لغو اشتراک شد." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "شما مشترک این فرد شده‌اید:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "این فرد مشترک شما شده است:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "شما یک عضو این گروه هستید:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6186,40 +6214,62 @@ msgstr "" "tracks - هنوز پیاده نشده است.\n" "tracking - هنوز پیاده نشده است.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "بدون کد تصدیق." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "من به دنبال پرونده‌های پیکربندی در مکان‌های زیر بودم: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "برو به نصاب." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "پیام‌رسان فوری" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "به‌هنگام‌سازی‌های انجام‌شده با پیام‌رسان فوری (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "پیامک" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "به‌روزرسانی با پیامک" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصال‌ها" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "برنامه‌های وصل‌شدهٔ مجاز" @@ -6242,11 +6292,11 @@ msgstr "" msgid "Design defaults restored." msgstr "پیش‌فرض‌های طراحی برگردانده شدند." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "خارج‌کردن این پیام از برگزیده‌ها" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "برگزیده‌کردن این پیام" @@ -6267,7 +6317,7 @@ msgstr "مؤلف" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6799,7 +6849,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "از" @@ -6947,56 +6997,56 @@ msgstr "" "دوباره تلاش کنید." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "خیر" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "در" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "در زمینه" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "تکرار از" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "به این پیام پاسخ دهید" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "پاسخ" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "پیام تکرار شد" @@ -7067,7 +7117,7 @@ msgid "Tags in %s's notices" msgstr "برچسب‌ها در پیام‌های %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "ناشناخته" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 0886e5ad30..4d67811d4c 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Profiilikuva-asetukset" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Tallenna" @@ -121,7 +121,7 @@ msgstr "Sivua ei ole." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Käyttäjää ei ole." @@ -363,7 +363,7 @@ msgid "This status is already a favorite." msgstr "Tämä päivitys on jo suosikki!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." @@ -480,18 +480,18 @@ msgid "Group not found." msgstr "Ei löytynyt." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -503,7 +503,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -621,7 +621,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Käyttäjätili" @@ -635,7 +635,7 @@ msgstr "Tunnus" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Salasana" @@ -667,13 +667,13 @@ msgid "No such notice." msgstr "Päivitystä ei ole." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Ilmoituksia ei voi pistää päälle." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Tätä päivitystä ei voi poistaa." @@ -784,7 +784,7 @@ msgstr "Koko ei kelpaa." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Kuva" @@ -815,7 +815,7 @@ msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Poista" @@ -900,7 +900,7 @@ msgstr "Kyllä" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Estä tämä käyttäjä" @@ -919,8 +919,8 @@ msgstr "Käyttäjän estotiedon tallennus epäonnistui." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Tuota ryhmää ei ole." @@ -1037,7 +1037,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1102,7 +1102,7 @@ msgid "Do not delete this notice" msgstr "Älä poista tätä päivitystä" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -1131,7 +1131,7 @@ msgstr "Poista käyttäjä" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Ulkoasu" @@ -1267,7 +1267,7 @@ msgstr "Käytä oletusasetuksia" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" @@ -1401,7 +1401,7 @@ msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." @@ -1459,7 +1459,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1657,7 +1657,7 @@ msgstr "Uusi saapuvan sähköpostin osoite lisätty." msgid "This notice is already a favorite!" msgstr "Tämä päivitys on jo suosikki!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Poista suosikeista" @@ -1956,7 +1956,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s aikajana" @@ -2233,7 +2233,7 @@ msgstr "Olet jo tilannut seuraavien käyttäjien päivitykset:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2369,7 +2369,7 @@ msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." @@ -2599,14 +2599,14 @@ msgid "New message" msgstr "Uusi viesti" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ei sisältöä!" @@ -2615,7 +2615,7 @@ msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." @@ -2626,12 +2626,12 @@ msgstr "Viesti lähetetty" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Suora viesti käyttäjälle %s lähetetty" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-virhe" @@ -2773,8 +2773,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -3145,7 +3145,7 @@ msgstr "Koko nimi" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Kotisivu" @@ -3539,7 +3539,7 @@ msgstr "Sama kuin ylläoleva salasana. Pakollinen." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Sähköposti" @@ -3706,7 +3706,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." msgid "You already repeated that notice." msgstr "Sinä kuulut jo tähän ryhmään." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -3850,14 +3850,14 @@ msgid "Name" msgstr "Tunnus" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Sivutus" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" @@ -4626,7 +4626,7 @@ msgstr "%s ei seuraa ketään käyttäjää." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4755,7 +4755,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiili" @@ -4959,7 +4959,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -5008,7 +5008,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Omat" @@ -5017,29 +5017,25 @@ msgstr "Omat" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Lisää suosikiksi" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5048,20 +5044,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Koko ei kelpaa." @@ -5084,13 +5080,28 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Group leave failed." msgstr "Ryhmän profiili" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Liity" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5114,18 +5125,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Tapahtui virhe suoran viestin lähetyksessä." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Viestin tallennus ei onnistunut." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." @@ -5182,33 +5193,33 @@ msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5262,13 +5273,9 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Could not delete subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5279,59 +5286,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Ryhmän luonti ei onnistunut." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Tilausta ei onnistuttu tallentamaan." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Lataa kuva" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Vaihda salasanasi" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Muita asetuksia" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Muut" @@ -5347,44 +5354,44 @@ msgid "Untitled page" msgstr "Nimetön sivu" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Omat" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Vaihda salasanasi" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Yhdistä" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5392,82 +5399,82 @@ msgstr "Ensisijainen sivunavigointi" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Ylläpito" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kutsu" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu sisään" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi ryhmä" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rekisteröidy" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Kirjaudu sisään" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ohjeet" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ohjeet" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae lisää ryhmiä" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5475,67 +5482,68 @@ msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Palvelun ilmoitus" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Paikalliset näkymät" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sivuilmoitus" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ohjeet" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Tietoa" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "UKK" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Yksityisyys" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Lähdekoodi" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Tönäise" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" @@ -5543,7 +5551,7 @@ msgstr "StatusNet-ohjelmiston lisenssi" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5553,7 +5561,7 @@ msgstr "" "site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** on mikroblogipalvelu." @@ -5562,7 +5570,7 @@ msgstr "**%%site.name%%** on mikroblogipalvelu." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5574,71 +5582,71 @@ msgstr "" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Sivutus" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Myöhemmin" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Aiemmin" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5778,7 +5786,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5793,197 +5801,215 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Kuvaus" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Lähdekoodi" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Peruuta" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Poista" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 #, fuzzy msgid "Attachments" msgstr "Liitettä ei ole." #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 #, fuzzy msgid "Author" msgstr "Atom" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Esikatselu" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Liitettä ei ole." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Salasanan vaihto" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Salasanan vaihto" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Estä" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Komennon tulos" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-virhe" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Komento suoritettu" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Komento epäonnistui" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Ei profiilia tuolla id:llä." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Käyttäjällä ei ole viimeistä päivitystä" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Tönäisy lähetetty" @@ -5992,7 +6018,7 @@ msgstr "Tönäisy lähetetty" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6001,52 +6027,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Koko nimi: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Tietoa: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6055,128 +6082,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format 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" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Päivitys lähetetty" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Vastaa tähän päivitykseen" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Ilmoitukset pois päältä." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Ilmoitukset päällä." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." @@ -6184,7 +6211,7 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." #. 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:836 +#: lib/command.php:831 #, fuzzy msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" @@ -6193,7 +6220,7 @@ msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." @@ -6201,7 +6228,7 @@ msgstr "Toista ei voitu asettaa tilaamaan sinua." #. 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:863 +#: lib/command.php:858 #, fuzzy msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" @@ -6210,7 +6237,7 @@ msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Sinä et kuulu tähän ryhmään." @@ -6218,14 +6245,14 @@ msgstr "Sinä et kuulu tähän ryhmään." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6267,42 +6294,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Pikaviestin" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Yhdistä" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6326,11 +6374,11 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." msgid "Design defaults restored." msgstr "Ulkoasuasetukset tallennettu." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Poista tämä päivitys suosikeista" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Merkitse päivitys suosikkeihin" @@ -6350,7 +6398,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6802,7 +6850,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " lähteestä " @@ -6951,58 +6999,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Ei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ei sisältöä!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Luotu" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Päivitys on poistettu." @@ -7074,7 +7122,7 @@ msgid "Tags in %s's notices" msgstr "Tagit käyttäjän %s päivityksissä" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Tuntematon toiminto" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 683a2bd6d0..698242f28b 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:45+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -90,7 +90,7 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -121,7 +121,7 @@ msgstr "Page non trouvée." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilisateur non trouvé." @@ -368,7 +368,7 @@ msgid "This status is already a favorite." msgstr "Cet avis est déjà un favori." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Impossible de créer le favori." @@ -483,18 +483,18 @@ msgid "Group not found." msgstr "Groupe non trouvé." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Vous avez été bloqué de ce groupe par l’administrateur." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossible de joindre l’utilisateur %1$s au groupe %2$s." @@ -506,7 +506,7 @@ msgstr "Vous n’êtes pas membre de ce groupe." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossible de retirer l’utilisateur %1$s du groupe %2$s." @@ -630,7 +630,7 @@ msgstr "" "confiance." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Compte" @@ -644,7 +644,7 @@ msgstr "Pseudo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Mot de passe" @@ -674,12 +674,12 @@ msgid "No such notice." msgstr "Avis non trouvé." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Vous ne pouvez pas reprendre votre propre avis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Vous avez déjà repris cet avis." @@ -791,7 +791,7 @@ msgstr "Taille incorrecte." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -824,7 +824,7 @@ msgid "Preview" msgstr "Aperçu" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Supprimer" @@ -910,7 +910,7 @@ msgstr "Oui" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquer cet utilisateur" @@ -929,8 +929,8 @@ msgstr "Impossible d’enregistrer les informations de blocage." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Aucun groupe trouvé." @@ -1046,7 +1046,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1111,7 +1111,7 @@ msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -1142,13 +1142,13 @@ msgstr "Supprimer cet utilisateur" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Conception" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de conception pour ce site StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1271,7 +1271,7 @@ msgstr "Revenir aux valeurs par défaut" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" @@ -1391,7 +1391,7 @@ msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossible de créer les alias." @@ -1447,7 +1447,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" @@ -1639,7 +1639,7 @@ msgstr "Nouvelle adresse de courriel entrant ajoutée." msgid "This notice is already a favorite!" msgstr "Cet avis a déjà été ajouté à vos favoris !" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Retirer ce favori" @@ -1922,7 +1922,7 @@ msgstr "Bloquer" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloquer cet utilisateur" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1944,7 +1944,7 @@ msgstr "Faire de cet utilisateur un administrateur" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Activité de %s" @@ -2234,7 +2234,7 @@ msgstr "Vous êtes déjà abonné à ces utilisateurs :" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2370,7 +2370,7 @@ msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Vous n’êtes pas membre de ce groupe." @@ -2383,45 +2383,47 @@ msgstr "%1$s a quitté le groupe %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licence" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licence de ce site StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Sélection de licence invalide." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Vous devez spécifier le propriétaire du contenu lorsque vous utilisez la " +"licence « Tous droits réservés »." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Titre de licence invalide. La taille maximale est de 255 caractères." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "URL de licence invalide." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "URL d’image de licence invalide." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "L’URL de la licence doit être vide ou valide." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "L’URL de l’image de la la licence doit être vide ou valide." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Sélection d’une licence" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2429,59 +2431,59 @@ msgstr "Privé" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tous droits réservés" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Type" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Sélectionner une licence" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Détails de la licence" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Propriétaire" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nom du propriétaire du contenu du site (si applicable)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titre de la licence" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Le titre de la licence." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL de la licence" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL où obtenir plus d'informations sur la licence." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL de l’image de la licence" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL d’une image à afficher avec la licence." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Enregistrer les paramètres de licence" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2598,14 +2600,14 @@ msgid "New message" msgstr "Nouveau message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Aucun contenu !" @@ -2614,7 +2616,7 @@ msgid "No recipient specified." msgstr "Aucun destinataire n’a été spécifié." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2626,12 +2628,12 @@ msgstr "Message envoyé" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Message direct envoyé à %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erreur Ajax" @@ -2729,6 +2731,7 @@ msgstr "Applications connectées." #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +"Vous avez autorisé les applications suivantes à accéder à votre compte." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2771,8 +2774,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2919,7 +2922,7 @@ msgstr "Chemins" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de chemin et serveur pour ce site StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3127,7 +3130,7 @@ msgstr "Nom complet" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site personnel" @@ -3528,7 +3531,7 @@ msgstr "Identique au mot de passe ci-dessus. Requis." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Courriel" @@ -3692,7 +3695,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "You already repeated that notice." msgstr "Vous avez déjà repris cet avis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repris" @@ -3789,7 +3792,7 @@ msgstr "Sessions" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Paramètres de session pour ce site StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3831,13 +3834,13 @@ msgid "Name" msgstr "Nom" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4633,7 +4636,7 @@ msgstr "%s ne suit actuellement personne." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4743,7 +4746,7 @@ msgstr "Utilisateur" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Paramètres des utilisateurs pour ce site StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4759,7 +4762,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4808,7 +4811,7 @@ msgstr "" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Sauvegarder les paramètres utilisateur" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4959,7 +4962,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -5020,7 +5023,7 @@ msgid "Plugins" msgstr "Extensions" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -5028,29 +5031,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Auteur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Ajouter à mes favoris" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Impossible de traiter l’URL « %s »" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pense que quelque chose est impossible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5061,20 +5060,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota utilisateur de %d octets." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota mensuel de %d octets." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nom de fichier non valide." @@ -5093,16 +5092,31 @@ msgstr "N’appartient pas au groupe." msgid "Group leave failed." msgstr "La désinscription du groupe a échoué." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erreur lors de l’enregistrement de l’utilisateur ; invalide." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Rejoindre" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s a rejoint le groupe %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5122,17 +5136,17 @@ msgid "No database name or DSN found anywhere." msgstr "Aucun nom de base de données ou DSN trouvé nulle part." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Il vous est interdit d’envoyer des messages directs." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Impossible d’insérer le message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." @@ -5188,25 +5202,25 @@ msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Le type renseigné pour saveKnownGroups n’est pas valable" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5215,7 +5229,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5267,14 +5281,10 @@ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." msgid "Could not delete subscription." msgstr "Impossible de supprimer l’abonnement" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "" +msgid "Follow" +msgstr "Suivre" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5284,57 +5294,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Impossible de créer le groupe." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Impossible de définir l'URI du groupe." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Impossible d’établir l’inscription au groupe." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Impossible d’enregistrer les informations du groupe local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Ajouter un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modifier votre mot de passe" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modifier le traitement des courriels" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Concevez votre profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Autres options" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Autres " @@ -5350,184 +5360,185 @@ msgid "Untitled page" msgstr "Page sans nom" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigation primaire du site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personnel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connexion" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre sur %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "S’inscrire" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Notice du site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vues locales" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Avis de la page" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Aide" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "À propos" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "CGU" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Confidentialité" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Source" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insigne" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" @@ -5535,7 +5546,7 @@ msgstr "Licence du logiciel StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5545,7 +5556,7 @@ msgstr "" "%site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** est un service de micro-blogging." @@ -5554,7 +5565,7 @@ msgstr "**%%site.name%%** est un service de micro-blogging." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5566,20 +5577,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licence du contenu du site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5587,7 +5598,7 @@ msgstr "" "réservés." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " @@ -5595,46 +5606,46 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Tous les contenus %1$s et les données sont disponibles sous la licence %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Après" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Avant" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Attendait un élément racine mais a reçu tout un document XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Impossible de gérer le contenu distant pour le moment." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Impossible de gérer le contenu XML embarqué pour le moment." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." @@ -5725,7 +5736,7 @@ msgstr "Configuration des instantanés" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Définir la licence du site" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5761,7 +5772,7 @@ msgid "Tried to revoke unknown token." msgstr "Révocation essayée d’un jeton inconnu." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Impossible de supprimer un jeton révoqué." @@ -5776,188 +5787,208 @@ msgid "Icon for this application" msgstr "Icône pour cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Décrivez votre application en %d caractères" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Décrivez votre application en %d caractères" +msgstr[1] "Décrivez votre application en %d caractères" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Décrivez votre application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL de la page d’accueil de cette application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL source" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsable de cette application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL de la page d’accueil de l’organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL vers laquelle rediriger après l’authentification" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navigateur" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Bureau" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type d’application, navigateur ou bureau" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lecture seule" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lecture-écriture" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accès par défaut pour cette application : en lecture seule ou en lecture-" "écriture" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annuler" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lecture-écriture" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lecture seule" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accès « %2$s » approuvé le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Pièces jointes" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Auteur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Fournisseur" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Avis sur lesquels cette pièce jointe apparaît." #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Marques de cette pièce jointe" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "La modification du mot de passe a échoué" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "La modification du mot de passe n’est pas autorisée" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquer" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Résultats de la commande" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erreur Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Commande complétée" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Échec de la commande" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Aucun avis avec cet identifiant n’existe." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Aucun avis récent pour cet utilisateur." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Impossible de trouver un utilisateur avec le pseudo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Impossible de trouver un utilisateur local portant le pseudo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n’a pas encore été implémentée." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Ça n’a pas de sens de se faire un clin d’œil à soi-même !" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Clin d’œil envoyé à %s." @@ -5966,7 +5997,7 @@ msgstr "Clin d’œil envoyé à %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5978,52 +6009,53 @@ msgstr "" "Messages : %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Avis ajouté aux favoris." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s a rejoint le groupe %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s a quitté le groupe %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nom complet : %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "À propos : %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6034,7 +6066,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6042,25 +6074,25 @@ msgstr "" "entré %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Une erreur est survenue pendant l’envoi de votre message." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Avis de %s repris." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6069,81 +6101,81 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Réponse à %s envoyée." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Problème lors de l’enregistrement de l’avis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossible de s'inscrire aux profils OMB par cette commande." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Abonné à %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" "Indiquez le nom de l’utilisateur duquel vous souhaitez vous désabonner." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Désabonné de %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Cette commande n’a pas encore été implémentée." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Avertissements désactivés." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Avertissements activés." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Impossible d’activer les avertissements." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "La commande d’ouverture de session est désactivée." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6152,20 +6184,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Désabonné de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Vous n’êtes abonné(e) à personne." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vous êtes abonné à cette personne :" @@ -6173,14 +6205,14 @@ msgstr[1] "Vous êtes abonné à ces personnes :" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Personne ne s’est abonné à vous." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Cette personne est abonnée à vous :" @@ -6188,21 +6220,21 @@ msgstr[1] "Ces personnes sont abonnées à vous :" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Vous n’êtes membre d’aucun groupe." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vous êtes membre de ce groupe :" msgstr[1] "Vous êtes membre de ces groupes :" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6283,40 +6315,62 @@ msgstr "" "tracks - pas encore implémenté.\n" "tracking - pas encore implémenté.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Aucun fichier de configuration n’a été trouvé. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" "J’ai cherché des fichiers de configuration dans les emplacements suivants : " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Aller au programme d’installation" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Suivi des avis par messagerie instantanée" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Suivi des avis par SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applications autorisées connectées" @@ -6339,11 +6393,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Les paramètre par défaut de la conception ont été restaurés." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Retirer des favoris" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Ajouter aux favoris" @@ -6363,9 +6417,9 @@ msgstr "Atom" msgid "FOAF" msgstr "Ami d’un ami" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Flux d’informations" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6904,7 +6958,7 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7057,55 +7111,55 @@ msgstr "" "Veuillez réessayer plus tard." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "chez" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "dans le contexte" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repris par" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Répondre à cet avis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Répondre" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Avis repris" @@ -7176,7 +7230,7 @@ msgid "Tags in %s's notices" msgstr "Marques dans les avis de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Inconnu" @@ -7565,14 +7619,19 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Fichier de sauvegarde pour l’utilisateur %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Aucun identifiant d’utilisateur n’a été spécifié." +msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d entrées dans la sauvegarde." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s a marqué l’avis %s comme favori." + +#~ msgid "%s is now following %s." +#~ msgstr "%s suit à présent %s." diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 79aa8d28c2..8380cbb393 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:46+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Configuracións de Twitter" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -119,7 +119,7 @@ msgstr "Non existe a etiqueta." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ningún usuario." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Este chío xa é un favorito!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -478,18 +478,18 @@ msgid "Group not found." msgstr "Non atopado" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." @@ -501,7 +501,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." @@ -617,7 +617,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 #, fuzzy msgid "Account" msgstr "Sobre" @@ -632,7 +632,7 @@ msgstr "Alcume" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -663,13 +663,13 @@ msgid "No such notice." msgstr "Ningún chío." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Non se pode eliminar este chíos." @@ -781,7 +781,7 @@ msgstr "Tamaño inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -812,7 +812,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Eliminar chío" @@ -903,7 +903,7 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" @@ -923,8 +923,8 @@ msgstr "Erro ao gardar información de bloqueo." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 #, fuzzy msgid "No such group." msgstr "Non existe a etiqueta." @@ -1046,7 +1046,7 @@ msgstr "Non estás suscrito a ese perfil" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1114,7 +1114,7 @@ msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 #, fuzzy msgid "Delete this notice" msgstr "Eliminar chío" @@ -1147,7 +1147,7 @@ msgstr "Eliminar chío" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1281,7 +1281,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1416,7 +1416,7 @@ msgid "Could not update group." msgstr "Non se puido actualizar o usuario." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." @@ -1476,7 +1476,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1673,7 +1673,7 @@ msgstr "Engadida nova dirección de correo entrante." msgid "This notice is already a favorite!" msgstr "Este chío xa é un favorito!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desactivar favorito" @@ -1984,7 +1984,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" @@ -2261,7 +2261,7 @@ msgstr "Xa estas suscrito a estes usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2396,7 +2396,7 @@ msgid "You must be logged in to leave a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 #, fuzzy msgid "You are not a member of that group." msgstr "Non estás suscrito a ese perfil" @@ -2625,14 +2625,14 @@ msgid "New message" msgstr "Nova mensaxe" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non podes enviar mensaxes a este usurio." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Sen contido!" @@ -2641,7 +2641,7 @@ msgid "No recipient specified." msgstr "Non se especificou ningún destinatario" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2655,12 +2655,12 @@ msgstr "Non hai mensaxes de texto!" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Mensaxe directo a %s enviado" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro de Ajax" @@ -2797,8 +2797,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -3168,7 +3168,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3572,7 +3572,7 @@ msgstr "A mesma contrasinal que arriba. Requerido." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo Electrónico" @@ -3736,7 +3736,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza." msgid "You already repeated that notice." msgstr "Xa estas suscrito a estes usuarios:" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Destacado" @@ -3873,14 +3873,14 @@ msgid "Name" msgstr "Alcume" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Invitación(s) enviada(s)." #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Subscricións" @@ -4658,7 +4658,7 @@ msgstr "%1$s está a escoitar os teus chíos %2$s." msgid "Jabber" msgstr "Jabber." -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4788,7 +4788,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4994,7 +4994,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -5043,7 +5043,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Persoal" @@ -5052,29 +5052,25 @@ msgstr "Persoal" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Gostame" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5083,20 +5079,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Tamaño inválido." @@ -5119,14 +5115,29 @@ msgstr "Non se puido actualizar o usuario." msgid "Group leave failed." msgstr "Non existe o perfil." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Acounteceu un erro gardando o usuario: é inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 #, fuzzy msgid "Join" msgstr "Inicio de sesión" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5150,18 +5161,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Erro ó enviar a mensaxe directa." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non se pode inserir unha mensaxe." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." @@ -5219,33 +5230,33 @@ msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5299,13 +5310,9 @@ msgstr "Non se pode gardar a subscrición." msgid "Could not delete subscription." msgstr "Non se pode gardar a subscrición." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5316,62 +5323,62 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non se poden gardar as etiquetas." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Non se pode gardar a subscrición." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Configuración de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Acounteceu un fallo ó actualizar o avatar." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambiar contrasinal" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambiar a xestión de email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "O usuario non ten perfil." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opcions" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outros" @@ -5387,44 +5394,44 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5432,13 +5439,13 @@ msgstr "Navegación de subscricións" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -5447,71 +5454,71 @@ msgstr "" "este servizo." #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rexistrar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5519,69 +5526,70 @@ msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Novo chío" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Novo chío" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Axuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5589,7 +5597,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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5599,7 +5607,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de microbloguexo." @@ -5608,7 +5616,7 @@ msgstr "**%%site.name%%** é un servizo de microbloguexo." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5620,72 +5628,72 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Outros" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 #, fuzzy msgid "Before" msgstr "Antes »" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5824,7 +5832,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5839,195 +5847,216 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[1] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[2] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[3] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." +msgstr[4] "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Fonte" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Recuperar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 #, fuzzy msgid "Provider" msgstr "Perfil" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Contrasinal gardada." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Contrasinal gardada." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completo" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando fallido" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Non se atopou un perfil con ese ID." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "O usuario non ten último chio." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpa, este comando todavía non está implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Toque enviado" @@ -6036,7 +6065,7 @@ msgstr "Toque enviado" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6048,52 +6077,53 @@ msgstr "" "Chíos: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6102,128 +6132,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Chío publicado" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Acounteceu un erro configurando o usuario." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Non se pode eliminar este chíos." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Aconteceu un erro ó gardar o chío." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Especifica o nome do usuario ó que queres suscribirte" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Non estás suscrito a ese perfil" #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Especifica o nome de usuario ó que queres deixar de seguir" #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando non implementado." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificación desactivada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificación habilitada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Non estás suscrito a ese perfil" @@ -6231,7 +6261,7 @@ msgstr "Non estás suscrito a ese perfil" #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Xa estas suscrito a estes usuarios:" @@ -6242,7 +6272,7 @@ msgstr[4] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Outro usuario non se puido suscribir a ti." @@ -6250,7 +6280,7 @@ msgstr "Outro usuario non se puido suscribir a ti." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Outro usuario non se puido suscribir a ti." @@ -6261,7 +6291,7 @@ msgstr[4] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Non estás suscrito a ese perfil" @@ -6269,7 +6299,7 @@ msgstr "Non estás suscrito a ese perfil" #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non estás suscrito a ese perfil" @@ -6279,7 +6309,7 @@ msgstr[3] "" msgstr[4] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 #, fuzzy msgid "" "Commands:\n" @@ -6348,41 +6378,62 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Chíos dende mensaxería instantánea (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Chíos dende SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conectar" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6405,11 +6456,11 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Chíos favoritos de %s" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Chíos favoritos de %s" @@ -6429,7 +6480,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6928,7 +6979,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " dende " @@ -7079,59 +7130,59 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "No" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Sen contido!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Crear" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 #, fuzzy msgid "Reply to this notice" msgstr "Non se pode eliminar este chíos." -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Respostas" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Chío publicado" @@ -7206,7 +7257,7 @@ msgid "Tags in %s's notices" msgstr "O usuario non ten último chio." #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Acción descoñecida" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 3b9b7a5e4c..da1a3411ce 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:08+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -112,7 +112,7 @@ msgstr "Esa páxina non existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Non existe tal usuario." @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Este estado xa é dos favoritos." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -473,18 +473,18 @@ msgid "Group not found." msgstr "Non se atopou o grupo." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Xa forma parte dese grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "O administrador bloqueouno nese grupo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." @@ -496,7 +496,7 @@ msgstr "Vostede non pertence a este grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "O usuario %1$s non se puido eliminar do grupo %2$s." @@ -615,7 +615,7 @@ msgstr "" "acceso á súa conta %4$s a xente de confianza." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -629,7 +629,7 @@ msgstr "Alcume" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "Non existe tal nota." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pode repetir a súa propia nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Xa repetiu esa nota." @@ -776,7 +776,7 @@ msgstr "Tamaño non válido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -809,7 +809,7 @@ msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Borrar" @@ -895,7 +895,7 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuario" @@ -914,8 +914,8 @@ msgstr "Non se puido gardar a información do bloqueo." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Non existe tal grupo." @@ -1031,7 +1031,7 @@ msgstr "Non é o dono desa aplicación." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -1096,7 +1096,7 @@ msgid "Do not delete this notice" msgstr "Non borrar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Borrar esta nota" @@ -1127,7 +1127,7 @@ msgstr "Borrar o usuario" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Deseño" @@ -1256,7 +1256,7 @@ msgstr "Volver ao deseño por defecto" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" @@ -1376,7 +1376,7 @@ msgid "Could not update group." msgstr "Non se puido actualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non se puideron crear os pseudónimos." @@ -1432,7 +1432,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1630,7 +1630,7 @@ msgstr "Engadiuse un novo enderezo de correo electrónico entrante." msgid "This notice is already a favorite!" msgstr "A nota xa é unha das súas favoritas!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desmarcar como favorita" @@ -1932,7 +1932,7 @@ msgstr "Converter a este usuario en administrador" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Liña do tempo de %s" @@ -2215,7 +2215,7 @@ msgstr "Xa está subscrito aos seguintes usuarios:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2348,7 +2348,7 @@ msgid "You must be logged in to leave a group." msgstr "Ten que identificarse para deixar un grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Non pertence a ese grupo." @@ -2574,14 +2574,14 @@ msgid "New message" msgstr "Mensaxe nova" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non pode enviarlle unha mensaxe a este usuario." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Non hai contido ningún!" @@ -2590,7 +2590,7 @@ msgid "No recipient specified." msgstr "Non se especificou ningún destinatario." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non se envíe unha mensaxe, limítese a pensar nela." @@ -2601,12 +2601,12 @@ msgstr "Enviouse a mensaxe" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Enviouse a mensaxe directa a %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Houbo un erro de AJAX" @@ -2745,8 +2745,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só %s enderezos URL sobre HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non se soporta ese formato de datos." @@ -3103,7 +3103,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Páxina persoal" @@ -3507,7 +3507,7 @@ msgstr "O mesmo contrasinal que o anterior. Obrigatorio." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correo electrónico" @@ -3671,7 +3671,7 @@ msgstr "Non pode repetir a súa propia nota." msgid "You already repeated that notice." msgstr "Xa repetiu esa nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3807,13 +3807,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organización" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrición" @@ -4604,7 +4604,7 @@ msgstr "%s non está seguindo a ninguén." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4731,7 +4731,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4926,7 +4926,7 @@ msgstr "Probe a [buscar grupos](%%action.groupsearch%%) e unirse a eles." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións de %1$s en %2$s!" @@ -4987,7 +4987,7 @@ msgid "Plugins" msgstr "Complementos" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versión" @@ -4995,29 +4995,25 @@ msgstr "Versión" msgid "Author(s)" msgstr "Autores" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Marcar como favorito" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Non se pode procesar o URL \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensa que algo é imposible." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5028,7 +5024,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5036,13 +5032,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de ficheiro incorrecto." @@ -5061,13 +5057,28 @@ msgstr "Non forma parte do grupo." msgid "Group leave failed." msgstr "Non se puido deixar o grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Houbo un erro ao gardar o usuario. Incorrecto." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Unirse" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5090,17 +5101,17 @@ msgid "No database name or DSN found anywhere." msgstr "Non se atopou por ningures o nome da base de datos ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Prohibíuselle enviar mensaxes directas de momento." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non se puido inserir a mensaxe." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe co novo URI." @@ -5156,25 +5167,25 @@ msgid "Problem saving notice." msgstr "Houbo un problema ao gardar a nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo dado para saveKnownGroups era incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5182,7 +5193,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5233,13 +5244,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." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5250,57 +5257,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvido a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Non se puido crear o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non se puido establecer o URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Non se puido establecer a pertenza ao grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Non se puido gardar a información do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambie a configuración do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Cargue un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambie o seu contrasinal" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Cambie a xestión do correo electrónico" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Deseñe o seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opcións" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outros" @@ -5316,184 +5323,185 @@ msgid "Untitled page" msgstr "Páxina sen título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegación principal do sitio" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Liña do tempo do perfil persoal e os amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambie o seu correo electrónico, avatar, contrasinal ou perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectarse aos servizos" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar a configuración do sitio" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrador" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide a amigos e compañeiros a unírselle en %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Saír ao anonimato" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Saír" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear unha conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Rexistrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificarse no sitio" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Identificarse" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar persoas ou palabras" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nota do sitio" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Nota da páxina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegación secundaria do sitio" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Axuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Acerca de" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Preguntas máis frecuentes" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Condicións do servicio" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Protección de datos" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Código fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenza do software StatusNet" @@ -5501,7 +5509,7 @@ msgstr "Licenza do software StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5511,7 +5519,7 @@ msgstr "" "site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas." @@ -5520,7 +5528,7 @@ msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5532,20 +5540,20 @@ msgstr "" "GNU](http://www.fsf.org/licensing/licenses/agpl-3.0.html) (en inglés)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licenza dos contidos do sitio" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O contido e os datos de %1$s son privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5553,7 +5561,7 @@ msgstr "" "todos os dereitos." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Os contidos e datos son propiedade intelectual dos colaboradores. Quedan " @@ -5561,47 +5569,47 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paxinación" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriores" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Aínda non é posible manexar contidos remotos." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Aínda non se poden manexar contidos XML integrados." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Aínda non se poden manexar contidos Base64." @@ -5728,7 +5736,7 @@ msgid "Tried to revoke unknown token." msgstr "Intentouse revogar un pase descoñecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Erro ao borrar o pase revogado." @@ -5743,187 +5751,207 @@ msgid "Icon for this application" msgstr "Icona para esta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describa a súa aplicación en %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describa a súa aplicación en %d caracteres" +msgstr[1] "Describa a súa aplicación en %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describa a súa aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL do sitio web desta aplicación" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de orixe" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organización responsable desta aplicación" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL do sitio web da organización" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL ao que ir tras a autenticación" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Escritorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicación, de navegador ou de escritorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lectura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura e escritura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura e escritura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lectura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprobado o %1$s - permisos de \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Ficheiros anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas nas que se anexou este ficheiro" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas para este ficheiro" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Non se puido cambiar o contrasinal" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Non se permite cambiar o contrasinal" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Excluír" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados da orde" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Houbo un erro de AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Completouse a orde" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "A orde fallou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Non hai ningunha nota con esa id." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "O usuario non ten ningunha última nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Non se deu atopado ningún usuario co alcume %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Non se deu atopado ningún usuario local co alcume %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Esta orde aínda non está integrada." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ten sentido ningún facerse un aceno a un mesmo!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Fíxoselle un aceno a %s." @@ -5932,7 +5960,7 @@ msgstr "Fíxoselle un aceno a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5944,52 +5972,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Marcouse a nota como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s uniuse ao grupo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localidade: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Sitio web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Acerca de: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6000,112 +6029,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Houbo un erro ao enviar a mensaxe directa." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Repetiuse a nota de %s." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "A nota é longa de máis. O límite son %1$d caracteres, e enviou %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Enviouse a resposta a %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Houbo un erro ao gardar a nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Introduza o nome do usuario ao que quere subscribirse." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Non se pode subscribir aos perfís OMB cunha orde." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscribiuse a %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Introduza o nome do usuario ao que quer deixar de estar subscrito." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Cancelou a subscrición a %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Aínda non se integrou esa orde." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Desactivar a notificación." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Non se pode desactivar a notificación." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Activar a notificación." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "A orde de identificación está desactivada." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6114,20 +6143,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Cancelou a subscrición a %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Non está subscrito a ninguén." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Vostede está subscrito a esta persoa:" @@ -6135,14 +6164,14 @@ msgstr[1] "Vostede está subscrito a estas persoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Non hai ninguén subscrito a vostede." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta persoa está subscrita a vostede:" @@ -6150,21 +6179,21 @@ msgstr[1] "Estas persoas están subscritas a vostede:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Non forma parte de ningún grupo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Vostede pertence a este grupo:" msgstr[1] "Vostede pertence a estes grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6244,39 +6273,61 @@ msgstr "" "tracks - aínda non se integrou\n" "tracking - aínda non se integrou\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Non se atopou ningún ficheiro de configuración. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Pode que queira executar o instalador para arranxalo." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir ao instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizacións por mensaxería instantánea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizacións por SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexións" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" @@ -6299,11 +6350,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Restableceuse o deseño por defecto." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Desmarcar esta nota como favorita" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Marcar esta nota como favorita" @@ -6323,7 +6374,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amigo dun amigo" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6861,7 +6912,7 @@ 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." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7013,55 +7064,55 @@ msgstr "" "intentar máis tarde" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "L" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "en" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Repetiuse a nota" @@ -7132,7 +7183,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas nas notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Descoñecida" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 1c79ab228d..a5411edf75 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:09+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -113,7 +113,7 @@ msgstr "Strona njeeksistuje." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -348,7 +348,7 @@ msgid "This status is already a favorite." msgstr "Tutón status je hižo faworit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Faworit njeda so wutworić." @@ -463,18 +463,18 @@ msgid "Group not found." msgstr "Skupina njenamakana." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Sy hižo čłon teje skupiny." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Administratora tuteje skupiny je će zablokował." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." @@ -486,7 +486,7 @@ msgstr "Njejsy čłon tuteje skupiny." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Njebě móžno wužiwarja %1$s ze skupiny %2$s wotstronić." @@ -598,7 +598,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -612,7 +612,7 @@ msgstr "Přimjeno" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hesło" @@ -642,12 +642,12 @@ msgid "No such notice." msgstr "Zdźělenka njeeksistuje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Njemóžno twoju zdźělenku wospjetować." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Tuta zdźělenka bu hižo wospjetowana." @@ -758,7 +758,7 @@ msgstr "Njepłaćiwa wulkosć." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" @@ -790,7 +790,7 @@ msgid "Preview" msgstr "Přehlad" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Zničić" @@ -873,7 +873,7 @@ msgstr "Haj" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Tutoho wužiwarja blokować" @@ -893,8 +893,8 @@ msgstr "Njeje móžno, sydłowu zdźělenku składować." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Skupina njeeksistuje." @@ -1011,7 +1011,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1071,7 +1071,7 @@ msgid "Do not delete this notice" msgstr "Tutu zdźělenku njewušmórnyć" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -1100,7 +1100,7 @@ msgstr "Tutoho wužiwarja wušmórnyć" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Design" @@ -1229,7 +1229,7 @@ msgstr "Na standard wróćo stajić" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Składować" @@ -1351,7 +1351,7 @@ msgid "Could not update group." msgstr "Skupina njeje so dała aktualizować." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." @@ -1405,7 +1405,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Přetorhnyć" @@ -1596,7 +1596,7 @@ msgstr "Nowa adresa za dochadźace e-mejle přidata." msgid "This notice is already a favorite!" msgstr "Tuta zdźělenka je hižo faworit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "K faworitam přidać" @@ -1890,7 +1890,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2159,7 +2159,7 @@ msgstr "Sy tutych wužiwarjow hižo abonował:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2264,7 +2264,7 @@ msgid "You must be logged in to leave a group." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Njejsy čłon teje skupiny." @@ -2484,14 +2484,14 @@ msgid "New message" msgstr "Nowa powěsć" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Žadyn wobsah!" @@ -2500,7 +2500,7 @@ msgid "No recipient specified." msgstr "Žadyn přijimowar podaty." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2511,12 +2511,12 @@ msgstr "Powěsć pósłana" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktna powěsć do %s pósłana." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Zmylk Ajax" @@ -2648,8 +2648,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Njeje podpěrany datowy format." @@ -3005,7 +3005,7 @@ msgstr "Dospołne mjeno" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Startowa strona" @@ -3387,7 +3387,7 @@ msgstr "Jenake kaž hesło horjeka. Trěbne." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mejl" @@ -3523,7 +3523,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować." msgid "You already repeated that notice." msgstr "Sy tutu zdźělenku hižo wospjetował." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Wospjetowany" @@ -3655,13 +3655,13 @@ msgid "Name" msgstr "Mjeno" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacija" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Wopisanje" @@ -4409,7 +4409,7 @@ msgstr "%s čłon w žanej skupinje njeje." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4533,7 +4533,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4720,7 +4720,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacije wot %1$s na %2$s!" @@ -4769,7 +4769,7 @@ msgid "Plugins" msgstr "Tykače" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Wersija" @@ -4777,30 +4777,26 @@ msgstr "Wersija" msgid "Author(s)" msgstr "Awtorojo" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Fawority" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4809,20 +4805,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Njepłaćiwe datajowe mjeno." @@ -4841,13 +4837,28 @@ msgstr "Njeje dźěl skupiny." msgid "Group leave failed." msgstr "Wopušćenje skupiny je so njeporadźiło." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Zmylk při składowanju wužiwarja; njepłaćiwy." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Zastupić" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4870,18 +4881,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Zmylk při słanju direktneje powěsće," #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Powěsć njeda so zasunyć." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Powěsć njeda so analyzować." @@ -4938,32 +4949,32 @@ msgid "Problem saving notice." msgstr "Zmylk při składowanju powěsće" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5014,13 +5025,9 @@ msgstr "Znamjo OMB-abonementa njeda so zhašeć." msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5031,58 +5038,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj do %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Skupina njeda so wutowrić." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "URI skupiny njeda so nastajić." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Skupinske čłonstwo njeda so stajić." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Informacije wo lokalnej skupinje njedachu so składować." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Twoje profilowe nastajenja změnić" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Awatar nahrać" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Twoje hesło změnić" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Wužiwarski profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Druhe opcije" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Druhe" @@ -5098,189 +5105,190 @@ msgid "Untitled page" msgstr "Strona bjez titula" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Zakładna sydłowa konfiguracija" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Wosobinski" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Wašu e-mejl, waš awatar, waše hesło, waš profil změnić" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ze słužbami zwjazać" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Zwjazać" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Sydłowu konfiguraciju změnić" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" 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: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Ze sydła wotzjewić" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto załožić" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrować" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Při sydle přizjewić" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Přizjewjenje" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Sydłowa zdźělenka" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 #, fuzzy msgid "Local views" msgstr "Lokalny" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Nowa zdźělenka" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Zakładna sydłowa konfiguracija" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Pomoc" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Wo" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Huste prašenja" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Priwatnosć" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Žórło" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5288,7 +5296,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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5296,7 +5304,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5305,7 +5313,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5314,72 +5322,72 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Wobsah zdźělenkow přepytać" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registrowanje" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Po" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Před" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5507,7 +5515,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5522,188 +5530,210 @@ msgid "Icon for this application" msgstr "Symbol za tutu aplikaciju" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Wopisaj swoju aplikaciju z %d znamješkami" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[1] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[2] "Wopisaj swoju aplikaciju z %d znamješkami" +msgstr[3] "Wopisaj swoju aplikaciju z %d znamješkami" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Wopisaj swoju aplikaciju" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL za startowu stronu organizacije" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL žórła" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizacija, kotraž je za tutu aplikaciju zamołwita" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL za startowu stronu organizacije" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Wobhladowak" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Jenož čitajomny" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Popisujomny" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Přetorhnyć" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "popisujomny" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "jenož čitajomny" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Přiwěški" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Awtor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Poskićowar" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Přiwěšk njeeksistuje." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Změnjenje hesła je so njeporadźiło" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Změnjenje hesła njeje dowolene" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokować" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Přikazowe wuslědki" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Zmylk Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Přikaz wuwjedźeny" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Přikaz je so njeporadźił" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Zdźělenka z tym ID njeeksistuje." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Wužiwar nima poslednju powěsć." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Tutón přikaz hišće njeje implementowany." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5712,7 +5742,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5721,53 +5751,54 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 #, fuzzy msgid "Notice marked as fave." msgstr "Tuta zdźělenka je hižo faworit!" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Dospołne mjeno: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Městno: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Startowa strona: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Wo: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5776,7 +5807,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5784,125 +5815,125 @@ msgstr "" "pósłał." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Zmylk při słanju direktneje powěsće," #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Powěsć wot %s wospjetowana." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Wotmołwa na %s pósłana." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Zmylk při składowanju powěsće" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "OMB-profile njedadźa so přez přikaz abonować." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Přikaz hišće njeimplementowany." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Zdźělenje znjemóžnjene." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Zdźělenje njeda so znjemóžnić." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Zdźělenje zmóžnjene." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Zdźělenje njeda so zmóžnić." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Njejsy nikoho abonował." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Sy tutu wosobu abonował:" @@ -5912,14 +5943,14 @@ msgstr[3] "Sy tute wosoby abonował:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nichtó njeje će abonował." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Tuta wosoba je će abonowała:" @@ -5929,14 +5960,14 @@ msgstr[3] "Tute wosoby su će abonowali:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Njejsy čłon w žanej skupinje." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Sy čłon tuteje skupiny:" @@ -5945,7 +5976,7 @@ msgstr[2] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5987,39 +6018,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Žana konfiguraciska dataja namakana. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Sym na slědowacych městnach za konfiguraciskimi datajemi pytał: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Móže być, zo chceš instalaciski program startować, zo by to porjedźił." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "K instalaciji" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacije přez Instant Messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizacije přez SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Zwiski" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Awtorizowane zwjazane aplikacije" @@ -6043,12 +6096,12 @@ msgstr "" msgid "Design defaults restored." msgstr "Designowe nastajenja składowane." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Tutu zdźělenku wušmórnyć" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Tutu zdźělenku wospjetować" @@ -6069,7 +6122,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6507,7 +6560,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "wot" @@ -6654,55 +6707,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "S" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "J" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "W" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Z" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "w" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "w konteksće" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Wospjetowany wot" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Wotmołwić" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Zdźělenka wospjetowana" @@ -6775,7 +6828,7 @@ msgid "Tags in %s's notices" msgstr "Wužiwar nima poslednju powěsć" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Njeznaty" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 33230c399e..df39b10351 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:10+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -84,7 +84,7 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Mentés" @@ -115,7 +115,7 @@ msgstr "Nincs ilyen lap." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Nincs ilyen felhasználó." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "Ez az állapotjelentés már a kedvenceid között van." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nem sikerült létrehozni a kedvencet." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "A csoport nem található." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Már tagja vagy ennek a csoportnak." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Az adminisztrátor blokkolt ebből a csoportból." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." @@ -490,7 +490,7 @@ msgstr "Nem vagy tagja ennek a csoportnak." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nem sikerült %1$s felhasználót eltávolítani a %2$s csoportból." @@ -602,7 +602,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Kontó" @@ -616,7 +616,7 @@ msgstr "Becenév" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Jelszó" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "Nincs ilyen hír." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nem ismételheted meg a saját híredet." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Már megismételted azt a hírt." @@ -762,7 +762,7 @@ msgstr "Érvénytelen méret." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -793,7 +793,7 @@ msgid "Preview" msgstr "Előnézet" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Törlés" @@ -876,7 +876,7 @@ msgstr "Igen" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Felhasználó blokkolása" @@ -895,8 +895,8 @@ msgstr "Nem sikerült elmenteni a blokkolási információkat." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nincs ilyen csoport." @@ -1012,7 +1012,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "Ne töröljük ezt a hírt" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Töröljük ezt a hírt" @@ -1103,7 +1103,7 @@ msgstr "Töröljük ezt a felhasználót" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Megjelenés" @@ -1229,7 +1229,7 @@ msgstr "Visszaállítás az alapértelmezettre" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Mentés" @@ -1349,7 +1349,7 @@ msgid "Could not update group." msgstr "Nem sikerült a csoport frissítése." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nem sikerült létrehozni az álneveket." @@ -1406,7 +1406,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Mégse" @@ -1599,7 +1599,7 @@ msgstr "Új bejövő e-mail cím hozzáadva." msgid "This notice is already a favorite!" msgstr "Ez a hír már a kedvenceid között van!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Kedvenc eltávolítása" @@ -1896,7 +1896,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s története" @@ -2161,7 +2161,7 @@ msgstr "Ezen felhasználók híreire már feliratkoztál:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2267,7 +2267,7 @@ msgid "You must be logged in to leave a group." msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nem vagy tagja annak a csoportnak." @@ -2486,14 +2486,14 @@ msgid "New message" msgstr "Új üzenet" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ennek a felhasználónak nem küldhetsz üzenetet." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nincs tartalom!" @@ -2502,7 +2502,7 @@ msgid "No recipient specified." msgstr "Nincs címzett megadva." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." @@ -2513,12 +2513,12 @@ msgstr "Üzenet elküldve" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Közvetlen üzenet ment %s részére." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-hiba" @@ -2647,8 +2647,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Nem támogatott adatformátum." @@ -3000,7 +3000,7 @@ msgstr "Teljes név" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Honlap" @@ -3384,7 +3384,7 @@ msgstr "Ugyanaz mint a jelszó fentebb. Szükséges." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3523,7 +3523,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "" @@ -3653,13 +3653,13 @@ msgid "Name" msgstr "Név" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Szervezet" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Leírás" @@ -4406,7 +4406,7 @@ msgstr "%s nem követ figyelemmel senkit." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4525,7 +4525,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4709,7 +4709,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4758,7 +4758,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "" @@ -4766,29 +4766,25 @@ msgstr "" msgid "Author(s)" msgstr "Szerző(k)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Kedvelem" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4797,20 +4793,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "" @@ -4829,13 +4825,28 @@ msgstr "" msgid "Group leave failed." msgstr "" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Hiba a felhasználó mentésekor; érvénytelen." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Csatlakozzunk" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4858,17 +4869,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "" @@ -4920,32 +4931,32 @@ msgid "Problem saving notice." msgstr "Probléma merült fel a hír mentése közben." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" 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:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -4995,13 +5006,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5012,57 +5019,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nem sikerült létrehozni a csoportot." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nem sikerült beállítani a csoporttagságot." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar feltöltése" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Változtasd meg a jelszavad" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Email kezelés megváltoztatása" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "További opciók" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Más egyéb" @@ -5078,184 +5085,185 @@ msgid "Untitled page" msgstr "Név nélküli oldal" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Elsődleges navigáció" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kapcsolódás" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "A webhely híre" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Másodlagos navigáció" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Súgó" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Névjegy" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "GyIK" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Felhasználási feltételek" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Forrás" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kapcsolat" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "A StatusNet szoftver licence" @@ -5263,7 +5271,7 @@ msgstr "A StatusNet szoftver licence" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5271,7 +5279,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5280,7 +5288,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5289,70 +5297,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "A webhely tartalmára vonatkozó licenc" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Utána" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Előtte" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5477,7 +5485,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5492,186 +5500,206 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Jellemezd a csoportot vagy a témát %d karakterben" +msgstr[1] "Jellemezd a csoportot vagy a témát %d karakterben" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "A szervezet honlapjának URL-je" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "Hitelesítés után átirányítás erre az URL-re" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Böngésző" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Asztal" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Csak olvasható" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Írható-olvasható" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Mégse" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Csatolmányok" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Szerző" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Szolgáltató" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Hírek, ahol ez a melléklet megjelenik" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Címkék ehhez a melléklethez" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "A jelszó megváltoztatása sikertelen" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "A jelszó megváltoztatása nem engedélyezett" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkolás" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-hiba" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5680,7 +5708,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5692,52 +5720,53 @@ msgstr "" "Hírek: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "A hír kedveltként van megjelölve." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Teljes név: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Helyszín: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Honlap: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5746,131 +5775,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Hiba a közvetlen üzenet küldése közben." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, 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:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Hiba a hír elmentésekor." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Ne legyenek értesítések." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Legyenek értesítések." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Senkinek sem iratkoztál fel a híreire." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ezen személy híreire iratkoztál fel:" @@ -5878,14 +5907,14 @@ msgstr[1] "Ezen emberek híreire iratkoztál fel:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Senki sem követ figyelemmel." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ez a személy iratkozott fel a híreidre:" @@ -5893,21 +5922,21 @@ msgstr[1] "Ezek az emberek iratkoztak fel a híreidre:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nem vagy tagja semmilyen csoportnak." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Ennek a csoportnak vagy tagja:" msgstr[1] "Ezeknek a csoportoknak vagy tagja:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5949,39 +5978,60 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nem találtunk konfigurációs fájlt. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "A következő helyeken kerestem konfigurációs fájlokat: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "A telepítő futtatása kijavíthatja ezt." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Menj a telepítőhöz." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kapcsolatok" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6002,11 +6052,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Nem kedvelem ezt a hírt" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Kedvelem ezt a hírt" @@ -6026,7 +6076,7 @@ msgstr "Atom" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6528,7 +6578,7 @@ msgstr "" "keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit " "csak te láthatsz." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "írta" @@ -6673,55 +6723,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "É" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "D" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "K" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Ny" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "előzmény" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Megismételte:" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Válaszoljunk erre a hírre" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Válasz" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "A hírt megismételtük" @@ -6792,7 +6842,7 @@ msgid "Tags in %s's notices" msgstr "Címkék %s híreiben" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 4ed5b1fef8..ec031153c6 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:49+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -110,7 +110,7 @@ msgstr "Pagina non existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Iste usator non existe." @@ -354,7 +354,7 @@ msgid "This status is already a favorite." msgstr "Iste stato es ja favorite." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Non poteva crear le favorite." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "Gruppo non trovate." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Tu es ja membro de iste gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Le administrator te ha blocate de iste gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." @@ -490,7 +490,7 @@ msgstr "Tu non es membro de iste gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Non poteva remover le usator %1$s del gruppo %2$s." @@ -610,7 +610,7 @@ msgstr "" "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conto" @@ -624,7 +624,7 @@ msgstr "Pseudonymo" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasigno" @@ -654,12 +654,12 @@ msgid "No such notice." msgstr "Nota non trovate." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non pote repeter tu proprie nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Iste nota ha ja essite repetite." @@ -773,7 +773,7 @@ msgstr "Dimension invalide." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -805,7 +805,7 @@ msgid "Preview" msgstr "Previsualisation" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Deler" @@ -891,7 +891,7 @@ msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blocar iste usator" @@ -910,8 +910,8 @@ msgstr "Falleva de salveguardar le information del blocada." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Gruppo non existe." @@ -1027,7 +1027,7 @@ msgstr "Tu non es le proprietario de iste application." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Non deler iste nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deler iste nota" @@ -1123,7 +1123,7 @@ msgstr "Deler iste usator" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Apparentia" @@ -1253,7 +1253,7 @@ msgstr "Revenir al predefinitiones" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salveguardar" @@ -1373,7 +1373,7 @@ msgid "Could not update group." msgstr "Non poteva actualisar gruppo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Non poteva crear aliases." @@ -1429,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" @@ -1621,7 +1621,7 @@ msgstr "Nove adresse de e-mail entrante addite." msgid "This notice is already a favorite!" msgstr "Iste nota es ja favorite!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Disfavorir favorite" @@ -1924,7 +1924,7 @@ msgstr "Facer iste usator un administrator" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Chronologia de %s" @@ -2208,7 +2208,7 @@ msgstr "Tu es ja subscribite a iste usatores:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2342,7 +2342,7 @@ msgid "You must be logged in to leave a group." msgstr "Tu debe aperir un session pro quitar un gruppo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Tu non es membro de iste gruppo." @@ -2567,14 +2567,14 @@ msgid "New message" msgstr "Nove message" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Tu non pote inviar un message a iste usator." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nulle contento!" @@ -2583,7 +2583,7 @@ msgid "No recipient specified." msgstr "Nulle destinatario specificate." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2596,12 +2596,12 @@ msgstr "Message inviate" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Message directe a %s inviate." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Error de Ajax" @@ -2741,8 +2741,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solmente le URLs %s es permittite super HTTP simple." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -3096,7 +3096,7 @@ msgstr "Nomine complete" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina personal" @@ -3490,7 +3490,7 @@ msgstr "Identic al contrasigno hic supra. Requirite." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3652,7 +3652,7 @@ msgstr "Tu non pote repeter tu proprie nota." msgid "You already repeated that notice." msgstr "Tu ha ja repetite iste nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetite" @@ -3788,13 +3788,13 @@ msgid "Name" msgstr "Nomine" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Description" @@ -4581,7 +4581,7 @@ msgstr "%s non seque alcuno." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4707,7 +4707,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscription predefinite invalide: '%1$s' non es usator." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4902,7 +4902,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualisationes de %1$s in %2$s!" @@ -4963,7 +4963,7 @@ msgid "Plugins" msgstr "Plug-ins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4971,29 +4971,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Favorir" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s marcava le nota %s como favorite." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Impossibile processar le URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin pensa que alique es impossibile." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5004,20 +5000,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Un file de iste dimension excederea tu quota de usator de %d bytes." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un file de iste dimension excederea tu quota mensual de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nomine de file invalide." @@ -5036,13 +5032,28 @@ msgstr "Non es membro del gruppo." msgid "Group leave failed." msgstr "Le cancellation del membrato del gruppo ha fallite." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Error de salveguardar le usator; invalide." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Inscriber" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s se ha jungite al gruppo %2$s." @@ -5065,17 +5076,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nulle nomine de base de datos o DSN trovate." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Il te es prohibite inviar messages directe." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Non poteva inserer message." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Non poteva actualisar message con nove URI." @@ -5131,32 +5142,32 @@ msgid "Problem saving notice." msgstr "Problema salveguardar nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Mal typo fornite a saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Non pote revocar le rolo \"%1$s\" del usator #%2$d; non existe." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5208,15 +5219,11 @@ msgstr "Non poteva deler le indicio OMB del subscription." msgid "Could not delete subscription." msgstr "Non poteva deler subscription." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Sequer" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s seque ora %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5225,57 +5232,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Non poteva crear gruppo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Non poteva definir le URL del gruppo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Non poteva configurar le membrato del gruppo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Non poteva salveguardar le informationes del gruppo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Incargar un avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Cambiar tu contrasigno" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Designar tu profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altere optiones" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altere" @@ -5291,184 +5298,185 @@ msgid "Untitled page" msgstr "Pagina sin titulo" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigation primari del sito" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter a servicios" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Clauder session" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Crear conto" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Authenticar te a iste sito" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso del sito" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas local" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Aviso de pagina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Adjuta" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "A proposito" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "CdS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Confidentialitate" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Insignia" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" @@ -5476,7 +5484,7 @@ msgstr "Licentia del software StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5486,7 +5494,7 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** es un servicio de microblog." @@ -5495,7 +5503,7 @@ msgstr "**%%site.name%%** es un servicio de microblog." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5507,73 +5515,73 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licentia del contento del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." #. 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Pagination" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Post" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Ante" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Expectava le elemento-radice de un syndication, ma recipeva un documento XML " "integre." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Non pote ancora tractar contento remote." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Non pote ancora tractar contento XML incastrate." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Non pote ancora tractar contento Base64 incastrate." @@ -5700,7 +5708,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentava revocar un indicio non cognoscite." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falleva de deler le indicio revocate." @@ -5715,188 +5723,208 @@ msgid "Icon for this application" msgstr "Icone pro iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Describe tu application in %d characteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Describe tu application in %d characteres" +msgstr[1] "Describe tu application in %d characteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Describe tu application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL del pagina initial de iste application" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de origine" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation responsabile de iste application" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL del pagina initial del organisation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL verso le qual rediriger post authentication" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navigator" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Scriptorio" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typo de application, navigator o scriptorio" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Lectura solmente" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lectura e scriptura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinite pro iste application: lectura solmente, o lectura e " "scriptura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancellar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lectura-scriptura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "lectura solmente" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Accesso \"%2$s\" approbate le %1$s." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Annexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Providitor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas ubi iste annexo appare" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquettas pro iste annexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Cambio del contrasigno fallite" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Cambio del contrasigno non permittite" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blocar" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultatos del commando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Error de Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Commando complete" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Commando fallite" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Non existe un nota con iste ID." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Le usator non ha un ultime nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Non poteva trovar un usator con pseudonymo %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Non poteva trovar un usator local con pseudonymo %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Pardono, iste commando non es ancora implementate." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha multe senso pulsar te mesme!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Pulsata inviate a %s." @@ -5905,7 +5933,7 @@ msgstr "Pulsata inviate a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5917,52 +5945,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nota marcate como favorite." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s se jungeva al gruppo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s quitava le gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nomine complete: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Loco: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pagina personal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "A proposito: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5973,111 +6002,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Error durante le invio del message directe." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nota de %s repetite." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Nota troppo longe - maximo es %d characteres, tu inviava %d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Responsa a %s inviate." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Errur durante le salveguarda del nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifica le nomine del usator al qual subscriber te." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile subscriber se a profilos OMB per medio de un commando." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscribite a %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifica le nomine del usator al qual cancellar le subscription." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Subscription a %s cancellate." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Commando non ancora implementate." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notification disactivate." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Non pote disactivar notification." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notification activate." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Non pote activar notification." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Le commando de apertura de session es disactivate." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6086,20 +6115,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Subscription de %s cancellate." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Tu non es subscribite a alcuno." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Tu es subscribite a iste persona:" @@ -6107,14 +6136,14 @@ msgstr[1] "Tu es subscribite a iste personas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Necuno es subscribite a te." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Iste persona es subscribite a te:" @@ -6122,21 +6151,21 @@ msgstr[1] "Iste personas es subscribite a te:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Tu non es membro de alcun gruppo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Tu es membro de iste gruppo:" msgstr[1] "Tu es membro de iste gruppos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6216,39 +6245,61 @@ msgstr "" "tracks - non ancora implementate.\n" "tracking - non ancora implementate.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nulle file de configuration trovate. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Io cercava files de configuration in le sequente locos: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Considera executar le installator pro reparar isto." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir al installator." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualisationes per messageria instantanee (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualisationes per SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexiones" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applicationes autorisate connectite" @@ -6271,11 +6322,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Apparentia predefinite restaurate." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Disfavorir iste nota" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favorir iste nota" @@ -6295,7 +6346,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Amico de un amico" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Syndicationes" @@ -6830,7 +6881,7 @@ msgstr "" "altere usatores in conversation. Altere personas pote inviar te messages que " "solmente tu pote leger." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "via" @@ -6983,55 +7034,55 @@ msgstr "" "previste. Per favor reproba plus tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "in" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetite per" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a iste nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nota repetite" @@ -7102,7 +7153,7 @@ msgid "Tags in %s's notices" msgstr "Etiquettas in le notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Incognite" @@ -7488,16 +7539,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "File de copia de reserva pro le usator %s (%s)\n" +msgstr "File de copia de reserva pro le usator %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nulle usator specificate; le usator de reserva es usate.\n" +msgstr "Nulle usator specificate; le usator de reserva es usate." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "%d entratas in copia de reserva.\n" +msgstr "%d entratas in copia de reserva." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s marcava le nota %s como favorite." + +#~ msgid "%s is now following %s." +#~ msgstr "%s seque ora %s." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 5bbff5b7ed..c58390a607 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:50+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:13+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "Stillingar fyrir mynd" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -118,7 +118,7 @@ msgstr "Ekkert þannig merki." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Enginn svoleiðis notandi." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Þetta babl er nú þegar í uppáhaldi!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." @@ -478,19 +478,19 @@ msgid "Group not found." msgstr "Fannst ekki." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Þú ert nú þegar meðlimur í þessum hópi" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Gat ekki skráð hópmeðlimi." @@ -503,7 +503,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Gat ekki búið til hóp." @@ -620,7 +620,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Aðgangur" @@ -634,7 +634,7 @@ msgstr "Stuttnefni" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lykilorð" @@ -665,13 +665,13 @@ msgid "No such notice." msgstr "Ekkert svoleiðis babl." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Get ekki kveikt á tilkynningum." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Get ekki eytt þessu babli." @@ -783,7 +783,7 @@ msgstr "Ótæk stærð." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Mynd" @@ -814,7 +814,7 @@ msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Eyða" @@ -902,7 +902,7 @@ msgstr "Já" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Loka á þennan notanda" @@ -921,8 +921,8 @@ msgstr "Mistókst að vista upplýsingar um notendalokun" #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Enginn þannig hópur." @@ -1043,7 +1043,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1106,7 +1106,7 @@ msgid "Do not delete this notice" msgstr "Get ekki eytt þessu babli." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Eyða þessu babli" @@ -1139,7 +1139,7 @@ msgstr "Eyða þessu babli" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Vista" @@ -1406,7 +1406,7 @@ msgid "Could not update group." msgstr "Gat ekki uppfært hóp." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Gat ekki búið til uppáhald." @@ -1464,7 +1464,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1661,7 +1661,7 @@ msgstr "Nýju móttökutölvupóstfangi bætt við." msgid "This notice is already a favorite!" msgstr "Þetta babl er nú þegar í uppáhaldi!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Ekki lengur í uppáhaldi" @@ -1975,7 +1975,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Rás %s" @@ -2254,7 +2254,7 @@ msgstr "Þú ert nú þegar í áskrift að þessum notendum:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2390,7 +2390,7 @@ msgid "You must be logged in to leave a group." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Þú ert ekki meðlimur í þessum hópi." @@ -2622,14 +2622,14 @@ msgid "New message" msgstr "Ný skilaboð" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Þú getur ekki sent þessum notanda skilaboð." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ekkert innihald!" @@ -2638,7 +2638,7 @@ msgid "No recipient specified." msgstr "Enginn móttökuaðili tilgreindur." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2652,12 +2652,12 @@ msgstr "Skilaboð" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Bein skilaboð send til %s" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax villa" @@ -2794,8 +2794,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -3164,7 +3164,7 @@ msgstr "Fullt nafn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimasíða" @@ -3555,7 +3555,7 @@ msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Tölvupóstur" @@ -3721,7 +3721,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." msgid "You already repeated that notice." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "Í sviðsljósinu" @@ -3859,14 +3859,14 @@ msgid "Name" msgstr "Stuttnefni" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Uppröðun" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Lýsing" @@ -4629,7 +4629,7 @@ msgstr "%1$s er að hlusta á bablið þitt á %2$s." msgid "Jabber" msgstr "Jabber snarskilaboðaþjónusta" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4758,7 +4758,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Persónuleg síða" @@ -4962,7 +4962,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" @@ -5011,7 +5011,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -5020,29 +5020,25 @@ msgstr "Persónulegt" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Uppáhald" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5051,20 +5047,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Ótæk stærð." @@ -5087,13 +5083,28 @@ msgstr "Gat ekki uppfært hóp." msgid "Group leave failed." msgstr "Hópssíðan" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Villa kom upp í vistun notanda: ótækt." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Gerast meðlimur" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5117,18 +5128,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Villa kom upp við að senda bein skilaboð" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Gat ekki skeytt skilaboðum inn í." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." @@ -5186,33 +5197,33 @@ msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5266,13 +5277,9 @@ msgstr "Gat ekki vistað áskrift." msgid "Could not delete subscription." msgstr "Gat ekki vistað áskrift." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5283,59 +5290,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Skilaboð til %1$s á %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Gat ekki búið til hóp." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Gat ekki búið til hóp." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Gat ekki vistað áskrift." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Breyta persónulegu stillingunum þínum" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Hlaða upp einkennismynd" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Breyta lykilorðinu þínu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Breyta tölvupóstumsjón" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Persónuleg síða notanda" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Aðrir valkostir" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Annað" @@ -5351,44 +5358,44 @@ msgid "Untitled page" msgstr "Ónafngreind síða" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persónulegt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Breyta lykilorðinu þínu" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Tengjast" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5396,84 +5403,84 @@ msgstr "Stikl aðalsíðu" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Stjórnandi" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjóða" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig inn á síðuna" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Einkennismerki" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til nýjan hóp" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Nýskrá" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Innskráning" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjálp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5481,67 +5488,68 @@ msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Babl vefsíðunnar" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Staðbundin sýn" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Babl síðunnar" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjálp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Um" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Spurt og svarað" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Friðhelgi" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Frumþula" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Pot" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" @@ -5549,7 +5557,7 @@ msgstr "Hugbúnaðarleyfi StatusNet" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5559,7 +5567,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er örbloggsþjónusta." @@ -5568,7 +5576,7 @@ msgstr "**%%site.name%%** er örbloggsþjónusta." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5580,71 +5588,71 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Uppröðun" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Eftir" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Áður" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5783,7 +5791,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5798,194 +5806,212 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" +msgstr[1] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Lýsing" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Frumþula" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Hætta við" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Endurheimta" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 #, fuzzy msgid "Provider" msgstr "Forsýn" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Lykilorðabreyting" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Lykilorðabreyting" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Loka" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Niðurstöður skipunar" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax villa" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Fullkláruð skipun" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Misheppnuð skipun" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Enginn persónuleg síða með þessu einkenni." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Notandi hefur ekkert nýtt babl" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Ýtt við notanda" @@ -5994,7 +6020,7 @@ msgstr "Ýtt við notanda" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -6003,52 +6029,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Babl gert að uppáhaldi." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt nafn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Um: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6057,128 +6084,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Villa kom upp við að senda bein skilaboð" #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Babl sent inn" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Villa kom upp í stillingu notanda." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svara þessu babli" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Vandamál komu upp við að vista babl." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Þú ert ekki áskrifandi." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Tilkynningar af." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Get ekki slökkt á tilkynningum." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Tilkynningar á." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Get ekki kveikt á tilkynningum." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Þú ert ekki áskrifandi." @@ -6186,7 +6213,7 @@ msgstr "Þú ert ekki áskrifandi." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" @@ -6194,7 +6221,7 @@ msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." @@ -6202,7 +6229,7 @@ msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." @@ -6210,7 +6237,7 @@ msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Þú ert ekki meðlimur í þessum hópi." @@ -6218,14 +6245,14 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6267,42 +6294,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Enginn staðfestingarlykill." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Skrá þig inn á síðuna" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Snarskilaboð" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Færslur sendar með SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tengjast" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6325,11 +6373,11 @@ msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Taka þetta babl út sem uppáhald" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Setja þetta babl í uppáhald" @@ -6349,7 +6397,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6790,7 +6838,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr "frá" @@ -6940,58 +6988,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Nei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ekkert innihald!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Í sviðsljósinu" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Babl sent inn" @@ -7063,7 +7111,7 @@ msgid "Tags in %s's notices" msgstr "Merki í babli %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Óþekkt aðgerð" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 6b4bb2721d..cf0a5fffaf 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:14+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -114,7 +114,7 @@ msgstr "Pagina inesistente." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utente inesistente." @@ -356,7 +356,7 @@ msgid "This status is already a favorite." msgstr "Questo messaggio è già un preferito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Impossibile creare un preferito." @@ -472,18 +472,18 @@ msgid "Group not found." msgstr "Gruppo non trovato." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Fai già parte di quel gruppo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." @@ -495,7 +495,7 @@ msgstr "Non fai parte di questo gruppo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Impossibile rimuovere l'utente %1$s dal gruppo %2$s." @@ -614,7 +614,7 @@ msgstr "" "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Account" @@ -628,7 +628,7 @@ msgstr "Soprannome" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -658,12 +658,12 @@ msgid "No such notice." msgstr "Nessun messaggio." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Non puoi ripetere un tuo messaggio." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Hai già ripetuto quel messaggio." @@ -774,7 +774,7 @@ msgstr "Dimensione non valida." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Immagine" @@ -806,7 +806,7 @@ msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Elimina" @@ -892,7 +892,7 @@ msgstr "Sì" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blocca questo utente" @@ -911,8 +911,8 @@ msgstr "Salvataggio delle informazioni per il blocco non riuscito." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nessuna gruppo." @@ -1028,7 +1028,7 @@ msgstr "Questa applicazione non è di tua proprietà." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Non eliminare il messaggio" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -1123,7 +1123,7 @@ msgstr "Elimina questo utente" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aspetto" @@ -1251,7 +1251,7 @@ msgstr "Reimposta i valori predefiniti" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salva" @@ -1371,7 +1371,7 @@ msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." @@ -1428,7 +1428,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annulla" @@ -1622,7 +1622,7 @@ msgstr "Nuovo indirizzo email di ricezione aggiunto." msgid "This notice is already a favorite!" msgstr "Questo messaggio è già un preferito!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Rimuovi preferito" @@ -1926,7 +1926,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Attività di %s" @@ -2210,7 +2210,7 @@ msgstr "Hai già un abbonamento a questi utenti:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2343,7 +2343,7 @@ msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Non fai parte di quel gruppo." @@ -2564,14 +2564,14 @@ msgid "New message" msgstr "Nuovo messaggio" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nessun contenuto!" @@ -2580,7 +2580,7 @@ msgid "No recipient specified." msgstr "Nessun destinatario specificato." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." @@ -2591,12 +2591,12 @@ msgstr "Messaggio inviato" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Messaggio diretto a %s inviato." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Errore di Ajax" @@ -2736,8 +2736,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Solo URL %s attraverso HTTP semplice." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -3093,7 +3093,7 @@ msgstr "Nome" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Pagina web" @@ -3487,7 +3487,7 @@ msgstr "Stessa password di sopra; richiesta" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3649,7 +3649,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi." msgid "You already repeated that notice." msgstr "Hai già ripetuto quel messaggio." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Ripetuti" @@ -3783,13 +3783,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizzazione" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" @@ -4572,7 +4572,7 @@ msgstr "%s non sta seguendo nessuno." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4700,7 +4700,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profilo" @@ -4894,7 +4894,7 @@ msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Messaggi da %1$s su %2$s!" @@ -4955,7 +4955,7 @@ msgid "Plugins" msgstr "Plugin" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versione" @@ -4963,29 +4963,25 @@ msgstr "Versione" msgid "Author(s)" msgstr "Autori" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Preferisci" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4996,7 +4992,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5004,14 +5000,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Un file di questa dimensione supererebbe la tua quota mensile di %d byte." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "Dimensione non valida." @@ -5031,13 +5027,28 @@ msgstr "Non si fa parte del gruppo." msgid "Group leave failed." msgstr "Uscita dal gruppo non riuscita." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Errore nel salvare l'utente; non valido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Iscriviti" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5060,17 +5071,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Ti è proibito inviare messaggi diretti." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Impossibile inserire il messaggio." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." @@ -5126,32 +5137,32 @@ msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5203,13 +5214,9 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Could not delete subscription." msgstr "Impossibile salvare l'abbonamento." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5220,57 +5227,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Impossibile creare il gruppo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Impossibile impostare l'URI del gruppo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Impossibile salvare le informazioni del gruppo locale." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Carica un'immagine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modifica la tua password" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Modifica la gestione dell'email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Progetta il tuo profilo" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Altre opzioni" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Altro" @@ -5286,184 +5293,185 @@ msgid "Untitled page" msgstr "Pagina senza nome" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Messaggio del sito" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Viste locali" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Pagina messaggio" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Aiuto" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Informazioni" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Sorgenti" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contatti" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Badge" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" @@ -5471,7 +5479,7 @@ msgstr "Licenza del software StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5481,7 +5489,7 @@ msgstr "" "(%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** è un servizio di microblog." @@ -5490,7 +5498,7 @@ msgstr "**%%site.name%%** è un servizio di microblog." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5502,27 +5510,27 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licenza del contenuto del sito" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " @@ -5530,7 +5538,7 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5538,39 +5546,39 @@ msgstr "" "licenza %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginazione" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Successivi" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Precedenti" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Atteso un elemento root del feed, ma ricevuto un documento XML intero." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Impossibile gestire contenuti remoti." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Impossibile gestire contenuti XML incorporati." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." @@ -5697,7 +5705,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5712,187 +5720,207 @@ msgid "Icon for this application" msgstr "Icona per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descrivi l'applicazione in %d caratteri" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descrivi l'applicazione in %d caratteri" +msgstr[1] "Descrivi l'applicazione in %d caratteri" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descrivi l'applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL della pagina web di questa applicazione" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL sorgente" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizzazione responsabile per questa applicazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL della pagina web dell'organizzazione" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL verso cui redirigere dopo l'autenticazione" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo di applicazione, browser o desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Sola lettura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lettura-scrittura" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annulla" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "Lettura-scrittura" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "Sola lettura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Approvata %1$s - Accesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Allegati" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autore" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Messaggi in cui appare questo allegato" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etichette per questo allegato" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Modifica della password non riuscita" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "La modifica della password non è permessa" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blocca" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Risultati comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Errore di Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando completato" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando non riuscito" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Un messaggio con quel ID non esiste." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "L'utente non ha un ultimo messaggio." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Impossibile trovare un utente col soprannome %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Questo comando non è ancora implementato." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Non ha molto senso se cerchi di richiamarti!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Richiamo inviato a %s." @@ -5901,7 +5929,7 @@ msgstr "Richiamo inviato a %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5913,52 +5941,53 @@ msgstr "" "Messaggi: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Posizione: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Informazioni: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5969,131 +5998,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Errore nell'inviare il messaggio diretto." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Messaggio da %s ripetuto." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Errore nel ripetere il messaggio." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Risposta a %s inviata." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Errore nel salvare il messaggio." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Specifica il nome dell'utente a cui abbonarti." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifiche disattivate." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifiche attivate." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Il comando di accesso è disabilitato." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Il tuo abbonamento è stato annullato." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Persona di cui hai già un abbonamento:" @@ -6101,14 +6130,14 @@ msgstr[1] "Persone di cui hai già un abbonamento:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nessuno è abbonato ai tuoi messaggi." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Questa persona è abbonata ai tuoi messaggi:" @@ -6116,21 +6145,21 @@ msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Non fai parte di alcun gruppo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Non fai parte di questo gruppo:" msgstr[1] "Non fai parte di questi gruppi:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6212,41 +6241,63 @@ msgstr "" "tracks - non ancora implementato\n" "tracking - non ancora implementato\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Non è stato trovato alcun file di configurazione. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "I file di configurazione sono stati cercati in questi posti: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "Potrebbe essere necessario lanciare il programma d'installazione per " "correggere il problema." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Vai al programma d'installazione." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Messaggi via messaggistica istantanea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Messaggi via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connessioni" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Applicazioni collegate autorizzate" @@ -6269,11 +6320,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Valori predefiniti ripristinati." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Togli questo messaggio dai preferiti" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Rendi questo messaggio un preferito" @@ -6293,7 +6344,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6830,7 +6881,7 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "via" @@ -6980,55 +7031,55 @@ msgstr "" "previsto. Riprova più tardi." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "presso" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in una discussione" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Ripetuto da" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Messaggio ripetuto" @@ -7099,7 +7150,7 @@ msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Sconosciuto" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 22bd4a67f1..30b84e9691 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:16+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "アクセス設定の保存" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -114,7 +114,7 @@ msgstr "そのようなタグはありません。" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "そのようなユーザはいません。" @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "このステータスはすでにお気に入りです。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "お気に入りを作成できません。" @@ -474,18 +474,18 @@ msgid "Group not found." msgstr "見つかりません。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "すでにこのグループのメンバーです。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "管理者によってこのグループからブロックされています。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ユーザ %1$s はグループ %2$s に参加できません。" @@ -497,7 +497,7 @@ msgstr "このグループのメンバーではありません。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "ユーザ %1$s をグループ %2$s から削除できません。" @@ -612,7 +612,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "アカウント" @@ -626,7 +626,7 @@ msgstr "ニックネーム" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "パスワード" @@ -656,12 +656,12 @@ msgid "No such notice." msgstr "そのようなつぶやきはありません。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "あなたのつぶやきを繰り返せません。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "すでにつぶやきを繰り返しています。" @@ -771,7 +771,7 @@ msgstr "不正なサイズ。" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "アバター" @@ -802,7 +802,7 @@ msgid "Preview" msgstr "プレビュー" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "削除" @@ -891,7 +891,7 @@ msgstr "Yes" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "このユーザをブロックする" @@ -910,8 +910,8 @@ msgstr "ブロック情報の保存に失敗しました。" #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "そのようなグループはありません。" @@ -1027,7 +1027,7 @@ msgstr "このアプリケーションのオーナーではありません。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "このつぶやきを削除できません。" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -1123,7 +1123,7 @@ msgstr "このユーザを削除" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "デザイン" @@ -1252,7 +1252,7 @@ msgstr "デフォルトへリセットする" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1372,7 +1372,7 @@ msgid "Could not update group." msgstr "グループを更新できません。" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "別名を作成できません。" @@ -1428,7 +1428,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1627,7 +1627,7 @@ msgstr "新しい入ってくるメールアドレスが追加されました。 msgid "This notice is already a favorite!" msgstr "このつぶやきはすでにお気に入りです!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "お気に入りをやめる" @@ -1935,7 +1935,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s のタイムライン" @@ -2218,7 +2218,7 @@ msgstr "すでにこれらのユーザをフォローしています:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2354,7 +2354,7 @@ msgid "You must be logged in to leave a group." msgstr "グループから離れるにはログインしていなければなりません。" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "あなたはそのグループのメンバーではありません。" @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "新しいメッセージ" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "このユーザにメッセージを送ることはできません。" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "コンテンツがありません!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "受取人が書かれていません。" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2604,12 +2604,12 @@ msgstr "メッセージを送りました" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "ダイレクトメッセージを %s に送りました" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax エラー" @@ -2748,8 +2748,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" @@ -3103,7 +3103,7 @@ msgstr "フルネーム" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "ホームページ" @@ -3498,7 +3498,7 @@ msgstr "上のパスワードと同じです。 必須。" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "メール" @@ -3656,7 +3656,7 @@ msgstr "自分のつぶやきは繰り返せません。" msgid "You already repeated that notice." msgstr "すでにそのつぶやきを繰り返しています。" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "繰り返された" @@ -3792,13 +3792,13 @@ msgid "Name" msgstr "名前" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "組織" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "概要" @@ -4599,7 +4599,7 @@ msgstr "%s はだれも言うことを聞いていません。" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4724,7 +4724,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "プロファイル" @@ -4919,7 +4919,7 @@ msgstr "[グループを探して](%%action.groupsearch%%)それに加入して #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s から %2$s 上の更新をしました!" @@ -4970,7 +4970,7 @@ msgid "Plugins" msgstr "プラグイン" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "バージョン" @@ -4978,29 +4978,25 @@ msgstr "バージョン" msgid "Author(s)" msgstr "作者" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "お気に入り" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, fuzzy, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5012,7 +5008,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5020,14 +5016,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "不正なサイズ。" @@ -5047,13 +5043,28 @@ msgstr "グループの一部ではありません。" msgid "Group leave failed." msgstr "グループ脱退に失敗しました。" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "ユーザ保存エラー; 不正なユーザ" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "参加" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5077,17 +5088,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "あなたはダイレクトメッセージを送るのが禁止されています。" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "メッセージを追加できません。" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "新しいURIでメッセージをアップデートできませんでした。" @@ -5142,32 +5153,32 @@ msgid "Problem saving notice." msgstr "つぶやきを保存する際に問題が発生しました。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" 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:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5218,13 +5229,9 @@ msgstr "フォローを保存できません。" msgid "Could not delete subscription." msgstr "フォローを保存できません。" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5235,58 +5242,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "ようこそ %1$s、@%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "グループを作成できません。" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "グループを作成できません。" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "フォローを保存できません。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "プロファイル設定の変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "アバターのアップロード" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "パスワードの変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "メールの扱いを変更" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "あなたのプロファイルをデザイン" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "その他のオプション" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "その他" @@ -5302,126 +5309,126 @@ msgid "Untitled page" msgstr "名称未設定ページ" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプロファイルと友人のタイムライン" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "パーソナル" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "パスワードの変更" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "接続" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "接続" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "基本サイト設定" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "管理者" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "友人や同僚が %s で加わるよう誘ってください。" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "招待" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトのテーマ" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "ロゴ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "新しいグループを作成" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ログイン" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ヘルプ" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ヘルプ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "もっとグループを検索" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5429,66 +5436,67 @@ msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "サイトつぶやき" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "ローカルビュー" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "ページつぶやき" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "ヘルプ" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "About" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "よくある質問" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "プライバシー" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "ソース" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "連絡先" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "バッジ" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" @@ -5496,7 +5504,7 @@ msgstr "StatusNet ソフトウェアライセンス" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5506,7 +5514,7 @@ msgstr "" "イクロブログサービスです。 " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** はマイクロブログサービスです。" @@ -5515,7 +5523,7 @@ msgstr "**%%site.name%%** はマイクロブログサービスです。" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5527,70 +5535,70 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "サイト内容ライセンス" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "ページ化" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "前>>" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5721,7 +5729,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5736,192 +5744,211 @@ msgid "Icon for this application" msgstr "このアプリケーションのアイコン" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "あなたのアプリケーションを %d 字以内記述" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "あなたのアプリケーションを %d 字以内記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "あなたのアプリケーションを記述" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "このアプリケーションのホームページの URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "ソース URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "このアプリケーションに責任がある組織" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "組織のホームページのURL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "認証の後にリダイレクトするURL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "ブラウザ" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "デスクトップ" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "アプリケーション、ブラウザ、またはデスクトップのタイプ" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "リードオンリー" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "リードライト" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "このアプリケーションのためのデフォルトアクセス: リードオンリー、またはリード" "ライト" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "中止" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 #, fuzzy msgid "read-write" msgstr "リードライト" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 #, fuzzy 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "回復" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "添付" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "作者" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "プロバイダ" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "この添付が現れるつぶやき" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "この添付のタグ" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "パスワード変更に失敗しました" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "パスワード変更は許可されていません" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "ブロック" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "コマンド結果" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax エラー" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "コマンド完了" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "コマンド失敗" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "その ID によるつぶやきは存在していません" #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "利用者はまだつぶやいていません" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "ユーザを更新できません" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "すみません、このコマンドはまだ実装されていません。" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "それは自分自身への合図で多くは意味がありません!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "%s へ合図を送りました" @@ -5930,7 +5957,7 @@ msgstr "%s へ合図を送りました" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5942,52 +5969,53 @@ msgstr "" "つぶやき: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "お気に入りにされているつぶやき。" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "フルネーム: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "場所: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "ホームページ: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "About: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5996,169 +6024,169 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "ダイレクトメッセージ送信エラー。" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "%s からつぶやきが繰り返されています" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "つぶやき繰り返しエラー" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "つぶやきが長すぎます - 最大 %d 字、あなたが送ったのは %d" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%s へ返信を送りました" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "つぶやき保存エラー。" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy 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:664 +#: lib/command.php:659 #, fuzzy 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "コマンドはまだ実装されていません。" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "通知オフ。" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "通知をオフできません。" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "通知オン。" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "通知をオンできません。" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 #, fuzzy msgid "Login command is disabled." msgstr "ログインコマンドが無効になっています。" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "あなたはこの人にフォローされています:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "この人はあなたにフォローされている:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6200,41 +6228,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "コンフィギュレーションファイルがありません。 " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" "ん。" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "インストーラへ。" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "インスタントメッセンジャー(IM)での更新" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "SMSでの更新" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "接続" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" @@ -6257,11 +6307,11 @@ msgstr "" msgid "Design defaults restored." msgstr "デフォルトのデザインを回復。" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "このつぶやきのお気に入りをやめる" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "このつぶやきをお気に入りにする" @@ -6281,7 +6331,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6786,7 +6836,7 @@ msgstr "" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "メッセージを送ることができます。" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "from" @@ -6940,59 +6990,59 @@ msgstr "" "度試みてください" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "北" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 #, fuzzy msgid "S" msgstr "南" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 #, fuzzy msgid "E" msgstr "東" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 #, fuzzy msgid "W" msgstr "西" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "at" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "このつぶやきへ返信" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "つぶやきを繰り返しました" @@ -7063,7 +7113,7 @@ msgid "Tags in %s's notices" msgstr "%s のつぶやきのタグ" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "不明" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index db46dcaab4..9f1cb23744 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:55+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:17+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -79,7 +79,7 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "შეინახე" @@ -110,7 +110,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." @@ -352,7 +352,7 @@ msgid "This status is already a favorite." msgstr "ეს სტატუსი უკვე ფავორიტია." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "ფავორიტის შექმნა ვერ მოხერხდა." @@ -465,18 +465,18 @@ msgid "Group not found." msgstr "ჯგუფი ვერ მოიძებნა." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "თქვენ დაბლოკილი ხართ ამ ჯგუფიდან ადმინისტრატორის მიერ." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." @@ -488,7 +488,7 @@ msgstr "თვენ არ ხართ ამ ჯგუფის წევრ #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "მომხმარებლ %1$s-ის გარიცხვა ჯგუფიდან %2$s ვერ მოხერხდა." @@ -600,7 +600,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "ანგარიში" @@ -614,7 +614,7 @@ msgstr "მეტსახელი" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "პაროლი" @@ -644,12 +644,12 @@ msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "ეს შეტყობინება უკვე გამეორებულია." @@ -759,7 +759,7 @@ msgstr "ზომა არასწორია." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "ავატარი" @@ -791,7 +791,7 @@ msgid "Preview" msgstr "წინასწარი გადახედვა" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "წაშლა" @@ -874,7 +874,7 @@ msgstr "დიახ" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "დაბლოკე ეს მომხმარებელი" @@ -893,8 +893,8 @@ msgstr "დაბლოკვის შესახებ ინფორმა #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "ასეთი ჯგუფი ვერ მოიძებნა." @@ -1010,7 +1010,7 @@ msgstr "თქვენ არ ხართ ამ აპლიკაციი #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1072,7 +1072,7 @@ msgid "Do not delete this notice" msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "შეტყობინების წაშლა" @@ -1103,7 +1103,7 @@ msgstr "ამ მომხმარებლის წაშლა" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "ამ მომხმარებლის წაშლა" @@ -1232,7 +1232,7 @@ msgstr "პირვანდელის პარამეტრების #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "შენახვა" @@ -1352,7 +1352,7 @@ msgid "Could not update group." msgstr "ჯგუფის განახლება ვერ მოხერხდა." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" @@ -1408,7 +1408,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "გაუქმება" @@ -1601,7 +1601,7 @@ msgstr "დამატებულია ახალი შემომავ msgid "This notice is already a favorite!" msgstr "ეს შეტყობინება უკვე რჩეულია!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "რჩეულის გაუქმება" @@ -1903,7 +1903,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s-ის ნაკადი" @@ -2185,7 +2185,7 @@ msgstr "თქვენ უკვე გამოწერილი გაქვ #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2321,7 +2321,7 @@ msgid "You must be logged in to leave a group." msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." @@ -2542,14 +2542,14 @@ msgid "New message" msgstr "ახალი შეტყობინება" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "ამ მომხმარებელს შეტყობინებას ვერ გაუგზავნი." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "შიგთავსი არ არის!" @@ -2558,7 +2558,7 @@ msgid "No recipient specified." msgstr "მიმღები მითითებული არ არის." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "ნუ გაუგზავნი შეტყობინებას საკუთარ თავს; უბრალოდ ჩუმად ჩაუჩურჩულე." @@ -2569,12 +2569,12 @@ msgstr "შეტყობინება გაგზავნილია" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "პირდაპირი შეტყობინება გაეგზავნა %s–ს." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax შეცდომა" @@ -2710,8 +2710,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "გთხოვთ გამოიყენოთ მხოლოდ %s URL–ები წმინდა HTTP მეთოდით." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "მონაცემთა ფორმატი მხარდაჭერილი არ არის." @@ -3066,7 +3066,7 @@ msgstr "სრული სახელი" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "ვებ. გვერსი" @@ -3457,7 +3457,7 @@ msgstr "იგივე, რაც პაროლი ზევით. სავ #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ელ. ფოსტა" @@ -3619,7 +3619,7 @@ msgstr "საკუთარი შეტყობინების გამ msgid "You already repeated that notice." msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "გამეორებული" @@ -3753,13 +3753,13 @@ msgid "Name" msgstr "დასახელება" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "ორგანიზაცია" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "აღწერა" @@ -4520,7 +4520,7 @@ msgstr "%s არავის უსმენს." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4647,7 +4647,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "პროფილი" @@ -4842,7 +4842,7 @@ msgstr "სცადეთ [ჯგუფების მოძებნა](%%ac #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%1$s-ს განახლებები %2$s-ზე!" @@ -4903,7 +4903,7 @@ msgid "Plugins" msgstr "დამატებები" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "ვერსია" @@ -4911,29 +4911,25 @@ msgstr "ვერსია" msgid "Author(s)" msgstr "ავტორი(ები)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "რჩეული" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "ვერ ვამოუშავებ URL '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "რობინი ფიქრობს რაღაც შეუძლებელია." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4944,7 +4940,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4952,7 +4948,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -4960,7 +4956,7 @@ msgstr "" "ბაიტს." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "ფაილის არასწორი სახელი." @@ -4979,13 +4975,28 @@ msgstr "ჯგუფის წევრი არ ხართ." msgid "Group leave failed." msgstr "ჯგუფის დატოვება ვერ მოხერხდა." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "გაერთიანება" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5008,17 +5019,17 @@ msgid "No database name or DSN found anywhere." msgstr "ბაზის სახელი ან DSN ვერსად ვერ მოიძებნა." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "თქვენ აგეკრძალათ პირდაპირი შეტყობინებების გაგზავნის უფლება." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "შეტყობინების ჩასმა ვერ მოხერხდა." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "შეტყობინების ახალი URI-თ განახლება ვერ მოხერხდა." @@ -5074,25 +5085,25 @@ msgid "Problem saving notice." msgstr "პრობლემა შეტყობინების შენახვისას." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5100,7 +5111,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5152,13 +5163,9 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Could not delete subscription." msgstr "გამოწერის წაშლა ვერ მოხერხდა." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5169,57 +5176,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "ჯგუფის შექმნა ვერ მოხერხდა." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "ჯგუფის URI-ს მინიჭება ვერ მოხერხდა." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "ჯგუფის წევრობის მინიჭება ვერ მოხერხდა." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "შეცვალე პროფილის პარამეტრები" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ატვირთე ავატარი" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "შეცვალე პაროლი" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "ელ. ფოსტის მართვა" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "პროფილის პარამეტრები" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "სხვა ოფციები" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "სხვა" @@ -5235,184 +5242,185 @@ msgid "Untitled page" msgstr "უსათაურო გვერდი" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "საიტის ძირითადი ნავიგაცია" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "პირადი პროფილი და მეგობრების ნაკადი" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "პირადი" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "შეცვალე ელ. ფოსტა, ავატარი, პაროლი, პროფილი" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "სერვისებთან დაკავშირება" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "კავშირი" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "საიტის კონფიგურაცია" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "ადმინი" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "მოწვევა" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "გასვლა საიტიდან" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "გასვლა" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "გახსენი ანგარიში" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "რეგისტრაცია" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "საიტზე შესვლა" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "შესვლა" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "დამეხმარეთ!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "დახმარება" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "მოძებნე ხალხი ან ტექსტი" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "ძიება" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "საიტის შეტყობინება" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "ლოკალური ხედები" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "გვერდის შეტყობინება" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "საიტის მეორადი ნავიგაცია" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "დახმარება" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "საიტის შესახებ" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ხდკ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "მპ" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "პირადი" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "წყარო" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "კონტაქტი" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "იარლიყი" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet კოდის ლიცენზია" @@ -5420,7 +5428,7 @@ msgstr "StatusNet კოდის ლიცენზია" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5430,7 +5438,7 @@ msgstr "" "(%%site.broughtbyurl%%)-ს მიერ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** არის მიკრობლოგინგის სერვისი." @@ -5439,7 +5447,7 @@ msgstr "**%%site.name%%** არის მიკრობლოგინგი #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5451,71 +5459,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "საიტის შიგთავსის ლიცენზია" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s ის შიგთავსი და მონაცემები არის პირადული და კონფიდენციალური." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "შიგთავსი და მონაცემები %1$s-ის საკუთრებაა. ყველა უფლება დაცულია." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "გვერდებათ დაყოფა" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "წინა" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "ჯერჯერობით ვერ ვამუშავებ დაშორებულ შიგთავსს." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5642,7 +5650,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5657,188 +5665,207 @@ msgid "Icon for this application" msgstr "ამ აპლიკაციის ხატულა" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "აღწერეთ თქვენი აპლიკაცია %d სიმბოლოთი" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "აღწერეთ თქვენი აპლიკაცია %d სიმბოლოთი" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "აღწერეთ თქვენი აპლიკაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "აპლიკაციის საწყისი გვერდის URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "წყაროს URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "ამ აპლიკაციაზე პასუხისმგებელი ორგანიზაცია" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "ორგანიზაციის საწყისი გვერდის URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "ავტორიზაციის შემდეგ გადასამისამართებელი URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "ბროუზერი" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "ინსტალირებადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "აპლიკაციის ტიპი, ბროუზერისთვის ან ინსტალირებადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "მხოლოდ წაკითხვადი" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "კიტხვა-წერადი" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "შესვლის პირვანდელი მდგომარეობა ამ აპლიკაციისთვის: მხოლოდ წაკითხვადი, ან " "კითხვა-წერადი" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "გაუქმება" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "კიტხვა-წერადი" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "დამტკიცებულია %1$s - \"%2$s\" შესვლა" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "უკუგება" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "მიმაგრებები" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "ავტორი" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "მომწოდებელი" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "შეტყობინებები სადაც ეს მიმაგრება გამოჩენილა" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "ამ მიმაგრების სანიშნეები" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "პაროლის ცვლილება ჩაიშალა" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "პაროლის ცვლილება არ არის ნებადართული" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "ბლოკირება" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "ბრძანების შედეგები" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax შეცდომა" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "ბრძანება დასრულდა" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "ბრძანება ჩაიშალა" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "შეტყობინებები ამ ID-თ არ არსებობს." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "მომხმარებელს არ გააჩნია ბოლო შეტყობინება." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "მომხმარებელი მეტსახელით %s ვერ მოიძებნა." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "ლოკალური მომხმარებელი მეტსახელით %s ვერ მოიძებნა." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "ბოდიში, ეს ბრძანება ჯერ არ არის განხორციელებული." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5847,7 +5874,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5859,52 +5886,53 @@ msgstr "" "შეტყობინებები: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "შეტყობინება მონიშნულია რჩეულად." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." 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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s-მა დატოვა ჯგუფი %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "სრული სახელი: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "მდებარეობა: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "გვერდი: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "%s-ის შესახებ" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5915,7 +5943,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5923,25 +5951,25 @@ msgstr "" "გააგზავნეთ %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "შეცდომა პირდაპირი შეტყობინების გაგზავნისას." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "შეტყობინება %s-გან გამეორდა." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "შეცდომა შეტყობინების გამეორებისას." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -5950,134 +5978,134 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "პასუხი %s-ს გაეგზავნა." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "შეცდომა შეტყობინების შენახვისას." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%s-ს გამოწერა დასრულდა წარმატებით." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "%s-ს გამოწერა გაუქმდა." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "ბრძანება ჯერ არ არის შემუშავებული." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6119,39 +6147,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "კონფიგურაციის ფაილი ვერ მოიძებნა. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "კონფიგურაციის ფაილები შემდეგ ადგილებში ვეძებე: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "თუ გინდათ ინსტალატორი გაუშვით ამის გასასწორებლად." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "გადადი ამ ინსტალატორზე." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "განახლებები ჩათ კლიენტისგან (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "განახლებები SMS-თ" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "შეერთებები" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "ავტორიზირებული შეერთებული აპლიკაციები" @@ -6174,11 +6224,11 @@ msgstr "" msgid "Design defaults restored." msgstr "დიზაინის პირველადი პარამეტრები დაბრუნებულია." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "ამოშალე რჩეულებიდან ეს შეტყობინება" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" @@ -6198,7 +6248,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6714,7 +6764,7 @@ msgstr "" "შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია " "გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "ვისგან" @@ -6867,55 +6917,55 @@ msgstr "" "სჭირდება, გთხოვთ სცადოთ მოგვიანებით" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ჩ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ს" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "ა" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "დ" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "უპასუხე ამ შეტყობინებას" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "პასუხი" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "შეტყობინება გამეორებულია" @@ -6986,7 +7036,7 @@ msgid "Tags in %s's notices" msgstr "%s-ს შეტყობინებებში გამოყენებული სანიშნეები" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "უცნობი" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 78fac49375..0b09eecb30 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:56+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:18+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -81,7 +81,7 @@ msgstr "접근 설정을 저장" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "저장" @@ -112,7 +112,7 @@ msgstr "해당하는 페이지 없음" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "해당하는 이용자 없음" @@ -348,7 +348,7 @@ msgid "This status is already a favorite." msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "관심소식을 생성할 수 없습니다." @@ -464,18 +464,18 @@ msgid "Group not found." msgstr "찾을 수가 없습니다." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "이미 차단된 이용자입니다." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." @@ -487,7 +487,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." @@ -602,7 +602,7 @@ msgstr "" "$s 계정의 접근을 허용해야 합니다." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "계정" @@ -616,7 +616,7 @@ msgstr "별명" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "비밀 번호" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "그러한 통지는 없습니다." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "자기 자신의 소식은 재전송할 수 없습니다." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "이미 재전송된 소식입니다." @@ -761,7 +761,7 @@ msgstr "옳지 않은 크기" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "아바타" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "삭제" @@ -877,7 +877,7 @@ msgstr "예" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "이 사용자 차단하기" @@ -896,8 +896,8 @@ msgstr "정보차단을 저장하는데 실패했습니다." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "그러한 그룹이 없습니다." @@ -1014,7 +1014,7 @@ msgstr "이 응용프로그램 삭제 않기" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -1077,7 +1077,7 @@ msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -1106,7 +1106,7 @@ msgstr "이 사용자 삭제" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "디자인" @@ -1233,7 +1233,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "저장" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "관심소식을 생성할 수 없습니다." @@ -1413,7 +1413,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "취소" @@ -1604,7 +1604,7 @@ msgstr "새로운 받는 메일 주소를 추가했습니다." msgid "This notice is already a favorite!" msgstr "이 게시글은 이미 좋아하는 게시글입니다." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "좋아하는글 취소" @@ -1906,7 +1906,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s 타임라인" @@ -2177,7 +2177,7 @@ msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2304,7 +2304,7 @@ msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -2528,14 +2528,14 @@ msgid "New message" msgstr "새로운 메시지입니다." #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "내용이 없습니다!" @@ -2544,7 +2544,7 @@ msgid "No recipient specified." msgstr "수신자를 지정하지 않았습니다." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2556,12 +2556,12 @@ msgstr "쪽지가 전송되었습니다." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "%s에게 보낸 직접 메시지" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax 에러입니다." @@ -2696,8 +2696,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." @@ -3052,7 +3052,7 @@ msgstr "실명" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "홈페이지" @@ -3437,7 +3437,7 @@ msgstr "위와 같은 비밀 번호. 필수 사항." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "메일" @@ -3597,7 +3597,7 @@ msgstr "자신의 글은 재전송할 수 없습니다." msgid "You already repeated that notice." msgstr "이미 재전송된 소식입니다." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "재전송됨" @@ -3727,13 +3727,13 @@ msgid "Name" msgstr "이름" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "기관 이름이 필요합니다." #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "설명" @@ -4493,7 +4493,7 @@ msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다. msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4615,7 +4615,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "프로필" @@ -4814,7 +4814,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -4863,7 +4863,7 @@ msgid "Plugins" msgstr "플러그인" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "버전" @@ -4872,29 +4872,25 @@ msgstr "버전" msgid "Author(s)" msgstr "작성자" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "좋아합니다" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4903,20 +4899,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 #, fuzzy msgid "Invalid filename." msgstr "옳지 않은 크기" @@ -4937,13 +4933,28 @@ msgstr "그룹을 업데이트 할 수 없습니다." msgid "Group leave failed." msgstr "그룹에 가입하지 못했습니다." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "사용자 저장 오류; 무효한 사용자" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "가입" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4967,18 +4978,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "직접 메시지 보내기 오류." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "메시지를 삽입할 수 없습니다." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." @@ -5036,33 +5047,33 @@ msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5115,15 +5126,11 @@ msgstr "구독을 저장할 수 없습니다." msgid "Could not delete subscription." msgstr "구독을 저장할 수 없습니다." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "팔로우" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %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:384 @@ -5132,58 +5139,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%s에 답신" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "새 그룹을 만들 수 없습니다." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "아바타를 업로드하세요." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "비밀번호 바꾸기" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "메일 처리 변경" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "다른 옵션들" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "기타" @@ -5199,186 +5206,187 @@ msgid "Untitled page" msgstr "제목없는 페이지" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "개인" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "당신의 메일, 아바타, 비밀 번호, 프로필을 변경하세요." #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "연결" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "연결" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "메일 주소 확인" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "관리" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "초대" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "이 사이트에서 로그아웃" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "로그아웃" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "새 계정 만들기" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "등록" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "이 사이트에 로그인" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "로그인" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "도움말" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "도움말" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "사이트 공지" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "로컬 뷰" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "페이지 공지" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "도움말" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "정보" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "자주 묻는 질문" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "서비스 약관" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "개인정보 취급방침" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "소스 코드" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "연락하기" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "배지" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet 소프트웨어 라이선스" @@ -5386,7 +5394,7 @@ msgstr "StatusNet 소프트웨어 라이선스" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5396,7 +5404,7 @@ msgstr "" "마이크로블로깅서비스입니다." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." @@ -5405,7 +5413,7 @@ msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5417,71 +5425,71 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "사이트 컨텐츠 라이선스" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "컨텐츠와 데이터의 저작권은 %1$s의 소유입니다. All rights reserved." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "컨텐츠와 데이터의 저작권은 각 이용자의 소유입니다. All rights reserved." #. 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "페이지수" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "앞 페이지" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5610,7 +5618,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5626,194 +5634,211 @@ msgid "Icon for this application" msgstr "이 응용프로그램 삭제 않기" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "응용프로그램 삭제" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "응용프로그램 삭제" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "응용프로그램 삭제" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "소스 코드 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "이 응용프로그램 삭제 않기" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "브라우저" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "데스크톱" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "읽기 전용" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "읽기 쓰기" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "취소" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "읽기 쓰기" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "제거" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "첨부파일" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "작성자" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "미리보기" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "해당하는 첨부파일이 없습니다." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "비밀번호 변경" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "비밀번호 변경" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "차단하기" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "실행결과" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax 에러입니다." + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "실행 완료" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "실행 실패" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "해당 id의 프로필이 없습니다." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "이용자의 지속적인 게시글이 없습니다." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "찔러 보기를 보냈습니다." @@ -5822,7 +5847,7 @@ msgstr "찔러 보기를 보냈습니다." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5831,52 +5856,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "전체이름: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "위치: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "자기소개: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5885,127 +5911,127 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "게시글이 등록되었습니다." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "사용자 세팅 오류" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #. 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:603 +#: lib/command.php:600 #, fuzzy, 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:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "사용자 세팅 오류" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy 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:664 +#: lib/command.php:659 #, fuzzy 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "알림끄기." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "알림이 켜졌습니다." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "당신은 이 프로필에 구독되지 않고있습니다." @@ -6013,14 +6039,14 @@ 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "다른 사람을 구독 하실 수 없습니다." @@ -6028,14 +6054,14 @@ 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "다른 사람을 구독 하실 수 없습니다." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -6043,13 +6069,13 @@ 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6091,40 +6117,62 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "이 사이트에 로그인" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "메신저" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "연결" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "응용프로그램 삭제" @@ -6147,11 +6195,11 @@ msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB msgid "Design defaults restored." msgstr "메일 설정이 저장되었습니다." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "이 게시글 좋아하기 취소" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "이 게시글을 좋아합니다." @@ -6171,7 +6219,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6608,7 +6656,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "방법" @@ -6754,55 +6802,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "북" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "남" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "동" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "서" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "위치" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "웹" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "문맥" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "재전송됨" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "게시글이 등록되었습니다." @@ -6874,7 +6922,7 @@ msgid "Tags in %s's notices" msgstr "%s의 게시글의 태그" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "알려지지 않은 행동" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index ee2205dd05..d9ff54241d 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:57+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -113,7 +113,7 @@ msgstr "Нема таква страница." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нема таков корисник." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Овој статус веќе Ви е омилен." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не можам да создадам омилина забелешка." @@ -473,18 +473,18 @@ msgid "Group not found." msgstr "Групата не е пронајдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Веќе членувате во таа група." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Блокирани сте од таа група од администраторот." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s." @@ -496,7 +496,7 @@ msgstr "Не членувате во оваа група." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не можев да го отстранам корисникот %1$s од групата %2$s." @@ -613,7 +613,7 @@ msgstr "" "пристап до Вашата %4$s сметка само на трети страни на кои им верувате." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Сметка" @@ -627,7 +627,7 @@ msgstr "Прекар" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Лозинка" @@ -657,12 +657,12 @@ msgid "No such notice." msgstr "Нема таква забелешка." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Не можете да ја повторувате сопствената забелешка." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Забелешката е веќе повторена." @@ -774,7 +774,7 @@ msgstr "Погрешна големина." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватар" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Бриши" @@ -894,7 +894,7 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокирај го корисников" @@ -913,8 +913,8 @@ msgstr "Не можев да ги снимам инофрмациите за б #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Нема таква група." @@ -1030,7 +1030,7 @@ msgstr "Не сте сопственик на овој програм." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -1095,7 +1095,7 @@ msgid "Do not delete this notice" msgstr "Не ја бриши оваа забелешка" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Бриши ја оваа забелешка" @@ -1126,7 +1126,7 @@ msgstr "Избриши овој корисник" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Изглед" @@ -1254,7 +1254,7 @@ msgstr "Врати по основно" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Зачувај" @@ -1374,7 +1374,7 @@ msgid "Could not update group." msgstr "Не можев да ја подновам групата." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не можеше да се создадат алијаси." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" @@ -1624,7 +1624,7 @@ msgstr "Додадена е нова влезна е-поштенска адре msgid "This notice is already a favorite!" msgstr "Оваа белешка е веќе омилена!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Тргни од омилени" @@ -1930,7 +1930,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Историја на %s" @@ -2215,7 +2215,7 @@ msgstr "Веќе сте претплатени на овие корисници: #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2349,7 +2349,7 @@ msgid "You must be logged in to leave a group." msgstr "Мора да сте најавени за да можете да ја напуштите групата." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Не членувате во таа група." @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "Нова порака" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Не можете да испратите порака до овојо корисник." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Нема содржина!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "Нема назначено примач." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2605,12 +2605,12 @@ msgstr "Пораката е испратена" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Директната порака до %s е испратена." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-грешка" @@ -2749,8 +2749,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -3106,7 +3106,7 @@ msgstr "Цело име" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Домашна страница" @@ -3506,7 +3506,7 @@ msgstr "Исто што и лозинката погоре. Задолжител #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Е-пошта" @@ -3668,7 +3668,7 @@ msgstr "Не можете да повторувате сопствена заб msgid "You already repeated that notice." msgstr "Веќе ја имате повторено таа забелешка." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3804,13 +3804,13 @@ msgid "Name" msgstr "Име" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организација" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -4602,7 +4602,7 @@ msgstr "%s не следи никого." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4727,7 +4727,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профил" @@ -4924,7 +4924,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Подновувања од %1$s на %2$s!" @@ -4985,7 +4985,7 @@ msgid "Plugins" msgstr "Приклучоци" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Верзија" @@ -4993,29 +4993,25 @@ msgstr "Верзија" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Омилено" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s ја означи забелешката %s како омилена." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Не можам да ја обработам URL-адресата „%s“" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робин мисли дека нешто е невозможно." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5026,7 +5022,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5034,13 +5030,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "ВОлку голема податотека ќе ја надмине Вашата месечна квота од %d бајти" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Погрешно податотечно име." @@ -5059,13 +5055,28 @@ msgstr "Не е дел од групата." msgid "Group leave failed." msgstr "Напуштањето на групата не успеа." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка во зачувувањето на корисникот; неправилен." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Придружи се" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s се зачлени во групата %2$s." @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Никаде не е пронајдено име на базата или DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Забрането Ви е испраќање на директни пораки." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не можев да ја испратам пораката." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не можев да ја подновам пораката со нов URI." @@ -5154,25 +5165,25 @@ msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "На saveKnownGroups му е уакажан грешен тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5181,7 +5192,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5234,15 +5245,11 @@ msgstr "Не можам да го избришам OMB-жетонот за пр msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Следи" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s сега го/ја следи %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5251,57 +5258,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Не можев да ја создадам групата." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Не можев да поставам URI на групата." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не можев да назначам членство во групата." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Не можев да ги зачувам информациите за локалните групи." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Смени профилни нагодувања" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Подигни аватар" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Смени лозинка" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Смени ракување со е-пошта" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Други нагодувања" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Друго" @@ -5317,184 +5324,185 @@ msgid "Untitled page" msgstr "Страница без наслов" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Главна навигација" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личен профил и хронологија на пријатели" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи се со услуги" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Поврзи се" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Промена на поставките на мрежното место" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Админ" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви се придружат на %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Одјава" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај сметка" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистрација" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текст" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Напомена за мрежното место" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Локални прегледи" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Напомена за страницата" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Споредна навигација" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помош" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "За" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧПП" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Услови" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Приватност" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Изворен код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Значка" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" @@ -5502,7 +5510,7 @@ msgstr "Лиценца на програмот StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5512,7 +5520,7 @@ msgstr "" "%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** е сервис за микроблогирање." @@ -5521,7 +5529,7 @@ msgstr "**%%site.name%%** е сервис за микроблогирање." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5533,20 +5541,20 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лиценца на содржините на мрежното место" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s се лични и доверливи." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5554,7 +5562,7 @@ msgstr "" "права задржани." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " @@ -5562,45 +5570,45 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Прелом на страници" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Претходно" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Се очекува коренски каналски елемент, но добив цел XML документ." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Сè уште не е поддржана обработката на далечинска содржина." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Сè уште не е поддржана обработката на XML содржина." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е достапна обработката на вметната Base64 содржина." @@ -5727,7 +5735,7 @@ msgid "Tried to revoke unknown token." msgstr "Се обидовте да отповикате непознат жетон." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не успеав да го избришам отповиканиот жетон." @@ -5742,187 +5750,207 @@ msgid "Icon for this application" msgstr "Икона за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишете го програмот со %d знаци" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишете го програмот со %d знаци" +msgstr[1] "Опишете го програмот со %d знаци" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Опишете го Вашиот програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL на страницата на програмот" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Изворна URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Организацијата одговорна за овој програм" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL на страницата на организацијата" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL за пренасочување по заверката" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Прелистувач" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Работна површина" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Тип на програм, прелистувач или работна површина" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Само читање" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Читање-пишување" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Откажи" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "читање-пишување" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Одобрено %1$s - „%2$s“ пристап." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Прилози" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Обезбедувач" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Забелешки кадешто се јавува овој прилог" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Ознаки за овој прилог" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Менувањето на лозинката не успеа" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Менувањето на лозинка не е дозволено" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокирај" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Резултати од наредбата" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-грешка" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Наредбата е завршена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Наредбата не успеа" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Не постои забелешка со таков id." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Корисникот нема последна забелешка" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не можев да пронајдам корисник со прекар %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Не можев да најдам локален корисник со прекар %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Жалиме, оваа наредба сè уште не е имплементирана." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нема баш логика да се подбуцнувате сами себеси." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Испратено подбуцнување на %s." @@ -5931,7 +5959,7 @@ msgstr "Испратено подбуцнување на %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5943,52 +5971,53 @@ msgstr "" "Забелешки: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Забелешката е обележана како омилена." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." 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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s ја напушти групата %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Име и презиме: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Местоположба: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "За: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5999,32 +6028,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Грашка при испаќањето на директната порака." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Забелешката од %s е повторена." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Грешка при повторувањето на белешката." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6033,100 +6062,100 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Одговорот на %s е испратен." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Грешка при зачувувањето на белешката." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можете да се претплаќате на OMB профили по наредба." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Претплатено на %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Откажана претплата на %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Наредбата сè уште не е имплементирана." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Известувањето е исклучено." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Не можам да исклучам известување." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Известувањето е вклучено." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Не можам да вклучам известување." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Наредбата за најава е оневозможена." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Откажана претплата на %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Не ни го испративте тој профил." @@ -6134,14 +6163,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:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Оддалечена претплата" @@ -6149,21 +6178,21 @@ msgstr[1] "Оддалечена претплата" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6242,39 +6271,61 @@ msgstr "" "tracks - сè уште не е имплементирано.\n" "tracking - сè уште не е имплементирано.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Нема пронајдено конфигурациска податотека. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Побарав конфигурациони податотеки на следниве места: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Оди на инсталаторот." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Подновувања преку инстант-пораки (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Подновувања по СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Сврзувања" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Овластени поврзани програми" @@ -6297,11 +6348,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Основно-зададениот изглед е вратен." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Отстрани ја белешкава од омилени" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Означи ја забелешкава како омилена" @@ -6321,7 +6372,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Канали" @@ -6859,7 +6910,7 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки " "што ќе можете да ги видите само Вие." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "од" @@ -7014,55 +7065,55 @@ msgstr "" "Обидете се подоцна." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "С" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Ј" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "И" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "З" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "во" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "интернет" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "во контекст" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено од" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Одговори на забелешкава" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Одговор" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Забелешката е повторена" @@ -7133,7 +7184,7 @@ msgid "Tags in %s's notices" msgstr "Ознаки во забелешките на %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Непознато" @@ -7515,16 +7566,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s не е важечка боја! Користете 3 или 6 шеснаесетни (hex) знаци." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "Резервна податотека за корисникот %s (%s)\n" +msgstr "Резервна податотека за корисникот %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник.\n" +msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "%d резервни ставки.\n" +msgstr "%d резервни ставки." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s ја означи забелешката %s како омилена." + +#~ msgid "%s is now following %s." +#~ msgstr "%s сега го/ја следи %s." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 9c920a6b89..10f0bc9758 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -111,7 +111,7 @@ msgstr "Ingen slik side." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen slik bruker" @@ -355,7 +355,7 @@ msgid "This status is already a favorite." msgstr "Denne statusen er allerede en favoritt." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunne ikke opprette favoritt." @@ -468,18 +468,18 @@ msgid "Group not found." msgstr "Gruppe ikke funnet." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du er allerede medlem av den gruppen." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Du har blitt blokkert fra den gruppen av administratoren." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." @@ -491,7 +491,7 @@ msgstr "Du er ikke et medlem av denne gruppen." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikke fjerne bruker %1$s fra gruppe %2$s." @@ -606,7 +606,7 @@ msgstr "" "$s-konto til tredjeparter du stoler på." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -620,7 +620,7 @@ msgstr "Nick" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -650,12 +650,12 @@ msgid "No such notice." msgstr "Ingen slik notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan ikke gjenta din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Allerede gjentatt den notisen." @@ -765,7 +765,7 @@ msgstr "Ugyldig størrelse" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukerbilde" @@ -796,7 +796,7 @@ msgid "Preview" msgstr "Forhåndsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Slett" @@ -882,7 +882,7 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokker denne brukeren" @@ -901,8 +901,8 @@ msgstr "Kunne ikke lagre blokkeringsinformasjon." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ingen slik gruppe." @@ -1018,7 +1018,7 @@ msgstr "Du er ikke eieren av dette programmet." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 #, fuzzy msgid "There was a problem with your session token." msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." @@ -1084,7 +1084,7 @@ msgid "Do not delete this notice" msgstr "Ikke slett denne notisen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1115,7 +1115,7 @@ msgstr "Slett denne brukeren" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Utseende" @@ -1242,7 +1242,7 @@ msgstr "Tilbakestill til standardverdier" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" @@ -1362,7 +1362,7 @@ msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." @@ -1418,7 +1418,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1608,7 +1608,7 @@ msgstr "Ny innkommende e-postadresse lagt til." msgid "This notice is already a favorite!" msgstr "Denne notisen er allerede en favoritt." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fjern favoritt" @@ -1910,7 +1910,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2190,7 +2190,7 @@ msgstr "Du abonnerer allerede på disse brukerne:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2319,7 +2319,7 @@ msgid "You must be logged in to leave a group." msgstr "Du må være innlogget for å forlate en gruppe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du er ikke et medlem av den gruppen." @@ -2540,14 +2540,14 @@ msgid "New message" msgstr "Ny melding" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan ikke sende en melding til denne brukeren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Inget innhold." @@ -2556,7 +2556,7 @@ msgid "No recipient specified." msgstr "Ingen mottaker oppgitt." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2568,12 +2568,12 @@ msgstr "Melding sendt" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktemelding til %s sendt." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax-feil" @@ -2711,8 +2711,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Bare %s-nettadresser over vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ikke et støttet dataformat." @@ -3064,7 +3064,7 @@ msgstr "Fullt navn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hjemmesiden" @@ -3458,7 +3458,7 @@ msgstr "Samme som passord over. Kreves." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" @@ -3618,7 +3618,7 @@ msgstr "Du kan ikke gjenta din egen notis." msgid "You already repeated that notice." msgstr "Du har allerede gjentatt den notisen." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Gjentatt" @@ -3752,13 +3752,13 @@ msgid "Name" msgstr "Navn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisasjon" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivelse" @@ -4540,7 +4540,7 @@ msgstr "%s lytter ikke til noen." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4669,7 +4669,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4858,7 +4858,7 @@ msgstr "Prøv å [søke etter grupper](%%action.groupsearch%%) og bli med i dem. #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar fra %1$s på %2$s!" @@ -4909,7 +4909,7 @@ msgid "Plugins" msgstr "Programtillegg" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versjon" @@ -4917,30 +4917,26 @@ msgstr "Versjon" msgid "Author(s)" msgstr "Forfatter(e)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 #, fuzzy msgid "Favor" msgstr "Favoritter" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4949,20 +4945,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ugyldig filnavn." @@ -4981,13 +4977,28 @@ msgstr "Kunne ikke oppdatere gruppe." msgid "Group leave failed." msgstr "Gruppeprofil" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Feil ved lagring av bruker; ugyldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Bli med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5010,18 +5021,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Feil ved sending av direktemelding." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunne ikke sette inn melding." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunne ikke oppdatere melding med ny nettadresse." @@ -5074,32 +5085,32 @@ msgid "Problem saving notice." msgstr "Problem ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5153,13 +5164,9 @@ msgstr "Kunne ikke slette favoritt." msgid "Could not delete subscription." msgstr "Kunne ikke slette favoritt." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5170,57 +5177,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Velkommen til %1$s, @%2$s." #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunne ikke opprette gruppe." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunne ikke stille inn gruppe-URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunne ikke stille inn gruppemedlemskap." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Kunne ikke lagre lokal gruppeinformasjon." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Last opp en avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Endre passordet ditt" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Endre eposthåndtering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Brukerprofil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Andre valg" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Andre" @@ -5236,187 +5243,188 @@ msgid "Untitled page" msgstr "Side uten tittel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 #, fuzzy msgid "Primary site navigation" msgstr "Endre nettstedskonfigurasjon" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personlig" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endre e-posten, avateren, passordet og profilen din" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Koble til tjenester" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Koble til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Endre nettstedskonfigurasjon" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter venner og kollegaer til å bli med deg på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut fra nettstedet" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrer" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Log inn på nettstedet" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg." -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter personer eller tekst" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Nettstedsnotis" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale visninger" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidenotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjelp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "OSS/FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 #, fuzzy msgid "Privacy" msgstr "Privat" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kilde" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Knuff" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Programvarelisens for StatusNet" @@ -5424,7 +5432,7 @@ msgstr "Programvarelisens for StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5434,7 +5442,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er en mikrobloggingtjeneste." @@ -5443,7 +5451,7 @@ msgstr "**%%site.name%%** er en mikrobloggingtjeneste." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5452,72 +5460,72 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "Programvarelisens for StatusNet" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 #, fuzzy msgid "Pagination" msgstr "Registrering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Før" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5648,7 +5656,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5663,191 +5671,211 @@ msgid "Icon for this application" msgstr "Ikon for dette programmet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv programmet ditt med %d tegn" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv programmet ditt med %d tegn" +msgstr[1] "Beskriv programmet ditt med %d tegn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriv programmet ditt" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Nettadresse til hjemmesiden for dette programmet" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Nettadresse til kilde" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 #, fuzzy msgid "Organization responsible for this application" msgstr "Ikon for dette programmet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL til organisasjonens hjemmeside" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Nettleser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Skrivebord" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type program, nettleser eller skrivebord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Skrivebeskyttet" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Les og skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardtilgang for dette programmet: skrivebeskyttet eller lese- og " "skrivetilgang" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "les og skriv" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "skrivebeskyttet" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Vedlegg" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Forfatter" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Leverandør" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notiser hvor dette vedlegget forekommer" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "Ingen slike vedlegg." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Endring av passord mislyktes" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Endring av passord er ikke tillatt" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkér" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Kommandoresultat" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax-feil" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommando fullført" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommando feilet" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Brukeren har ingen profil." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Beklager, denne kommandoen er ikke implementert ennå." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det gir ikke så mye mening å knuffe seg selv." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5856,7 +5884,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5868,52 +5896,53 @@ msgstr "" "Notiser: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt navn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Posisjon: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hjemmeside: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5922,128 +5951,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Feil ved sending av direktemelding." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Nytt nick" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Feil ved repetering av notis." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svar til %s" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Feil ved lagring av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "Beklager, denne kommandoen er ikke implementert ennå." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Ingen bekreftelseskode." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Ingen bekreftelseskode." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "Kan ikke gjenta din egen notis." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Ikke autorisert." @@ -6051,7 +6080,7 @@ msgstr "Ikke autorisert." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ikke autorisert." @@ -6059,7 +6088,7 @@ msgstr[1] "Ikke autorisert." #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Svar til %s" @@ -6067,7 +6096,7 @@ msgstr "Svar til %s" #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Svar til %s" @@ -6075,21 +6104,21 @@ msgstr[1] "Svar til %s" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du er ikke et medlem av den gruppen." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6131,40 +6160,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ingen konfigurasjonsfil funnet. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Jeg så etter konfigurasjonfiler på følgende seter: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Log inn på nettstedet" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Oppdatert med SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tilkoblinger" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 #, fuzzy msgid "Authorized connected applications" msgstr "Tilkoblede program" @@ -6188,12 +6238,12 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." msgid "Design defaults restored." msgstr "Utseende lagret." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "Slett denne notisen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Repeter denne notisen" @@ -6214,7 +6264,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Venn av en venn" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6748,7 +6798,7 @@ msgstr "" "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "bare du kan se." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "fra" @@ -6897,56 +6947,56 @@ msgstr "" "igjen senere" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Ø" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "V" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "på" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Inget innhold." -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetert av" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notis repetert" @@ -7018,7 +7068,7 @@ msgid "Tags in %s's notices" msgstr "Bruker har ingen siste notis" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Ukjent" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f0abf6e735..f0d5df52ff 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:58+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -113,7 +113,7 @@ msgstr "Deze pagina bestaat niet." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Onbekende gebruiker." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Deze mededeling staat al in uw favorietenlijst." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Het was niet mogelijk een favoriet aan te maken." @@ -480,18 +480,18 @@ msgid "Group not found." msgstr "De groep is niet aangetroffen." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "U bent al lid van die groep." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." @@ -503,7 +503,7 @@ msgstr "U bent geen lid van deze groep." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Het was niet mogelijk gebruiker %1$s uit de group %2$s te verwijderen." @@ -626,7 +626,7 @@ msgstr "" "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Gebruiker" @@ -640,7 +640,7 @@ msgstr "Gebruikersnaam" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wachtwoord" @@ -670,12 +670,12 @@ msgid "No such notice." msgstr "De mededeling bestaat niet." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "U kunt uw eigen mededeling niet herhalen." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "U hebt die mededeling al herhaald." @@ -787,7 +787,7 @@ msgstr "Ongeldige afmetingen." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -819,7 +819,7 @@ msgid "Preview" msgstr "Voorvertoning" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Verwijderen" @@ -906,7 +906,7 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Deze gebruiker blokkeren" @@ -925,8 +925,8 @@ msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "De opgegeven groep bestaat niet." @@ -1042,7 +1042,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1107,7 +1107,7 @@ msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -1139,13 +1139,13 @@ msgstr "Gebruiker verwijderen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Uiterlijk" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Instellingen voor de vormgeving van deze StatusNet-website" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1267,7 +1267,7 @@ msgstr "Standaardinstellingen toepassen" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" @@ -1387,7 +1387,7 @@ msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." @@ -1443,7 +1443,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" @@ -1636,7 +1636,7 @@ msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." msgid "This notice is already a favorite!" msgstr "Deze mededeling staat al in uw favorietenlijst." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Van favotietenlijst verwijderen" @@ -1947,7 +1947,7 @@ msgstr "Deze gebruiker beheerder maken" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tijdlijn" @@ -2233,7 +2233,7 @@ msgstr "U bent al geabonneerd op deze gebruikers:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2369,7 +2369,7 @@ msgid "You must be logged in to leave a group." msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "U bent geen lid van deze groep" @@ -2594,14 +2594,14 @@ msgid "New message" msgstr "Nieuw bericht" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "U kunt geen bericht naar deze gebruiker zenden." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Geen inhoud!" @@ -2610,7 +2610,7 @@ msgid "No recipient specified." msgstr "Er is geen ontvanger aangegeven." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." @@ -2621,12 +2621,12 @@ msgstr "Bericht verzonden." #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Het directe bericht aan %s is verzonden." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Er is een Ajax-fout opgetreden" @@ -2724,6 +2724,7 @@ msgstr "Verbonden applicaties" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" +"U hebt de volgende applicaties toegang gegeven tot uw gebruikersgegevens." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2769,8 +2770,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Alleen URL's voor %s via normale HTTP alstublieft." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2916,7 +2917,7 @@ msgstr "Paden" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Pad- en serverinstellingen voor de StatusNet-website" #: actions/pathsadminpanel.php:157 #, php-format @@ -3124,7 +3125,7 @@ msgstr "Volledige naam" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Thuispagina" @@ -3527,7 +3528,7 @@ msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3688,7 +3689,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "You already repeated that notice." msgstr "U hent die mededeling al herhaald." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Herhaald" @@ -3782,7 +3783,7 @@ msgstr "Sessies" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Sessieinstellingen voor deze StatusNet-website" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3824,13 +3825,13 @@ msgid "Name" msgstr "Naam" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisatie" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beschrijving" @@ -3862,7 +3863,7 @@ msgstr "Gebruikerssleutel" #: actions/showapplication.php:268 msgid "Consumer secret" -msgstr "Gebruikerswachtwoord" +msgstr "Gebruikersgeheim" #: actions/showapplication.php:273 msgid "Request token URL" @@ -4629,7 +4630,7 @@ msgstr "%s volgt niemand." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4740,7 +4741,7 @@ msgstr "Gebruiker" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Gebruikersinstellingen voor deze StatusNet-website" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4756,7 +4757,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profiel" @@ -4953,7 +4954,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates van %1$s op %2$s." @@ -5014,7 +5015,7 @@ msgid "Plugins" msgstr "Plug-ins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versie" @@ -5022,29 +5023,25 @@ msgstr "Versie" msgid "Author(s)" msgstr "Auteur(s)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Aan favorieten toevoegen" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Het was niet mogelijk de URL \"%s\" te verwerken." #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin denkt dat iets onmogelijk is." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5055,7 +5052,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5063,14 +5060,14 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Een bestand van deze grootte overschijdt uw maandelijkse quota van %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ongeldige bestandsnaam." @@ -5089,16 +5086,31 @@ msgstr "Geen lid van groep." msgid "Group leave failed." msgstr "Groepslidmaatschap opzeggen is mislukt." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fout bij opslaan gebruiker; ongeldig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Toetreden" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s is lid geworden van de groep %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5118,17 +5130,17 @@ msgid "No database name or DSN found anywhere." msgstr "Geen databasenaam of DSN gevonden." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "U mag geen directe berichten verzenden." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Het was niet mogelijk het bericht in te voegen." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." @@ -5189,12 +5201,12 @@ msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Het gegevenstype dat is opgegeven aan saveKnownGroups is onjuist" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " @@ -5202,14 +5214,14 @@ 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5218,7 +5230,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5271,15 +5283,11 @@ msgstr "" msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Volgen" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s volgt nu $s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5288,57 +5296,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Het was niet mogelijk de groeps-URI in te stellen." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Avatar uploaden" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Uw wachtwoord wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Uw profiel ontwerpen" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Overige instellingen" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Overige" @@ -5354,184 +5362,185 @@ msgid "Untitled page" msgstr "Naamloze pagina" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Persoonlijk" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Met andere diensten koppelen" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Koppelen" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Uitnodigingen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Gebruiker afmelden" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Afmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registreren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Gebruiker aanmelden" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Mededeling van de website" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale weergaven" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Mededeling van de pagina" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Over" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Veel gestelde vragen" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Gebruiksvoorwaarden" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Broncode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contact" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Widget" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" @@ -5539,7 +5548,7 @@ msgstr "Licentie van de StatusNet-software" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5549,7 +5558,7 @@ msgstr "" "broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is een microblogdienst." @@ -5558,7 +5567,7 @@ msgstr "**%%site.name%%** is een microblogdienst." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5570,20 +5579,20 @@ msgstr "" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licentie voor siteinhoud" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5591,7 +5600,7 @@ msgstr "" "voorbehouden." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " @@ -5599,46 +5608,46 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" "Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Later" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Eerder" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Verwachtte een root-feed element maar kreeg een heel XML-document." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" @@ -5765,7 +5774,7 @@ msgid "Tried to revoke unknown token." msgstr "Er is geprobeerd een onbekend token in te trekken." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Het was niet mogelijk een ingetrokken token te verwijderen." @@ -5780,187 +5789,207 @@ msgid "Icon for this application" msgstr "Icoon voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beschrijf uw applicatie in %d tekens" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beschrijf uw applicatie in %d tekens" +msgstr[1] "Beschrijf uw applicatie in %d tekens" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beschrijf uw applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "De URL van de homepage van deze applicatie" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Bron-URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisatie verantwoordelijk voor deze applicatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "De URL van de homepage van de organisatie" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL om naar door te verwijzen na authenticatie" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Type applicatie; browser of desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Alleen-lezen" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Lezen en schrijven" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Annuleren" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "lezen en schrijven" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "alleen-lezen" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Bijlagen" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Auteur" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Provider" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mededelingen die deze bijlage bevatten" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Labels voor deze bijlage" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Wachtwoord wijzigen is mislukt" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Wachtwoord wijzigen is niet toegestaan" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkeren" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Commandoresultaten" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Er is een Ajax-fout opgetreden" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Het commando is uitgevoerd" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Het uitvoeren van het commando is mislukt" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Er bestaat geen mededeling met dat ID." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Deze gebruiker heeft geen laatste mededeling." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "De gebruiker %s is niet aangetroffen." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "De lokale gebruiker %s is niet aangetroffen." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Het heeft niet zoveel zin om uzelf te porren..." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "De por naar %s is verzonden." @@ -5969,7 +5998,7 @@ msgstr "De por naar %s is verzonden." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5981,52 +6010,53 @@ msgstr "" "Mededelingen: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "De mededeling is op de favorietenlijst geplaatst." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s is lid geworden van de groep %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s heeft de groep %2$s verlaten." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Volledige naam: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Locatie: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Thuispagina: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Over: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6037,7 +6067,7 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6045,25 +6075,25 @@ msgstr "" "bericht was %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6072,81 +6102,81 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Het antwoord aan %s is verzonden." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Geef de naam op van de gebruiker waarop u zich wilt abonneren." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Abonneren op OMB-profielen op commando is niet mogelijk." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Geabonneerd op %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "" "Geef de naam op van de gebruiker waarop u het abonnement wilt opzeggen." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Uw abonnement op %s is opgezegd." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Dit commando is nog niet geïmplementeerd." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificaties uitgeschakeld." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificaties ingeschakeld." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Het is niet mogelijk de notificatie uit te schakelen." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Het aanmeldcommando is uitgeschakeld." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6155,20 +6185,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Het abonnement van %s is opgeheven." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "U bent op geen enkele gebruiker geabonneerd." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "U bent geabonneerd op deze gebruiker:" @@ -6176,14 +6206,14 @@ msgstr[1] "U bent geabonneerd op deze gebruikers:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Niemand heeft een abonnenment op u." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Deze gebruiker is op u geabonneerd:" @@ -6191,21 +6221,21 @@ msgstr[1] "Deze gebruikers zijn op u geabonneerd:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "U bent lid van geen enkele groep." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "U bent lid van deze groep:" msgstr[1] "U bent lid van deze groepen:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6287,40 +6317,62 @@ msgstr "" "tracks - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" "U kunt proberen de installer uit te voeren om dit probleem op te lossen." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Updates via instant messenger (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Updates via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindingen" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" @@ -6343,11 +6395,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Het standaardontwerp is weer ingesteld." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Uit de favorietenlijst verwijderen" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Op de favorietenlijst plaatsen" @@ -6367,7 +6419,7 @@ msgstr "Atom" msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6904,7 +6956,7 @@ 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." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "van" @@ -7059,55 +7111,55 @@ msgstr "" "nog eens" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Z" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "O" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "op" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "in context" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Herhaald door" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Antwoorden" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mededeling herhaald" @@ -7178,7 +7230,7 @@ msgid "Tags in %s's notices" msgstr "Labels in de mededelingen van %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Onbekend" @@ -7566,16 +7618,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens." #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" msgstr "Back-upbestand voor gebruiker %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s heeft de mededeling %s als favoriet gemarkeerd." + +#~ msgid "%s is now following %s." +#~ msgstr "%s volgt nu $s." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 53bcb443db..28da648ee1 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:25:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:21+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -87,7 +87,7 @@ msgstr "Avatar-innstillingar" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -120,7 +120,7 @@ msgstr "Dette emneord finst ikkje." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brukaren finst ikkje." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Denne notisen er alt ein favoritt!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." @@ -476,19 +476,19 @@ msgid "Group not found." msgstr "Finst ikkje." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 #, fuzzy msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunne ikkje bli med i gruppa." @@ -501,7 +501,7 @@ msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunne ikkje laga gruppa." @@ -618,7 +618,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -632,7 +632,7 @@ msgstr "Kallenamn" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -663,13 +663,13 @@ msgid "No such notice." msgstr "Denne notisen finst ikkje." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 #, fuzzy msgid "Cannot repeat your own notice." msgstr "Kan ikkje slå på notifikasjon." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." @@ -781,7 +781,7 @@ msgstr "Ugyldig storleik." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Brukarbilete" @@ -812,7 +812,7 @@ msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Slett" @@ -899,7 +899,7 @@ msgstr "Jau" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blokkér denne brukaren" @@ -918,8 +918,8 @@ msgstr "Lagring av informasjon feila." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Denne gruppa finst ikkje." @@ -1039,7 +1039,7 @@ msgstr "Du er ikkje medlem av den gruppa." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1106,7 +1106,7 @@ msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Slett denne notisen" @@ -1139,7 +1139,7 @@ msgstr "Slett denne notisen" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1273,7 +1273,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" @@ -1404,7 +1404,7 @@ msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." @@ -1462,7 +1462,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" msgid "Cancel" @@ -1658,7 +1658,7 @@ msgstr "La til ny innkomande epostadresse." msgid "This notice is already a favorite!" msgstr "Denne notisen er alt ein favoritt!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Fjern favoritt" @@ -1969,7 +1969,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidsline" @@ -2242,7 +2242,7 @@ msgstr "Du tingar allereie oppdatering frå desse brukarane:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2373,7 +2373,7 @@ msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." @@ -2603,14 +2603,14 @@ msgid "New message" msgstr "Ny melding" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan ikkje sende melding til denne brukaren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Ingen innhald." @@ -2619,7 +2619,7 @@ msgid "No recipient specified." msgstr "Ingen mottakar spesifisert." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2633,12 +2633,12 @@ msgstr "Melding" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, fuzzy, php-format msgid "Direct message to %s sent." msgstr "Direkte melding til %s sendt" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax feil" @@ -2774,8 +2774,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -3141,7 +3141,7 @@ msgstr "Fullt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Heimeside" @@ -3533,7 +3533,7 @@ msgstr "Samme som passord over. Påkrevd." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Epost" @@ -3698,7 +3698,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." msgid "You already repeated that notice." msgstr "Du har allereie blokkert denne brukaren." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Framheva" @@ -3836,14 +3836,14 @@ msgid "Name" msgstr "Kallenamn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Paginering" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" @@ -4607,7 +4607,7 @@ msgstr "%1$s høyrer no på notisane dine på %2$s." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4735,7 +4735,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4939,7 +4939,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -4988,7 +4988,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4997,29 +4997,25 @@ msgstr "Personleg" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Tjeneste" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5028,20 +5024,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ugyldig filnamn." @@ -5063,13 +5059,28 @@ msgstr "Kann ikkje oppdatera gruppa." msgid "Group leave failed." msgstr "Gruppe profil" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Feil ved lagring av brukar; fungerer ikkje." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Bli med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5093,18 +5104,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 #, fuzzy msgid "You are banned from sending direct messages." msgstr "Ein feil oppstod ved sending av direkte melding." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunne ikkje lagre melding." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." @@ -5160,33 +5171,33 @@ msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5240,13 +5251,9 @@ msgstr "Kunne ikkje lagra abonnement." msgid "Could not delete subscription." msgstr "Kunne ikkje lagra abonnement." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5257,59 +5264,59 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunne ikkje laga gruppa." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 #, fuzzy msgid "Could not save local group info." msgstr "Kunne ikkje lagra abonnement." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Last opp ein avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Endra passordet ditt" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Endra eposthandtering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Brukarprofil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Andre val" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Anna" @@ -5325,44 +5332,44 @@ msgid "Untitled page" msgstr "Ingen tittel" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personleg" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra passordet ditt" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Kopla til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" @@ -5370,83 +5377,83 @@ msgstr "Navigasjon for hovudsida" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitér" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg inn " #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logo" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ei ny gruppe" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrér" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn " -#: lib/action.php:504 +#: lib/action.php:503 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:510 +#: lib/action.php:509 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:516 +#: lib/action.php:515 #, fuzzy msgctxt "MENU" msgid "Search" @@ -5454,67 +5461,68 @@ msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Statusmelding" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokale syningar" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidenotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjelp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "OSS" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Personvern" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kjeldekode" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 #, fuzzy msgid "Badge" msgstr "Dult" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" @@ -5522,7 +5530,7 @@ msgstr "StatusNets programvarelisens" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5532,7 +5540,7 @@ msgstr "" "broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** er ei mikrobloggingteneste." @@ -5541,7 +5549,7 @@ msgstr "**%%site.name%%** er ei mikrobloggingteneste." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5553,71 +5561,71 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginering" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "« Etter" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Før »" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5757,7 +5765,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5772,193 +5780,211 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv gruppa eller emnet med 140 teikn" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv gruppa eller emnet med 140 teikn" +msgstr[1] "Beskriv gruppa eller emnet med 140 teikn" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriving" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Kjeldekode" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Gjenopprett" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Forhandsvis" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Endra passord" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Endra passord" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blokkér" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultat frå kommandoen" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax feil" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommandoen utførd" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommandoen feila" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "Fann ingen profil med den IDen." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Brukaren har ikkje siste notis" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Orsak, men kommandoen er ikkje laga enno." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, fuzzy, php-format msgid "Nudge sent to %s." msgstr "Dytta!" @@ -5967,7 +5993,7 @@ msgstr "Dytta!" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5976,52 +6002,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Stad: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -6030,128 +6057,128 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, fuzzy, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Melding lagra" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Feil ved å setja brukar." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "Svar på denne notisen" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Eit problem oppstod ved lagring av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 #, fuzzy msgid "Specify the name of the user to subscribe to." msgstr "Spesifer namnet til brukaren du vil tinge" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Du tingar ikkje oppdateringar til den profilen." #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 #, fuzzy msgid "Specify the name of the user to unsubscribe from." msgstr "Spesifer namnet til brukar du vil fjerne tinging på" #. 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifikasjon av." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifikasjon på." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Du tingar ikkje oppdateringar til den profilen." @@ -6159,7 +6186,7 @@ msgstr "Du tingar ikkje oppdateringar til den profilen." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" @@ -6167,7 +6194,7 @@ msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Kan ikkje tinga andre til deg." @@ -6175,7 +6202,7 @@ msgstr "Kan ikkje tinga andre til deg." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Kan ikkje tinga andre til deg." @@ -6183,7 +6210,7 @@ msgstr[1] "Kan ikkje tinga andre til deg." #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er ikkje medlem av den gruppa." @@ -6191,14 +6218,14 @@ msgstr "Du er ikkje medlem av den gruppa." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa." #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6240,42 +6267,63 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Ljonmelding" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Oppdateringar over direktemeldingar (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Oppdateringar over SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kopla til" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6296,11 +6344,11 @@ msgstr "Du kan lasta opp ein logo for gruppa." msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Fjern favoriseringsmerket" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Favoriser denne notisen" @@ -6320,7 +6368,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6766,7 +6814,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 #, fuzzy msgid "from" msgstr " frå " @@ -6915,58 +6963,58 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 #, fuzzy msgid "N" msgstr "Nei" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "Ingen innhald." -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Lag" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Melding lagra" @@ -7038,7 +7086,7 @@ msgid "Tags in %s's notices" msgstr "Merkelappar i %s sine notisar" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "Uventa handling." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 8427a7aa9a..371550e090 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:00+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -115,7 +115,7 @@ msgstr "Nie ma takiej strony." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Brak takiego użytkownika." @@ -360,7 +360,7 @@ msgid "This status is already a favorite." msgstr "Ten stan jest już ulubiony." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." @@ -475,18 +475,18 @@ msgid "Group not found." msgstr "Nie odnaleziono grupy." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." @@ -498,7 +498,7 @@ msgstr "Nie jesteś członkiem tej grupy." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Nie można usunąć użytkownika %1$s z grupy %2$s." @@ -614,7 +614,7 @@ msgstr "" "$s powinien być udostępniany tylko zaufanym osobom trzecim." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -628,7 +628,7 @@ msgstr "Pseudonim" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hasło" @@ -658,12 +658,12 @@ msgid "No such notice." msgstr "Nie ma takiego wpisu." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Nie można powtórzyć własnego wpisu." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Już powtórzono ten wpis." @@ -773,7 +773,7 @@ msgstr "Nieprawidłowy rozmiar." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Awatar" @@ -804,7 +804,7 @@ msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Usuń" @@ -890,7 +890,7 @@ msgstr "Tak" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Zablokuj tego użytkownika" @@ -909,8 +909,8 @@ msgstr "Zapisanie informacji o blokadzie nie powiodło się." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Nie ma takiej grupy." @@ -1026,7 +1026,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -1090,7 +1090,7 @@ msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -1121,13 +1121,13 @@ msgstr "Usuń tego użytkownika" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Wygląd" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia wyglądu tej witryny StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1247,7 +1247,7 @@ msgstr "Przywróć domyślne ustawienia" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" @@ -1367,7 +1367,7 @@ msgid "Could not update group." msgstr "Nie można zaktualizować grupy." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -1424,7 +1424,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Anuluj" @@ -1615,7 +1615,7 @@ msgstr "Dodano nowy przychodzący adres e-mail." msgid "This notice is already a favorite!" msgstr "Ten wpis jest już ulubiony." -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Usuń wpis z ulubionych" @@ -1893,7 +1893,7 @@ msgstr "Zablokuj" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Zablokuj tego użytkownika" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1915,7 +1915,7 @@ msgstr "Nadaje temu użytkownikowi uprawnienia administratora" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" @@ -2198,7 +2198,7 @@ msgstr "Jesteś już subskrybowany do tych użytkowników:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2332,7 +2332,7 @@ msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." @@ -2345,45 +2345,47 @@ msgstr "Użytkownik %1$s opuścił grupę %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licencja" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licencja dla tej witryny StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Nieprawidłowy wybór licencji." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Należy podać właściciela treści podczas używania licencji \"Wszystkie prawa " +"zastrzeżone\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Nieprawidłowy tytuł licencji. Maksymalna długość to 255 znaków." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Nieprawidłowy adres URL licencji." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Nieprawidłowy adres URL obrazu licencji." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Adres URL licencji musi być pusty lub być prawidłowym adresem URL." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Obraz licencji musi być pusty lub być prawidłowym adresem URL." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Wybór licencji" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2391,59 +2393,59 @@ msgstr "Prywatna" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Wszystkie prawa zastrzeżone" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Typ" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Wybierz licencję" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Szczegóły licencji" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Właściciel" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nazwa właściciela treści witryny (jeśli dotyczy)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Tytuł licencji" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Tytuł licencji." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Adres URL licencji" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Adres URL dodatkowych informacji o licencji." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Adres URL obrazu licencji" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Adres URL obrazu do wyświetlenia z licencją." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Zapisz ustawienia licencji" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2555,14 +2557,14 @@ msgid "New message" msgstr "Nowa wiadomość" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Brak treści." @@ -2571,7 +2573,7 @@ msgid "No recipient specified." msgstr "Nie podano odbiorcy." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." @@ -2582,12 +2584,12 @@ msgstr "Wysłano wiadomość" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Błąd AJAX" @@ -2684,7 +2686,7 @@ msgstr "Połączone aplikacje" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Zezwolono następującym aplikacjom na dostęp do konta." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2725,8 +2727,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." @@ -2872,7 +2874,7 @@ msgstr "Ścieżki" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia ścieżki i serwera dla tej witryny StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3080,7 +3082,7 @@ msgstr "Imię i nazwisko" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Strona domowa" @@ -3476,7 +3478,7 @@ msgstr "Takie samo jak powyższe hasło. Wymagane." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3635,7 +3637,7 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "You already repeated that notice." msgstr "Już powtórzono ten wpis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Powtórzono" @@ -3729,7 +3731,7 @@ msgstr "Sesje" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia sesji tej witryny StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3771,13 +3773,13 @@ msgid "Name" msgstr "Nazwa" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organizacja" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -4567,7 +4569,7 @@ msgstr "Użytkownik %s nie obserwuje nikogo." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4677,7 +4679,7 @@ msgstr "Użytkownik" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Ustawienia użytkownika dla tej witryny StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4693,7 +4695,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4740,7 +4742,7 @@ msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Zapisz ustawienia użytkownika" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4885,7 +4887,7 @@ msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje z %1$s na %2$s." @@ -4948,7 +4950,7 @@ msgid "Plugins" msgstr "Wtyczki" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Wersja" @@ -4956,29 +4958,25 @@ msgstr "Wersja" msgid "Author(s)" msgstr "Autorzy" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Dodaj do ulubionych" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Nie można przetworzyć adresu URL \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin sądzi, że coś jest niemożliwe." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4989,7 +4987,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -4997,7 +4995,7 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" @@ -5005,7 +5003,7 @@ msgstr "" "d bajty." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nieprawidłowa nazwa pliku." @@ -5024,16 +5022,31 @@ msgstr "Nie jest częścią grupy." msgid "Group leave failed." msgstr "Opuszczenie grupy nie powiodło się." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Dołącz" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "Użytkownik %1$s dołączył do grupy %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5053,17 +5066,17 @@ msgid "No database name or DSN found anywhere." msgstr "Nigdzie nie odnaleziono nazwy lub DSN bazy danych." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Zablokowano wysyłanie bezpośrednich wiadomości." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Nie można wprowadzić wiadomości." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." @@ -5119,32 +5132,32 @@ msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Podano błędne dane do saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Nie można unieważnić roli \"\"%1$s\" użytkownika #%2$d; nie istnieje." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5195,14 +5208,10 @@ msgstr "Nie można usunąć tokenu subskrypcji OMB." msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "" +msgid "Follow" +msgstr "Obserwuj" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5212,57 +5221,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Nie można utworzyć grupy." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Nie można ustawić adresu URI grupy." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Nie można zapisać informacji o lokalnej grupie." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Wyślij awatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Zmień hasło" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Wygląd profilu" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Inne opcje" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Inne" @@ -5278,184 +5287,185 @@ msgid "Untitled page" msgstr "Strona bez nazwy" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Połącz z serwisami" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Połącz" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Zmień konfigurację witryny" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Zaproś" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj się z witryny" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Zarejestruj się" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj się na witrynie" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Wpis witryny" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokalne widoki" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Wpis strony" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Pomoc" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "O usłudze" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Prywatność" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kod źródłowy" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Odznaka" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" @@ -5463,7 +5473,7 @@ msgstr "Licencja oprogramowania StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5473,7 +5483,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** jest usługą mikroblogowania." @@ -5482,7 +5492,7 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5494,20 +5504,20 @@ msgstr "" "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licencja zawartości witryny" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s są prywatne i poufne." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5515,7 +5525,7 @@ msgstr "" "zastrzeżone." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " @@ -5523,7 +5533,7 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5531,39 +5541,39 @@ msgstr "" "$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginacja" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Później" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Wcześniej" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Nie można jeszcze obsługiwać zdalnej treści." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści XML." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsługiwać zagnieżdżonej treści Base64." @@ -5654,7 +5664,7 @@ msgstr "Konfiguracja migawek" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Ustaw licencję witryny" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5690,7 +5700,7 @@ msgid "Tried to revoke unknown token." msgstr "Spróbowano unieważnić nieznany token." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Usunięcie unieważnionego tokenu nie powiodło się." @@ -5705,187 +5715,208 @@ msgid "Icon for this application" msgstr "Ikona tej aplikacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Opisz aplikację w %d znakach" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Opisz aplikację w %d znakach" +msgstr[1] "Opisz aplikację w %d znakach" +msgstr[2] "Opisz aplikację w %d znakach" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Opisz aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "Adres URL strony domowej tej aplikacji" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "Źródłowy adres URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organizacja odpowiedzialna za tę aplikację" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "Adres URL strony domowej organizacji" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "Adres URL do przekierowania po uwierzytelnieniu" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Przeglądarka" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Pulpit" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ aplikacji, przeglądarka lub pulpit" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Tylko do odczytu" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Odczyt i zapis" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Anuluj" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "odczyt i zapis" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "tylko do odczytu" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Załączniki" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Dostawca" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Powiadamia, kiedy pojawia się ten załącznik" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Znaczniki dla tego załącznika" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Zmiana hasła nie powiodła się" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Zmiana hasła nie jest dozwolona" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Zablokuj" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Wyniki polecenia" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Błąd AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Zakończono polecenie" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Polecenie nie powiodło się" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Wpis z tym identyfikatorem nie istnieje." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Użytkownik nie posiada ostatniego wpisu." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Nie można odnaleźć użytkownika z pseudonimem %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Nie można odnaleźć lokalnego użytkownika o pseudonimie %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Te polecenie nie zostało jeszcze zaimplementowane." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Szturchanie samego siebie nie ma zbyt wiele sensu." #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Wysłano szturchnięcie do użytkownika %s." @@ -5894,7 +5925,7 @@ msgstr "Wysłano szturchnięcie do użytkownika %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5906,52 +5937,53 @@ msgstr "" "Wpisy: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Zaznaczono wpis jako ulubiony." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "Użytkownik %1$s dołączył do grupy %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "Użytkownik %1$s opuścił grupę %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Położenie: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "O mnie: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5962,111 +5994,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Błąd podczas powtarzania wpisu." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Wpis jest za długi - maksymalnie %1$d znaków, wysłano %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Wysłano odpowiedź do %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Błąd podczas zapisywania wpisu." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Podaj nazwę użytkownika do subskrybowania." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Nie można subskrybować profili OMB za pomocą polecenia." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subskrybowano użytkownika %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Usunięto subskrypcję użytkownika %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Wyłączono powiadomienia." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Włączono powiadomienia." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Polecenie logowania jest wyłączone." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6074,20 +6106,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Usunięto subskrypcję użytkownika %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Nie subskrybujesz nikogo." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subskrybujesz tę osobę:" @@ -6096,14 +6128,14 @@ msgstr[2] "Subskrybujesz te osoby:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Nikt cię nie subskrybuje." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Ta osoba cię subskrybuje:" @@ -6112,14 +6144,14 @@ msgstr[2] "Te osoby cię subskrybują:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem żadnej grupy." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Jesteś członkiem tej grupy:" @@ -6127,7 +6159,7 @@ msgstr[1] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6209,39 +6241,61 @@ msgstr "" "tracks - jeszcze nie zaimplementowano\n" "tracking - jeszcze nie zaimplementowano\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Nie odnaleziono pliku konfiguracji." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Szukano plików konfiguracji w następujących miejscach: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Należy uruchomić instalator, aby to naprawić." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Przejdź do instalatora." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Komunikator" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Połączenia" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Upoważnione połączone aplikacje" @@ -6262,11 +6316,11 @@ msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB." msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Usuń ten wpis z ulubionych" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Dodaj ten wpis do ulubionych" @@ -6286,9 +6340,9 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Kanały" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6825,7 +6879,7 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "z" @@ -6975,55 +7029,55 @@ msgstr "" "ponownie później" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "Północ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Południe" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Wschód" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Zachód" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "w" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "WWW" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "w rozmowie" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Powtórzone przez" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Odpowiedz" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Powtórzono wpis" @@ -7094,7 +7148,7 @@ msgid "Tags in %s's notices" msgstr "Znaczniki we wpisach użytkownika %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Nieznane" @@ -7488,14 +7542,19 @@ msgstr "" #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Plik kopii zapasowej dla użytkownika %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nie podano identyfikatora użytkownika." +msgstr "Nie podano użytkownika; używanie użytkownika zapasowego." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d wpisów w kopii zapasowej." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "Użytkownik %s oznaczył wpis %s jako ulubiony." + +#~ msgid "%s is now following %s." +#~ msgstr "Użytkownik %s obserwuje teraz %s." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 46121bcc33..90a14d917e 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:01+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -83,7 +83,7 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Gravar" @@ -114,7 +114,7 @@ msgstr "Página não foi encontrada." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Utilizador não foi encontrado." @@ -357,7 +357,7 @@ msgid "This status is already a favorite." msgstr "Este estado já é um favorito." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Não foi possível criar o favorito." @@ -471,18 +471,18 @@ msgid "Group not found." msgstr "Grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Foi bloqueado desse grupo pelo gestor." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível adicionar %1$s ao grupo %2$s." @@ -494,7 +494,7 @@ msgstr "Não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover %1$s do grupo %2$s." @@ -609,7 +609,7 @@ msgstr "" "permitir acesso à sua conta %4$s a terceiros da sua confiança." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -623,7 +623,7 @@ msgstr "Utilizador" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -653,12 +653,12 @@ msgid "No such notice." msgstr "Nota não foi encontrada." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Não pode repetir a sua própria nota." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Já repetiu essa nota." @@ -768,7 +768,7 @@ msgstr "Tamanho inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -799,7 +799,7 @@ msgid "Preview" msgstr "Antevisão" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Apagar" @@ -885,7 +885,7 @@ msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este utilizador" @@ -904,8 +904,8 @@ msgstr "Não foi possível gravar informação do bloqueio." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Grupo não foi encontrado." @@ -1021,7 +1021,7 @@ msgstr "Não é o proprietário desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1086,7 +1086,7 @@ msgid "Do not delete this notice" msgstr "Não apagar esta nota" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Apagar esta nota" @@ -1117,7 +1117,7 @@ msgstr "Apagar este utilizador" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Estilo" @@ -1247,7 +1247,7 @@ msgstr "Repor predefinição" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Gravar" @@ -1367,7 +1367,7 @@ msgid "Could not update group." msgstr "Não foi possível actualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os nomes alternativos." @@ -1423,7 +1423,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1619,7 +1619,7 @@ msgstr "Adicionado endereço electrónico de entrada novo." msgid "This notice is already a favorite!" msgstr "Esta nota já é uma favorita!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Retirar das favoritas" @@ -1922,7 +1922,7 @@ msgstr "Tornar este utilizador um gestor" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Notas de %s" @@ -2207,7 +2207,7 @@ msgstr "Já subscreveu estes utilizadores:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2339,7 +2339,7 @@ msgid "You must be logged in to leave a group." msgstr "Tem de iniciar uma sessão para deixar um grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Não é um membro desse grupo." @@ -2560,14 +2560,14 @@ msgid "New message" msgstr "Mensagem nova" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Não pode enviar uma mensagem a este utilizador." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Sem conteúdo!" @@ -2576,7 +2576,7 @@ msgid "No recipient specified." msgstr "Não especificou um destinatário." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." @@ -2587,12 +2587,12 @@ msgstr "Mensagem enviada" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Mensagem directa para %s foi enviada." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro do Ajax" @@ -2730,8 +2730,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Só URLs %s sobre HTTP simples, por favor." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -3085,7 +3085,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Página pessoal" @@ -3483,7 +3483,7 @@ msgstr "Repita a senha acima. Obrigatório." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Correio" @@ -3647,7 +3647,7 @@ msgstr "Não pode repetir a sua própria nota." msgid "You already repeated that notice." msgstr "Já repetiu essa nota." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3782,13 +3782,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4576,7 +4576,7 @@ msgstr "%s não está a ouvir ninguém." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4701,7 +4701,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4896,7 +4896,7 @@ msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizações de %1#s a %2$s!" @@ -4956,7 +4956,7 @@ msgid "Plugins" msgstr "Plugins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versão" @@ -4964,29 +4964,25 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autores" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Eleger como favorita" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Não é possível processar a URL '$s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4997,7 +4993,7 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" @@ -5005,13 +5001,13 @@ msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Um ficheiro desta dimensão excederia a sua quota mensal de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de ficheiro inválido." @@ -5030,13 +5026,28 @@ msgstr "Não faz parte do grupo." msgid "Group leave failed." msgstr "Saída do grupo falhou." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erro ao guardar utilizador; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Juntar-me" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5059,17 +5070,17 @@ msgid "No database name or DSN found anywhere." msgstr "Não foi encontrado nenhum nome de base de dados ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Está proibido de enviar mensagens directas." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Não foi possível actualizar a mensagem com a nova URI." @@ -5125,25 +5136,25 @@ msgid "Problem saving notice." msgstr "Problema na gravação da nota." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema na gravação da caixa de entrada do grupo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5151,7 +5162,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5203,13 +5214,9 @@ 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." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5220,57 +5227,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Não foi possível criar o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Não foi possível configurar a URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Não foi possível configurar membros do grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Não foi possível gravar a informação do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Carregar um avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Modificar a sua senha" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Alterar manuseamento de email" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Altere o estilo do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opções" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outras" @@ -5286,184 +5293,185 @@ msgid "Untitled page" msgstr "Página sem título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegação primária deste site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Ligar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Gestor" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Aviso do site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Vistas locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Aviso da página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termos" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Código fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contacto" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Emblema" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" @@ -5471,7 +5479,7 @@ msgstr "Licença de software do StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5481,7 +5489,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblogues." @@ -5490,7 +5498,7 @@ msgstr "**%%site.name%%** é um serviço de microblogues." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5502,20 +5510,20 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licença de conteúdos do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e dados do site %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" @@ -5523,7 +5531,7 @@ msgstr "" "direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Direitos de autor sobre o conteúdo e dados detidos pelos contribuidores. " @@ -5531,7 +5539,7 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" @@ -5539,41 +5547,41 @@ msgstr "" "licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Posteriores" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anteriores" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Era esperado um elemento raiz da fonte, mas foi recebido um documento XML " "inteiro." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ainda não é possível processar conteúdos remotos." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível processar conteúdo XML embutido." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível processar conteúdo Base64 embutido." @@ -5698,7 +5706,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentou revogar um código desconhecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falha ao eliminar código revogado." @@ -5713,186 +5721,206 @@ msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descreva a sua aplicação em %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descreva a sua aplicação em %d caracteres" +msgstr[1] "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descreva a sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL da página desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL de origem" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL da página desta organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL para onde reencaminhar após autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Browser" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo da aplicação, browser ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "leitura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado a %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Retirar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Fornecedor" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notas em que este anexo aparece" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Categorias para este anexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Não foi possível mudar a palavra-chave" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Não é permitido mudar a palavra-chave" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro do Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Comando terminado" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Comando falhou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Não existe nenhuma nota com essa identificação." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Utilizador não tem nenhuma última nota." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Não foi encontrado um utilizador com o nome %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Não foi encontrado nenhum utilizador local com o nome %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, este comando ainda não foi implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido tocar-nos a nós mesmos!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Toque enviado para %s." @@ -5901,7 +5929,7 @@ msgstr "Toque enviado para %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5913,52 +5941,53 @@ msgstr "" "Notas: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Nota marcada como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s juntou-se ao grupo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localidade: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Página pessoal: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5969,131 +5998,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Erro no envio da mensagem directa." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Nota de %s repetida." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Erro ao repetir nota." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Nota demasiado extensa - máx. %1$d caracteres, enviou %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Resposta a %s enviada." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Erro ao gravar nota." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Introduza o nome do utilizador para subscrever." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Não pode subscrever perfis OMB por comando." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Subscreveu %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Introduza o nome do utilizador para deixar de subscrever." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Deixou de subscrever %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Comando ainda não implementado." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificação desligada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Não foi possível desligar a notificação." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificação ligada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Não foi possível ligar a notificação." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Comando para iniciar sessão foi desactivado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "O link é utilizável uma única vez e só é válido durante 2 minutos: %s." #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Subscrição de %s cancelada." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Não subscreveu ninguém." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Subscreveu esta pessoa:" @@ -6101,14 +6130,14 @@ msgstr[1] "Subscreveu estas pessoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ninguém subscreve as suas notas." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa subscreve as suas notas:" @@ -6116,21 +6145,21 @@ msgstr[1] "Estas pessoas subscrevem as suas notas:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Não está em nenhum grupo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Está no grupo:" msgstr[1] "Está nos grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6210,39 +6239,61 @@ msgstr "" "tracks - ainda não implementado.\n" "tracking - ainda não implementado.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ficheiro de configuração não encontrado. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Procurei ficheiros de configuração nos seguintes sítios: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Talvez queira correr o instalador para resolver esta questão." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir para o instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Actualizações por mensagem instantânea (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Actualizações por SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Ligações" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicações ligadas autorizadas" @@ -6265,11 +6316,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Predefinições do estilo repostas" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Retirar esta nota das favoritas" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Eleger esta nota como favorita" @@ -6289,7 +6340,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6824,7 +6875,7 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "a partir de" @@ -6977,55 +7028,55 @@ msgstr "" "tente novamente mais tarde" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "coords." -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta nota" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Nota repetida" @@ -7096,7 +7147,7 @@ msgid "Tags in %s's notices" msgstr "Categorias nas notas de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconhecida" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 1c30940d06..ce9407ae06 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:24+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -117,7 +117,7 @@ msgstr "Esta página não existe." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Este usuário não existe." @@ -363,7 +363,7 @@ msgid "This status is already a favorite." msgstr "Esta mensagem já é favorita!" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." @@ -478,18 +478,18 @@ msgid "Group not found." msgstr "O grupo não foi encontrado." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Você já é membro desse grupo." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "O administrador desse grupo bloqueou sua inscrição." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." @@ -501,7 +501,7 @@ msgstr "Você não é membro deste grupo." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Não foi possível remover o usuário %1$s do grupo %2$s." @@ -622,7 +622,7 @@ msgstr "" "confia." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Conta" @@ -636,7 +636,7 @@ msgstr "Usuário" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -666,12 +666,12 @@ msgid "No such notice." msgstr "Essa mensagem não existe." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Você não pode repetir a sua própria mensagem." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Você já repetiu essa mensagem." @@ -781,7 +781,7 @@ msgstr "Tamanho inválido." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -813,7 +813,7 @@ msgid "Preview" msgstr "Pré-visualizar" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Excluir" @@ -900,7 +900,7 @@ msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bloquear este usuário" @@ -919,8 +919,8 @@ msgstr "Não foi possível salvar a informação de bloqueio." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Esse grupo não existe." @@ -1036,7 +1036,7 @@ msgstr "Você não é o dono desta aplicação." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1101,7 +1101,7 @@ msgid "Do not delete this notice" msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -1132,7 +1132,7 @@ msgstr "Excluir este usuário" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Aparência" @@ -1262,7 +1262,7 @@ msgstr "Restaura de volta ao padrão" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" @@ -1382,7 +1382,7 @@ msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Não foi possível criar os apelidos." @@ -1438,7 +1438,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Cancelar" @@ -1634,7 +1634,7 @@ msgstr "" msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Desmarcar a favorita" @@ -1939,7 +1939,7 @@ msgstr "Torna este usuário um administrador" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" @@ -2225,7 +2225,7 @@ msgstr "Você já está assinando esses usuários:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2358,7 +2358,7 @@ msgid "You must be logged in to leave a group." msgstr "Você deve estar autenticado para sair de um grupo." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Você não é um membro desse grupo." @@ -2583,14 +2583,14 @@ msgid "New message" msgstr "Nova mensagem" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Você não pode enviar mensagens para este usuário." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Nenhum conteúdo!" @@ -2599,7 +2599,7 @@ msgid "No recipient specified." msgstr "Não foi especificado nenhum destinatário." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2612,12 +2612,12 @@ msgstr "A mensagem foi enviada" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "A mensagem direta para %s foi enviada." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Erro no Ajax" @@ -2757,8 +2757,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Por favor, somente URLs %s sobre HTTP puro." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -3113,7 +3113,7 @@ msgstr "Nome completo" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Site" @@ -3513,7 +3513,7 @@ msgstr "Igual à senha acima. Obrigatório." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-mail" @@ -3674,7 +3674,7 @@ msgstr "Você não pode repetir sua própria mensagem." msgid "You already repeated that notice." msgstr "Você já repetiu essa mensagem." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Repetida" @@ -3810,13 +3810,13 @@ msgid "Name" msgstr "Nome" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organização" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" @@ -4602,7 +4602,7 @@ msgstr "%s não está acompanhando ninguém." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4728,7 +4728,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Perfil" @@ -4925,7 +4925,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Mensagens de %1$s no %2$s!" @@ -4986,7 +4986,7 @@ msgid "Plugins" msgstr "Plugins" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Versão" @@ -4994,29 +4994,25 @@ msgstr "Versão" msgid "Author(s)" msgstr "Autor(es)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Tornar favorita" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Não é possível processar a URL '$s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "o Robin acha que algo é impossível." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5027,20 +5023,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Um arquivo deste tamanho excederá a sua conta de %d bytes." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Nome de arquivo inválido." @@ -5059,13 +5055,28 @@ msgstr "Não é parte de um grupo." msgid "Group leave failed." msgstr "Não foi possível deixar o grupo." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Erro ao salvar usuário; inválido." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Entrar" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5088,17 +5099,17 @@ msgid "No database name or DSN found anywhere." msgstr "Não foi encontrado nenhum nome de base de dados ou DSN." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Você está proibido de enviar mensagens diretas." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." @@ -5154,32 +5165,32 @@ msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "O tipo fornecido ao método saveKnownGroups é incorreto" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Não é possível revogar a função \"%1$s\" do usuário #%2$d; não existe." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5231,13 +5242,9 @@ msgstr "Não foi possível salvar a assinatura." msgid "Could not delete subscription." msgstr "Não foi possível salvar a assinatura." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5248,57 +5255,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Não foi possível criar o grupo." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Não foi possível definir a URI do grupo." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Não foi possível configurar a associação ao grupo." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Não foi possível salvar a informação do grupo local." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Enviar um avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Alterar a sua senha" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Configurações de uso do e-mail" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Mude a aparência do seu perfil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Outras opções" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Outras" @@ -5314,184 +5321,185 @@ msgid "Untitled page" msgstr "Página sem título" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Navegação primária no site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere seu e-mail, avatar, senha, perfil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Altere as configurações do site" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administrar" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sair do site" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrar-se" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procure por pessoas ou textos" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Pesquisar" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Avisos do site" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Visualizações locais" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Notícia da página" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Navegação secundária no site" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Ajuda" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Sobre" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Termos de uso" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Privacidade" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Contato" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Mini-aplicativo" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Licença do software StatusNet" @@ -5499,7 +5507,7 @@ msgstr "Licença do software StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5509,7 +5517,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** é um serviço de microblog." @@ -5518,7 +5526,7 @@ msgstr "**%%site.name%%** é um serviço de microblog." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5530,26 +5538,26 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licença do conteúdo do site" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " @@ -5557,47 +5565,47 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Paginação" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Próximo" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Anterior" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "Era esperado um elemento raiz da fonte, mas foi obtido o documento XML " "inteiro." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Ainda não é possível manipular conteúdo remoto." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Ainda não é possível manipular conteúdo XML incorporado." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Ainda não é possível manipular conteúdo Base64." @@ -5724,7 +5732,7 @@ msgid "Tried to revoke unknown token." msgstr "Tentou revogar um código desconhecido." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Falha ao eliminar código revogado." @@ -5739,188 +5747,208 @@ msgid "Icon for this application" msgstr "Ícone para esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Descreva a sua aplicação em %d caracteres" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Descreva a sua aplicação em %d caracteres" +msgstr[1] "Descreva a sua aplicação em %d caracteres" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Descreva sua aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL do site desta aplicação" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL da fonte" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organização responsável por esta aplicação" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL para o site da organização" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL para o redirecionamento após a autenticação" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Navegador" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Desktop" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Tipo de aplicação: navegador ou desktop" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Somente leitura" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Leitura e escrita" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Cancelar" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "leitura e escrita" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "somente leitura" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Aprovado em %1$s - acesso \"%2$s\"." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Anexos" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Autor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Operadora" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Mensagens onde este anexo aparece" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Etiquetas para este anexo" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Não foi possível alterar a senha" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Não é permitido alterar a senha" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Bloquear" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultados do comando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Erro no Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "O comando foi completado" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "O comando falhou" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Não existe uma mensagem com essa id." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "O usuário não tem nenhuma \"última mensagem\"." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Não foi possível encontrar nenhum usuário com a identificação %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" "Não foi possível encontrar nenhum usuário local com a identificação %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, mas esse comando ainda não foi implementado." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Não faz muito sentido chamar a sua própria atenção!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Foi enviada a chamada de atenção para %s." @@ -5929,7 +5957,7 @@ msgstr "Foi enviada a chamada de atenção para %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5941,52 +5969,53 @@ msgstr "" "Mensagens: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Mensagem marcada como favorita." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s associou-se ao grupo %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s deixou o grupo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Localização: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Site: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Sobre: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5997,32 +6026,32 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ocorreu um erro durante o envio da mensagem direta." #. 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:554 +#: lib/command.php:551 #, php-format 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. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" @@ -6030,80 +6059,80 @@ msgstr "" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "A resposta para %s foi enviada." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Erro no salvamento da mensagem." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Especifique o nome do usuário que será assinado." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Não é possível assinar perfis OMB com comandos." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Foi efetuada a assinatura de $s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Especifique o nome do usuário cuja assinatura será cancelada." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Foi cancelada a assinatura de %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notificação desligada." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notificação ligada." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "O comando para autenticação está desabilitado." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6112,20 +6141,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Foi cancelada a assinatura de %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Você não está assinando ninguém." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Você já está assinando esta pessoa:" @@ -6133,14 +6162,14 @@ msgstr[1] "Você já está assinando estas pessoas:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ninguém o assinou ainda." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Esta pessoa está assinando você:" @@ -6148,21 +6177,21 @@ msgstr[1] "Estas pessoas estão assinando você:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Você não é membro de nenhum grupo." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Você é membro deste grupo:" msgstr[1] "Você é membro destes grupos:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6243,39 +6272,61 @@ msgstr "" "tracks - não implementado ainda\n" "tracking - não implementado ainda\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Não foi encontrado nenhum arquivo de configuração. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Você pode querer executar o instalador para corrigir isto." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Ir para o instalador." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "MI" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Atualizações via mensageiro instantâneo (MI)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Atualizações via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexões" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Aplicações autorizadas conectadas" @@ -6297,11 +6348,11 @@ msgstr "" msgid "Design defaults restored." msgstr "A aparência padrão foi restaurada." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Excluir das favoritas" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Acrescentar às favoritas" @@ -6321,7 +6372,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6859,7 +6910,7 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "de" @@ -7014,55 +7065,55 @@ msgstr "" "esperado. Por favor, tente novamente mais tarde." #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "L" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "O" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "em" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "no contexto" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Repetida por" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Mensagem repetida" @@ -7133,7 +7184,7 @@ msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Desconhecido" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 0c11808e79..01a8dfc192 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:03+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -86,7 +86,7 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -117,7 +117,7 @@ msgstr "Нет такой страницы." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Нет такого пользователя." @@ -361,7 +361,7 @@ msgid "This status is already a favorite." msgstr "Этот статус уже входит в число любимых." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." @@ -477,18 +477,18 @@ msgid "Group not found." msgstr "Группа не найдена." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Вы заблокированы из этой группы администратором." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." @@ -500,7 +500,7 @@ msgstr "Вы не являетесь членом этой группы." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Не удаётся удалить пользователя %1$s из группы %2$s." @@ -617,7 +617,7 @@ msgstr "" "сторонним приложениям, которым вы доверяете." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Настройки" @@ -631,7 +631,7 @@ msgstr "Имя" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -661,12 +661,12 @@ msgid "No such notice." msgstr "Нет такой записи." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Невозможно повторить собственную запись." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Запись уже повторена." @@ -776,7 +776,7 @@ msgstr "Неверный размер." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" @@ -808,7 +808,7 @@ msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Удалить" @@ -894,7 +894,7 @@ msgstr "Да" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Заблокировать пользователя." @@ -913,8 +913,8 @@ msgstr "Не удаётся сохранить информацию о блок #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Нет такой группы." @@ -1030,7 +1030,7 @@ msgstr "Вы не являетесь владельцем этого прило #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Проблема с вашим ключом сессии." @@ -1095,7 +1095,7 @@ msgid "Do not delete this notice" msgstr "Не удалять эту запись" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Удалить эту запись" @@ -1126,7 +1126,7 @@ msgstr "Удалить этого пользователя" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Оформление" @@ -1254,7 +1254,7 @@ msgstr "Восстановить значения по умолчанию" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" @@ -1374,7 +1374,7 @@ msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Не удаётся создать алиасы." @@ -1430,7 +1430,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Отмена" @@ -1631,7 +1631,7 @@ msgstr "Новый входящий электронный адрес добав msgid "This notice is already a favorite!" msgstr "Эта запись уже входит в число любимых!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Разлюбить" @@ -1935,7 +1935,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "Лента %s" @@ -2221,7 +2221,7 @@ msgstr "Вы уже подписаны на пользователя:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2354,7 +2354,7 @@ msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." @@ -2576,14 +2576,14 @@ msgid "New message" msgstr "Новое сообщение" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Вы не можете послать сообщение этому пользователю." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Нет контента!" @@ -2592,7 +2592,7 @@ msgid "No recipient specified." msgstr "Нет адресата." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." @@ -2603,12 +2603,12 @@ msgstr "Сообщение отправлено" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Прямое сообщение для %s послано." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ошибка AJAX" @@ -2745,8 +2745,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Только %s URL в простом HTTP, пожалуйста." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." @@ -3099,7 +3099,7 @@ msgstr "Полное имя" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Главная" @@ -3495,7 +3495,7 @@ msgstr "Тот же пароль что и сверху. Обязательно #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Email" @@ -3653,7 +3653,7 @@ msgstr "Вы не можете повторить собственную зап msgid "You already repeated that notice." msgstr "Вы уже повторили эту запись." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3790,13 +3790,13 @@ msgid "Name" msgstr "Имя" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Организация" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Описание" @@ -4588,7 +4588,7 @@ msgstr "%s не просматривает ничьи записи." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4714,7 +4714,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профиль" @@ -4908,7 +4908,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -4969,7 +4969,7 @@ msgid "Plugins" msgstr "Плагины" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версия" @@ -4977,29 +4977,25 @@ msgstr "Версия" msgid "Author(s)" msgstr "Автор(ы)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Пометить" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Невозможно обработать URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робин считает, что это невозможно." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -5010,20 +5006,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "Файл такого размера превысит вашу пользовательскую квоту в %d байта." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Файл такого размера превысит вашу месячную квоту в %d байта." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Неверное имя файла." @@ -5042,13 +5038,28 @@ msgstr "Не является частью группы." msgid "Group leave failed." msgstr "Не удаётся покинуть группу." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Ошибка сохранения пользователя; неверное имя." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Присоединиться" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5071,17 +5082,17 @@ msgid "No database name or DSN found anywhere." msgstr "Имя базы данных или DSN не найдено." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Вы заблокированы от отправки прямых сообщений." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не удаётся вставить сообщение." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." @@ -5137,25 +5148,25 @@ msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Для saveKnownGroups указан неверный тип" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" @@ -5164,7 +5175,7 @@ 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5215,13 +5226,9 @@ msgstr "Не удаётся удалить подписочный жетон OMB msgid "Could not delete subscription." msgstr "Не удаётся удалить подписку." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5232,57 +5239,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Не удаётся создать группу." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Не удаётся назначить URI группы." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Не удаётся сохранить информацию о локальной группе." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Загрузить аватару" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Измените свой пароль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Изменить электронный адрес" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Оформить ваш профиль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Другие опции" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Другое" @@ -5298,184 +5305,185 @@ msgid "Untitled page" msgstr "Страница без названия" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Главная навигация" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Личное" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватар, пароль, профиль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить с сервисами" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Соединить" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию сайта" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Настройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Пригласить" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Выход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Регистрация" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Помощь" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Поиск" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Уведомление сайта" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Локальные виды" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Новая запись" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Навигация по подпискам" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Помощь" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "О проекте" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧаВо" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "TOS" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Пользовательское соглашение" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Исходный код" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контактная информация" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Бедж" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet лицензия" @@ -5483,7 +5491,7 @@ msgstr "StatusNet лицензия" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5493,7 +5501,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — сервис микроблогинга." @@ -5502,7 +5510,7 @@ msgstr "**%%site.name%%** — сервис микроблогинга." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5515,27 +5523,27 @@ msgstr "" "licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Лицензия содержимого сайта" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s являются личными и конфиденциальными." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат %1$s. Все права защищены." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Авторские права на содержание и данные принадлежат разработчикам. Все права " @@ -5543,45 +5551,45 @@ 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Разбиение на страницы" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Туда" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Ожидался корневой элемент потока, а получен XML-документ целиком." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Пока ещё нельзя обрабатывать удалённое содержимое." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Пока ещё нельзя обрабатывать встроенный XML." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё нельзя обрабатывать встроенное содержание Base64." @@ -5708,7 +5716,7 @@ msgid "Tried to revoke unknown token." msgstr "Попытка отменить неизвестный ключ." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не удаётся удалить аннулированный ключ." @@ -5723,187 +5731,208 @@ msgid "Icon for this application" msgstr "Иконка для этого приложения" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишите ваше приложение при помощи %d символов" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишите ваше приложение при помощи %d символов" +msgstr[1] "Опишите ваше приложение при помощи %d символов" +msgstr[2] "Опишите ваше приложение при помощи %d символов" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Опишите ваше приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL-адрес домашней страницы этого приложения" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL источника" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Организация, ответственная за это приложение" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL-адрес домашней страницы организации" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL для перенаправления после проверки подлинности" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Операционная система" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Среда выполнения приложения: браузер или операционная система" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Только чтение" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Чтение и запись" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Отменить" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "чтение/запись" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Подтверждён доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Вложения" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Сервис" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Сообщает, где появляется это вложение" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Теги для этого вложения" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Изменение пароля не удалось" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Смена пароля не разрешена" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блокировать" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Команда исполнена" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ошибка AJAX" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Команда завершена" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Команда неудачна" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Записи с таким id не существует." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "У пользователя нет последней записи." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не удаётся найти пользователя с именем %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Не удаётся найти локального пользователя с именем %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Простите, эта команда ещё не выполнена." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Нет смысла «подталкивать» самого себя!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "«Подталкивание» послано %s." @@ -5912,7 +5941,7 @@ msgstr "«Подталкивание» послано %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5924,52 +5953,53 @@ msgstr "" "Записей: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Запись помечена как любимая." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." 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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s покинул группу %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Полное имя: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "О пользователе: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5980,112 +6010,112 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" "Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Ошибка при отправке прямого сообщения." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Запись %s повторена." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Ошибка при повторении записи." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Запись слишком длинная — не больше %1$d символов, вы отправили %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Ответ %s отправлен." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Проблемы с сохранением записи." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Невозможно подписаться командой на профили OMB." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Подписался на %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Отписаться от %s." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Оповещение отсутствует." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Нет оповещения." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Есть оповещение." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Есть оповещение." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Команда входа отключена." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6094,20 +6124,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Отписано %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Вы подписаны на этих людей:" @@ -6116,14 +6146,14 @@ msgstr[2] "Вы подписаны на этих людей:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Эти люди подписались на вас:" @@ -6132,14 +6162,14 @@ msgstr[2] "Эти люди подписались на вас:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Вы являетесь участником следующих групп:" @@ -6147,7 +6177,7 @@ msgstr[1] "Вы являетесь участником следующих гр msgstr[2] "Вы являетесь участником следующих групп:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6227,39 +6257,61 @@ msgstr "" "tracks — пока не реализовано.\n" "tracking — пока не реализовано.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Конфигурационный файл не найден. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Конфигурационные файлы искались в следующих местах: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Возможно, вы решите запустить установщик для исправления этого." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Перейти к установщику" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Обновления по СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Соединения" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Авторизованные соединённые приложения" @@ -6282,11 +6334,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Оформление по умолчанию восстановлено." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Мне не нравится эта запись" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Мне нравится эта запись" @@ -6306,7 +6358,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6841,7 +6893,7 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "от" @@ -6991,55 +7043,55 @@ msgstr "" "времени, чем ожидалось; повторите попытку позже" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "с. ш." #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ю. ш." #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "в. д." #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "з. д." -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "из" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "web" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "переписка" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Запись повторена" @@ -7110,7 +7162,7 @@ msgid "Tags in %s's notices" msgstr "Теги записей пользователя %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Неизвестно" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 6cbb79490b..973a599fbb 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,7 +75,7 @@ msgstr "" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -106,7 +106,7 @@ msgstr "" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -338,7 +338,7 @@ msgid "This status is already a favorite." msgstr "" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "" @@ -451,18 +451,18 @@ msgid "Group not found." msgstr "" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "" @@ -474,7 +474,7 @@ msgstr "" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "" @@ -586,7 +586,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "" @@ -600,7 +600,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "" @@ -630,12 +630,12 @@ msgid "No such notice." msgstr "" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "" @@ -745,7 +745,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "" @@ -776,7 +776,7 @@ msgid "Preview" msgstr "" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "" @@ -859,7 +859,7 @@ msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "" @@ -878,8 +878,8 @@ msgstr "" #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "" @@ -995,7 +995,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1055,7 +1055,7 @@ msgid "Do not delete this notice" msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "" @@ -1084,7 +1084,7 @@ msgstr "" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "" @@ -1210,7 +1210,7 @@ msgstr "" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "" @@ -1330,7 +1330,7 @@ msgid "Could not update group." msgstr "" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "" @@ -1384,7 +1384,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" msgid "This notice is already a favorite!" msgstr "" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "" @@ -1863,7 +1863,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "" @@ -2123,7 +2123,7 @@ msgstr "" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2226,7 +2226,7 @@ msgid "You must be logged in to leave a group." msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "" @@ -2443,14 +2443,14 @@ msgid "New message" msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "" @@ -2459,7 +2459,7 @@ msgid "No recipient specified." msgstr "" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2470,12 +2470,12 @@ msgstr "" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "" @@ -2604,8 +2604,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "" @@ -2952,7 +2952,7 @@ msgstr "" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "" @@ -3324,7 +3324,7 @@ msgstr "" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "" @@ -3459,7 +3459,7 @@ msgstr "" msgid "You already repeated that notice." msgstr "" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "" @@ -3589,13 +3589,13 @@ msgid "Name" msgstr "" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -4328,7 +4328,7 @@ msgstr "" msgid "Jabber" msgstr "" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4447,7 +4447,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "" @@ -4631,7 +4631,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4680,7 +4680,7 @@ msgid "Plugins" msgstr "" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "" @@ -4688,29 +4688,25 @@ msgstr "" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4719,20 +4715,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "" @@ -4751,13 +4747,28 @@ msgstr "" msgid "Group leave failed." msgstr "" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, php-format +msgid "Group ID %s is invalid." +msgstr "" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4780,17 +4791,17 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "" @@ -4842,32 +4853,32 @@ msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" 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:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -4917,13 +4928,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -4934,57 +4941,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "" @@ -5000,184 +5007,185 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "" @@ -5185,7 +5193,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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5193,7 +5201,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -5202,7 +5210,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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5211,70 +5219,70 @@ msgid "" msgstr "" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5399,7 +5407,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5414,186 +5422,203 @@ msgid "Icon for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, php-format -msgid "Describe your application in %d characters" -msgstr "" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "" +msgstr[1] "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +msgid "Password changing failed." msgstr "" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +msgid "Password changing is not allowed." msgstr "" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +msgid "AJAX error" +msgstr "" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5602,7 +5627,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5611,52 +5636,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5665,131 +5691,131 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, 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:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" @@ -5797,14 +5823,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:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" @@ -5812,21 +5838,21 @@ msgstr[1] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -5868,39 +5894,58 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "" -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +msgctxt "MENU" msgid "Connections" msgstr "" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -5921,11 +5966,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "" @@ -5945,7 +5990,7 @@ msgstr "" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6375,7 +6420,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "" @@ -6520,55 +6565,55 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "" @@ -6639,7 +6684,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 878c658ac6..99fbeae471 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:26+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -113,7 +113,7 @@ msgstr "Ingen sådan sida" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Ingen sådan användare." @@ -353,7 +353,7 @@ msgid "This status is already a favorite." msgstr "Denna status är redan en favorit." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." @@ -467,18 +467,18 @@ msgid "Group not found." msgstr "Grupp hittades inte." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Du är redan en medlem i denna grupp." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Du har blivit blockerad från denna grupp av administratören." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." @@ -490,7 +490,7 @@ msgstr "Du är inte en medlem i denna grupp." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "Kunde inte ta bort användare %1$s från grupp %2$s." @@ -605,7 +605,7 @@ msgstr "" "ge tillgång till ditt %4$s-konto till tredje-parter du litar på." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Konto" @@ -619,7 +619,7 @@ msgstr "Smeknamn" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lösenord" @@ -649,12 +649,12 @@ msgid "No such notice." msgstr "Ingen sådan notis." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kan inte upprepa din egen notis." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Redan upprepat denna notis." @@ -764,7 +764,7 @@ msgstr "Ogiltig storlek." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -796,7 +796,7 @@ msgid "Preview" msgstr "Förhandsgranska" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Ta bort" @@ -882,7 +882,7 @@ msgstr "Ja" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Blockera denna användare" @@ -901,8 +901,8 @@ msgstr "Misslyckades att spara blockeringsinformation." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Ingen sådan grupp." @@ -1019,7 +1019,7 @@ msgstr "Du är inte ägaren av denna applikation." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1084,7 +1084,7 @@ msgid "Do not delete this notice" msgstr "Ta inte bort denna notis" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -1115,7 +1115,7 @@ msgstr "Ta bort denna användare" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Utseende" @@ -1243,7 +1243,7 @@ msgstr "Återställ till standardvärde" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Spara" @@ -1363,7 +1363,7 @@ msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." @@ -1419,7 +1419,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Avbryt" @@ -1611,7 +1611,7 @@ msgstr "Ny inkommande e-postadress tillagd." msgid "This notice is already a favorite!" msgstr "Denna notis är redan en favorit!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Ta bort märkning som favorit" @@ -1914,7 +1914,7 @@ msgstr "Gör denna användare till administratör" #. 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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s tidslinje" @@ -2197,7 +2197,7 @@ msgstr "Du prenumererar redan på dessa användare:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2332,7 +2332,7 @@ msgid "You must be logged in to leave a group." msgstr "Du måste vara inloggad för att lämna en grupp." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "Du är inte en medlem i den gruppen." @@ -2553,14 +2553,14 @@ msgid "New message" msgstr "Nytt meddelande" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Du kan inte skicka ett meddelande till den användaren." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Inget innehåll!" @@ -2569,7 +2569,7 @@ msgid "No recipient specified." msgstr "Ingen mottagare angiven." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2582,12 +2582,12 @@ msgstr "Meddelande skickat" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Direktmeddelande till %s skickat." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "AJAX-fel" @@ -2725,8 +2725,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "Endast %s-webbadresser över vanlig HTTP." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -3078,7 +3078,7 @@ msgstr "Fullständigt namn" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Hemsida" @@ -3476,7 +3476,7 @@ msgstr "Samma som lösenordet ovan. Måste fyllas i." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "E-post" @@ -3638,7 +3638,7 @@ msgstr "Du kan inte upprepa din egna notis." msgid "You already repeated that notice." msgstr "Du har redan upprepat denna notis." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Upprepad" @@ -3772,13 +3772,13 @@ msgid "Name" msgstr "Namn" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Organisation" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Beskrivning" @@ -4561,7 +4561,7 @@ msgstr "%s lyssnar inte på någon." msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4687,7 +4687,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4884,7 +4884,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -4945,7 +4945,7 @@ msgid "Plugins" msgstr "Insticksmoduler" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Version" @@ -4953,29 +4953,25 @@ msgstr "Version" msgid "Author(s)" msgstr "Författare" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Markera som favorit" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Webbadressen '%s' kan inte bearbeta" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Robin tycker att något är omöjligt" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4986,20 +4982,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "En så här stor fil skulle överskrida din användarkvot på %d byte." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "En sådan här stor fil skulle överskrida din månatliga kvot på %d byte." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Ogiltigt filnamn." @@ -5018,13 +5014,28 @@ msgstr "Inte med i grupp." msgid "Group leave failed." msgstr "Grupputträde misslyckades." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Fel vid sparande av användare; ogiltig." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Gå med" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5047,17 +5058,17 @@ msgid "No database name or DSN found anywhere." msgstr "Inget databasnamn eller DSN funnen någonstans." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Du är utestängd från att skicka direktmeddelanden." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Kunde inte infoga meddelande." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Kunde inte uppdatera meddelande med ny URI." @@ -5113,32 +5124,32 @@ msgid "Problem saving notice." msgstr "Problem med att spara notis." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Dålig typ tillhandahållen saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; finns inte." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; databasfel." @@ -5188,13 +5199,9 @@ msgstr "Kunde inte spara prenumeration." msgid "Could not delete subscription." msgstr "Kunde inte spara prenumeration." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5205,57 +5212,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kunde inte skapa grupp." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Kunde inte ställa in grupp-URI." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Kunde inte spara lokal gruppinformation." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Ladda upp en avatar" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "Ändra ditt lösenord" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Ändra e-posthantering" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "Designa din profil" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Övriga alternativ" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Övrigt" @@ -5271,184 +5278,185 @@ msgid "Untitled page" msgstr "Namnlös sida" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Personligt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Anslut" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Administratör" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Bjud in" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Logga ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Registrera" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in på webbplatsen" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Logga in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Hjälp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Webbplatsnotis" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Lokala vyer" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Sidnotis" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Hjälp" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Om" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "Frågor & svar" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Användarvillkor" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Sekretess" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Källa" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Emblem" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" @@ -5456,7 +5464,7 @@ msgstr "Programvarulicens för StatusNet" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5466,7 +5474,7 @@ msgstr "" "%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** är en mikrobloggtjänst." @@ -5475,7 +5483,7 @@ msgstr "**%%site.name%%** är en mikrobloggtjänst." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5487,71 +5495,71 @@ msgstr "" "fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Licens för webbplatsinnehåll" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Innehåll och data av %1$s är privat och konfidensiell." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." #. 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Numrering av sidor" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Senare" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Tidigare" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "Förväntade ett flödes rotelement, men fick ett helt XML-dokument." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Kan inte hantera fjärrinnehåll ännu." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Kan inte hantera inbäddat XML-innehåll ännu." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehåll ännu." @@ -5677,7 +5685,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5692,187 +5700,207 @@ msgid "Icon for this application" msgstr "Ikon för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Beskriv din applikation med högst %d tecken" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Beskriv din applikation med högst %d tecken" +msgstr[1] "Beskriv din applikation med högst %d tecken" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "Beskriv din applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL till hemsidan för denna applikation" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL för källa" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Organisation som ansvarar för denna applikation" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL till organisationens hemsidan" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL att omdirigera till efter autentisering" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Webbläsare" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Skrivbord" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Typ av applikation, webbläsare eller skrivbord" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Skrivskyddad" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Läs och skriv" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Avbryt" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "läs och skriv" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 msgid "read-only" msgstr "skrivskyddad" -#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) -#: lib/applicationlist.php:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Godkänd %1$s - \"%2$s\" åtkomst." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Bilagor" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Författare" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Tillhandahållare" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Notiser där denna bilaga förekommer" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Taggar för denna billaga" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Byte av lösenord misslyckades" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Byte av lösenord är inte tillåtet" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Blockera" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Resultat av kommando" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "AJAX-fel" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Kommando komplett" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Kommando misslyckades" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Notis med den ID:n finns inte." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Användare har ingen sista notis." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Kunde inte hitta en användare med smeknamnet %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Kunde inte hitta en lokal användare med smeknamnet %s." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Tyvärr, detta kommando är inte implementerat än." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Det verkar inte vara särskilt meningsfullt att knuffa dig själv!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Knuff skickad till %s." @@ -5881,7 +5909,7 @@ msgstr "Knuff skickad till %s." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5893,52 +5921,53 @@ msgstr "" "Notiser: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Notis markerad som favorit." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "%1$s gick med i grupp %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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s lämnade grupp %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Fullständigt namn: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Plats: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Om: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5949,111 +5978,111 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format 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." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Fel vid sändning av direktmeddelande." #. 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:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Notis från %s upprepad." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Fel vid upprepning av notis." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "Notis för långt - maximum är %1$d tecken, du skickade %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Svar på %s skickat." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Fel vid sparande av notis." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 msgid "Specify the name of the user to subscribe to." msgstr "Ange namnet på användaren att prenumerara på." #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Kan inte prenumera på OMB-profiler via kommando." #. 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "Prenumererar på %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 msgid "Specify the name of the user to unsubscribe from." msgstr "Ange namnet på användaren att avsluta prenumeration på." #. 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Prenumeration på %s avslutad." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Kommando inte implementerat än." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Notifikation av." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Kan inte sätta på notifikation." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Notifikation på." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Kan inte stänga av notifikation." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Inloggningskommando är inaktiverat." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6061,20 +6090,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "%ss prenumeration avslutad." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 msgid "You are not subscribed to anyone." msgstr "Du prenumererar inte på någon." #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Du prenumererar på denna person:" @@ -6082,14 +6111,14 @@ msgstr[1] "Du prenumererar på dessa personer:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." msgstr "Ingen prenumerar på dig." #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Denna person prenumererar på dig:" @@ -6097,21 +6126,21 @@ msgstr[1] "Dessa personer prenumererar på dig:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." msgstr "Du är inte medlem i några grupper." #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Du är en medlem i denna grupp:" msgstr[1] "Du är en medlem i dessa grupper:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6191,39 +6220,61 @@ msgstr "" "tracks - inte implementerat än.\n" "tracking - inte implementerat än.\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Ingen konfigurationsfil hittades. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Jag letade efter konfigurationsfiler på följande platser: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Du kanske vill köra installeraren för att åtgärda detta." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Gå till installeraren." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "Snabbmeddelande" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via snabbmeddelande (IM)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Uppdateringar via SMS" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Anslutningar" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Tillåt anslutna applikationer" @@ -6246,11 +6297,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Standardvärden för utseende återställda." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Avmarkera denna notis som favorit" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Markera denna notis som favorit" @@ -6270,7 +6321,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6802,7 +6853,7 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "från" @@ -6955,55 +7006,55 @@ msgstr "" "god försök igen senare" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Ö" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "V" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "på" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "webb" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "i sammanhang" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Upprepad av" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Svara på denna notis" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Notis upprepad" @@ -7074,7 +7125,7 @@ msgid "Tags in %s's notices" msgstr "Taggar i %ss notiser" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Okänd" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 5ad2170d8f..88e383d20f 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:04+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:27+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -80,7 +80,7 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -111,7 +111,7 @@ msgstr "అటువంటి పేజీ లేదు." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -349,7 +349,7 @@ msgid "This status is already a favorite." msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." @@ -462,18 +462,18 @@ msgid "Group not found." msgstr "గుంపు దొరకలేదు." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" @@ -485,7 +485,7 @@ msgstr "మీరు ఈ గుంపులో సభ్యులు కాద #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." @@ -598,7 +598,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "ఖాతా" @@ -612,7 +612,7 @@ msgstr "పేరు" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "సంకేతపదం" @@ -642,12 +642,12 @@ msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." @@ -758,7 +758,7 @@ msgstr "తప్పుడు పరిమాణం." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "అవతారం" @@ -790,7 +790,7 @@ msgid "Preview" msgstr "మునుజూపు" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "తొలగించు" @@ -875,7 +875,7 @@ msgstr "అవును" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -894,8 +894,8 @@ msgstr "నిరోధపు సమాచారాన్ని భద్రప #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "అటువంటి గుంపు లేదు." @@ -1011,7 +1011,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1073,7 +1073,7 @@ msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించకు" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -1104,7 +1104,7 @@ msgstr "ఈ వాడుకరిని తొలగించు" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "రూపురేఖలు" @@ -1235,7 +1235,7 @@ msgstr "అప్రమేయాలని ఉపయోగించు" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" @@ -1357,7 +1357,7 @@ msgid "Could not update group." msgstr "గుంపుని తాజాకరించలేకున్నాం." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." @@ -1413,7 +1413,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" @@ -1613,7 +1613,7 @@ msgstr "ఈమెయిలు చిరునామా లేదు." msgid "This notice is already a favorite!" msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor favorite" msgstr "ఇష్టాంశాలకు చేర్చు" @@ -1911,7 +1911,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" @@ -2185,7 +2185,7 @@ msgstr "మీరు ఇప్పటికే ఈ వాడుకరులకు #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2313,7 +2313,7 @@ msgid "You must be logged in to leave a group." msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "మీరు ఆ గుంపులో సభ్యులు కాదు." @@ -2532,14 +2532,14 @@ msgid "New message" msgstr "కొత్త సందేశం" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "ఈ వాడుకరికి మీరు సందేశాన్ని పంపించలేరు." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "విషయం లేదు!" @@ -2548,7 +2548,7 @@ msgid "No recipient specified." msgstr "ఎవరికి పంపించాలో పేర్కొనలేదు." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి." @@ -2559,12 +2559,12 @@ msgstr "సందేశాన్ని పంపించాం" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "%sకి నేరు సందేశాన్ని పంపించాం." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "అజాక్స్ పొరపాటు" @@ -2700,8 +2700,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "" @@ -3062,7 +3062,7 @@ msgstr "పూర్తి పేరు" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -3453,7 +3453,7 @@ msgstr "పై సంకేతపదం మరోసారి. తప్పన #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "ఈమెయిల్" @@ -3607,7 +3607,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి msgid "You already repeated that notice." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" @@ -3745,13 +3745,13 @@ msgid "Name" msgstr "పేరు" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "సంస్ధ" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "వివరణ" @@ -4530,7 +4530,7 @@ msgstr "%s ప్రస్తుతం ఎవరినీ వినడంలే msgid "Jabber" msgstr "జాబర్" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4653,7 +4653,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "ప్రొఫైలు" @@ -4839,7 +4839,7 @@ msgstr "[గుంపులని వెతికి](%%action.groupsearch%%) #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, fuzzy, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" @@ -4889,7 +4889,7 @@ msgid "Plugins" msgstr "ప్లగిన్లు" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "సంచిక" @@ -4897,29 +4897,25 @@ msgstr "సంచిక" msgid "Author(s)" msgstr "రచయిత(లు)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "ఇష్టపడు" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4928,20 +4924,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "తప్పుడు దస్త్రపుపేరు.." @@ -4960,13 +4956,28 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "చేరు" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -4989,18 +5000,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." @@ -5054,33 +5065,33 @@ msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5132,13 +5143,9 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Could not delete subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5149,58 +5156,58 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sకి స్వాగతం!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "గుంపుని సృష్టించలేకపోయాం." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "గుంపుని సృష్టించలేకపోయాం." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 #, fuzzy msgid "Change your profile settings" msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "ఒక అవతారాన్ని ఎక్కించండి" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "మీ సంకేతపదాన్ని మార్చుకోండి" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "వాడుకరి ప్రొఫైలు" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "ఇతర ఎంపికలు" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "ఇతర" @@ -5216,185 +5223,186 @@ msgid "Untitled page" msgstr "శీర్షికలేని పేజీ" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "ప్రాధమిక సైటు మార్గదర్శిని" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "వ్యక్తిగత" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "అనుసంధానాలు" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "అనుసంధానించు" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "ఖాతాని సృష్టించుకోండి" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "నమోదు" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటు లోనికి ప్రవేశించండి" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించు" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "సహాయం" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ప్రజలు లేదా పాఠ్యం కొరకు వెతకండి" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "వెతుకు" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "సైటు గమనిక" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "స్థానిక వీక్షణలు" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "పేజీ గమనిక" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "ద్వితీయ సైటు మార్గదర్శిని" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "సహాయం" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "గురించి" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ప్రశ్నలు" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "సేవా నియమాలు" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "అంతరంగికత" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "మూలము" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "సంప్రదించు" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "బాడ్జి" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" @@ -5402,7 +5410,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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5412,7 +5420,7 @@ msgstr "" "అందిస్తున్న సూక్ష్మ బ్లాగింగు సేవ." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." @@ -5421,7 +5429,7 @@ msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగి #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5433,70 +5441,70 @@ msgstr "" "పై నడుస్తుంది." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైసెన్సు" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "పేజీకరణ" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "ఇంతక్రితం" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5624,7 +5632,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5639,192 +5647,211 @@ msgid "Icon for this application" msgstr "ఈ ఉపకరణానికి ప్రతీకం" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" +msgstr[1] "మీ ఉపకరణం గురించి %d అక్షరాల్లో వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "మీ ఉపకరణాన్ని వివరించండి" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "మూలము" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "ఈ ఉపకరణానికి బాధ్యతాయుతమైన సంస్థ" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "విహారిణి" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "మేజోపరి" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "ఉపకరణ రకం, విహారిణి లేదా మేజోపరి" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "చదవడం-మాత్రమే" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "రద్దుచేయి" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "చదవడం-వ్రాయడం" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "తొలగించు" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "జోడింపులు" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "రచయిత" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "మునుజూపు" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 #, fuzzy msgid "Tags for this attachment" msgstr "అటువంటి జోడింపు లేదు." -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "సంకేతపదం మార్పు విఫలమైంది" -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "సంకేతపదం మార్పు" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "నిరోధించు" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "ఆదేశ ఫలితాలు" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "అజాక్స్ పొరపాటు" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "ఆదేశం పూర్తయ్యింది" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "ఆదేశం విఫలమైంది" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 #, fuzzy msgid "Notice with that id does not exist." msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5833,7 +5860,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5845,52 +5872,53 @@ msgstr "" "నోటీసులు: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "నోటీసుని ఇష్టాంశంగా గుర్తించాం." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "హోంపేజీ: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "గురించి: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5899,136 +5927,136 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "సందేశాలు" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, fuzzy, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%sకి స్పందనలు" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 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:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "%sకి చందా చేరారు." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 #, fuzzy msgid "Command not yet implemented." msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "నిర్ధారణ సంకేతం లేదు." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "నిర్ధారణ సంకేతం లేదు." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 #, fuzzy msgid "Can't turn on notification." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "%sకి స్పందనలు" @@ -6036,14 +6064,14 @@ msgstr[1] "%sకి స్పందనలు" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "%sకి స్పందనలు" @@ -6051,21 +6079,21 @@ msgstr[1] "%sకి స్పందనలు" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6107,40 +6135,61 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "స్వరూపణపు దస్త్రమేమీ కనబడలేదు. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ ప్రదేశాలతో చూసాం: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 #, fuzzy msgid "Go to the installer." msgstr "సైటు లోనికి ప్రవేశించండి" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SSLని ఉపయోగించు" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "అనుసంధానాలు" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" @@ -6161,12 +6210,12 @@ msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్ msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 #, fuzzy msgid "Disfavor this notice" msgstr "ఈ నోటీసుని తొలగించు" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -6186,7 +6235,7 @@ msgstr "ఆటమ్" msgid "FOAF" msgstr "" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6707,7 +6756,7 @@ msgstr "" "మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు " "పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "నుండి" @@ -6857,55 +6906,55 @@ msgstr "" "కాసేపాగి ప్రయత్నించండి" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "ఉ" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "ద" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "తూ" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "ప" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "ప్రాంతం" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "జాలం" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "సందర్భంలో" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "%s యొక్క పునరావృతం" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "స్పందించండి" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "నోటీసుని పునరావృతించారు" @@ -6979,7 +7028,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 #, fuzzy msgid "Unknown" msgstr "తెలియని చర్య" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index d262c92b3d..4f5e88c692 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:05+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:29+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -82,7 +82,7 @@ msgstr "Erişim ayarlarını kaydet" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" @@ -113,7 +113,7 @@ msgstr "Böyle bir kullanıcı yok." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Böyle bir kullanıcı yok." @@ -351,7 +351,7 @@ msgid "This status is already a favorite." msgstr "Bu durum mesajı zaten bir favori." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Favori oluşturulamadı." @@ -466,18 +466,18 @@ msgid "Group not found." msgstr "Onay kodu bulunamadı." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "Bize o profili yollamadınız" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "Bu gruptan yönetici tarafından engellendiniz." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Sunucuya yönlendirme yapılamadı: %s" @@ -489,7 +489,7 @@ msgstr "Bu grubun bir üyesi değilsiniz." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "%1$s kullanıcısı, %2$s grubundan silinemedi." @@ -604,7 +604,7 @@ msgid "" msgstr "" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Hesap" @@ -618,7 +618,7 @@ msgstr "Takma ad" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Parola" @@ -648,12 +648,12 @@ msgid "No such notice." msgstr "Böyle bir durum mesajı yok." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "Kendi durum mesajınızı tekrarlayamazsınız." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Bu durum mesajı zaten tekrarlanmış." @@ -764,7 +764,7 @@ msgstr "Geçersiz büyüklük." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Avatar" @@ -797,7 +797,7 @@ msgid "Preview" msgstr "Önizleme" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Sil" @@ -884,7 +884,7 @@ msgstr "Evet" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Bu kullanıcıyı engelle" @@ -903,8 +903,8 @@ msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı." #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "Böyle bir kullanıcı yok." @@ -1020,7 +1020,7 @@ msgstr "Bu uygulamanın sahibi değilsiniz." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "" @@ -1085,7 +1085,7 @@ msgid "Do not delete this notice" msgstr "Bu durum mesajını silme" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Bu durum mesajını sil" @@ -1116,7 +1116,7 @@ msgstr "Bu kullanıcıyı sil" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Dizayn" @@ -1244,7 +1244,7 @@ msgstr "Öntanımlıya geri dön" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" @@ -1364,7 +1364,7 @@ msgid "Could not update group." msgstr "Grup güncellenemedi." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Kullanıcı güncellenemedi." @@ -1420,7 +1420,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "İptal" @@ -1624,7 +1624,7 @@ msgstr "Yeni gelen e-posta adresi eklendi." msgid "This notice is already a favorite!" msgstr "Bu durum mesajı zaten bir favori!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Favoriliğini kaldır" @@ -1933,7 +1933,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, fuzzy, php-format msgid "%s timeline" msgstr "Genel zaman çizgisi" @@ -2217,7 +2217,7 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "" @@ -2324,7 +2324,7 @@ msgid "You must be logged in to leave a group." msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" @@ -2552,15 +2552,15 @@ msgid "New message" msgstr "" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 #, fuzzy msgid "You can't send a message to this user." msgstr "Bize o profili yollamadınız" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "İçerik yok!" @@ -2569,7 +2569,7 @@ msgid "No recipient specified." msgstr "" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2580,12 +2580,12 @@ msgstr "" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "" @@ -2718,8 +2718,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 #, fuzzy msgid "Not a supported data format." msgstr "Desteklenmeyen görüntü dosyası biçemi." @@ -3091,7 +3091,7 @@ msgstr "Tam İsim" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -3489,7 +3489,7 @@ msgstr "yukarıdaki parolanın aynısı" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Eposta" @@ -3632,7 +3632,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You already repeated that notice." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Sıfırla" @@ -3769,14 +3769,14 @@ msgid "Name" msgstr "Takma ad" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 #, fuzzy msgid "Organization" msgstr "Yer" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonelikler" @@ -4546,7 +4546,7 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "" @@ -4672,7 +4672,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Profil" @@ -4864,7 +4864,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -4913,7 +4913,7 @@ msgid "Plugins" msgstr "Eklentiler" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Sürüm" @@ -4921,29 +4921,25 @@ msgstr "Sürüm" msgid "Author(s)" msgstr "" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4952,20 +4948,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Geçersiz dosya ismi." @@ -4987,14 +4983,29 @@ msgstr "Kullanıcı güncellenemedi." msgid "Group leave failed." msgstr "Böyle bir durum mesajı yok." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 #, fuzzy msgid "Join" msgstr "Giriş" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -5018,18 +5029,18 @@ msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 #, fuzzy msgid "Could not insert message." msgstr "Yeni abonelik eklenemedi." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 #, fuzzy msgid "Could not update message with new URI." msgstr "Kullanıcı güncellenemedi." @@ -5084,33 +5095,33 @@ msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." #. 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:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" 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:737 +#: classes/Profile.php:785 #, 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5165,13 +5176,9 @@ msgstr "Yeni abonelik eklenemedi." msgid "Could not delete subscription." msgstr "Yeni abonelik eklenemedi." -#: classes/Subscription.php:254 -msgid "Follow" -msgstr "" - +#. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." +msgid "Follow" msgstr "" #. TRANS: Notice given on user registration. @@ -5182,61 +5189,61 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "Profil kaydedilemedi." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "Profil kaydedilemedi." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 #, fuzzy msgid "Change your profile settings" msgstr "Profil ayarları" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 #, fuzzy msgid "Change your password" msgstr "Parolayı değiştir" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 #, fuzzy msgid "Design your profile" msgstr "Kullanıcının profili yok." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "" @@ -5252,190 +5259,191 @@ msgid "Untitled page" msgstr "" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "Bağlan" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Site yapılandırmasını değiştir" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Davet et" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Çıkış" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Bir hesap oluştur" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Kayıt" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Siteye giriş" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Giriş" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Bana yardım et!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Kişi ya da yazılar için arama yap" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Yardım" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Hakkında" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "SSS" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Gizlilik" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Kaynak" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "İletişim" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet yazılım lisansı" @@ -5443,7 +5451,7 @@ msgstr "StatusNet yazılım lisansı" #. 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:846 +#: lib/action.php:844 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5453,7 +5461,7 @@ msgstr "" "hazırlanan anında mesajlaşma ağıdır. " #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." @@ -5462,7 +5470,7 @@ msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." #. 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:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5474,70 +5482,70 @@ msgstr "" "microbloglama yazılımının %s. versiyonunu kullanmaktadır." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Site içeriği lisansı" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, 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:886 +#: lib/action.php:884 #, 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:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 msgid "After" msgstr "Sonra" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Önce" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5664,7 +5672,7 @@ msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "" @@ -5679,195 +5687,211 @@ msgid "Icon for this application" msgstr "Bu uygulama için simge" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 #, fuzzy, php-format -msgid "Describe your application in %d characters" -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 #, fuzzy msgid "Describe your application" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 #, fuzzy msgid "URL of the homepage of this application" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 #, fuzzy msgid "Source URL" msgstr "Kaynak" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 #, fuzzy msgid "URL for the homepage of the organization" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Tarayıcı" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "İptal et" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Geri al" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Sağlayıcı" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 #, fuzzy -msgid "Password changing failed" +msgid "Password changing failed." msgstr "Parola kaydedildi." -#: lib/authenticationplugin.php:236 +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 #, fuzzy -msgid "Password changing is not allowed" +msgid "Password changing is not allowed." msgstr "Parola kaydedildi." #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Engelle" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +msgid "AJAX error" +msgstr "" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 #, fuzzy msgid "User has no last notice." msgstr "Kullanıcının profili yok." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, fuzzy, php-format msgid "Could not find a user with nickname %s." msgstr "Kullanıcı güncellenemedi." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "" @@ -5876,7 +5900,7 @@ msgstr "" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5885,52 +5909,53 @@ msgid "" msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Tam İsim: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Yer: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Başlangıç Sayfası" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Hakkında: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5939,129 +5964,129 @@ msgstr "" #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 #, fuzzy msgid "Error sending direct message." msgstr "Kullanıcı ayarlamada hata oluştu." #. 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:554 +#: lib/command.php:551 #, fuzzy, php-format msgid "Notice from %s repeated." msgstr "Durum mesajları" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 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. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "" #. 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:603 +#: lib/command.php:600 #, fuzzy, php-format msgid "Reply to %s sent." msgstr "%s için cevaplar" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 #, fuzzy msgid "Error saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 #, fuzzy msgid "Can't subscribe to OMB profiles by command." msgstr "Bize o profili yollamadınız" #. 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:672 +#: lib/command.php:667 #, 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 #, fuzzy msgid "Notification off." msgstr "Onay kodu yok." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 #, fuzzy msgid "Notification on." msgstr "Onay kodu yok." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, 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:813 +#: lib/command.php:808 #, 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:831 +#: lib/command.php:826 #, fuzzy msgid "You are not subscribed to anyone." msgstr "Bize o profili yollamadınız" @@ -6069,14 +6094,14 @@ msgstr "Bize o profili yollamadınız" #. 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Bize o profili yollamadınız" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 #, fuzzy msgid "No one is subscribed to you." msgstr "Uzaktan abonelik" @@ -6084,14 +6109,14 @@ msgstr "Uzaktan abonelik" #. 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "Uzaktan abonelik" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 #, fuzzy msgid "You are not a member of any groups." msgstr "Bize o profili yollamadınız" @@ -6099,13 +6124,13 @@ msgstr "Bize o profili yollamadınız" #. 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "Bize o profili yollamadınız" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6147,41 +6172,60 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +msgctxt "MENU" msgid "IM" msgstr "" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Bağlan" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "" @@ -6205,11 +6249,11 @@ msgstr "" msgid "Design defaults restored." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 #, fuzzy msgid "Favor this notice" msgstr "Böyle bir durum mesajı yok." @@ -6230,7 +6274,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "" @@ -6676,7 +6720,7 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "" @@ -6830,57 +6874,57 @@ msgid "" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "K" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "G" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "D" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "B" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 #, fuzzy msgid "Repeated by" msgstr "Yarat" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Cevaplar" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 #, fuzzy msgid "Notice repeated" msgstr "Durum mesajları" @@ -6952,7 +6996,7 @@ msgid "Tags in %s's notices" msgstr "" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 73c7a91b71..f67f06333b 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:06+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -85,7 +85,7 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -116,7 +116,7 @@ msgstr "Немає такої сторінки." #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "Такого користувача немає." @@ -168,8 +168,8 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"Спробуйте до когось підписатись, [приєднатись до групи](%%action.groups%%) " -"або напишіть щось самі." +"Спробуйте до когось підписатись, приєднатись [до спільноти](%%action.groups%" +"%) або напишіть щось самі." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" #: actions/all.php:146 @@ -296,7 +296,7 @@ msgstr "Не маю можливості зберегти налаштуванн #: actions/apiaccountupdateprofilebackgroundimage.php:188 #: actions/apiaccountupdateprofilecolors.php:143 msgid "Could not update your design." -msgstr "Не вдалося оновити Ваш дизайн." +msgstr "Не вдалося оновити ваш дизайн." #: actions/apiblockcreate.php:106 msgid "You cannot block yourself!" @@ -346,7 +346,7 @@ msgstr "Отримувача не знайдено." #: actions/apidirectmessagenew.php:143 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Не можна надіслати пряме повідомлення користувачеві, який не є Вашим другом." +"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111 #: actions/apistatusesdestroy.php:121 @@ -358,7 +358,7 @@ msgid "This status is already a favorite." msgstr "Цей статус вже є обраним." #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "Не можна позначити як обране." @@ -377,7 +377,7 @@ msgstr "Не вдалося додати користувача: користу #: actions/apifriendshipscreate.php:119 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Не вдалося додати користувача: %s вже присутній у Вашому списку." +msgstr "Не вдалося додати користувача: %s вже присутній у вашому списку." #: actions/apifriendshipsdestroy.php:110 msgid "Could not unfollow user: User not found." @@ -470,60 +470,60 @@ msgstr "Додаткове ім’я не може бути таким сами #: actions/apigroupleave.php:106 actions/apigroupmembership.php:92 #: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92 msgid "Group not found." -msgstr "Групу не знайдено." +msgstr "Спільноту не знайдено." #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." -msgstr "Ви вже є учасником цієї групи." +msgstr "Ви вже стоїте у цій спільноти." #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." -msgstr "Адмін цієї групи заблокував Вашу присутність в ній." +msgstr "Адміністратор спільноти заблокував ваш профіль." #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "Не вдалось долучити користувача %1$s до групи %2$s." +msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." #: actions/apigroupleave.php:116 msgid "You are not a member of this group." -msgstr "Ви не є учасником цієї групи." +msgstr "Ви не стоїте у цій спільноті." #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "Не вдалось видалити користувача %1$s з групи %2$s." +msgstr "Не вдалось видалити користувача %1$s зі спільноти %2$s." #. TRANS: %s is a user name #: actions/apigrouplist.php:98 #, php-format msgid "%s's groups" -msgstr "%s групи" +msgstr "Спільноти %s" #. TRANS: Meant to convey the user %2$s is a member of each of the groups listed on site %1$s #: actions/apigrouplist.php:108 #, php-format msgid "%1$s groups %2$s is a member of." -msgstr "%1$s групи, в яких %2$s бере участь." +msgstr "Спільноти на %1$s, до яких долучився %2$s." #. TRANS: Message is used as a title. %s is a site name. #. TRANS: Message is used as a page title. %s is a nick name. #: actions/apigrouplistall.php:92 actions/usergroups.php:63 #, php-format msgid "%s groups" -msgstr "%s групи" +msgstr "Спільноти %s" #: actions/apigrouplistall.php:96 #, php-format msgid "groups on %s" -msgstr "групи на %s" +msgstr "спільноти на %s" #: actions/apimediaupload.php:100 msgid "Upload failed." @@ -596,7 +596,7 @@ msgstr "Несподіване представлення форми." #: actions/apioauthauthorize.php:259 msgid "An application would like to connect to your account" -msgstr "Запит на дозвіл під’єднатися до Вашого облікового запису" +msgstr "Запит на дозвіл під’єднатися до вашого облікового запису" #: actions/apioauthauthorize.php:276 msgid "Allow or deny access" @@ -609,13 +609,13 @@ msgid "" "the ability to %3$s your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." msgstr "" -"Додаток %1$s від %2$s запитує дозвіл на " -"%3$s дані Вашого акаунту %4$s. Ви повинні надавати дозвіл " -"на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви " +"Додаток %1$s від %2$s запитує дозвіл на " +"%3$s дані вашого акаунту %4$s. Ви повинні надавати дозвіл " +"на доступ до вашого акаунту %4$s лише тим стороннім додаткам, яким ви " "довіряєте." #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "Акаунт" @@ -629,7 +629,7 @@ msgstr "Ім’я користувача" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -643,7 +643,7 @@ msgstr "Дозволити" #: actions/apioauthauthorize.php:351 msgid "Allow or deny access to your account information." -msgstr "Дозволити або заборонити доступ до Вашого облікового запису." +msgstr "Дозволити або заборонити доступ до вашого облікового запису." #: actions/apistatusesdestroy.php:112 msgid "This method requires a POST or DELETE." @@ -659,12 +659,12 @@ msgid "No such notice." msgstr "Такого допису немає." #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." -msgstr "Не можу повторити Ваш власний допис." +msgstr "Не можна повторювати власні дописи." #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "Цей допис вже повторено." @@ -776,7 +776,7 @@ msgstr "Недійсний розмір." #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "Аватара" @@ -807,7 +807,7 @@ msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "Видалити" @@ -825,11 +825,11 @@ msgstr "Жодного файлу не завантажено." #: actions/avatarsettings.php:332 msgid "Pick a square area of the image to be your avatar" -msgstr "Оберіть квадратну ділянку зображення, яка й буде Вашою автарою." +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/avatarsettings.php:347 actions/grouplogo.php:380 msgid "Lost our file data." -msgstr "Дані Вашого файлу десь загубились." +msgstr "Дані вашого файлу загублено." #: actions/avatarsettings.php:370 msgid "Avatar updated." @@ -858,8 +858,8 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" "Впевнені, що бажаєте блокувати цього користувача? Позаяк, його буде " -"відписано від Вас, він не зможе підписатись до Вас у майбутньому і Ви більше " -"не отримуватимете жодних дописів від нього." +"відписано від вас, він не зможе підписатись до вас у майбутньому і ви більше " +"не отримуватимете жодних звісток від нього." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -893,7 +893,7 @@ msgstr "Так" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "Блокувати користувача" @@ -912,10 +912,10 @@ msgstr "Збереження інформації про блокування з #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." -msgstr "Такої групи немає." +msgstr "Такої спільноти не існує." #: actions/blockedfromgroup.php:97 #, php-format @@ -929,7 +929,7 @@ msgstr "Заблоковані профілі %1$s, сторінка %2$d" #: actions/blockedfromgroup.php:115 msgid "A list of the users blocked from joining this group." -msgstr "Список користувачів блокованих в цій групі." +msgstr "Список користувачів, котрих заблоковано в цій спільноті." #: actions/blockedfromgroup.php:288 msgid "Unblock user from group" @@ -961,7 +961,7 @@ msgstr "Код підтвердження не знайдено." #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "Цей код підтвердження не для Вас!" +msgstr "Цей код підтвердження не для вас!" #. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'. #: actions/confirmaddress.php:91 @@ -1002,7 +1002,7 @@ msgstr "Підтвердити адресу" #: actions/confirmaddress.php:161 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "Адресу «%s» підтверджено для Вашого акаунту." +msgstr "Адресу «%s» підтверджено для вашого акаунту." #: actions/conversation.php:99 msgid "Conversation" @@ -1029,7 +1029,7 @@ msgstr "Ви не є власником цього додатку." #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -1092,7 +1092,7 @@ msgid "Do not delete this notice" msgstr "Не видаляти цей допис" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "Видалити допис" @@ -1123,7 +1123,7 @@ msgstr "Видалити цього користувача" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "Дизайн" @@ -1214,7 +1214,7 @@ msgstr "Зміст" #: actions/designadminpanel.php:613 lib/designsettings.php:204 msgid "Sidebar" -msgstr "Бічна панель" +msgstr "Сайдбар" #: actions/designadminpanel.php:626 lib/designsettings.php:217 msgid "Text" @@ -1251,7 +1251,7 @@ msgstr "Повернутись до початкових налаштувань" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" @@ -1341,20 +1341,22 @@ msgstr "Не вдалося оновити додаток." #: actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "Редагувати групу %s" +msgstr "Змінити властивості спільноти %s" #: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." +msgstr "Ви маєте спочатку увійти, аби мати змогу започаткувати спільноту." #: actions/editgroup.php:107 actions/editgroup.php:172 #: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 msgid "You must be an admin to edit the group." -msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" +msgstr "" +"Ви маєте бути наділені правами адміністратора, аби відредагувати властивості " +"даної спільноти." #: actions/editgroup.php:158 msgid "Use this form to edit the group." -msgstr "Скористайтесь цією формою, щоб відредагувати групу." +msgstr "Скористайтесь цією формою, щоб відредагувати властивості спільноти." #: actions/editgroup.php:205 actions/newgroup.php:145 #, php-format @@ -1368,10 +1370,10 @@ msgstr "Помилкове додаткове ім’я: «%s»" #: actions/editgroup.php:258 msgid "Could not update group." -msgstr "Не вдалося оновити групу." +msgstr "Не вдалося оновити спільноту." #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "Неможна призначити додаткові імена." @@ -1389,7 +1391,7 @@ msgstr "Налаштування пошти" #: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "Зазначте, як саме Ви бажаєте отримувати листи з %%site.name%%." +msgstr "Зазначте, як саме ви бажаєте отримувати листи з %%site.name%%." #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. @@ -1427,7 +1429,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "Скасувати" @@ -1539,7 +1541,7 @@ msgstr "Це недійсна електронна адреса." #. TRANS: Message given saving e-mail address that is already set. #: actions/emailsettings.php:374 msgid "That is already your email address." -msgstr "Це і є Вашою адресою." +msgstr "Це і є вашою адресою." #. TRANS: Message given saving e-mail address that is already set for another user. #: actions/emailsettings.php:378 @@ -1560,7 +1562,7 @@ msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" -"Код підтвердження був відправлений на електронну адресу, яку Ви додали. " +"Код підтвердження був відправлений на електронну адресу, яку ви зазначили. " "Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " "подальші інструкції." @@ -1586,7 +1588,7 @@ msgstr "Підтвердження електронної пошти скасо #. TRANS: registered for the active user. #: actions/emailsettings.php:462 msgid "That is not your email address." -msgstr "Це не є Вашою адресою." +msgstr "Це не є вашою адресою." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:483 @@ -1618,7 +1620,7 @@ msgstr "Нову адресу для вхідних повідомлень до msgid "This notice is already a favorite!" msgstr "Цей допис вже є обраним!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "Видалити з обраних" @@ -1705,7 +1707,7 @@ msgstr "Ця відповідь не очікується!" #: actions/finishremotesubscribe.php:80 msgid "User being listened to does not exist." -msgstr "Користувача, який слідкував за Вашими повідомленнями, більше не існує." +msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" @@ -1713,7 +1715,7 @@ msgstr "Ви можете користуватись локальними під #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." -msgstr "Цей користувач заблокував Вашу можливість підписатись." +msgstr "Цей користувач позбавив вас можливості підписатись до нього." #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." @@ -1770,23 +1772,23 @@ msgstr "Не визначено профілю з таким ID." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "Групу не визначено." +msgstr "Спільноту не визначено." #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "Лише адмін групи має змогу блокувати користувачів." +msgstr "Лише адміністратор спільноти має змогу блокувати користувачів." #: actions/groupblock.php:95 msgid "User is already blocked from group." -msgstr "Користувача заблоковано в цій групі." +msgstr "Користувача заблоковано в цій спільноті." #: actions/groupblock.php:100 msgid "User is not a member of group." -msgstr "Користувач не є учасником групи." +msgstr "Користувач не є учасником спільноти." #: actions/groupblock.php:134 actions/groupmembers.php:364 msgid "Block user from group" -msgstr "Блокувати користувача в групі" +msgstr "Блокувати користувача у цій спільноті" #: actions/groupblock.php:160 #, php-format @@ -1795,23 +1797,23 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"Впевнені, що бажаєте блокувати користувача «%1$s» у групі «%2$s»? Його буде " -"позбавлено членства в групі, він не зможе сюди писати, і не зможе вступити " -"до групи знов." +"Впевнені, що бажаєте заблокувати користувача «%1$s» у спільноті «%2$s»? Його " +"буде позбавлено членства, він не зможе сюди писати, і не зможе вступити до " +"спільноти знов." #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:182 msgid "Do not block this user from this group" -msgstr "Не блокувати користувача в групі" +msgstr "Не блокувати користувача в спільноті" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 msgid "Block this user from this group" -msgstr "Блокувати користувача цієї групи" +msgstr "Заблокувати користувача в спільноті" #: actions/groupblock.php:206 msgid "Database error blocking user from group." -msgstr "Виникла помилка при блокуванні користувача в цій групі." +msgstr "Виникла помилка при блокуванні користувача в цій спільноті." #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." @@ -1819,19 +1821,20 @@ msgstr "Немає ID." #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." -msgstr "Ви маєте спочатку увійти, аби мати змогу редагувати групу." +msgstr "" +"Ви маєте спочатку увійти, аби мати змогу відредагувати властивості спільноти." #: actions/groupdesignsettings.php:144 msgid "Group design" -msgstr "Дизайн групи" +msgstr "Дизайн спільноти" #: actions/groupdesignsettings.php:155 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." msgstr "" -"Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори " -"на свій смак." +"Налаштуйте вигляд сторінки спільноти, використовуючи фонове зображення і " +"кольори на свій смак." #: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 #: lib/designsettings.php:391 lib/designsettings.php:413 @@ -1844,19 +1847,19 @@ msgstr "Преференції дизайну збережно." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" -msgstr "Логотип групи" +msgstr "Логотип спільноти" #: actions/grouplogo.php:153 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -"Ви маєте можливість завантажити логотип для Вашої группи. Максимальний " -"розмір файлу %s." +"Ви маєте можливість завантажити логотип для вашої спільноти. Максимальний " +"розмір файлу становить %s." #: actions/grouplogo.php:365 msgid "Pick a square area of the image to be the logo." -msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом групи." +msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом спільноти." #: actions/grouplogo.php:399 msgid "Logo updated." @@ -1871,18 +1874,18 @@ msgstr "Оновлення логотипу завершилось невдач #: actions/groupmembers.php:102 #, php-format msgid "%s group members" -msgstr "Учасники групи %s" +msgstr "Учасники спільноти %s" #. TRANS: Title of the page showing group members. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. #: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" -msgstr "Учасники групи %1$s, сторінка %2$d" +msgstr "Учасники спільноти %1$s, сторінка %2$d" #: actions/groupmembers.php:122 msgid "A list of the users in this group." -msgstr "Список учасників цієї групи." +msgstr "Список учасників цієї спільноти." #: actions/groupmembers.php:186 msgid "Admin" @@ -1920,7 +1923,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s стрічка" @@ -1934,12 +1937,12 @@ msgstr "Оновлення членів %1$s на %2$s!" #: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" -msgstr "Групи" +msgstr "Спільноти" #: actions/groups.php:64 #, php-format msgid "Groups, page %d" -msgstr "Групи, сторінка %d" +msgstr "Спільноти, сторінка %d" #: actions/groups.php:90 #, php-format @@ -1950,15 +1953,15 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" msgstr "" -"Групи на сайті %%%%site.name%%%% дозволять Вам відшукати людей зі спільними " -"інтересами. Лише приєднайтеся до групи і надсилайте повідомлення до усіх її " -"учасників використовуючи просту команду «!groupname» у тексті повідомлення. " -"Не бачите групу, яка Вас цікавить? Спробуйте її [знайти](%%%%action." -"groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" +"Спільноти на сайті %%%%site.name%%%% дозволять вам відшукати людей зі " +"схожими інтересами. Лише приєднайтеся до спільноти і надсилайте повідомлення " +"до усіх її учасників використовуючи просту команду «!groupname» у тексті " +"повідомлення. Не бачите спільноту, яка вас цікавить? Спробуйте її [знайти](%%" +"%%action.groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" #: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 msgid "Create a new group" -msgstr "Створити нову групу" +msgstr "Створити нову спільноту" #: actions/groupsearch.php:52 #, php-format @@ -1966,13 +1969,13 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Пошук груп на %%site.name%% за їхньою назвою, розташуванням або описом. " +"Пошук спільнот на %%site.name%% за їхньою назвою, розташуванням або описом. " "Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " "або більше." #: actions/groupsearch.php:58 msgid "Group search" -msgstr "Пошук груп" +msgstr "Пошук спільнот" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 @@ -1985,7 +1988,7 @@ msgid "" "If you can't find the group you're looking for, you can [create it](%%action." "newgroup%%) yourself." msgstr "" -"Якщо не можете відшукати групу, яка Вас цікавить, то [створіть](%%action." +"Якщо не можете відшукати спільноту, яка вас цікавить, то [створіть](%%action." "newgroup%%) власну." #: actions/groupsearch.php:85 @@ -1994,12 +1997,12 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" -"Чому б не [зареєструватись](%%action.register%%) і не [створити](%%action." -"newgroup%%) свою власну групу!" +"Чому б не [зареєструватись](%%action.register%%) і не [започаткувати](%%" +"action.newgroup%%) свою власну спільноту!" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." -msgstr "Лише адміни можуть розблокувати членів групи." +msgstr "Лише адміністратори можуть розблокувати учасників спільноти." #: actions/groupunblock.php:95 msgid "User is not blocked from group." @@ -2051,7 +2054,7 @@ msgid "" msgstr "" "Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk акаунт, " "туди має надійти повідомлення з подальшими інструкціями. (Ви додали %s до " -"Вашого списку контактів?)" +"вашого списку контактів?)" #. TRANS: IM address input field instructions in IM settings form. #. TRANS: %s is the IM address set for the site. @@ -2118,7 +2121,7 @@ msgstr "Це недійсний Jabber ID" #. TRANS: Message given saving IM address that is already set. #: actions/imsettings.php:329 msgid "That is already your Jabber ID." -msgstr "Це і є Ваш Jabber ID." +msgstr "Це і є ваш Jabber ID." #. TRANS: Message given saving IM address that is already set for another user. #: actions/imsettings.php:333 @@ -2133,8 +2136,8 @@ msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"Код підтвердження був відправлений на адресу IM, яку Ви додали. Ви повинні " -"затведити %s для відправлення вам повідомлень." +"Код підтвердження був відправлений на адресу IM, яку ви зазначили. Ви " +"повинні затвердити %s для відправлення вам повідомлень." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. #: actions/imsettings.php:391 @@ -2155,7 +2158,7 @@ msgstr "Підтвердження ІМ скасовано." #. TRANS: registered for the active user. #: actions/imsettings.php:427 msgid "That is not your Jabber ID." -msgstr "Це не Ваш Jabber ID." +msgstr "Це не ваш Jabber ID." #. TRANS: Message given after successfully removing a registered IM address. #: actions/imsettings.php:450 @@ -2175,7 +2178,7 @@ msgstr "Вхідні для %s" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." msgstr "" -"Це Ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." +"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." #: actions/invite.php:39 msgid "Invites have been disabled." @@ -2205,7 +2208,7 @@ msgstr "Ви вже підписані до цих користувачів:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2213,7 +2216,7 @@ msgstr "%1$s (%2$s)" #: actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" -msgstr "Ці люди вже є користувачами і Вас було автоматично підписано до них:" +msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" #: actions/invite.php:144 msgid "Invitation(s) sent to the following people:" @@ -2224,14 +2227,14 @@ msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -"Вас буде поінформовано, коли запрошені Вами особи погодяться з запрошеннями " +"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " "і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" #: actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Скористайтесь цією формою аби запросити Ваших друзів та колег до нашого " +"Скористайтесь цією формою, аби запросити ваших друзів та колег до нашого " "сервісу." #: actions/invite.php:187 @@ -2261,7 +2264,7 @@ msgstr "Надіслати" #: actions/invite.php:228 #, 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 singular 3rd-person pronoun in English. #: actions/invite.php:231 @@ -2294,12 +2297,12 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" -"%1$s запросив(ла) Вас приєднатися до нього(неї) на %2$s (%3$s).\n" +"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" "\n" -"%2$s — це сервіс мікроблоґів що дозволяє Вам знаходитись у курсі подій, які " -"відбуваються з Вашими знайомими і тими особами, якими Ви цікавитесь.\n" +"%2$s — це сервіс мікроблоґів що дозволяє вам знаходитись у курсі подій, які " +"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" "\n" -"Також Ви маєте можливість ділитись новинами про себе, своїми думками, " +"Також ви маєте можливість ділитись новинами про себе, своїми думками, " "подіями у житті, розміщуючи все це у режимі «онлайн» для своїх знайомих та " "друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " "інтересами.\n" @@ -2312,7 +2315,7 @@ msgstr "" "\n" "%5$s\n" "\n" -"Якщо Ви виявили бажання спробувати користуватись даним сервісом, то " +"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " "перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" "\n" "%6$s\n" @@ -2320,11 +2323,11 @@ msgstr "" "Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " "витрачений час.\n" "\n" -"Щиро Ваші, %2$s\n" +"Щиро ваші, %2$s\n" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." +msgstr "Ви повинні спочатку увійти на сайт, аби долучитися до спільноти." #: actions/joingroup.php:88 actions/leavegroup.php:88 msgid "No nickname or ID." @@ -2333,21 +2336,21 @@ msgstr "Немає імені або ІД." #: actions/joingroup.php:141 #, php-format msgid "%1$s joined group %2$s" -msgstr "%1$s приєднався до групи %2$s" +msgstr "%1$s приєднався до спільноти %2$s" #: actions/leavegroup.php:60 msgid "You must be logged in to leave a group." -msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." +msgstr "Ви повинні спочатку увійти на сайт, аби залишити спільноту." #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." -msgstr "Ви не є учасником цієї групи." +msgstr "Ви не є учасником цієї спільноти." #: actions/leavegroup.php:137 #, php-format msgid "%1$s left group %2$s" -msgstr "%1$s залишив групу %2$s" +msgstr "%1$s залишив спільноту %2$s" #. TRANS: User admin panel title #: actions/licenseadminpanel.php:56 @@ -2457,7 +2460,7 @@ msgstr "Зберегти налаштування ліцензії" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #: actions/login.php:148 msgid "Incorrect username or password." @@ -2465,7 +2468,7 @@ msgstr "Неточне ім’я або пароль." #: actions/login.php:154 actions/otp.php:120 msgid "Error setting user. You are probably not authorized." -msgstr "Помилка. Можливо, Ви не авторизовані." +msgstr "Помилка. Можливо, ви не авторизовані." #: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 msgid "Login" @@ -2512,22 +2515,24 @@ msgstr "" #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." msgstr "" -"Лише користувач з правами адміністратора може призначити інших адмінів групи." +"Лише користувач з правами адміністратора може призначати інших " +"адміністраторів спільноти." #: actions/makeadmin.php:96 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "%1$s вже є адміном у групі «%2$s»." +msgstr "%1$s вже є адміністратором спільноти «%2$s»." #: actions/makeadmin.php:133 #, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "Не можна отримати запис для %1$s щодо членства у групі %2$s." +msgstr "" +"Не можна отримати запис для %1$s щодо його перебування у спільноті %2$s." #: actions/makeadmin.php:146 #, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "Не можна надати %1$s права адміна в групі %2$s." +msgstr "Не можна надати %1$s права адміністратора у спільноті %2$s." #: actions/microsummary.php:69 msgid "No current status." @@ -2555,25 +2560,25 @@ msgstr "Не вдалося створити додаток." #: actions/newgroup.php:53 msgid "New group" -msgstr "Нова група" +msgstr "Нова спільнота" #: actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "Скористайтесь цією формою для створення нової групи." +msgstr "Скористайтесь цією формою для створення нової спільноти." #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Нове повідомлення" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "Немає змісту!" @@ -2582,7 +2587,7 @@ msgid "No recipient specified." msgstr "Жодного отримувача не визначено." #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2594,12 +2599,12 @@ msgstr "Повідомлення надіслано" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "Пряме повідомлення для %s надіслано." -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Помилка в Ajax" @@ -2627,7 +2632,7 @@ msgstr "Пошук текстів" #: actions/noticesearch.php:91 #, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Результати пошуку на запит «%1$s» на %2$s" +msgstr "Результати пошуку «%1$s» на сайті %2$s" #: actions/noticesearch.php:121 #, php-format @@ -2674,7 +2679,7 @@ msgstr "Спробу «розштовхати» зараховано!" #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." -msgstr "Ви повинні увійти, аби переглянути список Ваших додатків." +msgstr "Ви повинні увійти, аби переглянути список ваших додатків." #: actions/oauthappssettings.php:74 msgid "OAuth applications" @@ -2682,12 +2687,12 @@ msgstr "Додатки OAuth" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "Додатки, які Ви зареєстрували" +msgstr "Додатки, які ви зареєстрували" #: actions/oauthappssettings.php:135 #, php-format msgid "You have not registered any applications yet." -msgstr "Поки що Ви не зареєстрували жодних додатків." +msgstr "Поки що ви не зареєстрували жодних додатків." #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" @@ -2695,7 +2700,7 @@ msgstr "Під’єднані додатки" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "Ви дозволили наступним додаткам доступ до Вашого акаунту." +msgstr "Ви дозволили наступним додаткам доступ до вашого акаунту." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2708,7 +2713,7 @@ msgstr "Не вдалося скасувати доступ для додатк #: actions/oauthconnectionssettings.php:198 msgid "You have not authorized any applications to use your account." -msgstr "Ви не дозволили жодним додаткам використовувати Ваш акаунт." +msgstr "Ви не дозволили жодним додаткам використовувати ваш акаунт." #: actions/oauthconnectionssettings.php:211 msgid "Developers can edit the registration settings for their applications " @@ -2736,8 +2741,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "URL-адреса %s лише в простому HTTP, будь ласка." #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." @@ -2814,7 +2819,7 @@ msgstr "Вихідні для %s" #: actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Це Ваші вихідні повідомлення, тут містяться повідомлення, які Ви надіслали " +"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " "приватно." #: actions/passwordsettings.php:58 @@ -3072,7 +3077,7 @@ msgstr "Налаштування профілю" msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -"Ви можете заповнити свій особистий профіль і люди знатимуть про Вас більше." +"Ви можете заповнити свій особистий профіль і люди знатимуть про вас більше." #: actions/profilesettings.php:99 msgid "Profile information" @@ -3091,13 +3096,13 @@ msgstr "Повне ім’я" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "Веб-сторінка" #: actions/profilesettings.php:117 actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL-адреса Вашої веб-сторінки, блоґу, або профілю на іншому сайті" +msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті" #: actions/profilesettings.php:122 actions/register.php:468 #, php-format @@ -3121,7 +3126,7 @@ msgstr "Розташування" #: actions/profilesettings.php:134 actions/register.php:480 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Де Ви живете, на кшталт «Місто, область (регіон), країна»" +msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" #: actions/profilesettings.php:138 msgid "Share my current location when posting notices" @@ -3154,7 +3159,7 @@ msgstr "Часовий пояс" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "За яким часовим поясом Ви живете?" +msgstr "За яким часовим поясом ви живете?" #: actions/profilesettings.php:167 msgid "" @@ -3341,7 +3346,7 @@ msgid "" "the email address you have stored in your account." msgstr "" "Якщо загубите або втратите свій пароль, його буде легко відновити за " -"допомогою електронної адреси, яку Ви вказали у власному профілі." +"допомогою електронної адреси, яку ви зазначили у власному профілі." #: actions/recoverpassword.php:158 msgid "You have been identified. Enter a new password below. " @@ -3409,8 +3414,8 @@ msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" -"Інструкції з відновлення паролю було надіслано на електронну адресу, яку Ви " -"вказали у налаштуваннях Вашого профілю." +"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " +"вказали у налаштуваннях вашого профілю." #: actions/recoverpassword.php:357 msgid "Unexpected password reset." @@ -3430,7 +3435,7 @@ msgstr "Помилка в налаштуваннях користувача." #: actions/recoverpassword.php:395 msgid "New password successfully saved. You are now logged in." -msgstr "Новий пароль успішно збережено. Тепер Ви увійшли." +msgstr "Новий пароль успішно збережено. Тепер ви увійшли." #: actions/register.php:92 actions/register.php:196 actions/register.php:412 msgid "Sorry, only invited people can register." @@ -3489,7 +3494,7 @@ msgstr "Такий само, як і пароль вище. Неодмінно." #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Пошта" @@ -3499,7 +3504,7 @@ msgstr "Використовується лише для оновлень, ог #: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" -msgstr "Повне ім’я, звісно ж Ваше справжнє ім’я :)" +msgstr "Повне ім’я, звісно ж ваше справжнє ім’я" #: actions/register.php:518 #, php-format @@ -3550,19 +3555,19 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Вітаємо, %1$s! І ласкаво просимо до %%%%site.name%%%%. Звідси Ви зможете...\n" +"Вітаємо, %1$s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви зможете...\n" "\n" -"*Подивитись [Ваш профіль](%2$s) та зробити свій перший допис.\n" +"*Подивитись [ваш профіль](%2$s) та зробити свій перший допис.\n" "*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), аби мати змогу " "надсилати дописи через службу миттєвих повідомлень.\n" -"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з Вами " +"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " "інтереси.\n" "*Оновити [налаштування профілю](%%%%action.profilesettings%%%%), аби інші " -"могли знати про Вас більше.\n" -"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що Ви " +"могли знати про вас більше.\n" +"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатися, що ви " "нічого не пропустили. \n" "\n" -"Дякуємо, що зареєструвались у нас, і, сподіваємось, Вам сподобається наш " +"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " "сервіс." #: actions/register.php:607 @@ -3571,7 +3576,7 @@ msgid "" "to confirm your email address.)" msgstr "" "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " -"інструкції щодо підтвердження Вашої електронної адреси.)" +"інструкції щодо підтвердження вашої електронної адреси.)" #: actions/remotesubscribe.php:98 #, php-format @@ -3580,9 +3585,9 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Щоб підписатись, Ви можете [увійти](%%action.login%%), або [зареєструвати](%%" -"action.register%%) новий акаунт. Якщо Ви вже маєте акаунт на [сумісному " -"сайті](%%doc.openmublog%%), введіть URL-адресу Вашого профілю нижче." +"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" +"action.register%%) новий акаунт. Якщо ви вже маєте акаунт на [сумісному " +"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: actions/remotesubscribe.php:112 msgid "Remote subscribe" @@ -3598,7 +3603,7 @@ msgstr "Ім’я користувача" #: actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." +msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #: actions/remotesubscribe.php:133 msgid "Profile URL" @@ -3606,7 +3611,7 @@ msgstr "URL-адреса профілю" #: actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі" +msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: lib/userprofile.php:406 @@ -3640,13 +3645,13 @@ msgstr "Зазначеного допису немає." #: actions/repeat.php:76 msgid "You can't repeat your own notice." -msgstr "Ви не можете повторювати свої власні дописи." +msgstr "Ви не можете повторювати власні дописи." #: actions/repeat.php:90 msgid "You already repeated that notice." msgstr "Ви вже повторили цей допис." -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "Повторено" @@ -3696,7 +3701,7 @@ msgid "" "[join groups](%%action.groups%%)." msgstr "" "Ви можете долучити інших користувачів до спілкування, підписавшись до " -"більшої кількості людей або [приєднавшись до груп](%%action.groups%%)." +"більшої кількості людей або [приєднавшись до спільноти](%%action.groups%%)." #: actions/replies.php:206 #, php-format @@ -3782,13 +3787,13 @@ msgid "Name" msgstr "Ім’я" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "Організація" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "Опис" @@ -3844,7 +3849,7 @@ msgstr "" #: actions/showapplication.php:309 msgid "Are you sure you want to reset your consumer key and secret?" -msgstr "Ви впевнені, що бажаєте скинути Ваш ключ споживача і таємну фразу?" +msgstr "Ви впевнені, що бажаєте скинути ваш ключ споживача і секретний код?" #: actions/showfavorites.php:79 #, php-format @@ -3876,7 +3881,7 @@ msgid "" "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" "Ви поки що не відмітили жодних дописів. Натисніть на відповідну кнопку у " -"дописі який Ви вподобали, аби повернутись до нього пізніше, або звернути на " +"дописі який ви вподобали, аби повернутись до нього пізніше, або звернути на " "нього увагу інших." #: actions/showfavorites.php:208 @@ -3885,7 +3890,7 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" -"%s поки що не вподобав жодного допису. Може Ви б написали йому щось " +"%s поки що не вподобав жодного допису. Може ви написали б йому щось " "цікаве? :)" #: actions/showfavorites.php:212 @@ -3906,16 +3911,16 @@ msgstr "Це спосіб поділитись з усіма тим, що вам #: actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "Група %s" +msgstr "Спільнота %s" #: actions/showgroup.php:84 #, php-format msgid "%1$s group, page %2$d" -msgstr "Група %1$s, сторінка %2$d" +msgstr "Спільнота %1$s, сторінка %2$d" #: actions/showgroup.php:227 msgid "Group profile" -msgstr "Профіль групи" +msgstr "Профіль спільноти" #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 @@ -3933,27 +3938,27 @@ msgstr "Додаткові імена" #: actions/showgroup.php:302 msgid "Group actions" -msgstr "Діяльність групи" +msgstr "Дії спільноти" #: actions/showgroup.php:338 #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Стрічка дописів групи %s (RSS 1.0)" +msgstr "Стрічка дописів спільноти %s (RSS 1.0)" #: actions/showgroup.php:344 #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Стрічка дописів групи %s (RSS 2.0)" +msgstr "Стрічка дописів спільноти %s (RSS 2.0)" #: actions/showgroup.php:350 #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "Стрічка дописів групи %s (Atom)" +msgstr "Стрічка дописів спільноти %s (Atom)" #: actions/showgroup.php:355 #, php-format msgid "FOAF for %s group" -msgstr "FOAF для групи %s" +msgstr "FOAF спільноти %s" #: actions/showgroup.php:393 actions/showgroup.php:445 msgid "Members" @@ -3982,12 +3987,12 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** це група на %%%%site.name%%%% — сервісі [мікроблоґів](http://uk." +"**%s** це спільнота на %%%%site.name%%%% — сервісі [мікроблоґів](http://uk." "wikipedia.org/wiki/Мікроблогінг), який працює на вільному програмному " -"забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблять " -"короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%%%action.register" -"%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc.help%%%" -"%))" +"забезпеченні [StatusNet](http://status.net/). Учасники цієї спільноти " +"роблять короткі дописи про своє життя та інтереси. [Приєднуйтесь](%%%%action." +"register%%%%) зараз і долучіться до спілкування! ([Дізнатися більше](%%%%doc." +"help%%%%))" #: actions/showgroup.php:461 #, php-format @@ -3997,10 +4002,10 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** це група користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" +"**%s** це спільнота користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " -"програмному забезпеченні [StatusNet](http://status.net/). Члени цієї групи " -"роблять короткі дописи про своє життя та інтереси. " +"програмному забезпеченні [StatusNet](http://status.net/). Учасники цієї " +"спільноти роблять короткі дописи про своє життя та інтереси. " #: actions/showgroup.php:489 msgid "Admins" @@ -4041,7 +4046,7 @@ msgstr "%1$s, сторінка %2$d" #: actions/showstream.php:122 #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "Стрічка дописів %1$s з теґом %2$s (RSS 1.0)" +msgstr "Стрічка дописів %1$s з теґом «%2$s» (RSS 1.0)" #: actions/showstream.php:129 #, php-format @@ -4096,7 +4101,7 @@ msgstr "" "**%s** користується %%%%site.name%%%% — сервісом [мікроблоґів](http://uk." "wikipedia.org/wiki/Мікроблогінг), який працює на вільному програмному " "забезпеченні [StatusNet](http://status.net/). [Приєднуйтесь](%%%%action." -"register%%%%) зараз і слідкуйте за дописами **%s**, також на Вас чекає " +"register%%%%) зараз і слідкуйте за дописами **%s**, також на вас чекає " "багато іншого! ([Дізнатися більше](%%%%doc.help%%%%))" #: actions/showstream.php:248 @@ -4180,7 +4185,7 @@ msgstr "URL використаний для посілань кредитів у #: actions/siteadminpanel.php:239 msgid "Contact email address for your site" -msgstr "Контактна електронна адреса для Вашого сайту" +msgstr "Контактна електронна адреса для вашого сайту" #: actions/siteadminpanel.php:245 msgid "Local" @@ -4295,7 +4300,7 @@ msgstr "Код підтвердження" #. TRANS: Form field instructions in SMS settings form. #: actions/smssettings.php:144 msgid "Enter the code you received on your phone." -msgstr "Введіть код, який Ви отримали телефоном." +msgstr "Введіть код, який ви отримали телефоном." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. #: actions/smssettings.php:148 @@ -4345,7 +4350,7 @@ msgstr "Оператора не обрано." #. TRANS: Message given saving SMS phone number that is already set. #: actions/smssettings.php:352 msgid "That is already your phone number." -msgstr "Це і є Ваш телефонний номер." +msgstr "Це і є ваш телефонний номер." #. TRANS: Message given saving SMS phone number that is already set for another user. #: actions/smssettings.php:356 @@ -4358,7 +4363,7 @@ 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. @@ -4375,7 +4380,7 @@ msgstr "Підтвердження SMS скасовано." #. TRANS: registered for the active user. #: actions/smssettings.php:448 msgid "That is not your phone number." -msgstr "Це не Ваш телефонний номер." +msgstr "Це не ваш телефонний номер." #. TRANS: Message given after successfully removing a registered SMS phone number. #: actions/smssettings.php:470 @@ -4400,9 +4405,9 @@ msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" -"Оператор мобільного зв’язку. Якщо Вам відомий оператор, що підтримує " +"Оператор мобільного зв’язку. Якщо вам відомий оператор, що підтримує " "надсилання СМС через електронну пошту, але він тут не вказаний, напишіть нам " -"і ми внесемо його до списку." +"на %s і ми внесемо його до списку." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. #: actions/smssettings.php:548 @@ -4486,7 +4491,7 @@ msgstr "Немає такого профілю." #: actions/subscribe.php:117 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "Цією дією Ви не зможете підписатися до віддаленого профілю OMB 0.1." +msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1." #: actions/subscribe.php:145 msgid "Subscribed" @@ -4500,11 +4505,11 @@ msgstr "Підписані до %s" #: actions/subscribers.php:52 #, php-format msgid "%1$s subscribers, page %2$d" -msgstr "Підписчики %1$s, сторінка %2$d" +msgstr "Підписані до %1$s, сторінка %2$d" #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "Тут представлені ті, хто слідкує за Вашими дописами." +msgstr "Тут представлені ті, хто слідкує за вашими дописами." #: actions/subscribers.php:67 #, php-format @@ -4516,13 +4521,13 @@ msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor" msgstr "" -"Ви не маєте підписчиків. Спробуйте підписатись до когось і, можливо, до Вас " +"Ви не маєте читачів. Спробуйте підписатись до когось і, можливо, до вас " "підпишуться навзаєм." #: actions/subscribers.php:110 #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "%s ще не має підписчиків. Будете першим?" +msgstr "%s ще не має читачів. Будете першим?" #: actions/subscribers.php:114 #, php-format @@ -4530,8 +4535,8 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" -"%s ще не має підписчиків. Чому б не [зареєструватись](%%%%action.register%%%" -"%) і не стати першим?" +"%s ще не має пчитачів. Чому б не [зареєструватись](%%%%action.register%%%%) " +"і не стати першим?" #: actions/subscriptions.php:52 #, php-format @@ -4545,7 +4550,7 @@ msgstr "Підписки %1$s, сторінка %2$d" #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "Тут представлені ті, за чиїми дописами Ви слідкуєте." +msgstr "Тут представлені ті, за чиїми дописами ви слідкуєте." #: actions/subscriptions.php:69 #, php-format @@ -4562,11 +4567,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" "Ви не слідкуєте за жодним з дописувачів, спробуйте підписатись до тих, кого " -"Ви знаєте. Спробуйте [розшукати людей](%%action.peoplesearch%%), роздивіться " -"серед членів груп, які Вас цікавлять, або прогляньте список [користувачів " -"вартих уваги](%%action.featured%%). Якщо Ви користуєтесь [Твіттером](%%" -"action.twittersettings%%), то можете автоматично підписатись до людей, за " -"якими слідкуєте там." +"ви знаєте. Спробуйте [розшукати людей](%%action.peoplesearch%%), роздивіться " +"серед учасників спільнот, які вас цікавлять, або прогляньте список " +"[користувачів вартих уваги](%%action.featured%%). Якщо ви користуєтесь " +"[Twitter](%%action.twittersettings%%), то можете автоматично підписатись до " +"людей, за якими слідкуєте там." #: actions/subscriptions.php:128 actions/subscriptions.php:132 #, php-format @@ -4577,7 +4582,7 @@ msgstr "%s не відслідковує нічого" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "СМС" @@ -4635,8 +4640,8 @@ msgstr "" msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Ви маєте можливість позначати теґами тих, до кого Ви підписані, а також тих, " -"хто є підписаним до Вас." +"Ви маєте можливість позначати теґами тих, до кого ви підписані, а також тих, " +"хто є підписаним до вас." #: actions/tagother.php:200 msgid "Could not save tags." @@ -4644,7 +4649,7 @@ msgstr "Не вдалося зберегти теґи." #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Скористайтесь цією формою, щоб додати теґи підпискам та підписчикам." +msgstr "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." #: actions/tagrss.php:35 msgid "No such tag." @@ -4700,7 +4705,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "Профіль" @@ -4760,9 +4765,9 @@ msgid "" "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що Ви дійсно бажаєте " -"підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись " -"ні на чиї дописи, просто натисніть «Відмінити»." +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на дописи цього користувача. Якщо ви не збирались підписуватись " +"ні до чиїх дописів, просто натисніть «Відмінити»." #. TRANS: Menu item for site administration #: actions/userauthorization.php:196 actions/version.php:167 @@ -4874,22 +4879,23 @@ msgstr "Поласуйте бутербродом!" #: actions/usergroups.php:66 #, php-format msgid "%1$s groups, page %2$d" -msgstr "Групи %1$s, сторінка %2$d" +msgstr "Спільноти %1$s, сторінка %2$d" #: actions/usergroups.php:132 msgid "Search for more groups" -msgstr "Шукати групи ще" +msgstr "Пошук інших спільнот" #: actions/usergroups.php:159 #, php-format msgid "%s is not a member of any group." -msgstr "%s не є учасником жодної групи." +msgstr "%s не є учасником жодної спільноти." #: actions/usergroups.php:164 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -"Спробуйте [знайти якісь групи](%%action.groupsearch%%) і приєднайтеся до них." +"Спробуйте [знайти якісь спільноти](%%action.groupsearch%%) і приєднайтеся до " +"них." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom group notice feed. @@ -4897,7 +4903,7 @@ msgstr "" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -4927,10 +4933,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" -"StatusNet є вільним програмним забезпеченням: Ви можете розповсюджувати та/" +"StatusNet є вільним програмним забезпеченням: ви можете розповсюджувати та/" "або змінювати його відповідно до умов GNU Affero General Public License, що " "їх було опубліковано Free Software Foundation, 3-тя версія ліцензії або (на " -"Ваш розсуд) будь-яка подальша версія. " +"ваш розсуд) будь-яка подальша версія. " #: actions/version.php:176 msgid "" @@ -4950,7 +4956,7 @@ msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" -"Разом з програмою Ви маєте отримати копію ліцензійних умов GNU Affero " +"Разом з програмою ви маєте отримати копію ліцензійних умов GNU Affero " "General Public License. Якщо ні, перейдіть на %s." #: actions/version.php:191 @@ -4958,7 +4964,7 @@ msgid "Plugins" msgstr "Додатки" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "Версія" @@ -4966,86 +4972,97 @@ msgstr "Версія" msgid "Author(s)" msgstr "Автор(и)" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "Обрати" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s додав допис %s до списку обраних." - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "Неможливо обробити URL «%s»" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "Робін вважає, що це неможливо." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" -"Ні, файл не може бути більшим за %d байтів, а те, що Ви хочете надіслати, " -"важить %d байтів. Спробуйте завантажити меншу версію." +"Ні, файл не може бути більшим за %1$d байтів, а те, що ви хочете надіслати, " +"важить %2$d байтів. Спробуйте завантажити меншу версію." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "Розміри цього файлу перевищують Вашу квоту на %d байтів." +msgstr "Розміри цього файлу перевищують вашу квоту на %d байтів." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "Розміри цього файлу перевищують Вашу місячну квоту на %d байтів." +msgstr "Розміри цього файлу перевищують вашу місячну квоту на %d байтів." #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "Невірне ім’я файлу." #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 msgid "Group join failed." -msgstr "Не вдалося приєднатись до групи." +msgstr "Не вдалося приєднатися до спільноти." #. TRANS: Exception thrown when trying to leave a group the user is not a member of. #: classes/Group_member.php:55 msgid "Not part of group." -msgstr "Не є частиною групи." +msgstr "Не є частиною спільноти." #. TRANS: Exception thrown when trying to leave a group fails. #: classes/Group_member.php:63 msgid "Group leave failed." -msgstr "Не вдалося залишити групу." +msgstr "Не вдалося залишити спільноту." -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Помилка при збереженні користувача; недійсний." + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "Приєднатись" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "%1$s приєднався до групи %2$s." +msgstr "%1$s долучився до спільноти %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 msgid "Could not update local group." -msgstr "Не вдається оновити локальну групу." +msgstr "Не вдається оновити локальну спільноту." #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. @@ -5060,17 +5077,17 @@ msgid "No database name or DSN found anywhere." msgstr "Немає імені бази даних або DSN ніде не знайдено" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "Вам заборонено надсилати прямі повідомлення." #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "Не можна долучити повідомлення." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." @@ -5126,32 +5143,32 @@ msgid "Problem saving notice." msgstr "Проблема при збереженні допису." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "Задається невірний тип для saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." -msgstr "Проблема при збереженні вхідних дописів для групи." +msgstr "Проблема при збереженні вхідних дописів спільноти." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "Не вдалося скасувати роль «%s» для користувача #%2$s; не існує." #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -5180,7 +5197,7 @@ msgstr "Вже підписаний!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 msgid "User has blocked you." -msgstr "Користувач заблокував Вас." +msgstr "Користувач заблокував вас." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. #: classes/Subscription.php:171 @@ -5202,15 +5219,11 @@ msgstr "Не вдається видалити токен підписки OMB." msgid "Could not delete subscription." msgstr "Не вдалося видалити підписку." -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "Слідкувати" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s тепер слідкує за %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5219,57 +5232,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." -msgstr "Не вдалося створити нову групу." +msgstr "Не вдалося створити нову спільноту." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." -msgstr "Не вдалося встановити URI групи." +msgstr "Не вдалося встановити URI спільноти." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." -msgstr "Не вдалося зберегти інформацію про локальну групу." +msgstr "Не вдалося зберегти інформацію про локальну спільноту." #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "Завантаження аватари" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" -msgstr "Змінити Ваш пароль" +msgstr "Змінити пароль" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "Змінити електронну адресу" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" -msgstr "Дизайн Вашого профілю" +msgstr "Дизайн вашого профілю" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "Інші опції" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "Інше" @@ -5285,184 +5298,185 @@ msgid "Untitled page" msgstr "Сторінка без заголовку" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Персональний профіль і стрічка друзів" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "Особисте" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "З’єднання з сервісами" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "З’єднання" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію сайту" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "Адмін" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Запросіть друзів та колег приєднатись до Вас на %s" +msgstr "Запросіть друзів та колег приєднатись до вас на %s" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "Запросити" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з сайту" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "Вийти" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "Реєстрація" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "Об’яви на сайті" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "Огляд" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "Зауваження сторінки" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "Допомога" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "Про" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "ЧаП" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "Умови" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "Приватність" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "Джерело" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "Контакт" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "Бедж" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "Ліцензія програмного забезпечення StatusNet" @@ -5470,7 +5484,7 @@ msgstr "Ліцензія програмного забезпечення StatusN #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5480,7 +5494,7 @@ msgstr "" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** — це сервіс мікроблоґів." @@ -5489,7 +5503,7 @@ msgstr "**%%site.name%%** — це сервіс мікроблоґів." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5501,72 +5515,72 @@ msgstr "" "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "Ліцензія змісту сайту" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Зміст і дані %1$s є приватними і конфіденційними." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s." #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "Нумерація сторінок" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "Назад" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "" "В очікуванні кореневого елементу веб-стрічки, отримали цілий документ XML." #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "Поки що не можу обробити віддалений контент." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "Поки що не можу обробити вбудований XML контент." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." @@ -5685,7 +5699,7 @@ msgstr "Немає користувача для цього токену." #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "Не вдалося автентифікувати Вас." +msgstr "Не вдалося автентифікувати вас." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 @@ -5693,7 +5707,7 @@ msgid "Tried to revoke unknown token." msgstr "Спроба скасувати невідомий токен." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "Не вдалося видалити скасований токен." @@ -5708,187 +5722,208 @@ msgid "Icon for this application" msgstr "Іконка для цього додатку" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "Опишіть додаток, вкладаючись у %d знаків" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "Опишіть додаток, вкладаючись у %d знаків" +msgstr[1] "Опишіть додаток, вкладаючись у %d знаків" +msgstr[2] "Опишіть додаток, вкладаючись у %d знаків" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" -msgstr "Опишіть Ваш додаток" +msgstr "Опишіть ваш додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "URL-адреса веб-сторінки цього додатку" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "URL-адреса" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "Організація, відповідальна за цей додаток" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "URL-адреса веб-сторінки організації" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "URL-адреса, на яку перенаправляти після автентифікації" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "Браузер" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "Десктоп" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "Тип додатку, браузер або десктоп" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "Лише читання" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "Читати-писати" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "Скасувати" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "читання/запис" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "Підтверджено доступ %1$s — «%2$s»." #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "Вкладення" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "Автор" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "Провайдер" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "Дописи, до яких прикріплено це вкладення" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "Теґи для цього вкладення" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "Не вдалося змінити пароль" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "Змінювати пароль не дозволено" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "Блок" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "Результати команди" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Помилка в Ajax" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "Команду виконано" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "Команду не виконано" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "Допису з таким id не існує." #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "Користувач не має останнього допису." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "Не вдалося знайти користувача з ім’ям %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "Користувача з нікнеймом %s на даному сайті не знайдено." #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "Даруйте, але виконання команди ще не завершено." #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "Гадаємо, користі від «розштовхування» самого себе небагато, чи не так?!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "Спробу «розштовхати» %s зараховано." @@ -5897,7 +5932,7 @@ msgstr "Спробу «розштовхати» %s зараховано." #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5905,172 +5940,175 @@ msgid "" "Notices: %3$s" msgstr "" "Підписки: %1$s\n" -"Підписчики: %2$s\n" -"Дописи: %3$s" +"Підписані: %2$s\n" +"Дописів: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "Допис позначено як обраний." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." -msgstr "%1$s приєднався до групи %2$s." +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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." -msgstr "%1$s залишив групу %2$s." +msgstr "%1$s залишив спільноту %2$s." #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "Повне ім’я: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "Розташування: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "Про мене: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -"%s — це віддалений профіль; Ви можете надсилати приватні повідомлення лише " +"%s — це віддалений профіль; ви можете надсилати приватні повідомлення лише " "користувачам одного з вами сервісу." #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "" -"Повідомлення надто довге — максимум %1$d символів, а Ви надсилаєте %2$d." +"Повідомлення надто довге, максимум становить %1$d символів, натомість ви " +"надсилаєте %2$d." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "Помилка при відправці прямого повідомлення." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "Допису від %s вторували." #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "Помилка при повторенні допису." #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." -msgstr "Допис надто довгий — максимум %1$d символів, а Ви надсилаєте %2$d." +msgstr "" +"Допис надто довгий, максимум становить %1$d символів, а ви надсилаєте %2$d." #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "Відповідь для %s надіслано." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "Проблема при збереженні допису." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "Не можу підписатись до профілю OMB за командою." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "Тепер Ви підписані на дописи %s." +msgstr "Тепер ви підписані на дописи %s." #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "Підписку на дописи від %s скасовано." #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "Сповіщення вимкнуто." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "Сповіщення увімкнуто." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "Команду входу відключено." #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" @@ -6078,20 +6116,20 @@ 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "Підписку %s скасовано." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "Ви підписані до цієї особи:" @@ -6100,38 +6138,38 @@ msgstr[2] "Ви підписані до цих людей:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 msgid "No one is subscribed to you." -msgstr "До Вас ніхто не підписаний." +msgstr "Ніхто до вас не підписаний." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "Ця особа є підписаною до Вас:" -msgstr[1] "Ці люди підписані до Вас:" -msgstr[2] "Ці люди підписані до Вас:" +msgstr[0] "Ця особа є підписаною до вас:" +msgstr[1] "Ці люди підписані до вас:" +msgstr[2] "Ці люди підписані до вас:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 msgid "You are not a member of any groups." -msgstr "Ви не є учасником жодної групи." +msgstr "Ви не залучені до жодної спільноти." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "Ви є учасником групи:" -msgstr[1] "Ви є учасником таких груп:" -msgstr[2] "Ви є учасником таких груп:" +msgstr[0] "Ви є учасником спільноти:" +msgstr[1] "Ви є учасником таких спільнот:" +msgstr[2] "Ви є учасником таких спільнот:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6177,9 +6215,9 @@ msgstr "" "off — вимкнути сповіщення\n" "help — список команд\n" "follow — підписатись до користувача\n" -"groups — групи, до яких Ви входите\n" -"subscriptions — користувачі, до яких Ви підписані\n" -"subscribers — користувачі, які підписані до Вас\n" +"groups — спільноти, до яких ви входите\n" +"subscriptions — користувачі, до яких ви підписані\n" +"subscribers — користувачі, які підписані до вас\n" "leave — відписатись від користувача\n" "d — надіслати особисте повідомлення\n" "get — отримати останній допис користувача\n" @@ -6188,9 +6226,9 @@ msgstr "" "fav # — додати допис до обраних\n" "reply # — відповісти на допис\n" "reply — відповісти на останній допис користувача\n" -"join — приєднатися до групи\n" +"join — приєднатися до спільноти\n" "login — отримати посилання входу до веб-інтерфейсу\n" -"drop — залишити групу\n" +"drop — залишити спільноту\n" "stats — отримати статистику\n" "stop — те саме що і 'off'\n" "quit — те саме що і 'off'\n" @@ -6208,39 +6246,61 @@ msgstr "" "tracks — наразі не виконується\n" "tracking — наразі не виконується\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "Файлу конфігурації не знайдено. " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "Шукав файли конфігурації в цих місцях: " -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "Запустіть файл інсталяції, аби полагодити це." -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "Іти до файлу інсталяції." -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "ІМ" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "Оновлення через СМС" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "З’єднання" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "Авторизовані під’єднані додатки" @@ -6263,11 +6323,11 @@ msgstr "" msgid "Design defaults restored." msgstr "Дизайн за замовчуванням відновлено." -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "Видалити з обраних" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "Позначити як обране" @@ -6287,7 +6347,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Веб-стрічки" @@ -6322,33 +6382,34 @@ msgstr "Надати цьому користувачеві роль «%s»" #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" -msgstr "URL-адреса веб-сторінки, блоґу групи, або тематичного блоґу" +msgstr "URL-адреса веб-сторінки або тематичного блоґу сільноти" #: lib/groupeditform.php:168 msgid "Describe the group or topic" -msgstr "Опишіть групу або тему" +msgstr "Опишіть спільноту або тему" #: lib/groupeditform.php:170 #, php-format msgid "Describe the group or topic in %d characters" -msgstr "Опишіть групу або тему, вкладаючись у %d знаків" +msgstr "Опишіть спільноту або тему, вкладаючись у %d знаків" #: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Розташування групи, на кшталт «Місто, область (або регіон), країна»" +msgstr "Розташування спільноти, на кшталт «Місто, область (або регіон), країна»" #: lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -"Додаткові імена для групи, відокремлювати комами або пробілами, максимум %d" +"Додаткові імена для спільноти, відокремлювати комами або пробілами, максимум " +"— %d імені" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "Група" +msgstr "Спільнота" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6356,7 +6417,7 @@ msgstr "Група" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "Група %s" +msgstr "Спільнота %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 @@ -6370,7 +6431,7 @@ msgstr "Учасники" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "Учасники групи %s" +msgstr "Учасники спільноти %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 @@ -6392,7 +6453,7 @@ msgstr "Заблоковані користувачі %s" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "Редагувати властивості групи %s" +msgstr "Редагувати властивості спільноти %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 @@ -6418,16 +6479,16 @@ msgstr "Додати або редагувати дизайн %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "Групи з найбільшою кількістю учасників" +msgstr "Спільноти з найбільшою кількістю учасників" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "Групи з найбільшою кількістю дописів" +msgstr "Спільноти з найбільшою кількістю дописів" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "Теґи у дописах групи %s" +msgstr "Теґи у дописах спільноти %s" #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 @@ -6520,20 +6581,20 @@ msgstr "" "\n" "Хтось щойно ввів цю електронну адресу на %s.\n" "\n" -"Якщо то були Ви, мусите це підтвердити, використовуючи посилання:\n" +"Якщо то були ви, мусите це підтвердити, використовуючи посилання:\n" "\n" "%s\n" "\n" "А якщо ні, просто ігноруйте це повідомлення.\n" "\n" -"Вибачте за турботу, \n" +"Вибачте, що потурбували, \n" "%s\n" #. TRANS: Subject of new-subscriber notification e-mail #: lib/mail.php:243 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s тепер слідкує за Вашими дописами на %2$s." +msgstr "%1$s тепер слідкує за вашими дописами на %2$s." #: lib/mail.php:248 #, php-format @@ -6541,9 +6602,9 @@ 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: Main body of new-subscriber notification e-mail #: lib/mail.php:254 @@ -6560,12 +6621,12 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"%1$s тепер слідкує за Вашими дописами на %2$s.\n" +"%1$s тепер слідкує за вашими дописами на %2$s.\n" "\n" "\t%3$s\n" "\n" "%4$s%5$s%6$s\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%7$s.\n" "\n" "----\n" @@ -6602,7 +6663,7 @@ msgstr "" "\n" "Більше інформації про використання електронної пошти на %3$s.\n" "\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%4$s" #. TRANS: Subject line for SMS-by-email notification messages @@ -6621,7 +6682,7 @@ msgstr "Підтвердження СМС" #, php-format msgid "%s: confirm you own this phone number with this code:" msgstr "" -"%s, підтвердьте, що Ви є власником зазначеного номеру телефону, " +"%s, підтвердьте, що ви є власником зазначеного номеру телефону, " "скориставшись даним кодом:" #. TRANS: Subject for 'nudge' notification email @@ -6646,10 +6707,10 @@ msgid "" "With kind regards,\n" "%4$s\n" msgstr "" -"%1$s (%2$s) цікавиться як Ваші справи останнім часом і пропонує про це " +"%1$s (%2$s) цікавиться як ваші справи останнім часом і пропонує про це " "написати.\n" "\n" -"Може розповісте, що в Вас нового? Задовольніть цікавість друзів! :)\n" +"Може розповісте, що в вас нового? Задовольніть цікавість друзів! :)\n" "\n" "%3$s\n" "\n" @@ -6683,7 +6744,7 @@ msgid "" "With kind regards,\n" "%5$s\n" msgstr "" -"%1$s (%2$s) надіслав(ла) Вам приватне повідомлення:\n" +"%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" "\n" "------------------------------------------------------\n" "%3$s\n" @@ -6702,7 +6763,7 @@ msgstr "" #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) додав(ла) Ваш допис обраних" +msgstr "%s (@%s) додав(ла) ваш допис обраних" #. TRANS: Body for favorite notification email #: lib/mail.php:592 @@ -6725,13 +6786,13 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s (@%7$s) щойно додав(ла) Ваш допис %2$s до обраних.\n" +"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до обраних.\n" "\n" -"URL-адреса Вашого допису:\n" +"URL-адреса вашого допису:\n" "\n" "%3$s\n" "\n" -"Текст Вашого допису:\n" +"Текст вашого допису:\n" "\n" "%4$s\n" "\n" @@ -6739,7 +6800,7 @@ msgstr "" "\n" "%5$s\n" "\n" -"Щиро Ваші,\n" +"Щиро ваші,\n" "%6$s\n" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. @@ -6757,7 +6818,7 @@ msgstr "" #: lib/mail.php:657 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "%s (@%s) пропонує до Вашої уваги наступний допис" +msgstr "%s (@%s) пропонує до вашої уваги наступний допис" #. TRANS: Body of @-reply notification e-mail. #: lib/mail.php:660 @@ -6786,7 +6847,7 @@ msgid "" "\n" "P.S. You can turn off these email notifications here: %8$s\n" msgstr "" -"%1$s (@%9$s) щойно надіслав(ла) Вам повідомлення («@-відповідь») на %2$s.\n" +"%1$s (@%9$s) щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" "\n" "Повідомлення знаходиться тут:\n" "\n" @@ -6800,7 +6861,7 @@ msgstr "" "\n" "%6$s\n" "\n" -"Список всіх @-відповідей, надісланих Вам, знаходиться тут:\n" +"Список всіх @-відповідей, надісланих вам, знаходиться тут:\n" "\n" "%7$s\n" "\n" @@ -6819,11 +6880,11 @@ msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" -"У Вас немає приватних повідомлень. Зокрема, Ви можете надсилати приватні " +"У вас немає приватних повідомлень. Зокрема, ви можете надсилати приватні " "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " -"лише Ви." +"лише ви." -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "з" @@ -6837,7 +6898,7 @@ msgstr "Це незареєстрований користувач." #: lib/mailhandler.php:46 msgid "Sorry, that is not your incoming email address." -msgstr "Вибачте, але це не є Вашою електронною адресою для вхідної пошти." +msgstr "Вибачте, але це не є вашою електронною адресою для вхідної пошти." #: lib/mailhandler.php:50 msgid "Sorry, no incoming email allowed." @@ -6852,7 +6913,7 @@ msgstr "Формат повідомлення не підтримується: % #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. #: lib/mediafile.php:99 lib/mediafile.php:125 msgid "There was a database error while saving your file. Please try again." -msgstr "Виникла помилка під час завантаження Вашого файлу. Спробуйте ще." +msgstr "Виникла помилка під час завантаження вашого файлу. Спробуйте ще." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: lib/mediafile.php:145 @@ -6939,7 +7000,7 @@ msgstr "Лишилось знаків" #: lib/messageform.php:178 lib/noticeform.php:237 msgctxt "Send button for sending notice" msgid "Send" -msgstr "Так!" +msgstr "Так" #: lib/noticeform.php:160 msgid "Send a notice" @@ -6971,59 +7032,59 @@ msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -"На жаль, отримання інформації щодо Вашого місцезнаходження займе більше " -"часу, ніж очікувалось; будь ласка, спробуйте пізніше" +"На жаль, отримання інформації щодо вашого розташування займе більше часу, " +"ніж очікувалось; будь ласка, спробуйте пізніше" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "Півн." #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "Півд." #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "Сх." #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "Зах." -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "в" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" -msgstr "веб-сторінки" +msgstr "вебу" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" -msgstr "в контексті" +msgstr "у контексті" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "Повторено" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "Відповісти на цей допис" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "Допис повторили" @@ -7094,7 +7155,7 @@ msgid "Tags in %s's notices" msgstr "Теґи у дописах %s" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "Невідомо" @@ -7108,15 +7169,15 @@ msgstr "Всі підписки" #: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "Підписчики" +msgstr "Підписані" #: lib/profileaction.php:161 msgid "All subscribers" -msgstr "Всі підписчики" +msgstr "Всі підписані" #: lib/profileaction.php:191 msgid "User ID" -msgstr "ІД" +msgstr "Ід. номер" #: lib/profileaction.php:196 msgid "Member since" @@ -7125,11 +7186,11 @@ msgstr "Реєстрація" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 msgid "Daily average" -msgstr "За добу" +msgstr "Щоденно" #: lib/profileaction.php:264 msgid "All groups" -msgstr "Всі групи" +msgstr "Всі спільноти" #: lib/profileformaction.php:123 msgid "Unimplemented method." @@ -7141,7 +7202,7 @@ msgstr "Загал" #: lib/publicgroupnav.php:82 msgid "User groups" -msgstr "Групи користувачів" +msgstr "Спільноти" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" @@ -7215,15 +7276,15 @@ msgstr "Люди" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "Знайти людей на цьому сайті" +msgstr "Пошук людей на цьому сайті" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "Знайти за змістом дописів" +msgstr "Пошук дописів за змістом" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "Знайти групи на цьому сайті" +msgstr "Пошук спільнот на цьому сайті" #: lib/section.php:89 msgid "Untitled section" @@ -7254,7 +7315,7 @@ msgstr "Люди підписані до %s" #: lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "%s бере участь в цих групах" +msgstr "Спільноти, до яких залучений %s" #: lib/subgroupnav.php:105 msgid "Invite" @@ -7263,7 +7324,7 @@ msgstr "Запросити" #: lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "Запросіть друзів та колег приєднатись до Вас на %s" +msgstr "Запросіть друзів та колег приєднатись до вас на %s" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 @@ -7273,7 +7334,7 @@ msgstr "Хмарка теґів (позначки самих користува #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" -msgstr "Хмарка теґів (позначки, якими Ви позначили користувачів)" +msgstr "Хмарка теґів (якими ви позначили користувачів)" #: lib/tagcloudsection.php:56 msgid "None" @@ -7413,58 +7474,58 @@ msgstr "мить тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1129 msgid "about a minute ago" -msgstr "близько хвилину тому" +msgstr "хвилину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1133 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "близько хвилини тому" +msgstr[0] "хвилину тому" msgstr[1] "близько %d хвилин тому" -msgstr[2] "" +msgstr[2] "близько %d хвилин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1136 msgid "about an hour ago" -msgstr "близько години тому" +msgstr "годину тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1140 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "близько години тому" +msgstr[0] "годину тому" msgstr[1] "близько %d годин тому" -msgstr[2] "" +msgstr[2] "близько %d годин тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1143 msgid "about a day ago" -msgstr "близько доби тому" +msgstr "день тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1147 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "близько доби тому" +msgstr[0] "день тому" msgstr[1] "близько %d днів тому" -msgstr[2] "" +msgstr[2] "близько %d днів тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1150 msgid "about a month ago" -msgstr "близько місяця тому" +msgstr "місяць тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1154 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "близько місяця тому" +msgstr[0] "місяць тому" msgstr[1] "близько %d місяців тому" -msgstr[2] "" +msgstr[2] "близько %d місяців тому" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1157 @@ -7482,18 +7543,23 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s неприпустимий колір! Використайте 3 або 6 знаків (HEX-формат)" #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" -msgstr "Резервна копія файлів для користувача %s (%s)\n" +msgstr "Резервна копія файлів користувача %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." msgstr "" -"Користувача не зазначено; для початку створення резервної копії потрібно " -"зазначити користувача.\n" +"Користувача не зазначено; для створення резервної копії потрібно зазначити " +"користувача." #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." -msgstr "У резервному файлі збережено %d дописів.\n" +msgstr "У резервному файлі збережено %d дописів." + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s додав допис %s до списку обраних." + +#~ msgid "%s is now following %s." +#~ msgstr "%s тепер слідкує за %s." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 0b28c480b3..bca81310e8 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:07+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 1285-66-16 72::+0000\n" +"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -84,7 +84,7 @@ msgstr "保存访问设置" #. TRANS: Button label in the "Edit application" form. #: actions/accessadminpanel.php:203 actions/emailsettings.php:228 #: actions/imsettings.php:187 actions/smssettings.php:209 -#: lib/applicationeditform.php:354 +#: lib/applicationeditform.php:355 msgctxt "BUTTON" msgid "Save" msgstr "保存" @@ -115,7 +115,7 @@ msgstr "没有这个页面。" #: actions/remotesubscribe.php:154 actions/replies.php:73 #: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 #: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40 -#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59 +#: actions/xrds.php:71 lib/command.php:495 lib/galleryaction.php:59 #: lib/mailbox.php:82 lib/profileaction.php:77 msgid "No such user." msgstr "没有这个用户。" @@ -352,7 +352,7 @@ msgid "This status is already a favorite." msgstr "已收藏此状态。" #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:296 +#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." msgstr "无法创建收藏。" @@ -465,18 +465,18 @@ msgid "Group not found." msgstr "小组未找到。" #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336 +#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "你已经是该小组成员。" #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341 +#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." msgstr "你已经被管理员从该小组中屏蔽。" #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353 +#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:350 #, php-format msgid "Could not join user %1$s to group %2$s." msgstr "无法把用户%1$s添加到%2$s小组" @@ -488,7 +488,7 @@ msgstr "你不是该小组成员。" #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #: actions/apigroupleave.php:126 actions/leavegroup.php:129 -#: lib/command.php:401 +#: lib/command.php:398 #, php-format msgid "Could not remove user %1$s from group %2$s." msgstr "无法把用户%1$s从%2$s小组删除" @@ -602,7 +602,7 @@ msgstr "" "strong>你的%4$s账户数据。你应该只允许你信任信任的第三方程序访问你的%4$s账户。" #. TRANS: Main menu option when logged in for access to user settings -#: actions/apioauthauthorize.php:310 lib/action.php:463 +#: actions/apioauthauthorize.php:310 lib/action.php:462 msgid "Account" msgstr "帐号" @@ -616,7 +616,7 @@ msgstr "昵称" #. TRANS: Link description in user account settings menu. #: actions/apioauthauthorize.php:316 actions/login.php:255 -#: actions/register.php:436 lib/accountsettingsaction.php:125 +#: actions/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "密码" @@ -646,12 +646,12 @@ msgid "No such notice." msgstr "没有这条消息。" #. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:84 lib/command.php:538 +#: actions/apistatusesretweet.php:84 lib/command.php:535 msgid "Cannot repeat your own notice." msgstr "不能转发你自己的消息。" #. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:544 +#: actions/apistatusesretweet.php:92 lib/command.php:541 msgid "Already repeated that notice." msgstr "已转发了该消息。" @@ -761,7 +761,7 @@ msgstr "大小不正确。" #. TRANS: Link description in user account settings menu. #: actions/avatarsettings.php:67 actions/showgroup.php:230 -#: lib/accountsettingsaction.php:118 +#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "头像" @@ -792,7 +792,7 @@ msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:149 actions/showapplication.php:252 -#: lib/deleteuserform.php:66 lib/noticelist.php:657 +#: lib/deleteuserform.php:66 lib/noticelist.php:667 msgid "Delete" msgstr "删除" @@ -877,7 +877,7 @@ msgstr "是" #. TRANS: Submit button title for 'Yes' when blocking a user. #. TRANS: Description of the form to block a user. -#: actions/block.php:164 lib/blockform.php:82 +#: actions/block.php:164 lib/blockform.php:79 msgid "Block this user" msgstr "屏蔽这个用户" @@ -896,8 +896,8 @@ msgstr "保存屏蔽信息失败。" #: actions/groupunblock.php:86 actions/joingroup.php:82 #: actions/joingroup.php:93 actions/leavegroup.php:82 #: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170 -#: lib/command.php:383 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:168 +#: lib/command.php:380 msgid "No such group." msgstr "没有这个组。" @@ -1013,7 +1013,7 @@ msgstr "你不是该应用的拥有者。" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1320 +#: lib/action.php:1307 msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -1075,7 +1075,7 @@ msgid "Do not delete this notice" msgstr "不要删除这个消息" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:158 lib/noticelist.php:657 +#: actions/deletenotice.php:158 lib/noticelist.php:667 msgid "Delete this notice" msgstr "删除" @@ -1105,7 +1105,7 @@ msgstr "删除这个用户" #. TRANS: Message used as title for design settings for the site. #. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139 +#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 msgid "Design" msgstr "外观" @@ -1231,7 +1231,7 @@ msgstr "重置到默认" #: actions/siteadminpanel.php:292 actions/sitenoticeadminpanel.php:195 #: actions/snapshotadminpanel.php:245 actions/subscriptions.php:226 #: actions/tagother.php:154 actions/useradminpanel.php:295 -#: lib/applicationeditform.php:356 lib/designsettings.php:256 +#: lib/applicationeditform.php:357 lib/designsettings.php:256 #: lib/groupeditform.php:202 msgid "Save" msgstr "保存" @@ -1351,7 +1351,7 @@ msgid "Could not update group." msgstr "无法更新小组" #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:264 classes/User_group.php:514 +#: actions/editgroup.php:264 classes/User_group.php:513 msgid "Could not create aliases." msgstr "无法创建别名。" @@ -1407,7 +1407,7 @@ msgstr "" #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. #: actions/emailsettings.php:127 actions/imsettings.php:131 -#: actions/smssettings.php:137 lib/applicationeditform.php:350 +#: actions/smssettings.php:137 lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" msgstr "取消" @@ -1597,7 +1597,7 @@ msgstr "已添加新的发布用的电子邮件地址。" msgid "This notice is already a favorite!" msgstr "已收藏过此消息!" -#: actions/favor.php:92 lib/disfavorform.php:140 +#: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" msgstr "取消收藏" @@ -1890,7 +1890,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/grouprss.php:139 actions/userrss.php:94 -#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69 +#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 #, php-format msgid "%s timeline" msgstr "%s的时间线" @@ -2164,7 +2164,7 @@ msgstr "你已经关注了这些用户:" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430 +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:426 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2289,7 +2289,7 @@ msgid "You must be logged in to leave a group." msgstr "你必须登录才能离开小组。" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:389 +#: actions/leavegroup.php:100 lib/command.php:386 msgid "You are not a member of that group." msgstr "你不是该群小组成员。" @@ -2506,14 +2506,14 @@ msgid "New message" msgstr "新消息" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:502 +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 msgid "You can't send a message to this user." msgstr "无法向此用户发送消息。" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481 -#: lib/command.php:582 +#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:478 +#: lib/command.php:579 msgid "No content!" msgstr "没有内容!" @@ -2522,7 +2522,7 @@ msgid "No recipient specified." msgstr "没有收件人。" #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:164 lib/command.php:506 +#: actions/newmessage.php:164 lib/command.php:503 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "不要向自己发送消息;跟自己悄悄说就得了。" @@ -2533,12 +2533,12 @@ msgstr "消息已发送" #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:185 lib/command.php:514 +#: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." msgstr "向%s发送私信成功。" -#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189 +#: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" msgstr "Ajax错误" @@ -2673,8 +2673,8 @@ msgid "Only %s URLs over plain HTTP please." msgstr "请只用HTTP明文的%sURLs的地址。" #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1356 +#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 +#: lib/apiaction.php:1227 lib/apiaction.php:1350 msgid "Not a supported data format." msgstr "不支持的数据格式。" @@ -3023,7 +3023,7 @@ msgstr "全名" #. TRANS: Form input field label. #: actions/profilesettings.php:115 actions/register.php:460 -#: lib/applicationeditform.php:235 lib/groupeditform.php:161 +#: lib/applicationeditform.php:236 lib/groupeditform.php:161 msgid "Homepage" msgstr "主页" @@ -3403,7 +3403,7 @@ msgstr "与上面输入相同的密码。此项必填。" #. TRANS: Link description in user account settings menu. #: actions/register.php:445 actions/register.php:449 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "电子邮件" @@ -3554,7 +3554,7 @@ msgstr "你不能重复自己的消息。" msgid "You already repeated that notice." msgstr "你已转发过了那个消息。" -#: actions/repeat.php:114 lib/noticelist.php:676 +#: actions/repeat.php:114 lib/noticelist.php:686 msgid "Repeated" msgstr "已转发" @@ -3687,13 +3687,13 @@ msgid "Name" msgstr "名称" #. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:226 +#: actions/showapplication.php:178 lib/applicationeditform.php:227 msgid "Organization" msgstr "组织名称必填。" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:207 lib/groupeditform.php:172 +#: lib/applicationeditform.php:208 lib/groupeditform.php:172 msgid "Description" msgstr "描述" @@ -4457,7 +4457,7 @@ msgstr "%s没有关注任何人。" msgid "Jabber" msgstr "Jabber" -#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115 +#: actions/subscriptions.php:222 msgid "SMS" msgstr "SMS" @@ -4577,7 +4577,7 @@ msgid "Invalid default subscripton: '%1$s' is not user." msgstr "无效的默认关注:“%1$s”不是一个用户。" #. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:111 +#: actions/useradminpanel.php:219 lib/accountsettingsaction.php:106 #: lib/personalgroupnav.php:109 msgid "Profile" msgstr "个人信息" @@ -4765,7 +4765,7 @@ msgstr "试一下[搜索小组](%%action.groupsearch%%)并加入他们。" #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. #: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:76 +#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -4819,7 +4819,7 @@ msgid "Plugins" msgstr "插件" #. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:805 +#: actions/version.php:198 lib/action.php:802 msgid "Version" msgstr "版本" @@ -4827,29 +4827,25 @@ msgstr "版本" msgid "Author(s)" msgstr "作者" -#: classes/Fave.php:147 lib/favorform.php:140 +#. TRANS: Activity title when marking a notice as favorite. +#: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" msgstr "收藏" -#: classes/Fave.php:148 -#, php-format -msgid "%s marked notice %s as a favorite." -msgstr "%s 将消息 %s 添加到了收藏。" - #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:143 +#: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" msgstr "不能处理 URL “%s”" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:175 +#: classes/File.php:174 msgid "Robin thinks something is impossible." msgstr "麦子认为卖烧麦是份很令人愉快的工作。" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. -#: classes/File.php:190 +#: classes/File.php:189 #, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " @@ -4859,20 +4855,20 @@ msgstr "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. -#: classes/File.php:202 +#: classes/File.php:201 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "这么大的文件会超过你%d字节的用户配额。" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes. -#: classes/File.php:211 +#: classes/File.php:210 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "这么大的文件会超过你%d字节的每月配额。" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:248 classes/File.php:263 +#: classes/File.php:247 classes/File.php:262 msgid "Invalid filename." msgstr "无效的文件名。" @@ -4891,13 +4887,28 @@ msgstr "不是小组成员。" msgid "Group leave failed." msgstr "离开小组失败。" -#: classes/Group_member.php:108 lib/joinform.php:114 +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_member.php:76 +#, 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:89 +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "保存用户时出错;无效。" + +#. TRANS: Activity title. +#: classes/Group_member.php:113 lib/joinform.php:114 msgid "Join" msgstr "加入" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:112 +#: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." msgstr "%1$s加入了%2$s小组。" @@ -4920,17 +4931,17 @@ msgid "No database name or DSN found anywhere." msgstr "没有找到数据库名称或者 DSN。" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:46 +#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "你被禁止发送私信。" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:63 +#: classes/Message.php:62 msgid "Could not insert message." msgstr "无法添加信息。" #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:74 +#: classes/Message.php:73 msgid "Could not update message with new URI." msgstr "无法通过新的 URI 更新消息。" @@ -4982,32 +4993,32 @@ msgid "Problem saving notice." msgstr "保存消息时出错。" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:906 +#: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" msgstr "对 saveKnownGroups 提供的类型无效" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1005 +#: classes/Notice.php:1006 msgid "Problem saving group inbox." msgstr "保存小组收件箱时出错。" #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1824 +#: classes/Notice.php:1822 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:737 +#: classes/Profile.php:785 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,不存在。" #. 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:746 +#: classes/Profile.php:794 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,数据库错误。" @@ -5057,15 +5068,11 @@ msgstr "无法删除关注 OMB token。" msgid "Could not delete subscription." msgstr "无法取消关注。" -#: classes/Subscription.php:254 +#. TRANS: Activity tile when subscribing to another person. +#: classes/Subscription.php:255 msgid "Follow" msgstr "关注" -#: classes/Subscription.php:255 -#, php-format -msgid "%s is now following %s." -msgstr "%s 现在开始关注 %s." - #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -5074,57 +5081,57 @@ msgid "Welcome to %1$s, @%2$s!" msgstr "欢迎来到 %1$s,@%2$s!" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:496 +#: classes/User_group.php:495 msgid "Could not create group." msgstr "无法创建小组。" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:506 +#: classes/User_group.php:505 msgid "Could not set group URI." msgstr "无法设置小组 URI。" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:529 +#: classes/User_group.php:528 msgid "Could not set group membership." msgstr "无法设置小组成员。" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:544 +#: classes/User_group.php:543 msgid "Could not save local group info." msgstr "无法保存本地小组信息。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:109 +#: lib/accountsettingsaction.php:104 msgid "Change your profile settings" msgstr "修改你的个人信息" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:116 +#: lib/accountsettingsaction.php:111 msgid "Upload an avatar" msgstr "上传一个头像。" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:118 msgid "Change your password" msgstr "修改密码" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:130 +#: lib/accountsettingsaction.php:125 msgid "Change email handling" msgstr "修改电子邮件" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:137 +#: lib/accountsettingsaction.php:132 msgid "Design your profile" msgstr "设计你的个人页面外观" #. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:144 +#: lib/accountsettingsaction.php:139 msgid "Other options" msgstr "其他选项" #. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:146 +#: lib/accountsettingsaction.php:141 msgid "Other" msgstr "其他" @@ -5140,184 +5147,185 @@ msgid "Untitled page" msgstr "无标题页" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:449 +#: lib/action.php:448 msgid "Primary site navigation" msgstr "主站导航" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:455 +#: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料及朋友的时间线" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:458 +#: lib/action.php:457 msgctxt "MENU" msgid "Personal" msgstr "个人" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:460 +#: lib/action.php:459 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改你的 email 地址、头像、密码、资料" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:465 +#: lib/action.php:464 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "关联的服务" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:468 +#: lib/action.php:467 msgid "Connect" msgstr "关联" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:471 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "更改网站配置" #. TRANS: Main menu option when logged in and site admin for access to site configuration #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:474 lib/groupnav.php:117 +#: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" msgstr "管理" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:478 +#: lib/action.php:477 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "邀请好友和同事加入%s。" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:481 +#: lib/action.php:480 msgctxt "MENU" msgid "Invite" msgstr "邀请" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:487 +#: lib/action.php:486 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "从网站登出" #. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:490 +#: lib/action.php:489 msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:495 +#: lib/action.php:494 msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建一个账户" #. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:498 +#: lib/action.php:497 msgctxt "MENU" msgid "Register" msgstr "注册" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:501 +#: lib/action.php:500 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登录这个网站" -#: lib/action.php:504 +#: lib/action.php:503 msgctxt "MENU" msgid "Login" msgstr "登录" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:507 +#: lib/action.php:506 msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助我!" -#: lib/action.php:510 +#: lib/action.php:509 msgctxt "MENU" msgid "Help" msgstr "帮助" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:513 +#: lib/action.php:512 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "搜索人或文字" -#: lib/action.php:516 +#: lib/action.php:515 msgctxt "MENU" msgid "Search" msgstr "搜索" #. TRANS: DT element for site notice. String is hidden in default CSS. #. TRANS: Menu item for site administration -#: lib/action.php:538 lib/adminpanelaction.php:387 +#: lib/action.php:537 lib/adminpanelaction.php:387 msgid "Site notice" msgstr "网站消息" #. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:605 +#: lib/action.php:604 msgid "Local views" msgstr "本地显示" #. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:675 +#: lib/action.php:674 msgid "Page notice" msgstr "页面消息" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:778 +#: lib/action.php:775 msgid "Secondary site navigation" msgstr "副站导航" #. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:784 +#: lib/action.php:781 msgid "Help" msgstr "帮助" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:787 +#: lib/action.php:784 msgid "About" msgstr "关于" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:790 +#: lib/action.php:787 msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:795 +#: lib/action.php:792 msgid "TOS" msgstr "条款" #. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:799 +#: lib/action.php:796 msgid "Privacy" msgstr "隐私" #. TRANS: Secondary navigation menu option. -#: lib/action.php:802 +#: lib/action.php:799 msgid "Source" msgstr "源码" #. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site. -#: lib/action.php:808 +#: lib/action.php:805 msgid "Contact" msgstr "联系" -#: lib/action.php:810 +#. TRANS: Secondary navigation menu option. +#: lib/action.php:808 msgid "Badge" msgstr "挂件" #. TRANS: DT element for StatusNet software license. -#: lib/action.php:839 +#: lib/action.php:837 msgid "StatusNet software license" msgstr "StatusNet 软件许可证" @@ -5325,7 +5333,7 @@ msgstr "StatusNet 软件许可证" #. 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:846 +#: lib/action.php:844 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -5335,7 +5343,7 @@ msgstr "" "broughtbyurl%%)。" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:849 +#: lib/action.php:847 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** 是一个微博客服务。" @@ -5344,7 +5352,7 @@ msgstr "**%%site.name%%** 是一个微博客服务。" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:856 +#: lib/action.php:854 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -5355,70 +5363,70 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。" #. TRANS: DT element for StatusNet site content license. -#: lib/action.php:872 +#: lib/action.php:870 msgid "Site content license" msgstr "网站内容许可协议" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:879 +#: lib/action.php:877 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "%1$s的内容和数据是私人且保密的。" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:886 +#: lib/action.php:884 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "内容和数据%1$s版权所有并保留所有权利。" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:890 +#: lib/action.php:888 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:904 +#: lib/action.php:902 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "所有%1$s的内容和数据在%2$s许可下有效。" #. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1248 +#: lib/action.php:1238 msgid "Pagination" msgstr "分页" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1259 +#: lib/action.php:1249 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:1269 +#: lib/action.php:1259 msgid "Before" msgstr "之前" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:122 +#: lib/activity.php:120 msgid "Expecting a root feed element but got a whole XML document." msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。" #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:203 +#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "还不能处理远程内容。" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:240 +#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "还不能处理嵌入式 XML 内容。" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:245 +#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "还不能处理嵌入式 Base64 内容。" @@ -5543,7 +5551,7 @@ msgid "Tried to revoke unknown token." msgstr "尝试了取消未知的 token。" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:182 +#: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." msgstr "删除取消的 token 失败。" @@ -5558,186 +5566,205 @@ msgid "Icon for this application" msgstr "该应用的图标" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:200 -#, php-format -msgid "Describe your application in %d characters" -msgstr "用不超过%d个字符描述你的应用" +#. TRANS: %d is the number of available characters for the description. +#: lib/applicationeditform.php:201 +#, fuzzy, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "用不超过%d个字符描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:204 +#: lib/applicationeditform.php:205 msgid "Describe your application" msgstr "描述你的应用" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:215 +#: lib/applicationeditform.php:216 msgid "URL of the homepage of this application" msgstr "这个应用的主页 URL" #. TRANS: Form input field label. -#: lib/applicationeditform.php:217 +#: lib/applicationeditform.php:218 msgid "Source URL" msgstr "来源网址" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:224 +#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "该应用的负责组织" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:233 +#: lib/applicationeditform.php:234 msgid "URL for the homepage of the organization" msgstr "这个组织的主页 URL" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:242 +#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "通过授权后转向的 URL" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:270 +#: lib/applicationeditform.php:271 msgid "Browser" msgstr "浏览器" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:287 +#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "桌面" #. TRANS: Form guide. -#: lib/applicationeditform.php:289 +#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "应用的类型,浏览器或桌面" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:313 +#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "只读" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:333 +#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "读写" #. TRANS: Form guide. -#: lib/applicationeditform.php:335 +#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "该应用默认的访问权限:只读或读写" #. TRANS: Submit button title. -#: lib/applicationeditform.php:352 +#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "取消" #. TRANS: Application access type -#: lib/applicationlist.php:135 +#: lib/applicationlist.php:134 msgid "read-write" msgstr "读写" #. TRANS: Application access type -#: lib/applicationlist.php:137 +#: lib/applicationlist.php:136 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:143 +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#: lib/applicationlist.php:142 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "通过了%1$s - \"%2$s\"的访问权限。" #. TRANS: Button label -#: lib/applicationlist.php:158 +#: lib/applicationlist.php:157 msgctxt "BUTTON" msgid "Revoke" msgstr "取消" +#: lib/atom10feed.php:112 +msgid "author element must contain a name element." +msgstr "" + #. TRANS: DT element label in attachment list. -#: lib/attachmentlist.php:88 +#: lib/attachmentlist.php:85 msgid "Attachments" msgstr "附件" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:265 +#: lib/attachmentlist.php:256 msgid "Author" msgstr "作者" #. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:279 +#: lib/attachmentlist.php:270 msgid "Provider" msgstr "提供者" #. TRANS: Title. -#: lib/attachmentnoticesection.php:68 +#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "出现这个附件的消息" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:49 +#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "此附件的标签" -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:226 -msgid "Password changing failed" +#. TRANS: Exception thrown when a password change fails. +#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 +#, fuzzy +msgid "Password changing failed." msgstr "不允许更改密码" -#: lib/authenticationplugin.php:236 -msgid "Password changing is not allowed" +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +#: lib/authenticationplugin.php:238 +#, fuzzy +msgid "Password changing is not allowed." msgstr "不允许更改密码" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:70 +#: lib/blockform.php:68 msgid "Block" msgstr "屏蔽" -#: lib/channel.php:157 lib/channel.php:177 +#. TRANS: Title for command results. +#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "执行结果" -#: lib/channel.php:229 lib/mailhandler.php:142 +#. TRANS: Title for command results. +#: lib/channel.php:194 +#, fuzzy +msgid "AJAX error" +msgstr "Ajax错误" + +#. TRANS: E-mail subject when a command has completed. +#: lib/channel.php:233 lib/mailhandler.php:142 msgid "Command complete" msgstr "执行完毕" -#: lib/channel.php:240 +#. TRANS: E-mail subject when a command has failed. +#: lib/channel.php:244 msgid "Command failed" msgstr "执行失败" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:84 lib/command.php:108 +#: lib/command.php:82 lib/command.php:106 msgid "Notice with that id does not exist." msgstr "没有此 id 的消息。" #. 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:101 lib/command.php:630 +#: lib/command.php:99 lib/command.php:626 msgid "User has no last notice." msgstr "用户没有最后一条的消息。" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:130 +#: lib/command.php:128 #, php-format msgid "Could not find a user with nickname %s." msgstr "无法找到昵称为 %s 的用户。" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:150 +#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "无法在本地找到昵称为%s的用户。" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:185 +#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "对不起,这个命令还没有实现。" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:231 +#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" msgstr "呼叫自己不太符合逻辑吧。" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:240 +#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." msgstr "呼叫已发给 %s。" @@ -5746,7 +5773,7 @@ msgstr "呼叫已发给 %s。" #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:270 +#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5758,52 +5785,53 @@ msgstr "" "消息数: %3$s" #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:314 +#: lib/command.php:312 msgid "Notice marked as fave." msgstr "消息被标记为收藏。" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:360 +#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." 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. -#: lib/command.php:408 +#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "%1$s离开了%2$s小组。" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:434 +#: lib/command.php:430 #, php-format msgid "Fullname: %s" msgstr "全名:%s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:438 lib/mail.php:268 +#: lib/command.php:434 lib/mail.php:268 #, php-format msgid "Location: %s" msgstr "位置:%s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in new-subscriber notification e-mail -#: lib/command.php:442 lib/mail.php:271 +#: lib/command.php:438 lib/mail.php:271 #, php-format msgid "Homepage: %s" msgstr "主页:%s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:446 +#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "关于:%s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). -#: lib/command.php:474 +#. TRANS: %s is a remote profile. +#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -5812,165 +5840,165 @@ msgstr "%s是一个远程的用户;你只能给同一个服务器上的用户 #. TRANS: Message given if content is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:491 lib/xmppmanager.php:403 +#: lib/command.php:488 lib/xmppmanager.php:403 #, php-format msgid "Message too long - maximum is %1$d characters, you sent %2$d." msgstr "消息包含%2$d个字符,超出长度限制 - 不能超过%1$d个字符。" #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:517 +#: lib/command.php:514 msgid "Error sending direct message." msgstr "发送消息出错。" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:554 +#: lib/command.php:551 #, php-format msgid "Notice from %s repeated." msgstr "来自 %s 的消息已转发。" #. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:557 +#: lib/command.php:554 msgid "Error repeating notice." msgstr "转发消息时出错。" #. TRANS: Message given if content of a notice for a reply is too long. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:592 +#: lib/command.php:589 #, php-format msgid "Notice too long - maximum is %1$d characters, you sent %2$d." msgstr "消息过长 - 最长%1$d个字符,你发送的是%2$d。" #. 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:603 +#: lib/command.php:600 #, php-format msgid "Reply to %s sent." msgstr "给 %s 的回复已发送。" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:606 +#: lib/command.php:603 msgid "Error saving notice." msgstr "保存消息时出错。" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:655 +#: lib/command.php:650 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:664 +#: lib/command.php:659 msgid "Can't subscribe to OMB profiles by command." msgstr "无法通过命令行关注 OMB 用户。" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:672 +#: lib/command.php:667 #, php-format msgid "Subscribed to %s." msgstr "已关注%s。" #. 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:694 lib/command.php:804 +#: lib/command.php:688 lib/command.php:799 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:705 +#: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." msgstr "取消关注%s。" #. 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:724 lib/command.php:750 +#: lib/command.php:719 lib/command.php:745 msgid "Command not yet implemented." msgstr "命令尚未实现。" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:728 +#: lib/command.php:723 msgid "Notification off." msgstr "通知已关闭。" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:731 +#: lib/command.php:726 msgid "Can't turn off notification." msgstr "无法关闭通知。" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:754 +#: lib/command.php:749 msgid "Notification on." msgstr "通知已开启。" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:757 +#: lib/command.php:752 msgid "Can't turn on notification." msgstr "无法开启通知。" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:771 +#: lib/command.php:766 msgid "Login command is disabled." msgstr "登录命令被禁用。" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:784 +#: lib/command.php:779 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "这个链接只能使用一次并且仅在2分钟内有效:%s。" #. 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:813 +#: lib/command.php:808 #, php-format msgid "Unsubscribed %s." msgstr "已取消关注%s。" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:831 +#: lib/command.php:826 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:836 +#: lib/command.php:831 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "你已关注了这个用户:" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:858 +#: lib/command.php:853 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:863 +#: lib/command.php:858 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "这个用户正在关注你:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:885 +#: lib/command.php:880 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:890 +#: lib/command.php:885 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "你是该小组成员:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:905 +#: lib/command.php:900 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -6050,39 +6078,61 @@ msgstr "" "tracks - 尚未实现。\n" "tracking - 尚未实现。\n" -#: lib/common.php:135 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:136 msgid "No configuration file found. " msgstr "没有找到配置文件。 " -#: lib/common.php:136 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +#: lib/common.php:139 msgid "I looked for configuration files in the following places: " msgstr "我在以下位置查找了配置文件:" -#: lib/common.php:138 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#: lib/common.php:142 msgid "You may wish to run the installer to fix this." msgstr "或许你想运行安装程序来解决这个问题。" -#: lib/common.php:139 +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +#: lib/common.php:146 msgid "Go to the installer." msgstr "去安装程序。" -#: lib/connectsettingsaction.php:110 +#. TRANS: Menu item for Instant Messaging settings. +#: lib/connectsettingsaction.php:106 +#, fuzzy +msgctxt "MENU" msgid "IM" msgstr "即时通讯IM" -#: lib/connectsettingsaction.php:111 +#. TRANS: Tooltip for Instant Messaging menu item. +#: lib/connectsettingsaction.php:108 msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" -#: lib/connectsettingsaction.php:116 +#. TRANS: Menu item for Short Message Service settings. +#: lib/connectsettingsaction.php:113 +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Tooltip for Short Message Service menu item. +#: lib/connectsettingsaction.php:115 msgid "Updates by SMS" msgstr "使用 SMS 更新" +#. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "关联" -#: lib/connectsettingsaction.php:121 +#. TRANS: Tooltip for connected applications (Connections through OAth) menu item. +#: lib/connectsettingsaction.php:122 msgid "Authorized connected applications" msgstr "被授权已连接的应用" @@ -6103,11 +6153,11 @@ msgstr "你可以上传你的个人页面背景。文件最大 2MB。" msgid "Design defaults restored." msgstr "默认外观已恢复。" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" msgstr "取消收藏这个消息" -#: lib/favorform.php:114 lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" msgstr "收藏" @@ -6127,7 +6177,7 @@ msgstr "Atom" msgid "FOAF" msgstr "FOAF" -#: lib/feedlist.php:64 +#: lib/feedlist.php:66 msgid "Feeds" msgstr "Feeds" @@ -6657,7 +6707,7 @@ msgstr "" "你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户" "发给你你私信只有你看得到。" -#: lib/mailbox.php:228 lib/noticelist.php:506 +#: lib/mailbox.php:228 lib/noticelist.php:516 msgid "from" msgstr "通过" @@ -6802,55 +6852,55 @@ msgid "" msgstr "抱歉,获取你的地理位置时间过长,请稍候重试" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:436 +#: lib/noticelist.php:446 msgid "N" msgstr "N" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:438 +#: lib/noticelist.php:448 msgid "S" msgstr "S" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:440 +#: lib/noticelist.php:450 msgid "E" msgstr "E" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:442 +#: lib/noticelist.php:452 msgid "W" msgstr "W" -#: lib/noticelist.php:444 +#: lib/noticelist.php:454 #, 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" -#: lib/noticelist.php:453 +#: lib/noticelist.php:463 msgid "at" msgstr "位于" -#: lib/noticelist.php:502 +#: lib/noticelist.php:512 msgid "web" msgstr "网页" -#: lib/noticelist.php:568 +#: lib/noticelist.php:578 msgid "in context" msgstr "查看对话" -#: lib/noticelist.php:603 +#: lib/noticelist.php:613 msgid "Repeated by" msgstr "转发来自" -#: lib/noticelist.php:630 +#: lib/noticelist.php:640 msgid "Reply to this notice" msgstr "回复" -#: lib/noticelist.php:631 +#: lib/noticelist.php:641 msgid "Reply" msgstr "回复" -#: lib/noticelist.php:675 +#: lib/noticelist.php:685 msgid "Notice repeated" msgstr "消息已转发" @@ -6921,7 +6971,7 @@ msgid "Tags in %s's notices" msgstr "%s的消息中的标签" #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:116 +#: lib/plugin.php:121 msgid "Unknown" msgstr "未知的" @@ -7296,16 +7346,21 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。" #: scripts/restoreuser.php:82 -#, fuzzy, php-format +#, php-format msgid "Backup file for user %s (%s)" msgstr "用户 %s (%s) 的备份文件\n" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "N没有用户被指定;使用备份用户。\n" +msgstr "没有用户被指定;使用备份用户。\n" #: scripts/restoreuser.php:94 -#, fuzzy, php-format +#, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。\n" + +#~ msgid "%s marked notice %s as a favorite." +#~ msgstr "%s 将消息 %s 添加到了收藏。" + +#~ msgid "%s is now following %s." +#~ msgstr "%s 现在开始关注 %s." diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..6726759eea --- /dev/null +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Use a caché variable APC " +"para memorizar os resultados da pescuda." diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..2b4a0f3392 --- /dev/null +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - APC to Polish (Polski) +# Expored from translatewiki.net +# +# Author: Sp5uhe +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"Language-Team: Polish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pl\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " +"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Korzystaj z APC pamięci " +"podręcznej zmiennych do przechowywania wyników zapytań." diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot new file mode 100644 index 0000000000..c0f446205d --- /dev/null +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -0,0 +1,98 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "" + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "" + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "" + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 2d6edeb52a..da02536e7c 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:12+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" @@ -31,7 +31,7 @@ msgid "" "Note you will initially be \"sandboxed\" so your posts will not appear in " "the public timeline." msgstr "" -"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"Зауважте, що спочатку вас буде відправлено до «пісочниці», отже ваші дописи " "не з’являтимуться у загальній стрічці дописів." #. TRANS: $contactlink is a clickable e-mailaddress. @@ -41,6 +41,6 @@ msgid "" "the public timeline. Send a message to $contactlink to speed up the " "unsandboxing process." msgstr "" -"Зауважте, що спочатку Вас буде відправлено до «пісочниці», отже Ваші дописи " +"Зауважте, що спочатку вас буде відправлено до «пісочниці», отже ваші дописи " "не з’являтимуться у загальній стрічці дописів. Надішліть повідомлення до " -"$contactlink аби прискорити процес Вашого «виходу в люди»." +"$contactlink аби прискорити процес вашого «виходу в люди»." diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index d2b4d3b4b9..bd2596738c 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" @@ -31,4 +31,4 @@ msgstr "" "Додаток автозавершення дозволяє користувачам автоматично завершувати " "нікнейми у «@-відповідях». Якщо у вікні набору повідомлення з’являється " "символ «@», то даний додаток автоматично пропонує обрати ім’я користувача із " -"списку тих, з ким Ви найчастіше листуєтесь." +"списку тих, з ким ви найчастіше листуєтесь." diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..f8cd9718b0 --- /dev/null +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Extension pour tester la mise en forme des publicités." diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..1ddce32bb7 --- /dev/null +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlankAd to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "测试广告(ad)布局的插件。" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..afdb8bfe8a --- /dev/null +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to German (Deutsch) +# Expored from translatewiki.net +# +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +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/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..4563cce2cf --- /dev/null +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlogspamNetPlugin.php:152 +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/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..402a9d4847 --- /dev/null +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlogspamNet to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:39+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "通过 blogspam.net 检查发布的消息的插件。" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 6ae4d1570e..b159c7a963 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:17+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" @@ -63,7 +63,7 @@ msgstr "" #: caslogin.php:28 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #: caslogin.php:39 msgid "Incorrect username or password." @@ -71,4 +71,4 @@ msgstr "Неточне ім’я або пароль." #: caslogin.php:45 msgid "Error setting user. You are probably not authorized." -msgstr "Помилка налаштувань користувача. Можливо, Ви не авторизовані." +msgstr "Помилка налаштувань користувача. Можливо, ви не авторизовані." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..7aaef14c82 --- /dev/null +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" +"Bayeux." diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..fd7721e261 --- /dev/null +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Comet to Simplified Chinese (‪中文(简体)‬) +# Expored from translatewiki.net +# +# Author: ZhengYiFeng +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"Language-Team: Simplified Chinese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-hans\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "通过 Comet/Bayeux 实现“实时更新”的插件。" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..3767c03717 --- /dev/null +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DiskCache to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Extension pour mettre en œuvre une interface de mémoire tampon dans des " +"fichiers du disque." diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index c1bbf1cb64..415cd180a0 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,18 +16,22 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" "disqus.com/?ref_noscript=%s)." msgstr "" -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "" -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 8a908513a9..574a27090c 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Per favor activa JavaScript pro vider le [commentos actionate per Disqus]" "(http://disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Commentos actionate per " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index a00d4b7676..f79e0736ba 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Schakel JavaScript in om de [reacties via Disqus](http://disqus.com/?" "ref_noscript=%s) te kunnen bekijken." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " +msgstr "Reacties powered by " + +#: DisqusPlugin.php:201 +msgid "Comments" msgstr "" -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index e50e62ca94..6651517023 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -30,11 +30,15 @@ msgstr "" "Mangyaring paganahin ang JavaScript upang matingnan ang [mga punang " "pinapatakbo ng Disqus](http://disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Mga puna na pinatatakbo ng " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 30e505f913..1c650e8d92 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:26+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "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" -#: DisqusPlugin.php:135 +#: DisqusPlugin.php:142 #, php-format msgid "" "Please enable JavaScript to view the [comments powered by Disqus](http://" @@ -31,11 +31,15 @@ msgstr "" "Будь ласка, увімкніть JavaScript для перегляду [коментарів Disqus](http://" "disqus.com/?ref_noscript=%s)." -#: DisqusPlugin.php:142 +#: DisqusPlugin.php:149 msgid "Comments powered by " msgstr "Коментування можливе завдяки сервісу " -#: DisqusPlugin.php:250 +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "" + +#: DisqusPlugin.php:241 msgid "" "Use Disqus to add commenting to notice " "pages." diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..7e0bde5011 --- /dev/null +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -0,0 +1,540 @@ +# Translation of StatusNet - Facebook to Galician (Galego) +# Expored from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:49+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "" + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un erro co seu pase. Inténteo de novo." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "Non pode rexistrarse se non acepta a licenza." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Houbo un erro descoñecido." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Opcións de conexión" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes " +"datos privados: contrasinais, enderezos de correo electrónico e mensaxería " +"instantánea e números de teléfono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Crear unha conta nova" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Crear un novo usuario con este alcume." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Novo alcume" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, " +"espazos, tiles ou eñes" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Non se permite o rexistro." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "O código da invitación é incorrecto." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"O alcume debe ter só letras en minúscula e números, e non pode ter espazos " +"en branco." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "" + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Ese alcume xa está en uso. Probe con outro." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "O nome de usuario ou contrasinal non son correctos." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Rexistro" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Enviar unha nota" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Que hai de novo, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caracteres dispoñibles" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Nome de usuario ou contrasinal incorrectos." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s e amigos" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Saltar" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paxinación" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Despois" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Antes" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "" + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Enviar as invitacións" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuración de integración do Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Usuario do Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Xa se identificou." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Inicio" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Convidar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Configuracións" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr " unha nova conta." + +#: facebookaction.php:242 +msgid "Register" +msgstr "Rexistrarse" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Alcume" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Esqueceu ou perdeu o contrasinal?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Avisos" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "Clave API" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "Clave API proporcionada polo Facebook" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Gardar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr " primeiro." + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 56e678f1aa..0f38d3a904 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -37,11 +37,11 @@ msgid "" "%2$s" msgstr "" "Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але ми не в змозі " -"оновлювати Ваш статус у Facebook з %2$s і відключаємо додаток Facebook для " -"Вашого акаунту. Таке могло статися тому, що Ви, можливо, скасували " -"авторизацію для додатку Facebook або видалили Ваш акаунт Facebook. Ви маєте " -"можливість перезапустити додаток для Facebook і автоматичний імпорт Ваших " -"статусів на %2$s до Facebook буде поновлено.\n" +"оновлювати ваш статус у Facebook з %2$s і відключаємо додаток Facebook для " +"вашого акаунту. Таке могло статися тому, що ви, можливо, скасували " +"авторизацію для додатку Facebook або видалили ваш акаунт Facebook. Ви маєте " +"можливість перезапустити додаток для Facebook і автоматичний імпорт ваших " +"статусів з %2$s до Facebook буде поновлено.\n" "\n" "З повагою,\n" "\n" @@ -76,7 +76,7 @@ msgid "" "Facebook to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Facebook " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш акаунт Facebook " "до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " "використати такий, що вже існує." @@ -134,7 +134,7 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " "приєднати їх до Facebook." #. TRANS: Field label. @@ -209,7 +209,7 @@ msgstr "Лишилось знаків" #: facebooknoticeform.php:196 msgctxt "BUTTON" msgid "Send" -msgstr "Так!" +msgstr "Так" #: facebookhome.php:103 msgid "Server error: Couldn't get user!" @@ -233,8 +233,8 @@ msgid "" "If you would like the %s app to automatically update your Facebook status " "with your latest notice, you need to give it permission." msgstr "" -"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " -"останнім повідомленням, Ви повинні надати дозвіл." +"Якщо ви бажаєте, щоб додаток %s автоматично оновлював ваш статус у Facebook " +"останнім повідомленням, ви повинні надати дозвіл." #: facebookhome.php:210 msgid "Okay, do it!" @@ -330,7 +330,7 @@ msgstr "" #: FBConnectLogin.php:33 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #. TRANS: Instructions. #: FBConnectLogin.php:42 @@ -385,7 +385,7 @@ msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet?" msgstr "" -"Щоб використовувати додаток %s для Facebook, Ви мусите увійти, " +"Щоб використовувати додаток %s для Facebook, ви мусите увійти, " "використовуючи своє ім’я користувача та пароль. Ще не маєте імені " "користувача?" @@ -473,7 +473,7 @@ msgstr "Зберегти налаштування Facebook" #. TRANS: Instructions. #: FBConnectSettings.php:66 msgid "Manage how your account connects to Facebook" -msgstr "Зазначте, яким чином Ваш акаунт буде під’єднано до Facebook" +msgstr "Зазначте, яким чином ваш акаунт буде під’єднано до Facebook" #: FBConnectSettings.php:90 msgid "There is no Facebook user connected to this account." @@ -493,7 +493,7 @@ msgstr "Від’єднати мій акаунт від Facebook" msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please " msgstr "" -"Якщо Ви від’єднаєте свій Facebook, то це унеможливить вхід до системи у " +"Якщо ви від’єднаєте свій Facebook, то це унеможливить вхід до системи у " "майбутньому! Будь ласка, " #. TRANS: Preceded by "Please " and followed by " first." @@ -522,7 +522,7 @@ msgstr "Ви від’єдналися від Facebook." #: FBConnectSettings.php:199 msgid "Not sure what you're trying to do." -msgstr "Хто зна, що Ви намагаєтеся зробити." +msgstr "Хто зна, що ви намагаєтеся зробити." #: facebooksettings.php:61 msgid "There was a problem saving your sync preferences!" @@ -554,8 +554,8 @@ msgid "" "If you would like %s to automatically update your Facebook status with your " "latest notice, you need to give it permission." msgstr "" -"Якщо Ви бажаєте, щоб додаток %s автоматично оновлював Ваш статус у Facebook " -"останнім повідомленням, Ви повинні надати дозвіл." +"Якщо ви бажаєте, щоб додаток %s автоматично оновлював ваш статус у Facebook " +"останнім повідомленням, ви повинні надати дозвіл." #: facebooksettings.php:124 #, php-format diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 5614af9308..c96c212157 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -319,12 +319,12 @@ msgstr "" #: FBConnectLogin.php:33 msgid "Already logged in." -msgstr "" +msgstr "已登录。" #. TRANS: Instructions. #: FBConnectLogin.php:42 msgid "Login with your Facebook Account" -msgstr "" +msgstr "使用你的 Facebook 帐号登录" #. TRANS: Page title. #: FBConnectLogin.php:57 diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot new file mode 100644 index 0000000000..1fc0c34261 --- /dev/null +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -0,0 +1,31 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+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: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "" + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index eabd940b08..2193d04eec 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" @@ -28,5 +28,5 @@ msgid "" "readable names for locations based on user-provided lat/long pairs." msgstr "" "Використання сервісу Geonames дозволяє " -"отримувати географічні назви людською мовою замість координат, що вони були " -"вказані користувачем." +"отримувати зрозумілі географічні назви замість координат, що були вказані " +"користувачами." diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index ea1d65c204..7d1e5db537 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: Apmon +# Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -73,5 +74,5 @@ msgid "" "The Gravatar plugin allows users to use their Gravatar with StatusNet." msgstr "" -"Das Gravatar Plugin erlaubt es Benutzern, ihr Gravatar mit StatusNet zu verwenden." diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index f31f0166f5..0e08abe888 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,7 +28,7 @@ msgstr "Встановити Gravatar" #: GravatarPlugin.php:63 msgid "If you want to use your Gravatar image, click \"Add\"." -msgstr "Якщо Ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." +msgstr "Якщо ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." #: GravatarPlugin.php:68 msgid "Add" @@ -41,7 +41,7 @@ msgstr "Видалити Gravatar" #: GravatarPlugin.php:81 msgid "If you want to remove your Gravatar image, click \"Remove\"." msgstr "" -"Якщо Ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." +"Якщо ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." #: GravatarPlugin.php:86 msgid "Remove" @@ -53,7 +53,7 @@ msgstr "Щоб використовувати Gravatar, спершу введі #: GravatarPlugin.php:140 msgid "You do not have an email address set in your profile." -msgstr "У Вашому профілі не вказано жодної електронної адреси." +msgstr "У вашому профілі не вказано жодної електронної адреси." #: GravatarPlugin.php:158 msgid "Failed to save Gravatar to the database." diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot new file mode 100644 index 0000000000..77cfbc84ae --- /dev/null +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+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: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 8c076b33d0..a02cb1d75e 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" @@ -31,5 +31,5 @@ msgid "" msgstr "" "Нескінченна прокрутка сторінки додає наступні функції сайту StatusNet: коли " "користувач прокручує сторінку до самого її низу, дописи з наступної сторінки " -"додаються автоматично. Це означає, що Вам не доведеться натискати «Назад», " -"аби переглянути попередні повідомлення." +"додаються автоматично. Це означає, що вам не доведеться натискати «Назад» (до " +"попередньої сторінки), аби переглянути повідомлення." diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index e200546101..bdef6bc9e9 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" @@ -30,4 +30,4 @@ msgstr "URL-адресу сервісу має бути зазначено." #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" -"Для скорочення URL-адрес використовується %1$s." +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po new file mode 100644 index 0000000000..5f1af6da9f --- /dev/null +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - Mapstraction to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Eleferen +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"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" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Карта" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "Полный размер" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "Нет такого пользователя." + +#: map.php:79 +msgid "User has no profile." +msgstr "У пользователя нет профиля." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Карта друзей: %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index be3005cec1..11960be87d 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -36,8 +36,8 @@ msgid "" "Show maps of users' and friends' notices with Mapstraction." msgstr "" -"Показувати на мапі користувачів і їхні повідомлення за допомогою Mapstraction." +"Показ мапи дописів користувачів і друзів за допомогою Mapstraction." #: map.php:72 msgid "No such user." diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 9810369748..4dff264b4f 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:24:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" @@ -26,5 +26,5 @@ msgstr "" msgid "" "Use Memcached to cache query results." msgstr "" -"Використання Memcached для зберігання " -"пошукових запитів в кеші." +"Використання Memcached для кешування " +"результатів запитів." diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..7518c7638f --- /dev/null +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - Meteor to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:00+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:23:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Impossible de se connecter à %1$s sur le port %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Erreur lors de l’ajout d'un message du message meteor « %s »" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" +"Bayeux." diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 933b706fea..f442784fda 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" @@ -77,4 +77,4 @@ msgstr "Вкласти файл" #: MobileProfilePlugin.php:417 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" -"Вивід XHTML для перегляду на мобільному для підтримки пристроїв користувачів." +"Додаток MobileProfile генерує XHTML прийнятний для мобільних пристроїв." diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index f6df630042..73b4185400 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,12 +16,12 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 6cec215523..e1f537b240 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 85825d452a..07f6bb4886 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Ajoute des titres optionnels aux avis." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 17773a64db..c0102cfd15 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Adde optional titulos a notas." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index bda31caa4e..4d9bd60d6a 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Додава наслови на забелешките (по избор)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 50c95a569e..87c0e17479 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25: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: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Legger valgfrie titler til notiser." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 0a71b63e08..5f6828e137 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Voegt optioneel titels toe aan mededelingen." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 9f3b6bee67..7e23a3b147 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 2176f74dc6..b1614838ba 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,24 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Nagdaragdag ng maaaring wala na mga pamagat sa mga pabatid." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr " %1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 44f3ca400c..de66ef8b34 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,25 +9,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 82::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "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" -#: NoticeTitlePlugin.php:126 +#: NoticeTitlePlugin.php:132 msgid "Adds optional titles to notices." msgstr "Додавати до повідомлень необов’язкові заголовки." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:299 +#: NoticeTitlePlugin.php:307 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 51f26d7ac7..baa64270b5 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -124,19 +124,23 @@ msgstr "" #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs set for %s." msgstr "" +"Ongeldige ostatus_profile status: het ID voor zowel de groep als het profiel " +"voor %s is ingesteld." #. TRANS: Server exception. #: classes/Ostatus_profile.php:191 #, php-format msgid "Invalid ostatus_profile state: both group and profile IDs empty for %s." msgstr "" +"Ongeldige ostatus_profile status: het ID voor zowel de groep als het profiel " +"voor %s is leeg." #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. #: classes/Ostatus_profile.php:281 #, php-format msgid "Invalid actor passed to %1$s: %2$s." -msgstr "" +msgstr "Ongeldige actor doorgegeven aan %1$s: %2$s." #. TRANS: Server exception. #: classes/Ostatus_profile.php:374 @@ -144,6 +148,8 @@ msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." msgstr "" +"Ongeldig type doorgegeven aan Ostatus_profile::notify. Het moet een XML-" +"string of Activity zijn." #: classes/Ostatus_profile.php:404 msgid "Unknown feed format." @@ -220,12 +226,12 @@ msgstr "" #. TRANS: Exception. #: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 msgid "Can't save local profile." -msgstr "" +msgstr "Het was niet mogelijk het lokale profiel op te slaan." #. TRANS: Exception. #: classes/Ostatus_profile.php:1351 msgid "Can't save OStatus profile." -msgstr "" +msgstr "Het was niet mogelijk het Ostatusprofiel op te slaan." #. TRANS: Exception. #: classes/Ostatus_profile.php:1610 classes/Ostatus_profile.php:1638 @@ -236,35 +242,37 @@ msgstr "Geen geldig webfingeradres." #: classes/Ostatus_profile.php:1720 #, php-format msgid "Couldn't save profile for \"%s\"." -msgstr "" +msgstr "Het was niet mogelijk het profiel voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. #: classes/Ostatus_profile.php:1739 #, php-format msgid "Couldn't save ostatus_profile for \"%s\"." -msgstr "" +msgstr "Het was niet mogelijk het ostatus_profile voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. #: classes/Ostatus_profile.php:1747 #, php-format msgid "Couldn't find a valid profile for \"%s\"." -msgstr "" +msgstr "Er is geen geldig profiel voor \"%s\" gevonden." #: classes/Ostatus_profile.php:1789 msgid "Could not store HTML content of long post as file." msgstr "" +"Het was niet mogelijk de HTML-inhoud van het lange bericht als bestand op te " +"slaan." #. TRANS: Client exception. %s is a HTTP status code. #: classes/HubSub.php:208 #, php-format msgid "Hub subscriber verification returned HTTP %s." -msgstr "" +msgstr "De controle voor de hubabonnee heeft een HTTP %s teruggegeven." #. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. #: classes/HubSub.php:355 #, php-format msgid "Callback returned status: %1$s. Body: %2$s" -msgstr "" +msgstr "De callback heeft de status %1$s teruggegeven. Inhoud: %2$s." #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: lib/salmonaction.php:42 @@ -274,73 +282,73 @@ msgstr "Deze methode vereist een POST." #. TRANS: Client error. Do not translate "application/magic-envelope+xml" #: lib/salmonaction.php:47 msgid "Salmon requires \"application/magic-envelope+xml\"." -msgstr "" +msgstr "Salmon vereist \"application/magic-envelope+xml\"." #. TRANS: Client error. #: lib/salmonaction.php:57 msgid "Salmon signature verification failed." -msgstr "" +msgstr "De controle voor Salmon is mislukt." #. TRANS: Client error. #: lib/salmonaction.php:69 msgid "Salmon post must be an Atom entry." -msgstr "" +msgstr "Een Salmonbericht moet in Atomopmaak gemaakt zijn." #. TRANS: Client exception. #: lib/salmonaction.php:118 msgid "Unrecognized activity type." -msgstr "" +msgstr "Onbekend activiteitentype." #. TRANS: Client exception. #: lib/salmonaction.php:127 msgid "This target doesn't understand posts." -msgstr "" +msgstr "Deze bestemming begrijpt berichten niet." #. TRANS: Client exception. #: lib/salmonaction.php:133 msgid "This target doesn't understand follows." -msgstr "" +msgstr "Deze bestemming begrijpt volgen niet." #. TRANS: Client exception. #: lib/salmonaction.php:139 msgid "This target doesn't understand unfollows." -msgstr "" +msgstr "Deze bestemming begrijpt niet langer volgen niet." #. TRANS: Client exception. #: lib/salmonaction.php:145 msgid "This target doesn't understand favorites." -msgstr "" +msgstr "Deze bestemming begrijpt favorieten niet." #. TRANS: Client exception. #: lib/salmonaction.php:151 msgid "This target doesn't understand unfavorites." -msgstr "" +msgstr "Deze bestemming begrijpt favorieten verwijderen niet." #. TRANS: Client exception. #: lib/salmonaction.php:157 msgid "This target doesn't understand share events." -msgstr "" +msgstr "Deze bestemming begrijpt gebeurtenissen delen niet." #. TRANS: Client exception. #: lib/salmonaction.php:163 msgid "This target doesn't understand joins." -msgstr "" +msgstr "Deze bestemming begrijpt lid worden niet." #. TRANS: Client exception. #: lib/salmonaction.php:169 msgid "This target doesn't understand leave events." -msgstr "" +msgstr "Deze bestemming begrijpt uitschrijven van gebeurtenissen niet." #. TRANS: Exception. #: lib/salmonaction.php:197 msgid "Received a salmon slap from unidentified actor." -msgstr "" +msgstr "Er is een Salmonslap ontvangen van een niet-geïdentificeerde actor." #. TRANS: Exception. #: lib/discovery.php:110 #, php-format msgid "Unable to find services for %s." -msgstr "" +msgstr "Het was niet mogelijk diensten te vinden voor %s." #. TRANS: Exception. #: lib/xrd.php:64 @@ -350,17 +358,18 @@ msgstr "Ongeldige XML." #. TRANS: Exception. #: lib/xrd.php:69 msgid "Invalid XML, missing XRD root." -msgstr "" +msgstr "Ongeldige XML. De XRD-root mist." #. TRANS: Exception. #: lib/magicenvelope.php:80 msgid "Unable to locate signer public key." msgstr "" +"Het was niet mogelijk de publieke sleutel van de ondertekenaar te vinden." #. TRANS: Exception. #: lib/salmon.php:93 msgid "Salmon invalid actor for signing." -msgstr "" +msgstr "Ongeldige actor voor het ondertekenen van Salmon." #: tests/gettext-speedtest.php:57 msgid "Feeds" @@ -407,25 +416,26 @@ msgstr "" #, php-format msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." msgstr "" +"Ongeldig hub.secret \"%s\". Het moet minder dan tweehonderd bytes bevatten." #. TRANS: Client exception. #: actions/pushhub.php:161 #, php-format msgid "Invalid hub.topic \"%s\". User doesn't exist." -msgstr "" +msgstr "Ongeldig hub.topic \"%s\". De gebruiker bestaat niet." #. TRANS: Client exception. #: actions/pushhub.php:170 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." -msgstr "" +msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. #: actions/pushhub.php:195 #, php-format msgid "Invalid URL passed for %1$s: \"%2$s\"" -msgstr "" +msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\"" #: actions/userxrd.php:49 actions/ownerxrd.php:37 actions/usersalmon.php:43 msgid "No such user." @@ -445,6 +455,8 @@ msgstr "In antwoord op een onbekende mededeling." #: actions/usersalmon.php:86 msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" +"In antwoord op een mededeling niet door deze gebruiker en niet over of aan " +"deze gebruiker." #. TRANS: Client exception. #: actions/usersalmon.php:163 @@ -455,23 +467,25 @@ msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." #: actions/usersalmon.php:195 msgid "Can't favorite/unfavorite without an object." msgstr "" +"Het is niet mogelijk (niet langer) als favoriet te markeren zonder object." #. TRANS: Client exception. #: actions/usersalmon.php:207 msgid "Can't handle that kind of object for liking/faving." msgstr "" +"Dat object is niet beschikbaar voor (niet langer) als favoriet aanmerken." #. TRANS: Client exception. %s is an object ID. #: actions/usersalmon.php:214 #, php-format msgid "Notice with ID %s unknown." -msgstr "" +msgstr "De mededeling met ID %s is onbekend." #. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. #: actions/usersalmon.php:219 #, php-format msgid "Notice with ID %1$s not posted by %2$s." -msgstr "" +msgstr "De mededeling met ID %1$s is niet geplaatst foor %2$s." #. TRANS: Field label. #: actions/ostatusgroup.php:76 @@ -482,6 +496,8 @@ msgstr "Lid worden van groep" #: actions/ostatusgroup.php:79 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" +"Het adres voor de OStatusgroep. Bijvoorbeeld; http://example.net/group/" +"nickname." #. TRANS: Button text. #: actions/ostatusgroup.php:84 actions/ostatussub.php:73 @@ -580,6 +596,8 @@ msgid "" "OStatus user's address, like nickname@example.com or http://example.net/" "nickname" msgstr "" +"Het OStatusadres van de gebruiker. Bijvoorbeeld nickname@example.com of " +"http://example.net/nickname" #. TRANS: Button text. #. TRANS: Tooltip for button "Join". @@ -641,6 +659,7 @@ msgid "" "Sorry, we could not reach that feed. Please try that OStatus address again " "later." msgstr "" +"Die feed was niet te bereiken. Probeer dat OStatusadres later nog een keer." #. TRANS: OStatus remote subscription dialog error. #: actions/ostatussub.php:315 @@ -650,7 +669,7 @@ msgstr "U bent al gebonneerd!" #. TRANS: OStatus remote subscription dialog error. #: actions/ostatussub.php:320 msgid "Remote subscription failed!" -msgstr "" +msgstr "Abonneren via een andere dienst is mislukt!" #: actions/ostatussub.php:367 actions/ostatusinit.php:63 msgid "There was a problem with your session token. Try again, please." @@ -744,38 +763,38 @@ msgstr "" #. TRANS: Page title. #: actions/ostatusinit.php:217 msgid "OStatus Connect" -msgstr "" +msgstr "OStatuskoppeling" #: actions/pushcallback.php:48 msgid "Empty or invalid feed id." -msgstr "" +msgstr "Het feed-ID is leeg of ongeldig." #. TRANS: Server exception. %s is a feed ID. #: actions/pushcallback.php:54 #, php-format msgid "Unknown PuSH feed id %s" -msgstr "" +msgstr "Het PuSH feed-ID %s is onbekend" #. TRANS: Client exception. %s is an invalid feed name. #: actions/pushcallback.php:93 #, php-format msgid "Bad hub.topic feed \"%s\"." -msgstr "" +msgstr "Ongeldige hub.topic feed \"%s\"." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. #: actions/pushcallback.php:98 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." -msgstr "" +msgstr "Ongeldig hub.verify_token %1$s voor %2$s." #. TRANS: Client exception. %s is an invalid topic. #: actions/pushcallback.php:105 #, php-format msgid "Unexpected subscribe request for %s." -msgstr "" +msgstr "Onverwacht abonneringsverzoek voor %s." #. TRANS: Client exception. %s is an invalid topic. #: actions/pushcallback.php:110 #, php-format msgid "Unexpected unsubscribe request for %s." -msgstr "" +msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 0169259617..5e49d12526 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -53,16 +53,16 @@ msgstr "Не читати" #: OStatusPlugin.php:608 #, php-format msgid "%1$s stopped following %2$s." -msgstr "%1$s припинив читати Ваші дописи %2$s." +msgstr "%1$s припинив читати ваші дописи %2$s." #: OStatusPlugin.php:636 msgid "Could not set up remote group membership." -msgstr "Не вдалося приєднатися до віддаленої групи." +msgstr "Не вдалося приєднатися до віддаленої спільноти." #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." -msgstr "Помилка приєднання до віддаленої групи." +msgstr "Помилка приєднання до віддаленої спільноти." #: OStatusPlugin.php:707 msgid "Leave" @@ -102,8 +102,8 @@ msgid "" "Follow people across social networks that implement OStatus." msgstr "" -"Слідкуйте за дописами людей з інших мереж, що підтримують протокол OStatus." +"Додає можливість слідкувати за дописами людей з інших мереж, які підтримують " +"протокол OStatus." #: classes/FeedSub.php:248 msgid "Attempting to start PuSH subscription for feed with no hub." @@ -212,7 +212,7 @@ msgstr "Місцевий користувач не може бути зазна #. TRANS: Exception. #: classes/Ostatus_profile.php:1280 msgid "Local group can't be referenced as remote." -msgstr "Місцева група не може бути зазначена у якості віддаленої." +msgstr "Локальну спільноту не можна зазначити у якості віддаленої." #. TRANS: Exception. #: classes/Ostatus_profile.php:1332 classes/Ostatus_profile.php:1343 @@ -414,7 +414,7 @@ msgstr "hub.topic «%s» невірний. Користувача не існу #: actions/pushhub.php:170 #, php-format msgid "Invalid hub.topic \"%s\". Group doesn't exist." -msgstr "hub.topic «%s» невірний. Групи не існує." +msgstr "hub.topic «%s» невірний. Спільноти не існує." #. TRANS: Client exception. #. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. @@ -477,14 +477,14 @@ msgstr "Допис з ідентифікатором %1$s було надісл #. TRANS: Field label. #: actions/ostatusgroup.php:76 msgid "Join group" -msgstr "Приєднатися до групи" +msgstr "Долучитися до спільноти" #. TRANS: Tooltip for field label "Join group". #: actions/ostatusgroup.php:79 msgid "OStatus group's address, like http://example.net/group/nickname." msgstr "" -"Адреса групи згідно протоколу OStatus, наприклад http://example.net/group/" -"nickname." +"Адреса спільноти згідно протоколу OStatus, наприклад http://example.net/" +"group/nickname." #. TRANS: Button text. #: actions/ostatusgroup.php:84 actions/ostatussub.php:73 @@ -494,7 +494,7 @@ msgstr "Продовжити" #: actions/ostatusgroup.php:103 msgid "You are already a member of this group." -msgstr "Ви вже є учасником цієї групи." +msgstr "Ви вже є учасником цієї спільноти." #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:138 @@ -504,17 +504,17 @@ msgstr "Ви вже учасник!" #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:149 msgid "Remote group join failed!" -msgstr "Приєднатися до віддаленої групи не вдалося!" +msgstr "Приєднатися до віддаленої спільноти не вдалося!" #. TRANS: OStatus remote group subscription dialog error. #: actions/ostatusgroup.php:153 msgid "Remote group join aborted!" -msgstr "Приєднання до віддаленої групи перервано!" +msgstr "Приєднання до віддаленої спільноти перервано!" #. TRANS: Page title for OStatus remote group join form #: actions/ostatusgroup.php:165 msgid "Confirm joining remote group" -msgstr "Підтвердження приєднання до віддаленої групи" +msgstr "Підтвердження приєднання до віддаленої спільноти" #. TRANS: Instructions. #: actions/ostatusgroup.php:176 @@ -522,50 +522,51 @@ msgid "" "You can subscribe to groups from other supported sites. Paste the group's " "profile URI below:" msgstr "" -"Ви маєте можливість приєднатися до груп на аналогічних сайтах. Просто " -"вставте URI профілю групи тут:" +"Ви можете долучатися до спільнот на аналогічних сайтах. Просто вставте URI " +"профілю спільноти тут:" #. TRANS: Client error. #: actions/groupsalmon.php:47 msgid "No such group." -msgstr "Такої групи немає." +msgstr "Такої спільноти немає." #. TRANS: Client error. #: actions/groupsalmon.php:53 msgid "Can't accept remote posts for a remote group." -msgstr "Не можу узгодити віддалену пересилку дописів до віддаленої групи." +msgstr "Не можу узгодити віддалену пересилку дописів до віддаленої спільноти." #. TRANS: Client error. #: actions/groupsalmon.php:127 msgid "Can't read profile to set up group membership." -msgstr "Не можу прочитати профіль, аби встановити членство у групі." +msgstr "Не можу прочитати профіль, аби долучитися до спільноти." #. TRANS: Client error. #: actions/groupsalmon.php:131 actions/groupsalmon.php:174 msgid "Groups can't join groups." -msgstr "Групи ніяк не можуть приєднуватися до груп." +msgstr "Спільноти ніяк не можуть приєднуватися до спільнот." #: actions/groupsalmon.php:144 msgid "You have been blocked from that group by the admin." -msgstr "Адміністратор групи заблокував Ваш профіль." +msgstr "Адміністратор спільноти заблокував ваш профіль." #. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. #: actions/groupsalmon.php:159 #, php-format msgid "Could not join remote user %1$s to group %2$s." -msgstr "Віддаленому користувачеві %1$s не вдалося приєднатися до групи %2$s." +msgstr "" +"Віддаленому користувачеві %1$s не вдалося долучитися до спільноти %2$s." #: actions/groupsalmon.php:171 msgid "Can't read profile to cancel group membership." msgstr "" -"Не вдається прочитати профіль користувача, щоб скасувати його членство в " -"групі." +"Не вдається прочитати профіль користувача, щоб скасувати його перебування у " +"спільноті." #. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. #: actions/groupsalmon.php:188 #, php-format msgid "Could not remove remote user %1$s from group %2$s." -msgstr "Не вдалось видалити віддаленого користувача %1$s з групи %2$s." +msgstr "Не вдалось видалити віддаленого користувача %1$s зі спільноти %2$s." #. TRANS: Field label for a field that takes an OStatus user address. #: actions/ostatussub.php:66 @@ -586,7 +587,7 @@ msgstr "" #: actions/ostatussub.php:110 msgctxt "BUTTON" msgid "Join this group" -msgstr "Приєднатися до групи" +msgstr "Приєднатися до спільноти" #. TRANS: Button text. #: actions/ostatussub.php:113 @@ -687,7 +688,7 @@ msgstr "Ви можете користуватись локальними під #: actions/ostatusinit.php:97 #, php-format msgid "Join group %s" -msgstr "Приєднатися до групи %s" +msgstr "Приєднатися до спільноти %s" #. TRANS: Button text. #: actions/ostatusinit.php:99 @@ -714,7 +715,7 @@ msgstr "Ім’я користувача" #: actions/ostatusinit.php:118 msgid "Nickname of the user you want to follow." -msgstr "Ім’я користувача, дописи якого Ви хотіли б читати." +msgstr "Ім’я користувача, дописи якого ви хотіли б читати." #. TRANS: Field label. #: actions/ostatusinit.php:123 @@ -724,7 +725,7 @@ msgstr "Профіль акаунту" #. TRANS: Tooltip for field label "Profile Account". #: actions/ostatusinit.php:125 msgid "Your account id (e.g. user@identi.ca)." -msgstr "Ідентифікатор Вашого акаунту (щось на зразок user@identi.ca)" +msgstr "Ідентифікатор вашого акаунту (щось на зразок user@identi.ca)" #. TRANS: Client error. #: actions/ostatusinit.php:147 diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 9330e1905a..c2fc037b22 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -109,7 +109,7 @@ msgstr "" msgid "OpenID removed." msgstr "" -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "" @@ -242,64 +242,64 @@ msgid "" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 7a4127c384..8de6d537d6 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 99::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -42,8 +42,8 @@ msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -"Falls Sie eine OpenID zu Ihrem Konto hinzufügen wollen, tragen Sie sie in " -"dem nachfolgenden Feld ein und klicken Sie auf \"Hinzufügen\"" +"Falls du eine OpenID zu deinem Konto hinzufügen willst, trage sie in dem " +"nachfolgenden Feld ein und klicke auf „Hinzufügen“." #. TRANS: OpenID plugin logon form field label. #: openidsettings.php:109 openidlogin.php:159 @@ -63,16 +63,16 @@ msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -"Das Entfernen der einzigen OpenID würde das einloggen unmöglich machen! " -"Falls Sie sie entfernen müssen, fügen Sie zuerst eine andere hinzu." +"Das Entfernen der einzigen OpenID würde das Einloggen unmöglich machen! " +"Falls du sie entfernen musst, füge zuerst eine andere hinzu." #: openidsettings.php:151 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -"Sie können eine OpenID aus Ihrem Konto entfernen, indem Sie auf den Button " -"\"Entfernen\" klicken." +"Du kannst eine OpenID von deinem Konto entfernen, indem du auf den Button " +"„Entfernen“ klickst." #: openidsettings.php:174 openidsettings.php:215 msgid "Remove" @@ -94,8 +94,7 @@ msgstr "" #. TRANS: Message given when there is a problem with the user's session token. #: openidsettings.php:233 finishopenidlogin.php:40 openidlogin.php:49 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Es gab ein Problem mit Ihrem Sitzungstoken. Bitte versuchen Sie es erneut." +msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: openidsettings.php:240 msgid "Can't add new providers." @@ -119,13 +118,13 @@ msgstr "Keine solche OpenID." #: openidsettings.php:309 msgid "That OpenID does not belong to you." -msgstr "Die OpenID gehört Ihnen nicht." +msgstr "Diese OpenID gehört dir nicht." #: openidsettings.php:313 msgid "OpenID removed." msgstr "OpenID entfernt." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -258,68 +257,68 @@ msgid "" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" -msgstr "Helfen Sie mir!" +msgstr "Hilf mir!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Suche" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Anmelden oder Registrieren per OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Hinzufügen oder Entfernen von OpenIDs" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" -"Benutzen Sie eine OpenID um sich auf der " -"Seite anzumelden." +"Benutzung der OpenID zur Anmeldung auf " +"der Seite" #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:118 @@ -510,7 +509,7 @@ msgstr "" #: openidlogin.php:154 msgid "Enter your username." -msgstr "Geben Sie Ihren Benutzernamen ein." +msgstr "Gib deinen Benutzernamen ein." #: openidlogin.php:155 msgid "You will be sent to the provider's site for authentication." @@ -569,7 +568,7 @@ msgstr "" #. TRANS: message in case a user tries to add an OpenID that is already connected to them. #: finishaddopenid.php:122 msgid "You already have this OpenID!" -msgstr "Sie haben bereits diese OpenID!" +msgstr "Du hast bereits diese OpenID!" #. TRANS: message in case a user tries to add an OpenID that is already used by another user. #: finishaddopenid.php:125 diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 5625a52a06..9378edf530 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -129,7 +129,7 @@ msgstr "Ce compte OpenID ne vous appartient pas." msgid "OpenID removed." msgstr "Compte OpenID retiré." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -284,64 +284,64 @@ msgstr "" "quelques secondes, essayez en cliquant le bouton ci-dessous." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Connexion au site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aidez-moi !" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Se connecter ou s’inscrire avec OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Ajouter ou retirer des identifiants OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Configuration d’OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Utiliser OpenID pour se connecter au site." diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 53158ed7c0..bac4169d20 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -124,7 +124,7 @@ msgstr "Iste OpenID non appertine a te." msgid "OpenID removed." msgstr "OpenID removite." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -275,64 +275,64 @@ msgstr "" "tenta pulsar le button hic infra." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Authenticar te a iste sito" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Aperir session o crear conto via OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Adder o remover OpenIDs" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Configuration de OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Usar OpenID pro aperir session al sito." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 90bb3fcd28..ae2b00abf6 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -124,7 +124,7 @@ msgstr "Тој OpenID не Ви припаѓа Вам." msgid "OpenID removed." msgstr "OpenID е отстранет." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -272,64 +272,64 @@ msgstr "" "тогаш пристиснете го копчето подолу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава на мреж. место" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарување на луѓе или текст" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Пребарај" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Најава или регистрација со OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Додај или отстрани OpenID-ја" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Поставки за OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "Користете OpenID за најава." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 6a6310bc5c..6fd679bf89 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:14+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: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -128,7 +128,7 @@ msgstr "Die OpenID is niet van u." msgid "OpenID removed." msgstr "OpenID verwijderd." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -278,64 +278,64 @@ msgstr "" "aanmeldprovider, klik dan op de onderstaande knop." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Aanmelden bij de site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Hulp" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Zoeken naar mensen of tekst" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Aanmelden of registreren met OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "OpenID's toevoegen of verwijderen" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "OpenID-instellingen" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Gebruik OpenID om aan te melden bij de " diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index b569ce432c..b7f246fe61 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -126,7 +126,7 @@ msgstr "Hindi mo pag-aari ang OpenID na iyan." msgid "OpenID removed." msgstr "Tinanggal ang OpenID." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -284,64 +284,64 @@ msgstr "" "ng ilang mga segundo, subukang pindutin ang pindutang nasa ibaba." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Lumagda sa sityo" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Lumagda" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Saklolohan ako!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Saklolo" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Maghanap ng mga tao o teksto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Maghanap" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Lumagda o magpatala na may OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Idagdag o alisin ang mga OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Pagkakaayos ng OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Gamitin ang OpenID upang lumagda sa sityo." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 8f84fc4621..7662e8d6ee 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:29+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 46::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -33,7 +33,7 @@ msgid "" "account. Manage your associated OpenIDs from here." msgstr "" "[OpenID](%%doc.openid%%) дозволяє входити до багатьох веб-сторінок " -"використовуючи той самий лоґін і пароль. Тут можна впорядкувати Ваші OpenID-" +"використовуючи той самий лоґін і пароль. Тут можна впорядкувати ваші OpenID-" "акаунти." #: openidsettings.php:101 @@ -45,7 +45,7 @@ msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -"Якщо Ви бажаєте додати OpenID до Вашого акаунту, введіть його у полі нижче і " +"Якщо ви бажаєте додати OpenID до вашого акаунту, введіть його у полі нижче і " "натисніть «Додати»." #. TRANS: OpenID plugin logon form field label. @@ -66,15 +66,15 @@ msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -"Якщо для входу Ви використовуєте лише OpenID, то його видалення унеможливить " -"вхід у майбутньому! Якщо Вам потрібно видалити Ваш єдиний OpenID, то спершу " +"Якщо для входу ви використовуєте лише OpenID, то його видалення унеможливить " +"вхід у майбутньому! Якщо вам потрібно видалити ваш єдиний OpenID, то спершу " "додайте інший." #: openidsettings.php:151 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "Ви можете видалити Ваш OpenID просто натиснувши «Видалити»." +msgstr "Ви можете видалити ваш OpenID просто натиснувши кнопку «Видалити»." #: openidsettings.php:174 openidsettings.php:215 msgid "Remove" @@ -89,7 +89,7 @@ msgid "" "The following sites are allowed to access your identity and log you in. You " "can remove a site from this list to deny it access to your OpenID." msgstr "" -"У списку наведено OpenID-адреси, які ідентифіковані як Ваші і їм дозволено " +"У списку наведено OpenID-адреси, які ідентифіковані як ваші і їм дозволено " "вхід до сайту. Ви можете вилучити якийсь з них, тим самим скасувавши дозвіл " "на вхід." @@ -121,13 +121,13 @@ msgstr "Немає такого OpenID." #: openidsettings.php:309 msgid "That OpenID does not belong to you." -msgstr "Даний OpenID належить не Вам." +msgstr "Даний OpenID належить не вам." #: openidsettings.php:313 msgid "OpenID removed." msgstr "OpenID видалено." -#: openidadminpanel.php:54 OpenIDPlugin.php:623 +#: openidadminpanel.php:54 OpenIDPlugin.php:628 msgid "OpenID" msgstr "OpenID" @@ -137,7 +137,7 @@ msgstr "Невірний URL OpenID-провайдера. Максимальна #: openidadminpanel.php:153 msgid "Invalid team name. Max length is 255 characters." -msgstr "Невірна назва групи. Максимальна довжина — 255 символів." +msgstr "Невірна назва спільноти. Максимальна довжина — 255 символів." #: openidadminpanel.php:210 msgid "Trusted provider" @@ -150,8 +150,8 @@ msgid "" "access to only your own users here." msgstr "" "За замовчуванням, відвідувачам дозволено користуватись послугами будь-якого " -"OpenID-провайдера. Якщо Ви користуєтесь своїм власним OpenID для загального " -"входу на веб-сторінки, то Ви вільні обмежити доступ лише колом Ваших власних " +"OpenID-провайдера. Якщо ви користуєтесь своїм власним OpenID для загального " +"входу на веб-сторінки, то ви вільні обмежити доступ лише колом ваших власних " "користувачів." #: openidadminpanel.php:220 @@ -239,8 +239,8 @@ msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" -"Ця форма має автоматичне себе представити. Якщо ні, то натисніть відповідну " -"кнопку, щоб перейти на сторінку Вашого OpenID-провайдера." +"Ця форма має автоматичне себе представити. Якщо ні, натисніть відповідну " +"кнопку, щоб перейти до сторінки вашого OpenID-провайдера." #. TRANS: OpenID plugin server error. #: openid.php:280 @@ -265,7 +265,7 @@ msgstr "Представлення входу за OpenID" #. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. #: openid.php:381 msgid "Requesting authorization from your login provider..." -msgstr "Запитуємо дозвіл у Вашого OpenID-провайдера..." +msgstr "Запитуємо дозвіл у вашого OpenID-провайдера..." #. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. #: openid.php:385 @@ -273,68 +273,68 @@ msgid "" "If you are not redirected to your login provider in a few seconds, try " "pushing the button below." msgstr "" -"Якщо за кілька секунд Вас не буде перенаправлено на сторінку входу Вашого " +"Якщо за кілька секунд вас не буде перенаправлено на сторінку входу вашого " "OpenID-провайдера, просто натисніть кнопку внизу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Вхід на сайт" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:224 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:234 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:232 +#: OpenIDPlugin.php:237 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:243 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:241 +#: OpenIDPlugin.php:246 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:301 OpenIDPlugin.php:339 +#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:303 +#: OpenIDPlugin.php:308 msgid "Login or register with OpenID" msgstr "Увійти або зареєструватися за допомогою OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:341 +#: OpenIDPlugin.php:346 msgid "Add or remove OpenIDs" msgstr "Додати або видалити OpenID" -#: OpenIDPlugin.php:624 +#: OpenIDPlugin.php:629 msgid "OpenID configuration" msgstr "Конфігурація OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:649 +#: OpenIDPlugin.php:654 msgid "Use OpenID to login to the site." msgstr "" "Використання OpenID для входу на сайт." @@ -355,7 +355,7 @@ msgstr "Просто OpenID-провайдер. Нічого належного #. TRANS: Client error message trying to log on with OpenID while already logged on. #: finishopenidlogin.php:35 openidlogin.php:31 msgid "Already logged in." -msgstr "Тепер Ви увійшли." +msgstr "Тепер ви увійшли." #. TRANS: Message given if user does not agree with the site's license. #: finishopenidlogin.php:46 @@ -376,7 +376,7 @@ msgid "" "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш OpenID до " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш OpenID до " "акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " "використати такий, що вже існує." @@ -419,8 +419,8 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " -"приєднати їх до Вашого OpenID." +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " +"приєднати їх до вашого OpenID." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:153 @@ -454,7 +454,7 @@ msgstr "Автентифікуватись за OpenID не вдалося: %s" #: finishopenidlogin.php:198 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." -msgstr "Автентифікацію за OpenID перервано: Вам не можна відвідувати цей сайт." +msgstr "Автентифікацію за OpenID перервано: ви не можете увійти на цей сайт." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. @@ -549,7 +549,7 @@ msgstr "Вас буде перенаправлено на веб-сторінк #. TRANS: OpenID plugin logon form field instructions. #: openidlogin.php:162 msgid "Your OpenID URL" -msgstr "URL Вашого OpenID" +msgstr "URL вашого OpenID" #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:167 @@ -585,8 +585,8 @@ msgid "" "%s has asked to verify your identity. Click Continue to verify your " "identity and login without creating a new password." msgstr "" -"%s запрошує Вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " -"перевірити Вашу особу та увійти не створюючи нового паролю." +"%s запрошує вас пройти перевірку на ідентичність. Натисніть «Продовжити», щоб " +"перевірити вашу особу та увійти, не створюючи нового паролю." #: openidtrust.php:135 msgid "Continue" @@ -604,7 +604,7 @@ msgstr "Ви не увійшли до системи." #. TRANS: message in case a user tries to add an OpenID that is already connected to them. #: finishaddopenid.php:122 msgid "You already have this OpenID!" -msgstr "У Вас вже є цей OpenID!" +msgstr "У вас вже є цей OpenID!" #. TRANS: message in case a user tries to add an OpenID that is already used by another user. #: finishaddopenid.php:125 diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index f77750d94d..599ebd6c6e 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" @@ -27,5 +27,5 @@ msgid "" "Use Piwik Open Source web analytics " "software." msgstr "" -"Використання Piwik — програмного " -"забезпечення з відкритим кодом для аналізу веб-потоків." +"Використання програмного забезпечення з відкритим кодом Piwik для аналізу веб-потоків." diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 19738fe5e2..3e32b69b0c 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" @@ -37,5 +37,5 @@ msgid "" "Outputs \"powered by StatusNet\" after " "site name." msgstr "" -"Виводити «працює на StatusNet» після назви " -"сайту." +"Даний додаток виводить припис «працює на StatusNet» після назви сайту." diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 27894ab728..6090e00428 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -60,7 +60,7 @@ msgid "" "Thanks for the subscription. When the feed(s) update(s), you will be " "notified." msgstr "" -"Дякуємо за підписку. Коли веб-стрічки оновляться, Вас буде поінформовано." +"Дякуємо за підписку. Коли веб-стрічки оновляться, вас буде поінформовано." #: LoggingAggregator.php:93 msgid "This resource requires an HTTP GET." @@ -76,6 +76,6 @@ msgid "" "updates for profile RSS feeds using the RSSCloud protocol." msgstr "" -"Додаток RSSCloud дозволяє Вашому StatusNet-сумісному сайту публікувати " +"Додаток RSSCloud дозволяє вашому StatusNet-сумісному сайту публікувати " "оновлення з веб-стрічок у реальному часі, використовуючи протокол RSSCloud." diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index dfab70994c..ff84b85fd2 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" @@ -36,4 +36,4 @@ msgstr "Не вдається знайти користувача після у #: RegisterThrottlePlugin.php:199 msgid "Throttles excessive registration from a single IP address." -msgstr "Обмеження кількості реєстрацій з певною IP-адресою." +msgstr "Цей додаток обмежує кількість реєстрацій з певної IP-адреси." diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 461cb0f9c4..365adb6aba 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" @@ -66,6 +66,6 @@ msgstr "Привіт, %s" #, php-format msgid "I have greeted you %d time." msgid_plural "I have greeted you %d times." -msgstr[0] "Я привітав Вас %d раз." -msgstr[1] "Я привітав Вас %d разів." -msgstr[2] "" +msgstr[0] "Я привітав вас %d раз." +msgstr[1] "Я привітав вас %d разів." +msgstr[2] "Я привітав вас %d разів." diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot new file mode 100644 index 0000000000..1062d382d0 --- /dev/null +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+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: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot new file mode 100644 index 0000000000..f0bdb1aa6b --- /dev/null +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -0,0 +1,27 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index f3f881bf90..8644e65845 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -24,7 +24,7 @@ msgstr "" #: SubMirrorPlugin.php:90 msgid "Pull feeds into your timeline!" -msgstr "Стягування веб-каналів до Вашої стрічки повідомлень!" +msgstr "Стягування веб-каналів до вашої стрічки повідомлень!" #. TRANS: SubMirror plugin menu item on user settings page. #: SubMirrorPlugin.php:109 @@ -90,7 +90,7 @@ msgstr "Помилковий профіль для віддзеркалення. #: actions/basemirror.php:101 msgid "Can't mirror a StatusNet group at this time." -msgstr "На даний момент не можу віддзеркалювати групу на сайті StatusNet." +msgstr "На даний момент не можу віддзеркалювати спільноту на сайті StatusNet." #: actions/basemirror.php:115 msgid "This action only accepts POST requests." diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 97cc7d35c1..0826e2df74 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" @@ -24,4 +24,7 @@ msgstr "" #: SubscriptionThrottlePlugin.php:171 msgid "Configurable limits for subscriptions and group memberships." -msgstr "Обмеження для підписок та щодо членства у групах, що настроюються." +msgstr "" +"З допомогою цього додатку можна обмежувати кількість можливих підписок для " +"певного користувача, а також зазначати можливу кількість спільнот, до яких " +"користувач має право долучитися." diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index f374e8a9ed..775dc2a466 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -2,6 +2,7 @@ # Expored from translatewiki.net # # Author: McDutchie +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" @@ -27,6 +28,6 @@ msgid "" "pressing the tab key focuses the \"Send\" button, matching the behavior of " "Twitter." msgstr "" -"TabFocus wijzigt het gedrag van het mededelingenformulier zodat, wanneer je " +"TabFocus wijzigt het gedrag van het mededelingenformulier zodat, wanneer u " "vanuit het tekstvak op de Tab-toets drukt, de focus op de knop \"Verzenden\" " "wordt gericht, net als in Twitter." diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 2a325ed197..eb31b1b248 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" @@ -30,4 +30,4 @@ msgid "" msgstr "" "TabFocus змінює поведінку форми надсилання дописів таким чином, що натиснута " "у вікні вводу повідомлення клавіша «Tab» перебирає на себе функцію кнопки " -"«Надіслати» («Так!»), що імітує інтерфейс Твіттера." +"«Надіслати» («Так»), що імітує інтерфейс Твіттера." diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 336bec24e0..87a6203a12 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:08+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" @@ -26,4 +26,4 @@ msgstr "" #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" -"Для скорочення URL-адрес використовується %1$s." +"Використання %1$s для скорочення URL-адрес." diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index bd2377e848..25fccb705a 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index f02ed2ba9a..635781feb3 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utiliser la bibliothèque TinyMCE pour permettre la modification de texte " diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 78485b8e39..66f66184ba 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Usar le bibliotheca TinyMCE pro permitter le modification de texto " diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index b8f325f1b7..37738df828 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Користи ја библиотеката TinyMCE за уредување со збогатен текст во " diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 9f1031a7ed..4792f715a0 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25: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: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Bruk TinyMCE-biblioteket for å tillate rik tekstredigering i nettleseren." diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 374a7faeb2..58221c4ee1 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "TinyMCE gebruiken om WYSIWYG-bewerken in de browser mogelijk te maken." diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 486729f73c..a2f86006e7 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25: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: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utilizar a biblioteca TinyMCE para permitir edição em rich text no navegador." diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 10b64d8d81..d5c5f3da4c 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "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" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Использование библиотеки TinyMCE, для редактирования текста в браузере." diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index ba038474f6..0d27f3b27b 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Gamitin ang aklatan ng TinyMCE upang pahintulutan ang pamamatnugot ng " diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index dfa0e16ea6..bc358c2b01 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:53+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 61::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "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" -#: TinyMCEPlugin.php:76 +#: TinyMCEPlugin.php:83 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Використання бібліотеки TinyMCE для простого форматування тексту у вікні " diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 4935076743..f6def52901 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -23,7 +23,7 @@ msgstr "" #: twitter.php:350 msgid "Your Twitter bridge has been disabled." -msgstr "" +msgstr "Uw koppeling naar Twitter is uitgeschakeld." #: twitter.php:354 #, php-format @@ -40,6 +40,19 @@ msgid "" "Regards,\n" "%3$s" msgstr "" +"Hallo, %1$s.\n" +"\n" +"Het spijt ons u te moeten meedelen dat uw koppeling met Twitter is " +"uitgeschakeld. De site heeft niet langer het recht om uw Twitterstatus bij " +"te werken. Hebt u wellicht de rechten voor %3$s ingetrokken?\n" +"\n" +"U kunt uw koppeling met Twitter opnieuw inschakelen via de pagina met " +"Twitterinstellingen:\n" +"\n" +"\t%2$s\n" +"\n" +"Met vriendelijke groet,\n" +"%3$s" #: TwitterBridgePlugin.php:151 TwitterBridgePlugin.php:174 #: TwitterBridgePlugin.php:291 twitteradminpanel.php:52 @@ -48,25 +61,27 @@ msgstr "Twitter" #: TwitterBridgePlugin.php:152 msgid "Login or register using Twitter" -msgstr "" +msgstr "Aanmelden of registreren via Twitter" #: TwitterBridgePlugin.php:175 msgid "Twitter integration options" -msgstr "" +msgstr "Opties voor Twitterintegratie" #: TwitterBridgePlugin.php:292 msgid "Twitter bridge configuration" -msgstr "" +msgstr "Instellingen voor Twitterkoppeling" #: TwitterBridgePlugin.php:316 msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +"De plugin Twitter Brigde maakt het mogelijk en StatusNetinstallatie te " +"integreren met Twitter." #: twitteradminpanel.php:62 msgid "Twitter bridge settings" -msgstr "" +msgstr "Instellingen Twitterkoppeling" #: twitteradminpanel.php:145 msgid "Invalid consumer key. Max length is 255 characters." @@ -78,7 +93,7 @@ msgstr "Ongeldig gebruikersgeheim. De maximale lengte is 255 tekens." #: twitteradminpanel.php:207 msgid "Twitter application settings" -msgstr "" +msgstr "Instellingen Twitterapplicatie" #: twitteradminpanel.php:213 msgid "Consumer key" @@ -86,7 +101,7 @@ msgstr "Gebruikerssleutel" #: twitteradminpanel.php:214 msgid "Consumer key assigned by Twitter" -msgstr "" +msgstr "Gebruikerssleutel uitgegeven door Twitter" #: twitteradminpanel.php:222 msgid "Consumer secret" @@ -94,19 +109,19 @@ msgstr "Gebruikersgeheim" #: twitteradminpanel.php:223 msgid "Consumer secret assigned by Twitter" -msgstr "" +msgstr "Gebruikersgeheim uitgegeven door Twitter" #: twitteradminpanel.php:233 msgid "Note: a global consumer key and secret are set." -msgstr "" +msgstr "Let op: er zijn een gebruikerssleutel en gebruikersgeheim ingesteld." #: twitteradminpanel.php:240 msgid "Integration source" -msgstr "" +msgstr "Integratiebron" #: twitteradminpanel.php:241 msgid "Name of your Twitter application" -msgstr "" +msgstr "Naam van uw Twitterapplicatie" #: twitteradminpanel.php:253 msgid "Options" @@ -114,21 +129,25 @@ msgstr "Opties" #: twitteradminpanel.php:260 msgid "Enable \"Sign-in with Twitter\"" -msgstr "" +msgstr "\"Aanmelden via Twitter\" inschakelen" #: twitteradminpanel.php:262 msgid "Allow users to login with their Twitter credentials" msgstr "" +"Gebruikers toestaan aan te melden met hun gebruikersnaam en wachtwoord van " +"Twitter" #: twitteradminpanel.php:269 msgid "Enable Twitter import" -msgstr "" +msgstr "Twitterimport inschakelen" #: twitteradminpanel.php:271 msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" +"Gebruikers toestaan de tijdlijnen van hun Twittervrienden te importeren. " +"Vereist handmatig te configureren daemons." #: twitteradminpanel.php:288 twittersettings.php:200 msgid "Save" @@ -144,11 +163,11 @@ msgstr "U bent al aangemeld." #: twitterlogin.php:64 msgid "Twitter Login" -msgstr "" +msgstr "Aanmelden via Twitter" #: twitterlogin.php:69 msgid "Login with your Twitter account" -msgstr "" +msgstr "Aanmelden met uw Twittergebruiker" #: twitterlogin.php:87 msgid "Sign in with Twitter" @@ -166,16 +185,18 @@ msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." #: twitterauthorization.php:135 msgid "Something weird happened." -msgstr "" +msgstr "Er is iets vreemds gebeurd." #: twitterauthorization.php:181 twitterauthorization.php:229 #: twitterauthorization.php:300 msgid "Couldn't link your Twitter account." -msgstr "" +msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +"Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " +"niet overeen." #: twitterauthorization.php:312 #, php-format @@ -184,14 +205,17 @@ msgid "" "account to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" +"De is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " +"Twittergebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe " +"gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." #: twitterauthorization.php:318 msgid "Twitter Account Setup" -msgstr "" +msgstr "Instellingen Twittergebruiker" #: twitterauthorization.php:351 msgid "Connection options" -msgstr "" +msgstr "Koppelingsinstellingen" #: twitterauthorization.php:360 #, php-format @@ -208,7 +232,7 @@ msgstr "Nieuwe gebruiker aanmaken" #: twitterauthorization.php:383 msgid "Create a new user with this nickname." -msgstr "" +msgstr "Nieuwe gebruiker met deze naam aanmaken." #: twitterauthorization.php:386 msgid "New nickname" @@ -224,13 +248,15 @@ msgstr "Aanmaken" #: twitterauthorization.php:396 msgid "Connect existing account" -msgstr "" +msgstr "Verbinden met een bestaande gebruiker" #: twitterauthorization.php:398 msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " +"wachtwoord om deze daarna te koppelen met uw Twittergebruiker." #: twitterauthorization.php:401 msgid "Existing nickname" @@ -269,7 +295,7 @@ msgstr "" #: twitterauthorization.php:474 msgid "Error registering user." -msgstr "" +msgstr "Fout bij het registreren van de gebruiker." #: twitterauthorization.php:485 twitterauthorization.php:523 #: twitterauthorization.php:543 @@ -289,6 +315,8 @@ msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." msgstr "" +"Koppel uw Twittergebruiker om uw berichten te delen met uw Twittervrienden " +"en vice versa." #: twittersettings.php:116 msgid "Twitter account" @@ -296,11 +324,11 @@ msgstr "Twittergebruiker" #: twittersettings.php:121 msgid "Connected Twitter account" -msgstr "" +msgstr "Gekoppelde Twittergebruiker" #: twittersettings.php:126 msgid "Disconnect my account from Twitter" -msgstr "" +msgstr "Mijn gebruiker loskoppelen van Twitter" #: twittersettings.php:132 msgid "Disconnecting your Twitter could make it impossible to log in! Please " @@ -323,6 +351,8 @@ msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +"Uw gebruiker bij %1$s behouden maar deze loskoppelen van Twitter. U kunt uw " +"wachtwoord va %1$s gebruiken om aan te melden." #: twittersettings.php:150 msgid "Disconnect" @@ -334,19 +364,19 @@ msgstr "Voorkeuren" #: twittersettings.php:161 msgid "Automatically send my notices to Twitter." -msgstr "" +msgstr "Mijn berichten automatisch naar Twitter verzenden" #: twittersettings.php:168 msgid "Send local \"@\" replies to Twitter." -msgstr "" +msgstr "Lokale antwoorden met \"2\" naar Twitter verzenden." #: twittersettings.php:175 msgid "Subscribe to my Twitter friends here." -msgstr "" +msgstr "Hier op mijn Twittervrienden abonneren." #: twittersettings.php:184 msgid "Import my friends timeline." -msgstr "" +msgstr "Tijdlijn van mijn vrienden importeren." #: twittersettings.php:202 msgid "Add" @@ -358,15 +388,15 @@ msgstr "Het formulier is onverwacht ingezonden." #: twittersettings.php:254 msgid "Couldn't remove Twitter user." -msgstr "" +msgstr "Het was niet mogelijk de Twittergebruiker te verwijderen." #: twittersettings.php:258 msgid "Twitter account disconnected." -msgstr "" +msgstr "De Twittergebruiker is ontkoppeld." #: twittersettings.php:278 twittersettings.php:288 msgid "Couldn't save Twitter preferences." -msgstr "" +msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." #: twittersettings.php:292 msgid "Twitter preferences saved." diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index e850ba8f54..e855ed3fcb 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -41,13 +41,13 @@ msgid "" "Regards,\n" "%3$s" msgstr "" -"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але з’єднання Вашого " -"акаунту на сайті StatusNet з Twitter було відключено. Здається, ми більше не " -"маємо дозволу оновлювати Ваші статуси в Twitter. Можливо, це саме Ви " -"скасували дозвіл %3$s?\n" +"Вітаємо, %1$s. Нам дуже прикро про це повідомляти, але з’єднання вашого " +"акаунту StatusNet з Twitter було відключено. Здається, ми більше не маємо " +"дозволу оновлювати ваші статуси в Twitter. Можливо, це саме ви скасували " +"дозвіл %3$s?\n" "\n" -"Ви маєте можливість перезапустити додаток для автоматичного імпорту Ваших " -"статусів до Twitter, завітавши до сторінки Ваших налаштувань:\n" +"Ви маєте можливість перезапустити додаток для автоматичного імпорту ваших " +"статусів до Twitter, завітавши до сторінки ваших налаштувань:\n" "\n" "%2$s\n" "\n" @@ -76,8 +76,8 @@ msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" -"Додаток «місток» з Twitter дозволяє інтегрувати StatusNet-сумісний сайт з Twitter." +"Додаток TwitterBridge дозволяє інтегрувати StatusNet-сумісний сайт з Twitter, встановлюючи так званий «місток»." #: twitteradminpanel.php:62 msgid "Twitter bridge settings" @@ -121,7 +121,7 @@ msgstr "Джерело об’єднання" #: twitteradminpanel.php:241 msgid "Name of your Twitter application" -msgstr "Назва Вашого додатку для Twitter" +msgstr "Назва вашого додатку для Twitter" #: twitteradminpanel.php:253 msgid "Options" @@ -187,12 +187,12 @@ msgstr "Сталося щось незрозуміле." #: twitterauthorization.php:181 twitterauthorization.php:229 #: twitterauthorization.php:300 msgid "Couldn't link your Twitter account." -msgstr "Не вдається підключити Ваш акаутнт Twitter." +msgstr "Не вдається підключити ваш акаунт Twitter." #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" -"Не вдається підключити Ваш акаутнт Twitter: невідповідність oauth_token." +"Не вдається підключити ваш акаунт Twitter: невідповідність oauth_token." #: twitterauthorization.php:312 #, php-format @@ -201,9 +201,9 @@ msgid "" "account to a local account. You can either create a new account, or connect " "with your existing account, if you have one." msgstr "" -"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати Ваш акаунт Twitter " +"Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш акаунт Twitter " "до акаунту на даному сайті. Ви маєте можливість створити новий акаунт або " -"використати такий, що вже існує, якщо він у Вас є." +"використати такий, що вже існує, якщо він у вас є." #: twitterauthorization.php:318 msgid "Twitter Account Setup" @@ -252,7 +252,7 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" -"Якщо Ви вже маєте акаунт, увійдіть з Вашим ім’ям користувача та паролем, аби " +"Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби " "приєднати їх до Twitter." #: twitterauthorization.php:401 @@ -329,7 +329,7 @@ msgstr "Від’єднати мій акаунт від Twitter" #: twittersettings.php:132 msgid "Disconnecting your Twitter could make it impossible to log in! Please " msgstr "" -"Якщо Ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " +"Якщо ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " "майбутньому! Будь ласка, " #: twittersettings.php:136 @@ -347,7 +347,7 @@ msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" -"Зберегти Ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " +"Зберегти ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " "використовувати пароль від %1$s для входу на сайт." #: twittersettings.php:150 diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 5ba434af7c..159fdb2de8 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,16 +17,16 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: YammerImportPlugin.php:97 +#: YammerImportPlugin.php:98 msgid "Yammer" msgstr "" -#: YammerImportPlugin.php:98 actions/yammeradminpanel.php:122 +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 msgid "Yammer import" msgstr "" #: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 -#: lib/yammerprogressform.php:56 actions/yammerauth.php:71 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 msgid "Connect to Yammer" msgstr "" @@ -42,16 +42,16 @@ msgstr "" msgid "Change API key" msgstr "" -#: lib/yammerimporter.php:198 +#: lib/yammerimporter.php:230 msgid "Expertise:" msgstr "" -#: lib/yammerimporter.php:398 +#: lib/yammerimporter.php:433 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: lib/yammerimporter.php:405 +#: lib/yammerimporter.php:440 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" @@ -110,7 +110,7 @@ msgstr "" msgid "Verification code:" msgstr "" -#: lib/yammerauthverifyform.php:98 +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 msgid "Continue" msgstr "" @@ -118,114 +118,135 @@ msgstr "" msgid "Save code and begin import" msgstr "" -#: lib/yammerprogressform.php:51 +#: lib/yammerprogressform.php:63 msgid "Initialize" msgstr "" -#: lib/yammerprogressform.php:52 +#: lib/yammerprogressform.php:64 msgid "No import running" msgstr "" -#: lib/yammerprogressform.php:53 +#: lib/yammerprogressform.php:65 msgid "Initiated Yammer server connection..." msgstr "" -#: lib/yammerprogressform.php:57 +#: lib/yammerprogressform.php:69 msgid "Awaiting authorization..." msgstr "" -#: lib/yammerprogressform.php:58 +#: lib/yammerprogressform.php:70 msgid "Connected." msgstr "" -#: lib/yammerprogressform.php:61 +#: lib/yammerprogressform.php:73 msgid "Import user accounts" msgstr "" -#: lib/yammerprogressform.php:62 +#: lib/yammerprogressform.php:74 #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:63 +#: lib/yammerprogressform.php:75 #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:66 +#: lib/yammerprogressform.php:78 msgid "Import user groups" msgstr "" -#: lib/yammerprogressform.php:67 +#: lib/yammerprogressform.php:79 #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:68 +#: lib/yammerprogressform.php:80 #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:71 +#: lib/yammerprogressform.php:83 msgid "Prepare public notices for import" msgstr "" -#: lib/yammerprogressform.php:72 +#: lib/yammerprogressform.php:84 #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:73 +#: lib/yammerprogressform.php:85 #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:76 +#: lib/yammerprogressform.php:88 msgid "Import public notices" msgstr "" -#: lib/yammerprogressform.php:77 +#: lib/yammerprogressform.php:89 #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:78 +#: lib/yammerprogressform.php:90 #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:81 +#: lib/yammerprogressform.php:93 msgid "Done" msgstr "" -#: lib/yammerprogressform.php:82 lib/yammerprogressform.php:83 +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 msgid "Import is complete!" msgstr "" -#: lib/yammerprogressform.php:90 +#: lib/yammerprogressform.php:108 msgid "Import status" msgstr "" -#: lib/yammerprogressform.php:113 +#: lib/yammerprogressform.php:132 msgid "Waiting..." msgstr "" +#: lib/yammerprogressform.php:146 +msgid "Reset import state" +msgstr "" + +#: lib/yammerprogressform.php:151 +msgid "Pause import" +msgstr "" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +msgid "Abort import" +msgstr "" + #: actions/yammeradminpanel.php:45 msgid "Yammer Import" msgstr "" @@ -237,3 +258,7 @@ msgid "" "transferred; in the future this may be supported for imports done by " "verified administrators on the Yammer side." msgstr "" + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..30bbf90519 --- /dev/null +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to French (Français) +# Expored from translatewiki.net +# +# Author: Peter17 +# -- +# 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: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: French \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Import Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Connexion à Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Démarrer l’identification" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Demander l’autorisation de se connecter à un compte Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Changer la clé de l’API" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise :" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL d’avatar invalide : %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossible de récupérer l’avatar depuis « %s »." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Enregistrement de l’API Yammer" + +#: lib/yammerapikeyform.php:72 +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 "" +"Avant de pouvoir nous connecter à votre réseau Yammer, vous devez " +"enregistrer l’application d’import comme étant autorisée à recueillir des " +"données en votre nom. Cet enregistrement ne sera valable que pour votre " +"propre réseau. Suivez ce lien pour enregistrer l’application sur Yammer ; si " +"cela est nécessaire, il vous sera demandé de vous identifier :" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Ouvrir le formulaire d’enregistrement de l’application Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Copiez dans le formulaire ci-dessous la clé et le secret utilisateur qui " +"vous sont donnés :" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Clé de l'utilisateur :" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Secret de l'utilisateur :" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Sauvegarder" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Enregistrer ces clés utilisateur" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Suivez ce lien pour confirmer l’autorisation sur Yammer ; il vous sera " +"demandé de vous identifier si nécessaire :" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Ouvrir la fenêtre d’identification Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Copiez ci-dessous le code de vérification qui vous est donné :" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Code de vérification :" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Continuer" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Enregistrer le code et commencer l’import" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialiser" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Aucun import en cours d’exécution" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Connexion au serveur Yammer initiée..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "En attente d’autorisation..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Connecté." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Importer des comptes utilisateur" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Import de %d utilisateur..." +msgstr[1] "Import de %d utilisateurs..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d utilisateur importé." +msgstr[1] "%d utilisateurs importés." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Importer des groupes utilisateur" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Import de %d groupe..." +msgstr[1] "Import de %d groupes..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d groupe importé." +msgstr[1] "%d groupes importés." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Préparation de l’import d’avis publiques" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Préparation de %d avis..." +msgstr[1] "Préparation de %d avis..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d avis prépara." +msgstr[1] "%d avis préparés." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Import d’avis publiques" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Import de %d avis..." +msgstr[1] "Import de %d avis..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d avis importé." +msgstr[1] "%d avis importés." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Fait" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "L’import est terminé !" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "État de l’import" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Attente..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "État de l’import" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Import Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Import Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Import Yammer" + +#: actions/yammeradminpanel.php:55 +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 "" +"Cet outil d’import Yammer est encore en phase de test et est en partie " +"incomplet. Les abonnements d’utilisateurs et les appartenances aux groupes " +"ne sont actuellement pas transférés ; ceci pourrait être pris en charge dans " +"le futur pour les imports réalisés par les administrateurs autorisés du côté " +"de Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..79406f4ec0 --- /dev/null +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Importation de Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Connecter a Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Comenciar authentication" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Requestar autorisation de connecter al conto Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Cambiar clave API" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL de avatar %s invalide." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Incapace de obtener avatar ab %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Registration in API de Yammer" + +#: lib/yammerapikeyform.php:72 +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 "" +"Ante que nos pote connecter a tu rete Yammer, tu debe registrar le " +"importator como application autorisate a colliger datos in tu nomine. Iste " +"registration functionara solmente pro tu proprie rete. Seque iste ligamine " +"pro registrar le application a Yammer; tu essera demandate de aperir session " +"si necessari:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Aperir formulario de registration del application Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Copia le clave e secreto de consumitor que tu recipe in le formulario hic " +"infra:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Clave de consumitor:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Secreto de consumitor:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Salveguardar" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Salveguardar iste claves de consumitor" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Seque iste ligamine pro confirmar autorisation a Yammer; tu essera demandate " +"de aperir session si necessari:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Aperir fenestra de authentication a Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Copia hic infra le codice de verification que tu recipe:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Codice de verification:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Continuar" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Salveguardar codice e comenciar importation" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialisar" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Nulle importation in curso" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Connexion al servitor Yammer initiate..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Attende autorisation..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Connectite." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Importar contos de usator" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Importa %d usator..." +msgstr[1] "Importa %d usatores..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d usator importate." +msgstr[1] "%d usatores importate." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Importar gruppos de usatores" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Importa %d gruppo..." +msgstr[1] "Importa %d gruppos..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d gruppo importate." +msgstr[1] "%d gruppos importate." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Preparar notas public pro importation" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Prepara %d nota..." +msgstr[1] "Prepara %d notas..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d nota preparate." +msgstr[1] "%d notas preparate." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Importar notas public" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Importa %d nota..." +msgstr[1] "Importa %d notas..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d nota importate." +msgstr[1] "%d notas importate." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Finite" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Le importation es complete!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Stato de importation" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Attende..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Stato de importation" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Importation de Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Importation de Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Importation de Yammer" + +#: actions/yammeradminpanel.php:55 +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 "" +"Iste instrumento de importation de Yammer es ancora in phase de test, e es " +"incomplete in alcun areas. Actualmente le subscriptiones de usator e " +"membratos de gruppos non es transferite; in le futuro isto pote esser " +"supportate pro importationes facite per administratores verificate al latere " +"de Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..ab0ec3c6ce --- /dev/null +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -0,0 +1,284 @@ +# Translation of StatusNet - YammerImport to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Увоз од Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Поврзување со Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Започни проверка" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Барај овластување за поврзување со сметката на Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Промени API-клуч" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Стручност:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Неважечка URL-адреса на аватарот: %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Не можев да го преземам аватарот од %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Регистрација на API за Yammer" + +#: lib/yammerapikeyform.php:72 +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 "" +"Пред да можеме да Ве поврземе на Вашата Yammer-мрежа, ќе треба да го " +"регистрирате увозникот како програм овластен за преземање на податоци во " +"Ваше име. Оваа регистрација ќе работи само за Вашата мрежа. Проследете ја " +"врската за да го регистрирате програмот на Yammer. Ако е потребно, ќе Ви " +"биде побарано да се најавите:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Отвори образец за регистрација на програм на Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Ископирајте ги потрошувачкиот клуч и тајната што се наведени во образецот " +"подолу:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Потрошувачки клуч:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Потрошувачка тајна:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Зачувај" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Зачувај ги овие потрошувачки клучеви" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Проследете ја врскава за да го потврдите овластувањето на страницата на " +"Yammer. Ако е потребно, ќе Ви биде побарано да се најавите:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Отвори прозорец за потврда на Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Ископирајте го долунаведениот потврден код:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Потврден код:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Продолжи" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Зачувај код и почни со увоз" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Започни" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Увозот не е во тек" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Започнав со поврзувањето со опслужувачот на Yammer..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Чекам на овластување..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Поврзано." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Увези кориснички сметки" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Увезувам %d корисник..." +msgstr[1] "Увезувам %d корисници..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Увезов %d корисник." +msgstr[1] "Увезов %d корисници." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Увези кориснички групи" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Увезувам %d група..." +msgstr[1] "Увезувам %d групи..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Увезов %d група." +msgstr[1] "Увезов %d групи." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Подготви јавни известувања за увоз" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Подготвувам %d известување..." +msgstr[1] "Подготвувам %d известувања..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "Подготвив %d известување." +msgstr[1] "Подготвив %d известувања." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Увези јавни известувања" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Увезувам %d известување..." +msgstr[1] "Увезувам %d известувања..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "Увезов %d известување..." +msgstr[1] "Увезов %d известувања..." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Готово" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Увозот заврши!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Увези статус" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Чекам..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Увези статус" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Увоз од Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Увоз од Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Увоз од Yammer" + +#: actions/yammeradminpanel.php:55 +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 "" +"Оваа алатка за увоз од Yammer сè уште е во фаза на испробување, а наместа е " +"недработена. Моментално не можат да се префрлаат кориснички претплати и " +"членства во групи. Ваквите префрлања може да се поддржани во иднина, и тие " +"би ги вршеле овластени администратори на Yammer." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..64d2a27f1b --- /dev/null +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -0,0 +1,285 @@ +# Translation of StatusNet - YammerImport to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Yammerimport" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Verbinden met Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Authenticatie starten" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Autorisatie verzoeken om te verbinden met Yammergebruiker" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "API-sleutel wijzigen" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Expertise:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "%s is een ongeldige URL voor avatar." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Het was niet mogelijk de avatar op te halen van %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "API-registratie voor Yammer" + +#: lib/yammerapikeyform.php:72 +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 "" +"Voordat er verbinding gemaakt kan worden met uw Yammernetwerk, moet u het " +"importprogramma eerst registreren als een applicatie die namens u gegevens " +"mag ophalen. Deze registratie geldt alleen voor uw eigen netwerk. Volg de " +"onderstaande verwijzing om de applicatie bij Yammer te registreren. Als het " +"nodig is om aan te melden, wordt u dat gevraagd:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Applicatieregistratieformulier voor Yammer openen" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Kopieer de gebruikerssleutel en het gebruikersgeheim dat u hebt gekregen in " +"het formulier hieronder:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Gebruikerssleutel:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Gebruikersgeheim:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Opslaan" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Deze gebruikerssleutels opslaan" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Volg deze verwijzing om de autorisatie bij Yammer te bevestigen. Als u moet " +"aanmelden wordt daarom gevraagd:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Authenticatievenster voor Yammer openen" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Kopieer de verificatiecode die u hebt gekregen hieronder:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Verificatiecode:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Doorgaan" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Code opslaan en importeren" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Initialiseren" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Er loopt geen import" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Er is verbinding gemaakt met de Yammerserver..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Wachten op autorisatie..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Verbonden." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Gebruikers importeren" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Bezig met het importeren van %d gebruiker..." +msgstr[1] "Bezig met het importeren van %d gebruikers..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "%d gebruiker geïmporteerd." +msgstr[1] "%d gebruikers geïmporteerd." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Gebruikersgroepen importeren" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Bezig met het importeren van %d gebruikersgroep..." +msgstr[1] "Bezig met het importeren van %d gebruikersgroepen..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "%d gebruikersgroep geïmporteerd." +msgstr[1] "%d gebruikersgroepen geïmporteerd." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Publieke mededelingen voorbereiden op import" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Bezig met het voorbereiden van %d mededeling..." +msgstr[1] "Bezig met het voorbereiden van %d mededelingen..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "%d mededeling voorbereid." +msgstr[1] "%d mededelingen voorbereid." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Publieke mededelingen importeren" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Bezig met het importeren van %d mededeling..." +msgstr[1] "Bezig met het importeren van %d mededelingen..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "%d mededeling geïmporteerd." +msgstr[1] "%d mededelingen geïmporteerd." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Afgerond" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Het importeren is voltooid!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Importstatus" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Even geduld alstublieft..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Importstatus" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Yammerimport" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Yammerimport" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Yammerimport" + +#: actions/yammeradminpanel.php:55 +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 "" +"Dit Yammerimportprogramma wordt nog getest en bepaalde onderdelen zijn nog " +"niet afgerond. Op dit moment worden gebruikersabonnementen en " +"groepslidmaatschappen nog niet overgenomen. In de toekomst is dit wellicht " +"mogelijk voor imports die door bevestigde beheerders in Yammer worden " +"uitgevoerd." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..21189e7173 --- /dev/null +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -0,0 +1,294 @@ +# Translation of StatusNet - YammerImport to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"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" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Імпорт з Yammer" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "З’єднання з Yammer" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Початок автентифікації" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "Запит дозволу на підключення до Yammer" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "Змінити API-ключ" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "Експертиза:" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Невірна URL-адреса аватари %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Неможливо завантажити аватару з %s." + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "Реєстрація API Yammer" + +#: lib/yammerapikeyform.php:72 +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 "" +"Перш ніж ми зможемо підключитися до вашого акаунту Yammer, вам необхідно " +"зареєструвати у якості імпортера цей авторизований додаток, аби той забирав " +"дані від вашого імені. Ця реєстрація буде працювати тільки для вашої власної " +"мережі. Перейдіть за цим посиланням, щоб зареєструвати додаток на Yammer; " +"вам буде запропоновано увійти до системи, якщо це необхідно:" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "Відкрити реєстраційну форму додатку для Yammer" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Скопіюйте ключ споживача та секретний код, котрі вам було надано, до віконця " +"нижче:" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "Ключ споживача:" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "Секретний код:" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Зберегти" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "Зберегти ключі споживача" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Перейдіть за цим посиланням для підтвердження дозволу від Yammer; вам буде " +"запропоновано увійти до системи, якщо це необхідно:" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Відкрити вікно автентифікації Yammer" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Скопіюйте наданий вам код підтвердження до віконця нижче:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Код підтвердження:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Продовжити" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Зберегти код і почати імпорт" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "Ініціалізація" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Імпорт не працює" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Розпочато з’єднання з сервером Yammer..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Чекаємо дозволу..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Під’єднано." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Імпорт облікових записів користувачів" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Імпорт %d користувача..." +msgstr[1] "Імпорт %d користувачів..." +msgstr[2] "Імпорт %d користувачів..." + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Імпортовано %d користувача." +msgstr[1] "Імпортовано %d користувачів." +msgstr[2] "Імпортовано %d користувачів." + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Імпорт спільнот" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Імпорт %d спільноти..." +msgstr[1] "Імпорт %d спільнот..." +msgstr[2] "Імпорт %d спільнот..." + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Імпортовано %d спільноту." +msgstr[1] "Імпортовано %d спільнот." +msgstr[2] "Імпортовано %d спільнот." + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Підготовка до імпорту стрічки дописів" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "Підготовка %d допису..." +msgstr[1] "Підготовка %d дописів..." +msgstr[2] "Підготовка %d дописів..." + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "Готовий %d допис." +msgstr[1] "Готово %d дописів." +msgstr[2] "Готово %d дописів." + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Імпорт стрічки дописів" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "Імпорт %d допису..." +msgstr[1] "Імпорт %d дописів..." +msgstr[2] "Імпорт %d дописів..." + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "Імпортовано %d допис." +msgstr[1] "Імпортовано %d дописів." +msgstr[2] "Імпортовано %d дописів." + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Виконано" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "Імпорт завершено!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "Статус процесу імпорту" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Очікування..." + +#: lib/yammerprogressform.php:146 +#, fuzzy +msgid "Reset import state" +msgstr "Статус процесу імпорту" + +#: lib/yammerprogressform.php:151 +#, fuzzy +msgid "Pause import" +msgstr "Імпорт з Yammer" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "" + +#: lib/yammerprogressform.php:165 +#, fuzzy +msgid "Abort import" +msgstr "Імпорт з Yammer" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Імпорт з Yammer" + +#: actions/yammeradminpanel.php:55 +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 "" +"Цей додаток імпорту даних з Yammer все ще проходить випробовування і працює " +"десь неповною мірою. На даний момент неможливо імпортувати дані щодо " +"підписок та спільнот користувача; втім, можливо у майбутньому, адміністрація " +"сайту Yammer піде нам на зустріч і тоді роботу над цим додатком буде " +"завершено." + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "" From 0f4f6fdb0130aacb0d8c7aa04ddfb76baa1b9e6b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 2 Oct 2010 22:25:32 +0200 Subject: [PATCH 306/310] * i18n/L10n review. * add onPluginVersion() --- plugins/UserFlag/UserFlagPlugin.php | 37 ++++++++++++++++++-------- plugins/UserFlag/User_flag_profile.php | 10 ++----- plugins/UserFlag/adminprofileflag.php | 36 +++++++++---------------- plugins/UserFlag/clearflag.php | 13 +++++---- plugins/UserFlag/clearflagform.php | 10 +++---- plugins/UserFlag/flagprofile.php | 15 +++++------ plugins/UserFlag/flagprofileform.php | 11 +++----- 7 files changed, 61 insertions(+), 71 deletions(-) diff --git a/plugins/UserFlag/UserFlagPlugin.php b/plugins/UserFlag/UserFlagPlugin.php index ae3dfe0365..e6ad3e37d3 100644 --- a/plugins/UserFlag/UserFlagPlugin.php +++ b/plugins/UserFlag/UserFlagPlugin.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class UserFlagPlugin extends Plugin { const REVIEWFLAGS = 'UserFlagPlugin::reviewflags'; @@ -56,7 +55,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onCheckSchema() { $schema = Schema::get(); @@ -83,7 +81,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onRouterInitialized($m) { $m->connect('main/flag/profile', array('action' => 'flagprofile')); @@ -99,7 +96,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook return */ - function onAutoload($cls) { switch (strtolower($cls)) @@ -130,7 +126,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndProfilePageActionsElements(&$action, $profile) { $user = common_current_user(); @@ -140,6 +135,8 @@ class UserFlagPlugin extends Plugin $action->elementStart('li', 'entity_flag'); if (User_flag_profile::exists($profile->id, $user->id)) { + // @todo FIXME: Add a title explaining what 'flagged' means? + // TRANS: Message added to a profile if it has been flagged for review. $action->element('p', 'flagged', _('Flagged')); } else { $form = new FlagProfileForm($action, $profile, @@ -161,7 +158,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndProfileListItemActionElements($item) { $user = common_current_user(); @@ -189,7 +185,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndShowScripts($action) { $action->inlineScript('if ($(".form_entity_flag").length > 0) { '. @@ -210,7 +205,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onUserRightsCheck($user, $right, &$result) { switch ($right) { @@ -233,7 +227,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onEndBlockProfile($user, $profile) { if ($this->flagOnBlock && !User_flag_profile::exists($profile->id, @@ -255,7 +248,6 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onProfileDeleteRelated($profile, &$related) { $related[] = 'user_flag_profile'; @@ -272,10 +264,33 @@ class UserFlagPlugin extends Plugin * * @return boolean hook result */ - function onUserDeleteRelated($user, &$related) { $related[] = 'user_flag_profile'; return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:UserFlag'; + + $versions[] = array('name' => 'UserFlag', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows flagging of profiles for review and reviewing flagged profiles.')); + + return true; + } } diff --git a/plugins/UserFlag/User_flag_profile.php b/plugins/UserFlag/User_flag_profile.php index 86b39160bf..69fe0f356b 100644 --- a/plugins/UserFlag/User_flag_profile.php +++ b/plugins/UserFlag/User_flag_profile.php @@ -44,7 +44,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class User_flag_profile extends Memcached_DataObject { ###START_AUTOCODE @@ -67,7 +66,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array( @@ -83,7 +81,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array('profile_id' => 'K', 'user_id' => 'K'); @@ -94,7 +91,6 @@ class User_flag_profile extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -107,7 +103,6 @@ class User_flag_profile extends Memcached_DataObject * * @return User_flag_profile found object or null */ - function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('User_flag_profile', $kv); @@ -121,7 +116,6 @@ class User_flag_profile extends Memcached_DataObject * * @return boolean true if exists, else false */ - static function exists($profile_id, $user_id) { $ufp = User_flag_profile::pkeyGet(array('profile_id' => $profile_id, @@ -138,7 +132,6 @@ class User_flag_profile extends Memcached_DataObject * * @return boolean success flag */ - static function create($user_id, $profile_id) { $ufp = new User_flag_profile(); @@ -148,7 +141,8 @@ class User_flag_profile extends Memcached_DataObject $ufp->created = common_sql_now(); if (!$ufp->insert()) { - $msg = sprintf(_("Couldn't flag profile '%d' for review."), + // TRANS: Server exception. + $msg = sprintf(_m('Couldn\'t flag profile "%d" for review.'), $profile_id); throw new ServerException($msg); } diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php index 17374927b3..df0450f66a 100644 --- a/plugins/UserFlag/adminprofileflag.php +++ b/plugins/UserFlag/adminprofileflag.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class AdminprofileflagAction extends Action { var $page = null; @@ -53,7 +52,6 @@ class AdminprofileflagAction extends Action * * @return boolean success flag */ - function prepare($args) { parent::prepare($args); @@ -109,7 +107,6 @@ class AdminprofileflagAction extends Action * * @return void */ - function handle($args) { parent::handle($args); @@ -122,10 +119,10 @@ class AdminprofileflagAction extends Action * * @return string Title of the page */ - function title() { - return _('Flagged profiles'); + // TRANS: Title for page with a list of profiles that were flagged for review. + return _m('Flagged profiles'); } /** @@ -133,7 +130,6 @@ class AdminprofileflagAction extends Action * * @return void */ - function showContent() { $pl = new FlaggedProfileList($this->profiles, $this); @@ -149,7 +145,6 @@ class AdminprofileflagAction extends Action * * @return Profile $profile Profile query results */ - function getProfiles() { $ufp = new User_flag_profile(); @@ -196,7 +191,6 @@ class AdminprofileflagAction extends Action * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlaggedProfileList extends ProfileList { /** @@ -206,7 +200,6 @@ class FlaggedProfileList extends ProfileList * * @return ProfileListItem newly-created item */ - function newListItem($profile) { return new FlaggedProfileListItem($this->profile, $this->action); @@ -222,7 +215,6 @@ class FlaggedProfileList extends ProfileList * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlaggedProfileListItem extends ProfileListItem { const MAX_FLAGGERS = 5; @@ -235,7 +227,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showActions() { $this->user = common_current_user(); @@ -247,7 +238,8 @@ class FlaggedProfileListItem extends ProfileListItem $this->startActions(); if (Event::handle('StartProfileListItemActionElements', array($this))) { $this->out->elementStart('li', 'entity_moderation'); - $this->out->element('p', null, _('Moderate')); + // TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). + $this->out->element('p', null, _m('Moderate')); $this->out->elementStart('ul'); $this->showSandboxButton(); $this->showSilenceButton(); @@ -265,7 +257,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showSandboxButton() { if ($this->user->hasRight(Right::SANDBOXUSER)) { @@ -286,7 +277,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showSilenceButton() { if ($this->user->hasRight(Right::SILENCEUSER)) { @@ -307,7 +297,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showDeleteButton() { @@ -324,7 +313,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showClearButton() { if ($this->user->hasRight(UserFlagPlugin::CLEARFLAGS)) { @@ -340,7 +328,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function endProfile() { $this->showFlaggersList(); @@ -352,7 +339,6 @@ class FlaggedProfileListItem extends ProfileListItem * * @return void */ - function showFlaggersList() { $flaggers = array(); @@ -394,12 +380,16 @@ class FlaggedProfileListItem extends ProfileListItem } if ($cnt > 0) { - $text = _('Flagged by '); - - $text .= implode(', ', $lnks); - if ($others > 0) { - $text .= sprintf(_(' and %d others'), $others); + $flagging_users = implode(', ', $lnks); + // 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. + $text .= sprintf(_m('Flagged by %1$s and %2$d other', 'Flagged by %1$s and %2$d others', $others), $flagging_users, $others); + } else { + // 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. + $text .= sprintf(_m('Flagged by %s'), $flagging_users); } $this->out->elementStart('p', array('class' => 'flaggers')); diff --git a/plugins/UserFlag/clearflag.php b/plugins/UserFlag/clearflag.php index f032527ed6..feda29f1b7 100644 --- a/plugins/UserFlag/clearflag.php +++ b/plugins/UserFlag/clearflag.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class ClearflagAction extends ProfileFormAction { /** @@ -75,7 +74,6 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -93,7 +91,6 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function handlePost() { $ufp = new User_flag_profile(); @@ -104,7 +101,8 @@ class ClearflagAction extends ProfileFormAction 'AND profile_id = ' . $this->profile->id); if ($result == false) { - $msg = sprintf(_("Couldn't clear flags for profile '%s'."), + // TRANS: Server exception given when flags could not be cleared. + $msg = sprintf(_m('Couldn\'t clear flags for profile "%s".'), $this->profile->nickname); throw new ServerException($msg); } @@ -121,17 +119,18 @@ class ClearflagAction extends ProfileFormAction * * @return void */ - function ajaxResults() { header('Content-Type: text/xml;charset=utf-8'); $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Flags cleared')); + // TRANS: Title for AJAX form to indicated that flags were removed. + $this->element('title', null, _m('Flags cleared')); $this->elementEnd('head'); $this->elementStart('body'); - $this->element('p', 'cleared', _('Cleared')); + // TRANS: Body element for "flags cleared" form. + $this->element('p', 'cleared', _m('Cleared')); $this->elementEnd('body'); $this->elementEnd('html'); } diff --git a/plugins/UserFlag/clearflagform.php b/plugins/UserFlag/clearflagform.php index eefd15c368..26a8848758 100644 --- a/plugins/UserFlag/clearflagform.php +++ b/plugins/UserFlag/clearflagform.php @@ -42,7 +42,6 @@ require_once INSTALLDIR.'/lib/form.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 ClearFlagForm extends ProfileActionForm { /** @@ -51,7 +50,6 @@ class ClearFlagForm extends ProfileActionForm * * @return string class of the form */ - function formClass() { return 'form_user_clearflag'; @@ -62,7 +60,6 @@ class ClearFlagForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'clearflag'; @@ -73,10 +70,10 @@ class ClearFlagForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Clear'); + // TRANS: Form title for action on a profile. + return _m('Clear'); } /** @@ -87,6 +84,7 @@ class ClearFlagForm extends ProfileActionForm function description() { - return _('Clear all flags'); + // Form description for clearing flags from a profile. + return _m('Clear all flags'); } } diff --git a/plugins/UserFlag/flagprofile.php b/plugins/UserFlag/flagprofile.php index 018c1e8ac9..283eea40ce 100644 --- a/plugins/UserFlag/flagprofile.php +++ b/plugins/UserFlag/flagprofile.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - class FlagprofileAction extends ProfileFormAction { /** @@ -50,7 +49,6 @@ class FlagprofileAction extends ProfileFormAction * * @return boolean success flag */ - function prepare($args) { if (!parent::prepare($args)) { @@ -64,7 +62,8 @@ class FlagprofileAction extends ProfileFormAction if (User_flag_profile::exists($this->profile->id, $user->id)) { - $this->clientError(_('Flag already exists.')); + // TRANS: Client error when setting flag that has already been set for a profile. + $this->clientError(_m('Flag already exists.')); return false; } @@ -81,7 +80,6 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function handle($args) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { @@ -97,7 +95,6 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function handlePost() { $user = common_current_user(); @@ -119,19 +116,19 @@ class FlagprofileAction extends ProfileFormAction * * @return void */ - function ajaxResults() { header('Content-Type: text/xml;charset=utf-8'); $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Flagged for review')); + // TRANS: AJAX form title for a flagged profile. + $this->element('title', null, _m('Flagged for review')); $this->elementEnd('head'); $this->elementStart('body'); - $this->element('p', 'flagged', _('Flagged')); + // TRANS: Body text for AJAX form when a profile has been flagged for review. + $this->element('p', 'flagged', _m('Flagged')); $this->elementEnd('body'); $this->elementEnd('html'); } } - diff --git a/plugins/UserFlag/flagprofileform.php b/plugins/UserFlag/flagprofileform.php index c20929a20c..045c9de852 100644 --- a/plugins/UserFlag/flagprofileform.php +++ b/plugins/UserFlag/flagprofileform.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/form.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 FlagProfileForm extends ProfileActionForm { /** @@ -53,7 +52,6 @@ class FlagProfileForm extends ProfileActionForm * * @return string class of the form */ - function formClass() { return 'form_entity_flag'; @@ -64,7 +62,6 @@ class FlagProfileForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'flagprofile'; @@ -75,10 +72,10 @@ class FlagProfileForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Flag'); + // TRANS: Form title for flagging a profile for review. + return _m('Flag'); } /** @@ -86,9 +83,9 @@ class FlagProfileForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { - return _('Flag profile for review'); + // TRANS: Form description. + return _m('Flag profile for review.'); } } From 458512aafdd224f32eb466d78c2d2624f3c86593 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 22:46:38 +0200 Subject: [PATCH 307/310] Localisation updates from http://translatewiki.net --- locale/af/LC_MESSAGES/statusnet.po | 8 +- locale/ar/LC_MESSAGES/statusnet.po | 8 +- locale/arz/LC_MESSAGES/statusnet.po | 8 +- locale/bg/LC_MESSAGES/statusnet.po | 8 +- locale/br/LC_MESSAGES/statusnet.po | 54 +- locale/ca/LC_MESSAGES/statusnet.po | 33 +- locale/cs/LC_MESSAGES/statusnet.po | 8 +- locale/de/LC_MESSAGES/statusnet.po | 14 +- locale/en_GB/LC_MESSAGES/statusnet.po | 8 +- locale/eo/LC_MESSAGES/statusnet.po | 30 +- locale/es/LC_MESSAGES/statusnet.po | 8 +- locale/fa/LC_MESSAGES/statusnet.po | 8 +- locale/fi/LC_MESSAGES/statusnet.po | 8 +- locale/fr/LC_MESSAGES/statusnet.po | 14 +- locale/ga/LC_MESSAGES/statusnet.po | 8 +- locale/gl/LC_MESSAGES/statusnet.po | 8 +- locale/hsb/LC_MESSAGES/statusnet.po | 8 +- locale/hu/LC_MESSAGES/statusnet.po | 8 +- locale/ia/LC_MESSAGES/statusnet.po | 18 +- locale/is/LC_MESSAGES/statusnet.po | 8 +- locale/it/LC_MESSAGES/statusnet.po | 215 +++---- locale/ja/LC_MESSAGES/statusnet.po | 8 +- locale/ka/LC_MESSAGES/statusnet.po | 8 +- locale/ko/LC_MESSAGES/statusnet.po | 8 +- locale/mk/LC_MESSAGES/statusnet.po | 99 ++-- locale/nb/LC_MESSAGES/statusnet.po | 8 +- locale/nl/LC_MESSAGES/statusnet.po | 38 +- locale/nn/LC_MESSAGES/statusnet.po | 8 +- locale/pl/LC_MESSAGES/statusnet.po | 18 +- locale/pt/LC_MESSAGES/statusnet.po | 8 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 8 +- locale/ru/LC_MESSAGES/statusnet.po | 8 +- locale/statusnet.pot | 2 +- locale/sv/LC_MESSAGES/statusnet.po | 8 +- locale/te/LC_MESSAGES/statusnet.po | 8 +- locale/tr/LC_MESSAGES/statusnet.po | 315 +++++----- locale/uk/LC_MESSAGES/statusnet.po | 20 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 14 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 101 ++++ .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 107 ++++ .../locale/ia/LC_MESSAGES/AnonymousFave.po | 106 ++++ .../locale/mk/LC_MESSAGES/AnonymousFave.po | 106 ++++ .../locale/nl/LC_MESSAGES/AnonymousFave.po | 114 ++++ .../locale/uk/LC_MESSAGES/AnonymousFave.po | 111 ++++ plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 8 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ja/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ru/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Autocomplete.po | 8 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/es/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/br/LC_MESSAGES/Blacklist.po | 95 +++ .../locale/es/LC_MESSAGES/Blacklist.po | 29 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/gl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 26 + .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 26 + .../locale/fr/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 8 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/es/LC_MESSAGES/CacheLog.po | 8 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 8 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 8 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 8 +- .../locale/CasAuthentication.pot | 2 +- .../es/LC_MESSAGES/CasAuthentication.po | 76 +++ .../fr/LC_MESSAGES/CasAuthentication.po | 8 +- .../ia/LC_MESSAGES/CasAuthentication.po | 8 +- .../mk/LC_MESSAGES/CasAuthentication.po | 8 +- .../nl/LC_MESSAGES/CasAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 8 +- .../uk/LC_MESSAGES/CasAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 8 +- .../locale/ClientSideShorten.pot | 2 +- .../es/LC_MESSAGES/ClientSideShorten.po | 35 ++ .../fr/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 8 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 8 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/es/LC_MESSAGES/Comet.po | 28 + plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 8 +- .../Comet/locale/pt_BR/LC_MESSAGES/Comet.po | 28 + plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 8 +- .../Comet/locale/zh_CN/LC_MESSAGES/Comet.po | 8 +- .../locale/DirectionDetector.pot | 2 +- .../es/LC_MESSAGES/DirectionDetector.po | 8 +- .../fr/LC_MESSAGES/DirectionDetector.po | 8 +- .../ia/LC_MESSAGES/DirectionDetector.po | 8 +- .../ja/LC_MESSAGES/DirectionDetector.po | 8 +- .../lb/LC_MESSAGES/DirectionDetector.po | 8 +- .../mk/LC_MESSAGES/DirectionDetector.po | 8 +- .../nb/LC_MESSAGES/DirectionDetector.po | 8 +- .../nl/LC_MESSAGES/DirectionDetector.po | 8 +- .../ru/LC_MESSAGES/DirectionDetector.po | 8 +- .../tl/LC_MESSAGES/DirectionDetector.po | 8 +- .../uk/LC_MESSAGES/DirectionDetector.po | 8 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 8 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/es/LC_MESSAGES/DiskCache.po | 26 + .../locale/fr/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 8 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 8 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 45 ++ .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 47 ++ .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 10 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 30 + plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 8 +- .../locale/EmailAuthentication.pot | 2 +- .../es/LC_MESSAGES/EmailAuthentication.po | 30 + .../fr/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 8 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 8 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 8 +- plugins/Facebook/locale/Facebook.pot | 2 +- .../locale/br/LC_MESSAGES/Facebook.po | 536 +++++++++++++++++ .../locale/es/LC_MESSAGES/Facebook.po | 558 ++++++++++++++++++ .../locale/fr/LC_MESSAGES/Facebook.po | 8 +- .../locale/gl/LC_MESSAGES/Facebook.po | 8 +- .../locale/ia/LC_MESSAGES/Facebook.po | 8 +- .../locale/mk/LC_MESSAGES/Facebook.po | 8 +- .../locale/nb/LC_MESSAGES/Facebook.po | 8 +- .../locale/nl/LC_MESSAGES/Facebook.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Facebook.po | 8 +- .../locale/tl/LC_MESSAGES/Facebook.po | 8 +- .../locale/uk/LC_MESSAGES/Facebook.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Facebook.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 27 + .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 8 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/ia/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/mk/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/nl/LC_MESSAGES/ForceGroup.po | 38 ++ .../locale/tl/LC_MESSAGES/ForceGroup.po | 39 ++ .../locale/uk/LC_MESSAGES/ForceGroup.po | 40 ++ plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 30 + .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/br/LC_MESSAGES/Geonames.po | 31 + .../locale/eo/LC_MESSAGES/Geonames.po | 30 + .../locale/es/LC_MESSAGES/Geonames.po | 31 + .../locale/fr/LC_MESSAGES/Geonames.po | 8 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nb/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/ru/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 8 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/de/LC_MESSAGES/Gravatar.po | 8 +- .../locale/es/LC_MESSAGES/Gravatar.po | 78 +++ .../locale/fr/LC_MESSAGES/Gravatar.po | 8 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 8 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 8 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/ia/LC_MESSAGES/GroupFavorited.po | 53 ++ .../locale/mk/LC_MESSAGES/GroupFavorited.po | 54 ++ .../locale/nl/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/tl/LC_MESSAGES/GroupFavorited.po | 55 ++ .../locale/uk/LC_MESSAGES/GroupFavorited.po | 54 ++ plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 35 ++ .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/LdapAuthentication.pot | 2 +- .../es/LC_MESSAGES/LdapAuthentication.po | 30 + .../fr/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 8 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 8 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../locale/LdapAuthorization.pot | 2 +- .../es/LC_MESSAGES/LdapAuthorization.po | 30 + .../fr/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 8 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 8 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 8 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/es/LC_MESSAGES/Linkback.po | 34 ++ .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 8 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 57 ++ .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/es/LC_MESSAGES/Memcache.po | 29 + .../locale/fr/LC_MESSAGES/Memcache.po | 8 +- .../locale/ia/LC_MESSAGES/Memcache.po | 8 +- .../locale/mk/LC_MESSAGES/Memcache.po | 8 +- .../locale/nb/LC_MESSAGES/Memcache.po | 8 +- .../locale/nl/LC_MESSAGES/Memcache.po | 8 +- .../locale/ru/LC_MESSAGES/Memcache.po | 8 +- .../locale/tl/LC_MESSAGES/Memcache.po | 8 +- .../locale/uk/LC_MESSAGES/Memcache.po | 8 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/es/LC_MESSAGES/Memcached.po | 29 + .../locale/fr/LC_MESSAGES/Memcached.po | 8 +- .../locale/ia/LC_MESSAGES/Memcached.po | 8 +- .../locale/mk/LC_MESSAGES/Memcached.po | 8 +- .../locale/nb/LC_MESSAGES/Memcached.po | 8 +- .../locale/nl/LC_MESSAGES/Memcached.po | 8 +- .../locale/ru/LC_MESSAGES/Memcached.po | 8 +- .../locale/tl/LC_MESSAGES/Memcached.po | 8 +- .../locale/uk/LC_MESSAGES/Memcached.po | 8 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 8 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 8 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 22 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 28 + .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 8 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 30 + .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 8 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/es/LC_MESSAGES/PostDebug.po | 27 + .../locale/fr/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 8 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 8 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/PoweredByStatusNet.pot | 2 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 28 + .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 8 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 2 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/mk/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/nl/LC_MESSAGES/ShareNotice.po | 56 ++ .../locale/tl/LC_MESSAGES/ShareNotice.po | 55 ++ .../locale/uk/LC_MESSAGES/ShareNotice.po | 56 ++ plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 28 + .../locale/fr/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 32 + .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 34 ++ .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 33 ++ plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 8 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 8 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/SubscriptionThrottle.pot | 2 +- .../es/LC_MESSAGES/SubscriptionThrottle.po | 27 + .../fr/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nb/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ru/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/es/LC_MESSAGES/TabFocus.po | 32 + .../locale/fr/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 8 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 8 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 8 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/es/LC_MESSAGES/TightUrl.po | 28 + .../locale/fr/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 8 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 8 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 8 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 28 + .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 8 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- plugins/UserFlag/locale/UserFlag.pot | 108 ++++ plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/de/LC_MESSAGES/UserLimit.po | 26 + .../locale/es/LC_MESSAGES/UserLimit.po | 26 + .../locale/fr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 8 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/nb/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/pt_BR/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHashtags.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 8 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 8 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 30 + .../XCache/locale/es/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 8 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 17 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 23 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 23 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 24 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 260 ++++++++ .../locale/uk/LC_MESSAGES/YammerImport.po | 23 +- 682 files changed, 7260 insertions(+), 2726 deletions(-) create mode 100644 plugins/APC/locale/br/LC_MESSAGES/APC.po create mode 100644 plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po create mode 100644 plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po create mode 100644 plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po create mode 100644 plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po create mode 100644 plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po create mode 100644 plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po create mode 100644 plugins/Comet/locale/es/LC_MESSAGES/Comet.po create mode 100644 plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po create mode 100644 plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po create mode 100644 plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po create mode 100644 plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po create mode 100644 plugins/Echo/locale/br/LC_MESSAGES/Echo.po create mode 100644 plugins/Echo/locale/es/LC_MESSAGES/Echo.po create mode 100644 plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po create mode 100644 plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po create mode 100644 plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po create mode 100644 plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po create mode 100644 plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po create mode 100644 plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po create mode 100644 plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po create mode 100644 plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po create mode 100644 plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po create mode 100644 plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po create mode 100644 plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po create mode 100644 plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po create mode 100644 plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po create mode 100644 plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po create mode 100644 plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po create mode 100644 plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po create mode 100644 plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po create mode 100644 plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po create mode 100644 plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po create mode 100644 plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po create mode 100644 plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po create mode 100644 plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po create mode 100644 plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po create mode 100644 plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po create mode 100644 plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po create mode 100644 plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/UserFlag/locale/UserFlag.pot create mode 100644 plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po create mode 100644 plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po create mode 100644 plugins/XCache/locale/br/LC_MESSAGES/XCache.po create mode 100644 plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 069438eb2e..04dbe3806b 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:35+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 8a50f1da89..b1cb14da51 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:39+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 3d7eed84ad..28941399c1 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: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:40+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9cfc38adaa..9d810ec08a 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:42+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 09a22da36d..c68e172c60 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:57+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1875,7 +1875,7 @@ msgstr "Stankañ" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Stankañ an implijer-mañ" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1891,7 +1891,7 @@ msgstr "Lakaat ur merour" #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Lakaat an implijer-mañ da verour" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2286,7 +2286,7 @@ msgstr "%1$s en deus kuitaet ar strollad %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Aotre-implijout" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" @@ -2332,7 +2332,7 @@ msgstr "Prevez" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Pep gwir miret strizh." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" @@ -2352,7 +2352,7 @@ msgstr "" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Perc'henn" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." @@ -2360,7 +2360,7 @@ msgstr "" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:284 msgid "The title of the license." @@ -4649,7 +4649,7 @@ msgstr "Ma rankomp merañ an dalc'hoù hon unan." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Enrollañ arventennoù an implijer" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5675,10 +5675,9 @@ msgstr "Aprouet d'an %1$s - moned \"%2$s\"." #. TRANS: Button label #: lib/applicationlist.php:157 -#, fuzzy msgctxt "BUTTON" msgid "Revoke" -msgstr "Dilemel" +msgstr "Disteuler" #: lib/atom10feed.php:112 msgid "author element must contain a name element." @@ -5922,7 +5921,7 @@ msgstr "" #: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "Koumanantet da %s." #. 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. @@ -5981,7 +5980,7 @@ msgstr "" #: lib/command.php:808 #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "Digoumanatet %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. #: lib/command.php:826 @@ -6238,7 +6237,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Strollad" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6246,13 +6245,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "strollad %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Izili" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6260,13 +6259,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Izili ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Stanket" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6274,7 +6273,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "implijerien stanket ar strollad %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6282,13 +6281,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Kemmañ perzhioù ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6296,7 +6295,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Ouzhpennañ pe kemmañ logo ar strollad %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6304,7 +6303,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Ouzhpennañ pe kemmañ tres ar strollad %s" #: lib/groupsbymemberssection.php:71 #, fuzzy @@ -6333,12 +6332,11 @@ msgstr "Diembreget eo ar furmad-se." #: lib/imagefile.php:88 #, fuzzy, php-format msgid "That file is too big. The maximum file size is %s." -msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." +msgstr "Re vras eo ar restr ! %d eo ar vent vrasañ evit ur restr." #: lib/imagefile.php:93 -#, fuzzy msgid "Partial upload." -msgstr "N'eus bet enporzhiet restr ebet." +msgstr "Enporzhiadenn diglok." #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. #: lib/imagefile.php:101 lib/mediafile.php:179 diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index ddaf88036f..5513129bdb 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:45+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1900,13 +1900,13 @@ msgstr "Admin" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Bloca" #. TRANS: Submit button title. #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloca aquest usuari" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1916,13 +1916,13 @@ msgstr "Fes l'usuari un administrador del grup" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Fes-lo administrador" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Fes aquest usuari administrador" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2414,7 +2414,7 @@ msgstr "" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipus" #: actions/licenseadminpanel.php:254 msgid "Select license" @@ -2434,7 +2434,7 @@ msgstr "" #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Títol de la llicència" #: actions/licenseadminpanel.php:284 msgid "The title of the license." @@ -5240,7 +5240,7 @@ msgstr "No s'ha pogut eliminar la subscripció." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Segueix" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -6370,7 +6370,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Canals" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6429,7 +6429,7 @@ msgstr "Sobrenoms addicionals del grup, separats amb comes o espais, màx. %d" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Grup" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -7134,7 +7134,7 @@ msgstr "" #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Avís duplicat." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7282,7 +7282,7 @@ msgstr "Paraules clau" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Cerca" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7560,9 +7560,8 @@ msgid "Backup file for user %s (%s)" msgstr "" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "No s'ha especificat cap ID d'usuari." +msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva." #: scripts/restoreuser.php:94 #, php-format diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index a779d40496..32356d21dc 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:23:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:46+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d6d63669b4..11af5e1f86 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7589,9 +7589,3 @@ msgstr "Keine Benutzer-ID angegeben" #, php-format msgid "%d entries in backup." msgstr "" - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s markierte Nachricht %s als Favorit." - -#~ msgid "%s is now following %s." -#~ msgstr "%s folgt nun %s." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 8cddfc2b7d..b4396b1776 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 453327949a..8f9bd5cc72 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -51,7 +51,7 @@ msgstr "Ĉu malpermesi al anonimaj uzantoj (ne ensalutintaj) vidi retejon?" #: actions/accessadminpanel.php:167 msgctxt "LABEL" msgid "Private" -msgstr "Nepublika" +msgstr "Privata" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -1123,7 +1123,7 @@ msgstr "Aspekto" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Desegna agordo por ĉi tiu StatusNet-retejo" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1885,7 +1885,7 @@ msgstr "Bloki" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloki ĉi tiun uzanton" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2331,7 +2331,7 @@ msgstr "%1$s eksaniĝis de grupo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Permesilo" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" @@ -2339,7 +2339,7 @@ msgstr "" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Nevalida permesila elekto" #: actions/licenseadminpanel.php:149 msgid "" @@ -2349,7 +2349,7 @@ msgstr "" #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Nevalida permesila titolo. La longlimo estas 255 literoj." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." @@ -2373,19 +2373,19 @@ msgstr "" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privata" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Ĉiuj rajtoj rezervitaj." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Speco" #: actions/licenseadminpanel.php:254 msgid "Select license" @@ -6266,7 +6266,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Fluoj" #: lib/galleryaction.php:121 msgid "Filter tags" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c203a1d94d..c99b33d9c4 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index b7769db2d5..f5d8f300d4 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:51+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 4d67811d4c..933028780a 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:52+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 698242f28b..5f5ef01a4e 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7629,9 +7629,3 @@ msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours #, php-format msgid "%d entries in backup." msgstr "%d entrées dans la sauvegarde." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s a marqué l’avis %s comme favori." - -#~ msgid "%s is now following %s." -#~ msgstr "%s suit à présent %s." diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 8380cbb393..056dde849f 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:54+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index da1a3411ce..3fe875f47f 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:55+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index a5411edf75..3ffc1df02d 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index df39b10351..6b66ae58a6 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:10+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index ec031153c6..df8ad6106d 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:55:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5037,7 +5037,7 @@ msgstr "Le cancellation del membrato del gruppo ha fallite." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Le ID de profilo %s es invalide." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5822,7 +5822,7 @@ msgstr "Revocar" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "Le elemento \"author\" debe continer un elemento \"name\"." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7551,9 +7551,3 @@ msgstr "Nulle usator specificate; le usator de reserva es usate." #, php-format msgid "%d entries in backup." msgstr "%d entratas in copia de reserva." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s marcava le nota %s como favorite." - -#~ msgid "%s is now following %s." -#~ msgstr "%s seque ora %s." diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index c58390a607..66793c4fde 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:02+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index cf0a5fffaf..929f885efc 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:03+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -386,9 +386,8 @@ msgid "You cannot unfollow yourself." msgstr "Non puoi non seguirti." #: actions/apifriendshipsexists.php:91 -#, fuzzy msgid "Two valid IDs or screen_names must be supplied." -msgstr "Devono essere forniti due ID utente o nominativi." +msgstr "Devono essere forniti due ID o screen_names." #: actions/apifriendshipsshow.php:134 msgid "Could not determine source user." @@ -525,9 +524,8 @@ msgid "groups on %s" msgstr "Gruppi su %s" #: actions/apimediaupload.php:100 -#, fuzzy msgid "Upload failed." -msgstr "Carica file" +msgstr "Caricamento non riuscito." #: actions/apioauthauthorize.php:101 msgid "No oauth_token parameter provided." @@ -677,7 +675,7 @@ msgstr "Nessuno stato trovato con quel ID." #: actions/apistatusesupdate.php:222 msgid "Client must provide a 'status' parameter with a value." -msgstr "" +msgstr "Il client deve fornire un parametro \"status\" con un valore." #: actions/apistatusesupdate.php:243 actions/newnotice.php:157 #: lib/mailhandler.php:60 @@ -1129,7 +1127,7 @@ msgstr "Aspetto" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni dell'aspetto per questo sito StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1898,13 +1896,13 @@ msgstr "Amministra" #: actions/groupmembers.php:399 msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Blocca" #. TRANS: Submit button title. #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Blocca questo utente" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -1914,13 +1912,13 @@ msgstr "Rende l'utente amministratore del gruppo" #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Rendi amministratore" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Fa diventare questo utente un amministratore" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. @@ -2356,45 +2354,47 @@ msgstr "%1$s ha lasciato il gruppo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licenza" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "La licenza per questo sito StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Selezione della licenza non valida." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"È necessario specificare il proprietario dei contenuti quando viene usata la " +"licenza \"Tutti i diritti riservati\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Titolo della licenza non valido. Lunghezza massima 255 caratteri." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Indirizzo della licenza non valido." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Indirizzo immagine della licenza non valido." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "L'indirizzo della licenza deve essere vuoto o un URL valido." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "L'immagine della licenza deve essere vuota o un URL valido." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selezione licenza" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2402,59 +2402,59 @@ msgstr "Privato" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tutti i diritti riservati" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipo" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Seleziona licenza" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Dettagli licenza" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Proprietario" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nome del proprietario dei contenuti del sito (se applicabile)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Titolo licenza" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Il titolo della licenza." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Indirizzo licenza" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Indirizzo per informazioni aggiuntive riguardo la licenza." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Indirizzo immagine licenza" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Indirizzo di un'immagine da visualizzare con la licenza." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Salva impostazioni licenza" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2655,7 +2655,6 @@ msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Messaggi che corrispondono al termine \"%1$s\" su %2$s!" #: actions/nudge.php:85 -#, fuzzy msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email yet." msgstr "" @@ -2693,7 +2692,7 @@ msgstr "Applicazioni collegate" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2885,7 +2884,7 @@ msgstr "Percorsi" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Percorso e impostazioni del server per questo sito StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3741,7 +3740,7 @@ msgstr "Sessioni" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni sessione per questo sito StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -3880,13 +3879,13 @@ msgstr "" "forma di cuore per salvare i messaggi e rileggerli in un altro momento." #: actions/showfavorites.php:208 -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" "%s non ha aggiunto alcun messaggio tra i suoi preferiti. Scrivi qualche cosa " -"di interessante in modo che lo inserisca tra i suoi preferiti. :)" +"di interessante in modo che lo inserisca tra i suoi preferiti! :)" #: actions/showfavorites.php:212 #, php-format @@ -4683,7 +4682,7 @@ msgstr "Utente" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Impostazioni utente per questo sito StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4747,7 +4746,7 @@ msgstr "Indica se consentire agli utenti di invitarne di nuovi" #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Salva impostazioni utente" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -4972,23 +4971,23 @@ msgstr "Preferisci" #: classes/File.php:142 #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "Impossibile elaborare l'indirizzo \"%s\"" #. TRANS: Server exception thrown when... Robin thinks something is impossible! #: classes/File.php:174 msgid "Robin thinks something is impossible." -msgstr "" +msgstr "Si è verificato qualche cosa di impossibile." #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #: classes/File.php:189 -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr "" -"Nessun file può superare %d byte e il file inviato era di %d byte. Prova a " -"caricarne una versione più piccola." +"Nessun file può superare %1$d byte e il file inviato era di %2$d byte. Prova " +"a caricarne una versione più piccola." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes. @@ -5008,9 +5007,8 @@ msgstr "" #. TRANS: Client exception thrown if a file upload does not have a valid name. #: classes/File.php:247 classes/File.php:262 -#, fuzzy msgid "Invalid filename." -msgstr "Dimensione non valida." +msgstr "Nome file non valido." #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:42 @@ -5032,7 +5030,7 @@ msgstr "Uscita dal gruppo non riuscita." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "L'ID di profilo %s non è valido." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5051,7 +5049,7 @@ msgstr "Iscriviti" #: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "L'utente %1$s è entrato nel gruppo %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5068,7 +5066,7 @@ msgstr "Impossibile creare il token di accesso per %s" #. TRANS: Exception thrown when database name or Data Source Name could not be found. #: classes/Memcached_DataObject.php:533 msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "Non è stato trovato un nome di database o DNS." #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. #: classes/Message.php:45 @@ -5090,7 +5088,7 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI." #: classes/Notice.php:98 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "Non c'è alcun profilo (%1$d) per il messaggio (%2$d)." #. TRANS: Server exception. %s are the error details. #: classes/Notice.php:193 @@ -5139,7 +5137,7 @@ msgstr "Problema nel salvare il messaggio." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). #: classes/Notice.php:907 msgid "Bad type provided to saveKnownGroups" -msgstr "" +msgstr "Fornito un tipo errato per saveKnownGroups" #. TRANS: Server exception thrown when an update for a group inbox fails. #: classes/Notice.php:1006 @@ -5159,6 +5157,7 @@ msgstr "RT @%1$s %2$s" #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" +"Impossibile revocare il ruolo \"%1$s\" per l'utente n° %2$d: non esiste." #. 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). @@ -5166,18 +5165,18 @@ msgstr "" #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +"Impossibile revocare il ruolo \"%1$s\" per l'utente n° %2$d: errore nel " +"database." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. #: classes/Remote_profile.php:54 -#, fuzzy msgid "Missing profile." -msgstr "L'utente non ha un profilo." +msgstr "Profilo mancante." #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 -#, fuzzy msgid "Unable to save tag." -msgstr "Impossibile salvare il messaggio del sito." +msgstr "Impossibile salvare l'etichetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 @@ -5217,7 +5216,7 @@ msgstr "Impossibile salvare l'abbonamento." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Segui" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5669,7 +5668,7 @@ msgstr "Configurazione snapshot" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Imposta licenza" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5681,33 +5680,33 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. #: lib/apiauth.php:175 msgid "No application for that consumer key." -msgstr "" +msgstr "Nessuna applicazione per quella chiave." #. TRANS: OAuth exception given when an incorrect access token was given for a user. #: lib/apiauth.php:212 msgid "Bad access token." -msgstr "" +msgstr "Token di accesso errato." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). #: lib/apiauth.php:217 msgid "No user for that token." -msgstr "" +msgstr "Nessun utente per quel token." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:258 lib/apiauth.php:290 msgid "Could not authenticate you." -msgstr "" +msgstr "Impossibile autenticarti." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. #: lib/apioauthstore.php:178 msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Tentativo di revocare un token sconosciuto." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. #: lib/apioauthstore.php:183 msgid "Failed to delete revoked token." -msgstr "" +msgstr "Eliminazione del token revocato non riuscita." #. TRANS: Form legend. #: lib/applicationeditform.php:129 @@ -5818,7 +5817,7 @@ msgstr "Revoca" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "L'elemento author deve contenere un elemento name." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5906,7 +5905,7 @@ msgstr "Impossibile trovare un utente col soprannome %s." #: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "Impossibile trovare un utente locale dal soprannome %s." #. TRANS: Error text shown when an unimplemented command is given. #: lib/command.php:183 @@ -5950,14 +5949,14 @@ msgstr "Messaggio indicato come preferito." #: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "L'utente %1$s è entrato nel gruppo %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. #: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "%1$s ha lasciato il gruppo %2$s." #. TRANS: Whois output. %s is the full name of the queried user. #: lib/command.php:430 @@ -6054,7 +6053,7 @@ msgstr "Impossibile abbonarsi ai profili OMB attraverso un comando." #: lib/command.php:667 #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "Abbonati a %s." #. 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. @@ -6067,7 +6066,7 @@ msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." #: lib/command.php:699 #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "Abbonamento a %s annullato." #. 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. @@ -6106,13 +6105,15 @@ msgstr "Il comando di accesso è disabilitato." #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" +"Questo collegamento è utilizzabile una sola volta ed è valido per 2 minuti: %" +"s." #. 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:808 #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "Abbonamento di %s annullato." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. #: lib/command.php:826 @@ -6346,7 +6347,7 @@ msgstr "FOAF" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Feed" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -6405,7 +6406,7 @@ msgstr "" #: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "Gruppo" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6413,13 +6414,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "Gruppo %s" #. TRANS: Menu item in the group navigation page. #: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Membri" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. @@ -6427,13 +6428,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "Membri del gruppo %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:108 msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Bloccato" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6441,7 +6442,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "Utenti bloccati di %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6449,13 +6450,13 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Modifica proprietà di %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "Logo" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6463,7 +6464,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Aggiungi o modifica il logo di %s" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -6471,7 +6472,7 @@ msgstr "" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s design" -msgstr "" +msgstr "Aggiungi o modifica l'aspetto di %s" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" @@ -6972,13 +6973,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" non è un tipo di file supportato su questo server. Prova a usare un " +"formato %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #: lib/mediafile.php:345 #, php-format msgid "\"%s\" is not a supported file type on this server." -msgstr "" +msgstr "\"%s\" non è un tipo di file supportata su questo server." #: lib/messageform.php:120 msgid "Send a direct notice" @@ -7061,7 +7064,7 @@ msgstr "presso" #: lib/noticelist.php:512 msgid "web" -msgstr "" +msgstr "web" #: lib/noticelist.php:578 msgid "in context" @@ -7097,20 +7100,20 @@ msgstr "Invia un richiamo a questo utente" #: lib/oauthstore.php:283 msgid "Error inserting new profile." -msgstr "" +msgstr "Errore nell'inserire il nuovo profilo." #: lib/oauthstore.php:291 msgid "Error inserting avatar." -msgstr "" +msgstr "Errore nell'inserire l'immagine." #: lib/oauthstore.php:311 msgid "Error inserting remote profile." -msgstr "" +msgstr "Errore nell'inserire il profilo remoto." #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:346 msgid "Duplicate notice." -msgstr "" +msgstr "Messaggio duplicato." #: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." @@ -7258,7 +7261,7 @@ msgstr "Parole" #: lib/searchaction.php:130 msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "Cerca" #. TRANS: Definition list item with instructions on how to get (better) search results. #: lib/searchaction.php:170 @@ -7375,6 +7378,7 @@ msgstr "" #: lib/themeuploader.php:224 msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +"Il tema contiene file con estensioni non sicure: potrebbe non essere sicuro." #: lib/themeuploader.php:241 #, php-format @@ -7474,8 +7478,8 @@ msgstr "circa un minuto fa" #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un minuto fa" +msgstr[1] "circa %d minuti fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1136 @@ -7487,8 +7491,8 @@ msgstr "circa un'ora fa" #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un'ora fa" +msgstr[1] "circa %d ore fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1143 @@ -7500,8 +7504,8 @@ msgstr "circa un giorno fa" #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un giorno fa" +msgstr[1] "circa %d giorni fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1150 @@ -7513,8 +7517,8 @@ msgstr "circa un mese fa" #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circa un mese fa" +msgstr[1] "circa %d mesi fa" #. TRANS: Used in notices to indicate when the notice was made compared to now. #: lib/util.php:1157 @@ -7534,14 +7538,13 @@ msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali." #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "File di backup per l'utente %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Nessun ID utente specificato." +msgstr "Nessun utente specificato: viene usato l'utente di backup." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d voci nel backup." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 30b84e9691..c94c24a7bc 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:04+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 9f1cb23744..9290a8a02c 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:05+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 0b09eecb30..ed9c69574c 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:06+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d9ff54241d..17baeffeec 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -354,20 +354,20 @@ msgstr "Нема пронајдено статус со таков ID." #: actions/apifavoritecreate.php:121 msgid "This status is already a favorite." -msgstr "Овој статус веќе Ви е омилен." +msgstr "Веќе сте го бендисале овој статус." #. TRANS: Error message text shown when a favorite could not be set. #: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 msgid "Could not create favorite." -msgstr "Не можам да создадам омилина забелешка." +msgstr "Не можам да создадам бендисана забелешка." #: actions/apifavoritedestroy.php:124 msgid "That status is not a favorite." -msgstr "Тој статус не Ви е омилен." +msgstr "Тој статус не Ви е бендисан." #: actions/apifavoritedestroy.php:136 actions/disfavor.php:87 msgid "Could not delete favorite." -msgstr "Не можам да ја избришам омилената забелешка." +msgstr "Не можам да ја избришам бендисаната забелешка." #: actions/apifriendshipscreate.php:110 msgid "Could not follow user: profile not found." @@ -702,12 +702,12 @@ msgstr "Неподдржан формат." #: actions/apitimelinefavorites.php:110 #, php-format msgid "%1$s / Favorites from %2$s" -msgstr "%1$s / Омилени од %2$s" +msgstr "%1$s / Бендисани од %2$s" #: actions/apitimelinefavorites.php:119 #, php-format msgid "%1$s updates favorited by %2$s / %2$s." -msgstr "Подновувања на %1$s омилени на %2$s / %2$s." +msgstr "Подновувања на %1$s бендисани од %2$s / %2$s." #: actions/apitimelinementions.php:118 #, php-format @@ -1265,11 +1265,11 @@ msgstr "Зачувај изглед" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "Оваа забелешка не Ви е омилена!" +msgstr "Оваа забелешка не Ви е бендисана!" #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "Додај во омилени" +msgstr "Додај во бендисани" #: actions/doc.php:158 #, php-format @@ -1492,7 +1492,7 @@ msgstr "Испраќај ми известувања за нови претпл #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:190 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Испраќај ми е-пошта кога некој ќе додаде моја забелешка како омилена." +msgstr "Испраќај ми е-пошта кога некој ќе бендиса моја забелешка." #. TRANS: Checkbox label in e-mail preferences form. #: actions/emailsettings.php:197 @@ -1622,11 +1622,11 @@ msgstr "Додадена е нова влезна е-поштенска адре #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "Оваа белешка е веќе омилена!" +msgstr "Веќе сте ја бендисале оваа забелешка!" #: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" -msgstr "Тргни од омилени" +msgstr "Тргни од бендисани" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 @@ -1645,16 +1645,16 @@ msgstr "Моментално најпопуларни забелешки на м #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -"Омилените забелешки се појавуваат на оваа страница, но никој досега нема " -"одбележано таква." +"Бендисаните забелешки се појавуваат на оваа страница, но досега никој нема " +"бендисано ништо." #: actions/favorited.php:153 msgid "" "Be the first to add a notice to your favorites by clicking the fave button " "next to any notice you like." msgstr "" -"Бидете првиот што ќе додаде белешка во омилени со тоа што ќе кликнете на " -"копчето за омилени забелешки веднаш до забелешката која Ви се допаѓа." +"Бидете првиот што ќе бендиса забелешка со тоа што ќе кликнете на копчето за " +"бендисување веднаш до забелешката која Ви се допаѓа." #: actions/favorited.php:156 #, php-format @@ -1663,18 +1663,18 @@ msgid "" "notice to your favorites!" msgstr "" "А зошто не [регистрирате сметка](%%action.register%%) и да бидете први што " -"ќе додадете забелешка во Вашите омилени!" +"ќе бендисате забелешка!" #: actions/favoritesrss.php:111 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 #, php-format msgid "%s's favorite notices" -msgstr "Омилени забелешки на %s" +msgstr "Бендисани забелешки на %s" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Подновувања, омилени на %1$s на %2$s!" +msgstr "Подновувања, бендисани од %1$s на %2$s!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -3872,35 +3872,35 @@ msgstr "" #: actions/showfavorites.php:79 #, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "Омилени забелешки на %1$s, стр. %2$d" +msgstr "Бендисан забелешки на %1$s, страница %2$d" #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." -msgstr "Не можев да ги вратам омилените забелешки." +msgstr "Не можев да ги повратам бендисаните забелешки." #: actions/showfavorites.php:171 #, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Канал за омилени забелешки на %s (RSS 1.0)" +msgstr "Канал за бендисани забелешки на %s (RSS 1.0)" #: actions/showfavorites.php:178 #, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Канал за омилени забелешки на %s (RSS 2.0)" +msgstr "Канал за бендисани забелешки на %s (RSS 2.0)" #: actions/showfavorites.php:185 #, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Канал за омилени забелешки на %s (Atom)" +msgstr "Канал за бендисани забелешки на %s (Atom)" #: actions/showfavorites.php:206 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -"Сè уште немате избрано ниедна омилена забелешка. Кликнете на копчето за " -"омилена забелешка веднаш до самата забелешката што Ви се допаѓа за да ја " -"обележите за подоцна, или за да ѝ дадете на важност." +"Сè уште немате избрано ниедна бендисана забелешка. Кликнете на копчето за " +"бендисување веднаш до самата забелешката што Ви се допаѓа за да ја обележите " +"за подоцна, или за да ѝ дадете на важност." #: actions/showfavorites.php:208 #, php-format @@ -3908,8 +3908,8 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" -"%s сè уште нема додадено омилени забелешки. Објавете нешто интересно, што " -"корисникот би го обележал како омилено :)" +"%s сè уште нема бендисано ниедна забелешка. Објавете нешто интересно, што " +"корисникот би го бендисал :)" #: actions/showfavorites.php:212 #, php-format @@ -3918,9 +3918,9 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"%s сè уште нема додадено омилени забелешки. Зошто не се [регистрирате](%%%%" +"%s сè уште нема додадено бендисани забелешки. Зошто не се [регистрирате](%%%%" "action.register%%%%) и потоа објавите нешто интересно што корисникот би го " -"додал како омилено :)" +"бендисал :)" #: actions/showfavorites.php:243 msgid "This is a way to share what you like." @@ -4996,7 +4996,7 @@ msgstr "Автор(и)" #. TRANS: Activity title when marking a notice as favorite. #: classes/Fave.php:148 lib/favorform.php:143 msgid "Favor" -msgstr "Омилено" +msgstr "Бендисај" #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 @@ -5060,7 +5060,7 @@ msgstr "Напуштањето на групата не успеа." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Назнаката (ID) %s на профилот е неважечка." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5848,7 +5848,7 @@ msgstr "Одземи" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "авторскиот елемент мора да содржи елемент на име." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5973,7 +5973,7 @@ msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. #: lib/command.php:312 msgid "Notice marked as fave." -msgstr "Забелешката е обележана како омилена." +msgstr "Забелешката е обележана како бендисана." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. @@ -6245,8 +6245,8 @@ msgstr "" "d - директна порака за корисник\n" "get - прикажи последна забелешка на корисник\n" "whois - прикажи профилни информации за корисник\n" -"fav - додај последна забелешка на корисник во омилени\n" -"fav # - додај забелешка со даден id како омилена\n" +"fav - додај ја последната забелешка на корисникот во бендисани\n" +"fav # - додај забелешка со даден id како бендисана\n" "repeat # - повтори забелешка со даден id\n" "repeat - повтори последна забелешка на корисник\n" "reply # - одговори на забелешка со даден id\n" @@ -6350,11 +6350,11 @@ msgstr "Основно-зададениот изглед е вратен." #: lib/disfavorform.php:114 lib/disfavorform.php:144 msgid "Disfavor this notice" -msgstr "Отстрани ја белешкава од омилени" +msgstr "Одбендисај ја забелешкава" #: lib/favorform.php:114 lib/favorform.php:143 msgid "Favor this notice" -msgstr "Означи ја забелешкава како омилена" +msgstr "Бендисај ја забелешкава" #: lib/feed.php:85 msgid "RSS 1.0" @@ -6788,7 +6788,7 @@ msgstr "" #: lib/mail.php:589 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) додаде Ваша забелешка како омилена" +msgstr "%s (@%s) бендиса Ваша забелешка" #. TRANS: Body for favorite notification email #: lib/mail.php:592 @@ -6811,8 +6811,7 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s (@%7$s) штотуку ја додаде Вашата забелешка од %2$s како една од " -"омилените.\n" +"%1$s (@%7$s) штотуку ја бендиса Вашата забелешка од %2$s.\n" "\n" "URL-адресата на Вашата забелешка е:\n" "\n" @@ -6822,7 +6821,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Погледнете список на омилените забелешки на %1$s тука:\n" +"Погледнете список на бендисаните забелешки на %1$s тука:\n" "\n" "%5$s\n" "\n" @@ -7160,7 +7159,7 @@ msgstr "Одговори" #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "Омилени" +msgstr "Бендисани" #: lib/personalgroupnav.php:125 msgid "Inbox" @@ -7578,9 +7577,3 @@ msgstr "Нема назначено корисник. Ќе го употреба #, php-format msgid "%d entries in backup." msgstr "%d резервни ставки." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s ја означи забелешката %s како омилена." - -#~ msgid "%s is now following %s." -#~ msgstr "%s сега го/ја следи %s." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 10f0bc9758..26eb32056d 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f0d5df52ff..bf0be6d0c9 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1278,7 +1278,7 @@ msgstr "Ontwerp opslaan" #: actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "Deze mededeling staats niet op uw favorietenlijst." +msgstr "Deze mededeling staat niet op uw favorietenlijst." #: actions/disfavor.php:94 msgid "Add to favorites" @@ -1638,7 +1638,7 @@ msgstr "Deze mededeling staat al in uw favorietenlijst." #: actions/favor.php:92 lib/disfavorform.php:144 msgid "Disfavor favorite" -msgstr "Van favotietenlijst verwijderen" +msgstr "Van favorietenlijst verwijderen" #: actions/favorited.php:65 lib/popularnoticesection.php:91 #: lib/publicgroupnav.php:93 @@ -5091,14 +5091,14 @@ msgstr "Groepslidmaatschap opzeggen is mislukt." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Profiel-ID %s is ongeldig." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. #: classes/Group_member.php:89 -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "Fout bij opslaan gebruiker; ongeldig." +msgstr "Groep-ID %s is ongeldig." #. TRANS: Activity title. #: classes/Group_member.php:113 lib/joinform.php:114 @@ -5791,10 +5791,10 @@ msgstr "Icoon voor deze applicatie" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. #: lib/applicationeditform.php:201 -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "Beschrijf uw applicatie in %d tekens" +msgstr[0] "Beschrijf uw applicatie in een enkel teken" msgstr[1] "Beschrijf uw applicatie in %d tekens" #. TRANS: Form input field instructions. @@ -5887,7 +5887,7 @@ msgstr "Intrekken" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "Het element author moet een element name bevatten." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -5916,13 +5916,11 @@ msgstr "Labels voor deze bijlage" #. TRANS: Exception thrown when a password change fails. #: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 -#, fuzzy msgid "Password changing failed." msgstr "Wachtwoord wijzigen is mislukt" #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. #: lib/authenticationplugin.php:238 -#, fuzzy msgid "Password changing is not allowed." msgstr "Wachtwoord wijzigen is niet toegestaan" @@ -5938,7 +5936,6 @@ msgstr "Commandoresultaten" #. TRANS: Title for command results. #: lib/channel.php:194 -#, fuzzy msgid "AJAX error" msgstr "Er is een Ajax-fout opgetreden" @@ -6342,7 +6339,6 @@ msgstr "Naar het installatieprogramma gaan." #. TRANS: Menu item for Instant Messaging settings. #: lib/connectsettingsaction.php:106 -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -6354,7 +6350,6 @@ msgstr "Updates via instant messenger (IM)" #. TRANS: Menu item for Short Message Service settings. #: lib/connectsettingsaction.php:113 -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -6366,10 +6361,9 @@ msgstr "Updates via SMS" #. TRANS: Menu item for OAth connection settings. #: lib/connectsettingsaction.php:120 -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "Verbindingen" +msgstr "Koppelingen" #. TRANS: Tooltip for connected applications (Connections through OAth) menu item. #: lib/connectsettingsaction.php:122 @@ -7630,9 +7624,3 @@ msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt." #, php-format msgid "%d entries in backup." msgstr "%d regels in de back-up." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s heeft de mededeling %s als favoriet gemarkeerd." - -#~ msgid "%s is now following %s." -#~ msgstr "%s volgt nu $s." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 28da648ee1..4469e27768 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:09+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 371550e090..533f037b7c 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:11+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -5027,7 +5027,7 @@ msgstr "Opuszczenie grupy nie powiodło się." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Identyfikator profilu %s jest nieprawidłowy." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5814,7 +5814,7 @@ msgstr "Unieważnij" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "element autora musi zawierać element nazwy." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7552,9 +7552,3 @@ msgstr "Nie podano użytkownika; używanie użytkownika zapasowego." #, php-format msgid "%d entries in backup." msgstr "%d wpisów w kopii zapasowej." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "Użytkownik %s oznaczył wpis %s jako ulubiony." - -#~ msgid "%s is now following %s." -#~ msgstr "Użytkownik %s obserwuje teraz %s." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 90a14d917e..48ff136b50 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ce9407ae06..ebee1ca5f3 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:13+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 01a8dfc192..ce1f90620b 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 973a599fbb..8d976f2619 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 99fbeae471..c277294c6e 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:26+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 88e383d20f..19e0a80520 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:27+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:16+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 4f5e88c692..a8d4774fb9 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:29+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:17+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -732,7 +732,7 @@ msgstr "%s için cevaplar" #: actions/apitimelinetag.php:105 actions/tag.php:67 #, php-format msgid "Notices tagged with %s" -msgstr "" +msgstr "%s ile etiketli durum mesajları" #: actions/apitimelinetag.php:107 actions/tagrss.php:65 #, fuzzy, php-format @@ -1515,9 +1515,8 @@ msgstr "Bir takma ad veya eposta adresi girin." #. TRANS: Confirmation message for successful e-mail preferences save. #: actions/emailsettings.php:338 -#, fuzzy msgid "Email preferences saved." -msgstr "Tercihler kaydedildi." +msgstr "E-posta tercihleri kaydedildi." #. TRANS: Message given saving e-mail address without having provided one. #: actions/emailsettings.php:357 @@ -1539,9 +1538,8 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Message given saving e-mail address that is already set. #: actions/emailsettings.php:374 -#, fuzzy msgid "That is already your email address." -msgstr "Bu zaten sizin Jabber ID'niz." +msgstr "Bu zaten sizin e-posta adresiniz." #. TRANS: Message given saving e-mail address that is already set for another user. #: actions/emailsettings.php:378 @@ -1588,9 +1586,8 @@ msgstr "İptal etmek için beklenen onay yok." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. #: actions/emailsettings.php:462 -#, fuzzy msgid "That is not your email address." -msgstr "Yanlış IM adresi." +msgstr "Bu sizin e-posta adresiniz değil." #. TRANS: Message given after successfully removing a registered e-mail address. #: actions/emailsettings.php:483 @@ -1606,9 +1603,8 @@ msgstr "Geçersiz bir eposta adresi." #. TRANS: Server error thrown on database error adding incoming e-mail address. #: actions/emailsettings.php:508 actions/emailsettings.php:532 #: actions/smssettings.php:578 actions/smssettings.php:602 -#, fuzzy msgid "Couldn't update user record." -msgstr "Kullanıcı güncellenemedi." +msgstr "Kullanıcı kayıtları güncellenemedi." #. TRANS: Message given after successfully removing an incoming e-mail address. #: actions/emailsettings.php:512 actions/smssettings.php:581 @@ -1738,9 +1734,8 @@ msgid "Error updating remote profile." msgstr "Uzaktaki profili güncellemede hata oluştu" #: actions/getfile.php:79 -#, fuzzy msgid "No such file." -msgstr "Böyle bir durum mesajı yok." +msgstr "Böyle bir dosya yok." #: actions/getfile.php:83 msgid "Cannot read file." @@ -1780,26 +1775,23 @@ msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." -msgstr "" +msgstr "Hiçbir grup belirtilmedi." #: actions/groupblock.php:91 msgid "Only an admin can block group members." -msgstr "" +msgstr "Sadece bir yönetici grup üyelerini engelleyebilir." #: actions/groupblock.php:95 -#, fuzzy msgid "User is already blocked from group." -msgstr "Kullanıcının profili yok." +msgstr "Kullanıcı zaten gruptan engellenmiş." #: actions/groupblock.php:100 -#, fuzzy msgid "User is not a member of group." -msgstr "Bize o profili yollamadınız" +msgstr "Kullanıcı grubunun bir üyesi değil." #: actions/groupblock.php:134 actions/groupmembers.php:364 -#, fuzzy msgid "Block user from group" -msgstr "Böyle bir kullanıcı yok." +msgstr "Kullanıcıyı gruptan engelle" #: actions/groupblock.php:160 #, php-format @@ -1811,15 +1803,13 @@ msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. #: actions/groupblock.php:182 -#, fuzzy msgid "Do not block this user from this group" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +msgstr "Bu kullanıcıyı bu gruptan engellemeyin" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. #: actions/groupblock.php:189 -#, fuzzy msgid "Block this user from this group" -msgstr "Böyle bir kullanıcı yok." +msgstr "Bu kullanıcıyı bu gruptan engelleyin" #: actions/groupblock.php:206 msgid "Database error blocking user from group." @@ -1835,7 +1825,7 @@ msgstr "Bir grubu düzenlemek için giriş yapmış olmanız gerekir." #: actions/groupdesignsettings.php:144 msgid "Group design" -msgstr "" +msgstr "Grup dizaynı" #: actions/groupdesignsettings.php:155 msgid "" @@ -1856,7 +1846,7 @@ msgstr "Tercihler kaydedildi." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" -msgstr "" +msgstr "Grup logosu" #: actions/grouplogo.php:153 #, fuzzy, php-format @@ -1884,7 +1874,7 @@ msgstr "Avatar güncellemede hata." #: actions/groupmembers.php:102 #, php-format msgid "%s group members" -msgstr "" +msgstr "%s grup üyeleri" #. TRANS: Title of the page showing group members. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. @@ -1895,7 +1885,7 @@ msgstr "" #: actions/groupmembers.php:122 msgid "A list of the users in this group." -msgstr "" +msgstr "Bu gruptaki kullanıcıların listesi." #: actions/groupmembers.php:186 msgid "Admin" @@ -1911,32 +1901,32 @@ msgstr "Engelle" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bu kullanıcıyı engelle" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" -msgstr "" +msgstr "Kullanıcıyı grubun bir yöneticisi yap" #. TRANS: Button text for the form that will make a user administrator. #: actions/groupmembers.php:533 msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "Yönetici Yap" #. TRANS: Submit button title. #: actions/groupmembers.php:537 msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "Bu kullanıcıyı yönetici yap" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. #: actions/grouprss.php:139 actions/userrss.php:94 #: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:68 -#, fuzzy, php-format +#, php-format msgid "%s timeline" -msgstr "Genel zaman çizgisi" +msgstr "%s zaman çizelgesi" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #: actions/grouprss.php:142 @@ -1965,9 +1955,8 @@ msgid "" msgstr "" #: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -#, fuzzy msgid "Create a new group" -msgstr "Yeni hesap oluştur" +msgstr "Yeni bir grup oluştur" #: actions/groupsearch.php:52 #, fuzzy, php-format @@ -1980,15 +1969,13 @@ msgstr "" "karakterden oluşmalı. " #: actions/groupsearch.php:58 -#, fuzzy msgid "Group search" -msgstr "Kişi Arama" +msgstr "Grup arama" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Sonuç yok" +msgstr "Sonuç yok." #: actions/groupsearch.php:82 #, php-format @@ -2009,14 +1996,12 @@ msgid "Only an admin can unblock group members." msgstr "" #: actions/groupunblock.php:95 -#, fuzzy msgid "User is not blocked from group." -msgstr "Kullanıcının profili yok." +msgstr "Kullanıcı gruptan engellenmedi." #: actions/groupunblock.php:128 actions/unblock.php:86 -#, fuzzy msgid "Error removing the block." -msgstr "Kullanıcıyı kaydetmede hata oluştu." +msgstr "Engellemeyi kaldırırken hata." #. TRANS: Title for instance messaging settings. #: actions/imsettings.php:60 @@ -2037,16 +2022,14 @@ msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. #: actions/imsettings.php:94 -#, fuzzy msgid "IM is not available." -msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" +msgstr "Anlık mesajlaşma mevcut değil." #. TRANS: Form legend for IM settings form. #. TRANS: Field label for IM address input in IM settings form. #: actions/imsettings.php:106 actions/imsettings.php:136 -#, fuzzy msgid "IM address" -msgstr "IM adresi" +msgstr "Anlık mesajlaşma adresi" #: actions/imsettings.php:113 msgid "Current confirmed Jabber/GTalk address." @@ -2182,7 +2165,7 @@ msgstr "" #: actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "" +msgstr "%s için gelen kutusu" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." @@ -2204,11 +2187,11 @@ msgstr "Geçersiz bir eposta adresi." #: actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "" +msgstr "Davet(iyeler) gönderildi" #: actions/invite.php:112 msgid "Invite new users" -msgstr "" +msgstr "Yeni kullanıcıları davet et" #: actions/invite.php:128 #, fuzzy @@ -2252,9 +2235,8 @@ msgid "Addresses of friends to invite (one per line)" msgstr "" #: actions/invite.php:192 -#, fuzzy msgid "Personal message" -msgstr "Kişisel" +msgstr "Kişisel mesaj" #: actions/invite.php:194 msgid "Optionally add a personal message to the invitation." @@ -2262,7 +2244,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Gönder" @@ -2307,7 +2288,7 @@ msgstr "" #: actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "" +msgstr "Gruba katılmak için giriş yapmalısınız." #: actions/joingroup.php:88 actions/leavegroup.php:88 #, fuzzy @@ -2325,9 +2306,8 @@ msgstr "" #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. #: actions/leavegroup.php:100 lib/command.php:386 -#, fuzzy msgid "You are not a member of that group." -msgstr "Bize o profili yollamadınız" +msgstr "Bu grubun bir üyesi değilsiniz." #: actions/leavegroup.php:137 #, fuzzy, php-format @@ -2338,15 +2318,15 @@ msgstr "%1$s'in %2$s'deki durum mesajları " #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Lisans" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Bu StatusNet sitesi için lisans" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Geçersiz lisans seçimi." #: actions/licenseadminpanel.php:149 msgid "" @@ -2356,27 +2336,27 @@ msgstr "" #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Geçersiz lisans başlığı. En fazla uzunluk 255 karakterdir." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Geçersiz lisans bağlantısı." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Geçersiz lisans resmi bağlantısı." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Lisans bağlantısı boş veya geçerli bir tane olmalıdır." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Lisans resmi boş veya geçerli bir tane olmalıdır." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Lisans seçimi" #: actions/licenseadminpanel.php:245 #, fuzzy @@ -2385,11 +2365,11 @@ msgstr "Gizlilik" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Tüm Hakları Saklıdır" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" @@ -2397,47 +2377,47 @@ msgstr "" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Lisans seç" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Lisans ayrıntıları" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Sahibi" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "site içeriğinin sahibinin ismi (eğer varsa)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Lisans Başlığı" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Lisansın başlığı." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "Lisans Bağlantısı" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "Lisans hakkında daha fazla bilgi için bağlantı." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "Lisans Resminin Bağlantısı" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "Lisansla birlikte gösterilecek bir resim için bağlantı." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Lisans ayarlarını kaydet" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2458,7 +2438,7 @@ msgstr "Giriş" #: actions/login.php:249 msgid "Login to site" -msgstr "" +msgstr "Siteye giriş" #: actions/login.php:258 actions/register.php:485 msgid "Remember me" @@ -2496,7 +2476,7 @@ msgstr "" #: actions/makeadmin.php:92 msgid "Only an admin can make another user an admin." -msgstr "" +msgstr "Sadece bir yönetici, başka bir kullanıcıyı yönetici yapabilir." #: actions/makeadmin.php:96 #, fuzzy, php-format @@ -2519,9 +2499,8 @@ msgid "No current status." msgstr "Sonuç yok" #: actions/newapplication.php:52 -#, fuzzy msgid "New Application" -msgstr "Böyle bir durum mesajı yok." +msgstr "Yeni Uygulama" #: actions/newapplication.php:64 msgid "You must be logged in to register an application." @@ -2541,7 +2520,7 @@ msgstr "Eposta onayı silinemedi." #: actions/newgroup.php:53 msgid "New group" -msgstr "" +msgstr "Yeni grup" #: actions/newgroup.php:110 msgid "Use this form to create a new group." @@ -2549,7 +2528,7 @@ msgstr "" #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "" +msgstr "Yeni mesaj" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). #: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:499 @@ -2583,20 +2562,19 @@ msgstr "" #: actions/newmessage.php:185 lib/command.php:511 #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "%s kullanıcısına özel mesaj gönderildi." #: actions/newmessage.php:210 actions/newnotice.php:261 msgid "Ajax Error" -msgstr "" +msgstr "Ajax Hatası" #: actions/newnotice.php:69 msgid "New notice" msgstr "Yeni durum mesajı" #: actions/newnotice.php:227 -#, fuzzy msgid "Notice posted" -msgstr "Durum mesajları" +msgstr "Durum mesajı gönderildi" #: actions/noticesearch.php:68 #, php-format @@ -2612,9 +2590,9 @@ msgid "Text search" msgstr "Metin arama" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr " \"%s\" için arama sonuçları" +msgstr "%2$s üzerindeki \"%1$s\" için arama sonuçları" #: actions/noticesearch.php:121 #, php-format @@ -2655,15 +2633,15 @@ msgstr "" #: actions/oauthappssettings.php:59 msgid "You must be logged in to list your applications." -msgstr "" +msgstr "Uygulamalarınızı listelemek için giriş yapmış olmanız gerekir." #: actions/oauthappssettings.php:74 msgid "OAuth applications" -msgstr "" +msgstr "OAuth uygulamaları" #: actions/oauthappssettings.php:85 msgid "Applications you have registered" -msgstr "" +msgstr "Kaydettiğiniz uygulamalar" #: actions/oauthappssettings.php:135 #, php-format @@ -2672,16 +2650,15 @@ msgstr "" #: actions/oauthconnectionssettings.php:72 msgid "Connected applications" -msgstr "" +msgstr "Bağlı uygulamalar" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." msgstr "" #: actions/oauthconnectionssettings.php:175 -#, fuzzy msgid "You are not a user of that application." -msgstr "Bize o profili yollamadınız" +msgstr "Bu uygulamanın bir kullanıcısı değilsiniz." #: actions/oauthconnectionssettings.php:186 #, php-format @@ -2720,19 +2697,16 @@ msgstr "" #. TRANS: Client error on an API request with an unsupported data format. #: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1200 #: lib/apiaction.php:1227 lib/apiaction.php:1350 -#, fuzzy msgid "Not a supported data format." -msgstr "Desteklenmeyen görüntü dosyası biçemi." +msgstr "Desteklenen bir veri biçimi değil." #: actions/opensearch.php:64 -#, fuzzy msgid "People Search" msgstr "Kişi Arama" #: actions/opensearch.php:67 -#, fuzzy msgid "Notice Search" -msgstr "Ara" +msgstr "Durum Mesajı Arama" #: actions/othersettings.php:60 msgid "Other settings" @@ -2748,16 +2722,15 @@ msgstr "" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "" +msgstr "Bağlantıları şununla kısalt" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." -msgstr "" +msgstr "Kullanılacak otomatik kısaltma servisi." #: actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "Profil ayarları" +msgstr "Profil dizaynlarını görüntüle" #: actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -2811,14 +2784,12 @@ msgid "Change password" msgstr "Parolayı değiştir" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "Parolayı değiştir" +msgstr "Parolanızı değiştirin." #: actions/passwordsettings.php:96 actions/recoverpassword.php:231 -#, fuzzy msgid "Password change" -msgstr "Parola kaydedildi." +msgstr "Parola değiştirildi" #: actions/passwordsettings.php:104 msgid "Old password" @@ -2846,7 +2817,6 @@ msgid "Change" msgstr "Değiştir" #: actions/passwordsettings.php:154 actions/register.php:237 -#, fuzzy msgid "Password must be 6 or more characters." msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." @@ -2873,11 +2843,11 @@ msgstr "Parola kaydedildi." #. TRANS: Menu item for site administration #: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371 msgid "Paths" -msgstr "" +msgstr "Yollar" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Bu StatusNet sitesi için yol ve sunucu ayarları" #: actions/pathsadminpanel.php:157 #, fuzzy, php-format @@ -2905,7 +2875,7 @@ msgstr "" #: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 msgid "Site" -msgstr "" +msgstr "Site" #: actions/pathsadminpanel.php:238 msgid "Server" @@ -2917,12 +2887,11 @@ msgstr "" #: actions/pathsadminpanel.php:242 msgid "Path" -msgstr "" +msgstr "Yol" #: actions/pathsadminpanel.php:242 -#, fuzzy msgid "Site path" -msgstr "Yeni durum mesajı" +msgstr "Site yolu" #: actions/pathsadminpanel.php:246 msgid "Path to locales" @@ -3133,33 +3102,35 @@ msgstr "" #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:210 msgid "Tags" -msgstr "" +msgstr "Etiketler" #: actions/profilesettings.php:147 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" +"Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya " +"boşlukla ayırabilirsiniz" #: actions/profilesettings.php:151 msgid "Language" -msgstr "" +msgstr "Dil" #: actions/profilesettings.php:152 msgid "Preferred language" -msgstr "" +msgstr "Tercih edilen dil" #: actions/profilesettings.php:161 msgid "Timezone" -msgstr "" +msgstr "Zaman dilimi" #: actions/profilesettings.php:162 msgid "What timezone are you normally in?" -msgstr "" +msgstr "Normalde hangi zaman dilimi içindesiniz?" #: actions/profilesettings.php:167 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)" #: actions/profilesettings.php:228 actions/register.php:230 #, php-format @@ -3168,12 +3139,11 @@ msgstr "Yer bilgisi çok uzun (azm: %d karakter)." #: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." -msgstr "" +msgstr "Zaman dilimi seçilmedi." #: actions/profilesettings.php:241 -#, fuzzy msgid "Language is too long (max 50 chars)." -msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." +msgstr "Dil çok uzun (maksimum: 50 karakter)." #: actions/profilesettings.php:253 actions/tagother.php:178 #, php-format @@ -3442,7 +3412,7 @@ msgstr "Onay kodu hatası." #: actions/register.php:119 msgid "Registration successful" -msgstr "" +msgstr "Kayıt başarılı" #: actions/register.php:121 actions/register.php:506 lib/logingroupnav.php:85 msgid "Register" @@ -3450,7 +3420,7 @@ msgstr "Kayıt" #: actions/register.php:142 msgid "Registration not allowed." -msgstr "" +msgstr "Kayıt yapılmasına izin verilmiyor." #: actions/register.php:205 msgid "You can't register if you don't agree to the license." @@ -3521,7 +3491,7 @@ msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. #: actions/register.php:535 msgid "All rights reserved." -msgstr "" +msgstr "Tüm hakları saklıdır." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. #: actions/register.php:540 @@ -3759,7 +3729,7 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #. TRANS: Form input field label for application icon. #: actions/showapplication.php:159 lib/applicationeditform.php:173 msgid "Icon" -msgstr "" +msgstr "Simge" #. TRANS: Form input field label for application name. #: actions/showapplication.php:169 actions/version.php:197 @@ -3770,16 +3740,14 @@ msgstr "Takma ad" #. TRANS: Form input field label. #: actions/showapplication.php:178 lib/applicationeditform.php:227 -#, fuzzy msgid "Organization" -msgstr "Yer" +msgstr "Organizasyon" #. TRANS: Form input field label. #: actions/showapplication.php:187 actions/version.php:200 #: lib/applicationeditform.php:208 lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "Abonelikler" +msgstr "Tanım" #: actions/showapplication.php:192 actions/showgroup.php:436 #: lib/profileaction.php:187 @@ -3900,13 +3868,12 @@ msgstr "Kullanıcının profili yok." #: actions/showgroup.php:272 actions/tagother.php:118 #: actions/userauthorization.php:175 lib/userprofile.php:178 msgid "URL" -msgstr "" +msgstr "Bağlantı" #: actions/showgroup.php:283 actions/tagother.php:128 #: actions/userauthorization.php:187 lib/userprofile.php:195 -#, fuzzy msgid "Note" -msgstr "Durum mesajları" +msgstr "Not" #: actions/showgroup.php:293 lib/groupeditform.php:184 msgid "Aliases" @@ -3949,12 +3916,11 @@ msgstr "" #: actions/showgroup.php:404 msgid "All members" -msgstr "" +msgstr "Tüm üyeler" #: actions/showgroup.php:439 -#, fuzzy msgid "Created" -msgstr "Yarat" +msgstr "Oluşturuldu" #: actions/showgroup.php:455 #, php-format @@ -3977,12 +3943,11 @@ msgstr "" #: actions/showgroup.php:489 msgid "Admins" -msgstr "" +msgstr "Yöneticiler" #: actions/showmessage.php:81 -#, fuzzy msgid "No such message." -msgstr "Böyle bir kullanıcı yok." +msgstr "Böyle bir mesaj yok." #: actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." @@ -3999,9 +3964,8 @@ msgid "Message from %1$s on %2$s" msgstr "" #: actions/shownotice.php:90 -#, fuzzy msgid "Notice deleted." -msgstr "Durum mesajları" +msgstr "Durum mesajı silindi." #: actions/showstream.php:73 #, php-format @@ -4115,12 +4079,11 @@ msgstr "" #: actions/siteadminpanel.php:221 msgid "General" -msgstr "" +msgstr "Genel" #: actions/siteadminpanel.php:224 -#, fuzzy msgid "Site name" -msgstr "Yeni durum mesajı" +msgstr "Site ismi" #: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" @@ -4148,13 +4111,12 @@ msgid "Contact email address for your site" msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." #: actions/siteadminpanel.php:245 -#, fuzzy msgid "Local" -msgstr "Yer" +msgstr "Yerel" #: actions/siteadminpanel.php:256 msgid "Default timezone" -msgstr "" +msgstr "Öntanımlı saat dilimi" #: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." @@ -4162,7 +4124,7 @@ msgstr "" #: actions/siteadminpanel.php:262 msgid "Default language" -msgstr "" +msgstr "Öntanımlı dil" #: actions/siteadminpanel.php:263 msgid "Site language when autodetection from browser settings is not available" @@ -5060,15 +5022,13 @@ msgstr "Avatar eklemede hata oluştu" #. TRANS: Client exception thrown if a notice contains too many characters. #: classes/Notice.php:265 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Durum mesajını kaydederken hata oluştu. Çok uzun." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. #: classes/Notice.php:270 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Durum mesajını kaydederken hata oluştu. Bilinmeyen kullanıcı." #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. #: classes/Notice.php:276 @@ -5128,15 +5088,13 @@ msgstr "" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. #: classes/Remote_profile.php:54 -#, fuzzy msgid "Missing profile." -msgstr "Kullanıcının profili yok." +msgstr "Profil yok." #. TRANS: Exception thrown when a tag cannot be saved. #: classes/Status_network.php:338 -#, fuzzy msgid "Unable to save tag." -msgstr "Durum mesajını kaydederken hata oluştu." +msgstr "Etiket kaydedilemedi." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #: classes/Subscription.php:75 lib/oauthstore.php:466 @@ -5145,9 +5103,8 @@ msgstr "" #. TRANS: Exception thrown when trying to subscribe while already subscribed. #: classes/Subscription.php:80 -#, fuzzy msgid "Already subscribed!" -msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" +msgstr "Zaten abone olunmuş!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. #: classes/Subscription.php:85 @@ -5210,21 +5167,18 @@ msgstr "Profil kaydedilemedi." #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:104 -#, fuzzy msgid "Change your profile settings" -msgstr "Profil ayarları" +msgstr "Profil ayarlarınızı değiştirin" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:111 -#, fuzzy msgid "Upload an avatar" -msgstr "Avatar güncellemede hata." +msgstr "Bir kullanıcı resmi yükle" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:118 -#, fuzzy msgid "Change your password" -msgstr "Parolayı değiştir" +msgstr "Parolanızı değiştirin" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:125 @@ -5233,19 +5187,18 @@ msgstr "" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:132 -#, fuzzy msgid "Design your profile" -msgstr "Kullanıcının profili yok." +msgstr "Profilinizi tasarlayın" #. TRANS: Link title attribute in user account settings menu. #: lib/accountsettingsaction.php:139 msgid "Other options" -msgstr "" +msgstr "Diğer seçenekler" #. TRANS: Link description in user account settings menu. #: lib/accountsettingsaction.php:141 msgid "Other" -msgstr "" +msgstr "Diğer" #. TRANS: Page title. %1$s is the title, %2$s is the site name. #: lib/action.php:148 @@ -5256,7 +5209,7 @@ msgstr "%1$s'in %2$s'deki durum mesajları " #. TRANS: Page title for a page without a title set. #: lib/action.php:164 msgid "Untitled page" -msgstr "" +msgstr "Başlıksız sayfa" #. TRANS: DT element for primary navigation menu. String is hidden in default CSS. #: lib/action.php:448 @@ -5267,11 +5220,10 @@ msgstr "" #: lib/action.php:454 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" -msgstr "" +msgstr "Kişisel profil ve arkadaşların zaman çizelgesi" #. TRANS: Main menu option when logged in for access to personal profile and friends timeline #: lib/action.php:457 -#, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Kişisel" @@ -5284,10 +5236,9 @@ msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değişt #. TRANS: Tooltip for main menu option "Services" #: lib/action.php:464 -#, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +msgstr "Servislere bağlan" #. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services #: lib/action.php:467 @@ -5305,7 +5256,7 @@ msgstr "Site yapılandırmasını değiştir" #: lib/action.php:473 lib/groupnav.php:117 msgctxt "MENU" msgid "Admin" -msgstr "" +msgstr "Yönetim" #. TRANS: Tooltip for main menu option "Invite" #: lib/action.php:477 @@ -5313,6 +5264,8 @@ msgstr "" msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" +"%s üzerinde size katılmaları için arkadaşlarınızı ve meslektaşlarınızı davet " +"edin" #. TRANS: Main menu option when logged in and invitations are allowed for inviting new users #: lib/action.php:480 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index f67f06333b..52b750ce89 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:30+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3058,7 +3058,7 @@ msgstr "Це недійсний особистий теґ: %s." #: actions/peopletag.php:142 #, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "Користувачі з особистим теґом %1$s — сторінка %2$d" +msgstr "Користувачі з особистим теґом «%1$s» — сторінка %2$d" #: actions/postnotice.php:95 msgid "Invalid notice content." @@ -5038,7 +5038,7 @@ msgstr "Не вдалося залишити спільноту." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "Ід. номер профілю %s не є дійсним." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5821,7 +5821,7 @@ msgstr "Відкликати" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "авторський елемент повинен містити назву елемента." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -7557,9 +7557,3 @@ msgstr "" #, php-format msgid "%d entries in backup." msgstr "У резервному файлі збережено %d дописів." - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s додав допис %s до списку обраних." - -#~ msgid "%s is now following %s." -#~ msgstr "%s тепер слідкує за %s." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index bca81310e8..eec90e3c45 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:32+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-09-28 19:21:04+0000\n" +"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -7358,9 +7358,3 @@ msgstr "没有用户被指定;使用备份用户。\n" #, php-format msgid "%d entries in backup." msgstr "备份中有 %d 个条目。\n" - -#~ msgid "%s marked notice %s as a favorite." -#~ msgstr "%s 将消息 %s 添加到了收藏。" - -#~ msgid "%s is now following %s." -#~ msgstr "%s 现在开始关注 %s." diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index c1e83ee5ac..9343ee5ede 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..6aab6d5787 --- /dev/null +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: APCPlugin.php:115 +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Ober gant an APC grubuilh " +"kemm-digemm evit krubuilhañ disoc'hoù ar rekedoù." diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 87b3d6d4e9..e3b8ec8b2b 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1a143d8541..92f342b378 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6726759eea..67305afc1a 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 54c93cfe67..14a1832613 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index b187afed72..088acc9b01 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1b5e6fadd1..5e3f15b5a6 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8f35461900..c65407320d 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2b4a0f3392..392a204117 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:15:20+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 55c071e1c8..1198fefcb4 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f7c292a9dc..2aeb21ab09 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 58d8ecec38..7996ea2f41 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b6044f1ea6..690be13bd6 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5aa555972a..f363d29c49 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 50137acfbc..7c27e264cb 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 6871677923..5b64960c89 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index b1ee5549ab..f9a8d4a7a6 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:20+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1d5778a4fd..d5df371b72 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f3c0c35ce6..e658cb074a 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 3eb92f937e..1434535cb9 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 new file mode 100644 index 0000000000..f9b171875c --- /dev/null +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Italian (Italiano) +# Expored from translatewiki.net +# +# Author: Milocasagrande +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" +"Language-Team: Italian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: it\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Configurazione AdSene" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plugin per aggiungere Google Adsense ai siti StatusNet" + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Impostazioni AdSense per questo sito StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID client" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID client Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL script Ad" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL script (avanzato)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Rettangolo medio" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Rettangolo" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 55c1da7ff9..003b60c02e 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 7dc6fad7f3..fa9e1fe1b4 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 23e1377697..65197bc021 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 246ea8cf8f..044ea0bcc7 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 dde8044735..0f289d4339 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 5f48e074d3..2d71b55aa1 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0089ae40e4..0615bbc7d5 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index c0f446205d..ff07f17d7b 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..8b91051a08 --- /dev/null +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,107 @@ +# Translation of StatusNet - AnonymousFave to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "marcado como favorito una vez" +msgstr[1] "marcado como favorito %d veces" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "No se pudo crear sesión de usuario anónimo." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Permitir a usuarios anónimos marcar mensajes como favoritos." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"No fue posible marcar el mensaje como favorito. Por favor, asegúrate de que " +"las cookies están habilitadas en tu navegador." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu token de sesión. Por favor, inténtalo de nuevo." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "¡Este mensaje ya está en favoritos!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "No se pudo crear favorito." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Eliminar de la lista de favoritos." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "No se pudo actualizar el la cuenta favorita para el mensaje de ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "No se pudo crear una cuenta favorita para el mensaje de ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"¡No es posible eliminar el mensaje de entre los favoritos! Por favor, " +"asegúrate de que las cookies estén habilitadas en tu navegador." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "¡Este mensaje no es un favorito!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "No se pudo borrar el favorito." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Añadir a favoritos" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..eb0ef34b94 --- /dev/null +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - AnonymousFave to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "favorite un vice" +msgstr[1] "favorite %d vices" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Non poteva crear session de usator anonyme." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Permitter a usatores anonyme de favorir notas." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Non poteva favorir le nota! Per favor assecura te que tu navigator ha le " +"cookies activate." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Iste nota es ja favorite!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Non poteva crear le favorite." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Disfavorir favorite" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "Non poteva actualisar le numero de favorites pro le ID de nota %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "Non poteva crear un numero de favorites pro le ID de nota %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Non poteva disfavorir le nota! Per favor assecura te que tu navigator ha le " +"cookies activate." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Iste nota non es favorite!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Non poteva deler le favorite." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Adder al favorites" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..c7d0157fe4 --- /dev/null +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,106 @@ +# Translation of StatusNet - AnonymousFave to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "бендисано еднаш" +msgstr[1] "бендисано %d пати" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Не можев да создадам анонимна корисничка сесија." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Дозволи анонимни корисници да бендисуваат забелешки." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не можев да ја бендисам заблешката. Проверете дали имате овозможено колачиња " +"во прелистувачот." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Веќе сте ја бендисале оваа забелешка!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Не можев да создадам бендисана забелешка." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Одбендисај бендисана" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "Не можев да го поновам бројот на бендисувања за забелешката со ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "Не можев создадам бројач на бендисувања за забелешката со ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не можев да ја одбендисам забелешката! Проверете дали имате овозможено " +"колачиња во прелистувачот." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Оваа забелешка не Ви е бендисана!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Не можев да ја избришам бендисаната забелешка." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Додај во бендисани" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..e729adefb8 --- /dev/null +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - AnonymousFave to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "één keer als favoriet aangemerkt" +msgstr[1] "%d keer als favoriet aangemerkt" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Het was niet mogelijk een anonieme gebruikerssessie aan te maken." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Staat anonieme gebruikers toe mededelingen als favoriet aan te merken." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"De mededeling kon niet als favoriet aangemerkt worden. Zorg dat uw browser " +"het gebruik van cookies toestaat." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Deze mededeling staat al in uw favorietenlijst." + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Het was niet mogelijk een favoriet aan te maken." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Van favorietenlijst verwijderen" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" +"Het was niet mogelijk de telling voor aantal favorieten bij te werken voor " +"de mededeling met ID %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" +"Het was niet mogelijk de telling voor aantal favorieten aan te maken voor de " +"mededeling met ID %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"De mededeling kon niet als favoriet verwijderd worden. Zorg dat uw browser " +"het gebruik van cookies toestaat." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Deze mededeling staat niet op uw favorietenlijst." + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "" +"Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Aan favorieten toevoegen" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..57497d2816 --- /dev/null +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,111 @@ +# Translation of StatusNet - AnonymousFave to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"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: Tally for number of times a notice was favored. +#. TRANS: %d is the number of times a notice was favored. +#: AnonymousFavePlugin.php:193 +#, php-format +msgid "favored once" +msgid_plural "favored %d times" +msgstr[0] "обране один раз" +msgstr[1] "обране %d рази" +msgstr[2] "обране %d разів" + +#. TRANS: Server exception. +#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +msgid "Couldn't create anonymous user session." +msgstr "Не вдалося створити сесію анонімного користувача." + +#. TRANS: Plugin description. +#: AnonymousFavePlugin.php:287 +msgid "Allow anonymous users to favorite notices." +msgstr "Дозволити анонімнім користувачам позначати повідомлення як обрані." + +#. TRANS: Client error. +#: anonfavor.php:60 +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не вдалося позначити повідомлення як обране! Будь ласка, переконайтеся, що у " +"вашому браузері увімкнено кукі." + +#. TRANS: Client error. +#: anonfavor.php:71 anondisfavor.php:72 +msgid "There was a problem with your session token. Try again, please." +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." + +#. TRANS: Client error. +#: anonfavor.php:78 +msgid "This notice is already a favorite!" +msgstr "Цей допис вже є обраним!" + +#. TRANS: Server error. +#: anonfavor.php:85 +msgid "Could not create favorite." +msgstr "Не вдалося позначити як обране." + +#. TRANS: Title. +#: anonfavor.php:95 +msgid "Disfavor favorite" +msgstr "Видалити з обраних" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:155 Fave_tally.php:184 +#, php-format +msgid "Couldn't update favorite tally for notice ID %d." +msgstr "" +"Не вдалося оновити кількість позначок «обране» для допису за номером %d." + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#: Fave_tally.php:215 +#, php-format +msgid "Couldn't create favorite tally for notice ID %d." +msgstr "" +"Не вдалося створити лічильник кількості позначок «обране» для допису за " +"номером %d." + +#. TRANS: Client error. +#: anondisfavor.php:61 +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" +"Не вдалося видалити повідомлення зі списку обраних! Будь ласка, " +"переконайтеся, що у вашому браузері увімкнено кукі." + +#. TRANS: Client error. +#: anondisfavor.php:82 +msgid "This notice is not a favorite!" +msgstr "Цей допис не є обраним!" + +#. TRANS: Server error. +#: anondisfavor.php:91 +msgid "Could not delete favorite." +msgstr "Не можу видалити допис зі списку обраних." + +#. TRANS: Title. +#: anondisfavor.php:101 +msgid "Add to favorites" +msgstr "Додати до обраних" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 8b89da3611..644420f4d8 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 8925554f45..ff946f8bc9 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4ded500573..79d73805e5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4f7cda6acf..1ccdbcc11e 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8c4c36bc97..996e3b085e 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 9b23f16436..6d29637e3e 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 23a83fb634..9f6ac5b828 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 da02536e7c..ff12e5034e 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:36+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:12+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 9e48c45533..a4f282849c 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5149425c7a..7dd4fe2665 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index d336353736..59fa0dbe4d 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 79ad4b2a90..2af8c82a52 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index ece3747911..70f03d99bd 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index 5c375d341a..4ec766ba19 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 be5a386ee2..64636623fa 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e7c0276828..b8c2446e9f 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 3f47811801..2a3984b277 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 115343780b..1c7432068c 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bd2596738c..429ee6b3d9 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:35+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d308a7c3ee..8b318190f9 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 31::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:52+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 00c5405d94..937f8f08a8 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po index fcf460cee7..335e4df0ef 100644 --- a/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/es/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 24a9f3ddb6..9487dca83e 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index df27635d9d..2e4e8847fd 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 17743e76d9..ec6fdcd002 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index fea2d5559c..6083396153 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 457d4895e4..6f8b319bc0 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po index 942bcd659e..bad97ab2a2 100644 --- a/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/pt_BR/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index aa637d376d..3c94b42c45 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index 5f6b22c769..1e891d40cd 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 1748170f18..05b3f1dd7c 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po index 6c771ca939..82fd39598a 100644 --- a/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/zh_CN/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 33::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:13+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 23ad4d902c..bcd7e65149 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po new file mode 100644 index 0000000000..40ba326092 --- /dev/null +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -0,0 +1,95 @@ +# Translation of StatusNet - Blacklist to Breton (Brezhoneg) +# Expored 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 - Blacklist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-blacklist\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlacklistPlugin.php:148 +#, php-format +msgid "You may not register with homepage '%s'." +msgstr "Ne c'hellit ket en em enskrivañ gant ar bajenn degemer \"%s\"." + +#: BlacklistPlugin.php:158 +#, php-format +msgid "You may not register with nickname '%s'." +msgstr "Ne c'hellit ket en em enskrivañ gant al lesanv \"%s\"." + +#: BlacklistPlugin.php:182 +#, php-format +msgid "You may not use homepage '%s'." +msgstr "Ne c'hellit ket implij ar bajenn degemer \"%s\"." + +#: BlacklistPlugin.php:192 +#, php-format +msgid "You may not use nickname '%s'." +msgstr "Ne c'hellit ket implij al lesanv \"%s\"." + +#: BlacklistPlugin.php:234 +#, php-format +msgid "You may not use URL \"%s\" in notices." +msgstr "Ne c'hellit ket implij an URL \"%s\" en alioù." + +#: BlacklistPlugin.php:338 +msgid "Keeps a blacklist of forbidden nickname and URL patterns." +msgstr "" + +#: BlacklistPlugin.php:375 blacklistadminpanel.php:52 +msgid "Blacklist" +msgstr "" + +#: BlacklistPlugin.php:376 +msgid "Blacklist configuration" +msgstr "" + +#: BlacklistPlugin.php:402 +msgid "Add this nickname pattern to blacklist" +msgstr "" + +#: BlacklistPlugin.php:411 +msgid "Add this homepage pattern to blacklist" +msgstr "" + +#: blacklistadminpanel.php:62 +msgid "Blacklisted URLs and nicknames" +msgstr "" + +#: blacklistadminpanel.php:174 +msgid "Nicknames" +msgstr "Lesanvioù" + +#: blacklistadminpanel.php:176 +msgid "Patterns of nicknames to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:182 +msgid "URLs" +msgstr "URLoù" + +#: blacklistadminpanel.php:184 +msgid "Patterns of URLs to block, one per line" +msgstr "" + +#: blacklistadminpanel.php:198 +msgid "Save" +msgstr "Enrollañ" + +#: blacklistadminpanel.php:201 +msgid "Save site settings" +msgstr "Enrollañ arventennoù al lec'hienn" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index e07e52eaf0..09799df241 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" @@ -45,39 +45,40 @@ msgstr "No puedes utilizar el nombre de usuario '%s'." #: BlacklistPlugin.php:234 #, php-format msgid "You may not use URL \"%s\" in notices." -msgstr "" +msgstr "No puedes utilizar el URL \"%s\" en los mensajes." #: BlacklistPlugin.php:338 msgid "Keeps a blacklist of forbidden nickname and URL patterns." msgstr "" +"Mantiene una lista negra de patrones de nombres de usuario y URL prohibidos." #: BlacklistPlugin.php:375 blacklistadminpanel.php:52 msgid "Blacklist" -msgstr "" +msgstr "Lista negra" #: BlacklistPlugin.php:376 msgid "Blacklist configuration" -msgstr "" +msgstr "Configuración de lista negra" #: BlacklistPlugin.php:402 msgid "Add this nickname pattern to blacklist" -msgstr "" +msgstr "Añadir este patrón de nombre de usuario a la lista negra" #: BlacklistPlugin.php:411 msgid "Add this homepage pattern to blacklist" -msgstr "" +msgstr "Añadir este patrón de página principal a la lista negra" #: blacklistadminpanel.php:62 msgid "Blacklisted URLs and nicknames" -msgstr "" +msgstr "URL y nombres de usuario incluidos en la lista negra" #: blacklistadminpanel.php:174 msgid "Nicknames" -msgstr "" +msgstr "Nombres de usuario" #: blacklistadminpanel.php:176 msgid "Patterns of nicknames to block, one per line" -msgstr "" +msgstr "Patrones de nombres de usuario a bloquear, uno por línea" #: blacklistadminpanel.php:182 msgid "URLs" @@ -85,7 +86,7 @@ msgstr "URLs" #: blacklistadminpanel.php:184 msgid "Patterns of URLs to block, one per line" -msgstr "" +msgstr "Patrones de URL a bloquear, uno por línea" #: blacklistadminpanel.php:198 msgid "Save" @@ -93,4 +94,4 @@ msgstr "Guardar" #: blacklistadminpanel.php:201 msgid "Save site settings" -msgstr "" +msgstr "Guardar la configuración del sitio" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 36266917d6..f6a1d195c6 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/gl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po index 1c95072ec0..daf89cc503 100644 --- a/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/gl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\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 20e15071d0..82b37a1a20 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 eedc24cd67..a1866c1dca 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b2f40c960f..21e731ceec 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index e594a009d1..8fb53e8461 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1cedbfe500..58661e647b 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 55a0f9656b..ab31dc9092 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..236653fd49 --- /dev/null +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Astenn da arnodiñ doare pajennaozañ ar bruderezh." diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..9fecedcdef --- /dev/null +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlankAd to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlankAdPlugin.php:127 +msgid "Plugin for testing ad layout." +msgstr "Extensión para la probar la maquetación de publicidad." diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index f8cd9718b0..8153234d53 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index d0bc05c4ba..b887c6961f 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 439633c746..c01f4ad204 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index b7d294fc3d..fd7bf15a44 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 09de4e9c76..97e5a108b8 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 cbf11bca10..959090e25c 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e73576b70f..87d624dc73 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1ddce32bb7..37539ce5a6 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 1e187badd8..ac2da9e728 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index afdb8bfe8a..5f69390236 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..d8d773e501 --- /dev/null +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +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/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 4563cce2cf..e55731db12 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 3cdbcdec58..c3ffd56977 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 10525a781c..40a7b37371 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 1180fc1d06..9b0b138cc4 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 20a1cc5e97..26d20bc5c0 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 9efacdbe0c..c59c80adbc 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-94 95::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index 402a9d4847..e8dff72d08 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:13+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 34c42385f3..644196f564 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index 020f295ced..07d0419fae 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 17e0770614..90c25580d7 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index e3fb74b271..943a490c89 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index da0e2c36de..92fe1b3420 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index b91fe28461..c0700465c1 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 6f7833c8e5..8c0123c0fd 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index be78b92230..44a967f9d7 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index 988c097d4c..c210ae2f99 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 731edf4538..f496355821 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 89dee4f27a..71a0998144 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 35::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 13ea401073..d28eb8fab3 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..1b6976a064 --- /dev/null +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,76 @@ +# Translation of StatusNet - CasAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Locos epraix +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:83 +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:85 +msgid "Login or register with CAS." +msgstr "Inicia sesión o regístrate con CAS." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#: CasAuthenticationPlugin.php:101 +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(¿Tienes una cuenta con CAS? Prueba nuestro [Inicio de usuario CAS](%%action." +"caslogin%%)!)" + +#: CasAuthenticationPlugin.php:128 +msgid "Specifying a server is required." +msgstr "Se requiere especificar un servidor." + +#: CasAuthenticationPlugin.php:131 +msgid "Specifying a port is required." +msgstr "Se requiere especificar un servidor." + +#: CasAuthenticationPlugin.php:134 +msgid "Specifying a path is required." +msgstr "Se requiere especificar una ruta." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +#: CasAuthenticationPlugin.php:154 +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"La extensión de Autenticación CAS permite a StatusNet manejar autenticación " +"a través de CAS (Servicio de Autenticación Central)." + +#: caslogin.php:28 +msgid "Already logged in." +msgstr "Ya has iniciado sesión" + +#: caslogin.php:39 +msgid "Incorrect username or password." +msgstr "Nombre de usuario o contraseña incorrectos." + +#: caslogin.php:45 +msgid "Error setting user. You are probably not authorized." +msgstr "Error al configurar el usuario. Posiblemente no tengas autorización." diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index ce0c8015fc..4469a54efd 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2eecc24d01..eeb584df6e 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 58235164a8..a43436225d 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d1a72ef6e2..741092215f 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d3a8604b19..e37367a787 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index b159c7a963..cf402ab536 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:17+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 63820c98fc..d079f314dc 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 509f1931b1..bc376527ae 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..9443e654e0 --- /dev/null +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ClientSideShortenPlugin.php:74 +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten hace que el formulario de mensaje de la interfaz web " +"acorte las URL automáticamente conforme se introducen t antes de que se " +"envíe el mensaje." + +#: shorten.php:55 +msgid "'text' argument must be specified." +msgstr "Debe especificarse el argumento 'texto'." diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index b69826609f..9cc6033c28 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index bfaf2d8473..896ae4c855 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index ba5cb2c5a1..3aef629397 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e44714c347..3a95085657 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2ab860c203..daceb78ba8 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index f681b4e153..663b11b2e0 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8088a8f2a5..8337536b6a 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f4202abb13..256d523036 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 36::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:18+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 476fbfc58c..0a5054c508 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..096795a5bf --- /dev/null +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-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" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet/" +"Bayeux." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 7aaef14c82..8ef1d1ebc1 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 740eb543b5..cd2616f7c9 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index caa63ae346..4bff9a14ae 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 493457278f..b44f97ed16 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-53 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..624248095f --- /dev/null +++ b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Brazilian Portuguese (Português do Brasil) +# Expored from translatewiki.net +# +# Author: Giro720 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" +"Language-Team: Brazilian Portuguese \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-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" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "" +"Plugin para realizar atualizações em \"tempo real\" usando Comet/Bayeux." diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index a41a7236d8..c58aab85c6 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 8df01db34a..b6b4beb58e 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:24+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 25::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po index fd7721e261..ce870624c3 100644 --- a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 2010-09-28 19:23:14+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 6b0fa74a75..aa193f2a7d 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index aca6099adc..727ef3f640 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 26faae1b3d..e97cb6edab 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 8863bc1d57..7bb1b13403 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 426b5c762b..ea16c16276 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:33+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 7f0b9d4582..acfee4cd59 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 8c813dfd8b..71c9d2f7bc 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 5d0a6f859e..9877ab67cf 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index 9baf2a61e9..c22fcdffe5 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+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: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 58f1acbb15..3359201d17 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 9630f35b12..6b0df007a2 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 5a97121aa5..f52c1b4b72 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index a6fe2cc06c..2905e01f60 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 37::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 8b96fc773e..a32e645c9b 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..e43e639fc9 --- /dev/null +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DiskCache to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DiskCachePlugin.php:175 +msgid "Plugin to implement cache interface with disk files." +msgstr "Extensión para implementar interfaz de caché con archivos de disco." diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 3767c03717..618a665e9e 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 9bca2677df..a2e46af9b6 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 06::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index 93ccaad68e..bc62e4ee54 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index e6d235c27a..27bc10aae9 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 06::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 65350c4c89..6453395377 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6a7e96cad0..7f54aa1ce6 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 27::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:37:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 415cd180a0..aff420a52a 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..0a64e7e0e7 --- /dev/null +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - Disqus to Breton (Brezhoneg) +# Expored 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 - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Evezhiadennoù" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Implijit Disqus evit ouzhpennañ " +"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..3d49a5d974 --- /dev/null +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Por favor, habilita JavaScript para ver los [comentarios con tecnología de " +"Disqus](http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "Comentarios con tecnología de " + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Comentarios" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Usar Disqus para añadir comentarios a las " +"páginas de mensajes." diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 574a27090c..e1a69f75c1 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -36,7 +36,7 @@ msgstr "Commentos actionate per " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Commentos" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..5bfb4d394a --- /dev/null +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" +"Вклучете го JavaScript за да можете да ги прегледувате [коментарите " +"овозможени од Disqus](http://disqus.com/?ref_noscript=%s)." + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "Коментарите ги овозможува " + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Коментари" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Користи Disqus за додавање на коментари " +"во страниците на забелешките." diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index f79e0736ba..46f0c31038 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -36,7 +36,7 @@ msgstr "Reacties powered by " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Reacties" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..3a961bd888 --- /dev/null +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -0,0 +1,47 @@ +# Translation of StatusNet - Disqus to Russian (Русский) +# Expored from translatewiki.net +# +# Author: MaxSem +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"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" + +#: DisqusPlugin.php:142 +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#: DisqusPlugin.php:149 +msgid "Comments powered by " +msgstr "" + +#: DisqusPlugin.php:201 +msgid "Comments" +msgstr "Комментарии" + +#: DisqusPlugin.php:241 +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" +"Использование Disqus для добавления " +"комментариев на страницы уведомления." diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index 6651517023..c5c76008c4 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -36,7 +36,7 @@ msgstr "Mga puna na pinatatakbo ng " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Mga puna" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 1c650e8d92..e7a581fe5f 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:15+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:14+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" @@ -37,7 +37,7 @@ msgstr "Коментування можливе завдяки сервісу " #: DisqusPlugin.php:201 msgid "Comments" -msgstr "" +msgstr "Коментарі" #: DisqusPlugin.php:241 msgid "" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index f034cf6400..9ce8c61a73 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..8e4497c65d --- /dev/null +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Breton (Brezhoneg) +# Expored 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 - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Implijit Echo evit ouzhpennañ " +"evezhiadennoù d'ar pajennoù alioù." diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..518984e3d7 --- /dev/null +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Echo to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EchoPlugin.php:111 +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Usar Echo para añadir comentarios a " +"las páginas de mensajes." diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index f64b7b93a2..ad343e0488 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index f87ea0178d..aaf555c0fe 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 20eed9b832..b5aa39c1f9 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d73d1f08ee..9f945e9a64 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f3c0eac138..b558e09ea4 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 009b115bcb..82a14dd561 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 dcf706c6c9..3fb5f1a4ab 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 61ec08a67d..01f9dc5ef1 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5b6b39b4f5..a1ae2a9e34 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 40::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6d22b23668..574852edf4 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..901bb21afb --- /dev/null +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - EmailAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: EmailAuthenticationPlugin.php:60 +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"La extensión de Autenticación de Correo Electrónico permite a los usuarios " +"iniciar sesión con su dirección de correo electrónico." diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index ab07093799..76579f86f9 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index de9fe900c2..36a70a3731 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index d224d5c845..32857987e9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4f0b4b5b66..e537f1d279 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d53d879f31..cd91edc097 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 a96a9a3177..1a9e8b58ec 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 66db11f31f..3f613486b5 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 93e5c83931..a6f1c92fa4 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 797ffe6d8b..e2a1f52fde 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 cbf3345d46..bb48f9c1da 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f7b017f445..19906597e5 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:41:56+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 11072ca60f..09e3003814 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..99f5a08ded --- /dev/null +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -0,0 +1,536 @@ +# Translation of StatusNet - Facebook to Breton (Brezhoneg) +# Expored 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 - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:43+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: facebookutil.php:425 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" +"Rankout a rit bezañ kevreet war Facebook evit implijout Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +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." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "" +"Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " +"gont." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Ur gudenn dizanv a zo bet." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Kefluniadur ar gont Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Dibarzhioù kevreañ" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, 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: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Krouiñ ur gont nevez" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Krouiñ un implijer nevez gant al lesanv-se." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Lesanv nevez" + +#: FBConnectAuth.php:193 +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. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Krouiñ" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Kevreañ d'ur gont a zo dioutañ" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "Lesanv a zo dioutañ" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Ger-tremen" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Kevreañ" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "N'eo ket aotreet krouiñ kontoù." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "N'eo ket reizh ar c'hod pedadenn." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Lesanv nann-aotreet." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "" + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Kevreañ" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Kas un ali" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "Penaos 'mañ kont, %s ?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Arouezennoù a chom" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Kas" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s hag e vignoned" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Ok, en ober !" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Mont hebiou" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Pajennadur" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "War-lerc'h" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "A-raok" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Trugarez da bediñ ho mignoned da implijout %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Pedadennoù a zo bet kaset d'an implijerien da-heul :" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Pedet oc'h bet da %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Pedit ho mignoned da implijout %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Mignoned hag a implij dija %s :" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Kas pedadennoù" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "Implijer Facebook Connect" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "Kevreañ pe en em enskrivañ dre Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "Arventennoù evit Facebook Connect" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "Kevreet oc'h dija." + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "Kevreit gant ho kont Facebook" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "Kevreadenn Facebook" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "Dibosupl eo dilemel an implijer Facebook." + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Degemer" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Degemer" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Pediñ" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Pediñ" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Arventennoù" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "ur gont nevez." + +#: facebookaction.php:242 +msgid "Register" +msgstr "En em enskrivañ" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Lesanv" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Kevreañ" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "Ha kollet o peus ho ker-tremen ?" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "Danvez ebet en ali !" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Alioù" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Enrollañ" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "Termeniñ ur ger-tremen" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po new file mode 100644 index 0000000000..8b1ab93ca7 --- /dev/null +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -0,0 +1,558 @@ +# Translation of StatusNet - Facebook to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Locos epraix +# Author: Peter17 +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Facebook\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-facebook\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: facebookutil.php:425 +#, fuzzy, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %2$s, and have disabled the Facebook application for " +"your account. This may be because you have removed the Facebook " +"application's authorization, or have deleted your Facebook account. You can " +"re-enable the Facebook application and automatic status updating by re-" +"installing the %2$s Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%2$s" +msgstr "" +"Hola, %$1s: Lamentamos informarte que no podemos actualizar tu estado de " +"Facebook desde %$2s y hemos inhabilitado la aplicación de Facebook en tu " +"cuenta. Esto puede deberse a que has eliminado la autorización de Facebook o " +"porque hax borrado tu cuenta de Facebook. Puedes volver a habilitar la " +"aplicación de Facebook y la actualización automática de estados mediante la " +"reinstalación de la aplicación de Facebook %2$s." + +#: FBConnectAuth.php:51 +msgid "You must be logged into Facebook to use Facebook Connect." +msgstr "" +"Debes haber iniciado sesión en Facebook para poder utilizar Facebook Connect." + +#: FBConnectAuth.php:75 +msgid "There is already a local user linked with this Facebook account." +msgstr "Ya hay un usuario local vinculado a esta cuenta de Facebook." + +#: FBConnectAuth.php:87 FBConnectSettings.php:166 +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu token de sesión. Por favor, inténtalo de nuevo." + +#: FBConnectAuth.php:92 +msgid "You can't register if you don't agree to the license." +msgstr "No puedes registrarte si no estás de acuerdo con la licencia." + +#: FBConnectAuth.php:102 +msgid "An unknown error has occured." +msgstr "Ha ocurrido un error desconocido." + +#. TRANS: %s is the site name. +#: FBConnectAuth.php:117 +#, php-format +msgid "" +"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 account, or connect " +"with your existing account, if you have one." +msgstr "" +"Esta es la primera vez que inicias sesión en %s, así que debemos conectar " +"Facebook a una cuenta local. Puedes crear una cuenta nueva o conectarte con " +"tu cuenta, de tenerla." + +#. TRANS: Page title. +#: FBConnectAuth.php:124 +msgid "Facebook Account Setup" +msgstr "Configuración de cuenta de Facebook" + +#. TRANS: Legend. +#: FBConnectAuth.php:158 +msgid "Connection options" +msgstr "Opciones de conexión" + +#. TRANS: %s is the name of the license used by the user for their status updates. +#: FBConnectAuth.php:168 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Mi texto y archivos están disponibles en %s, salvo estos datos privados: " +"contraseña, dirección de correo electrónico, dirección de mensajería " +"instantánea y número de teléfono." + +#. TRANS: Legend. +#: FBConnectAuth.php:185 +msgid "Create new account" +msgstr "Crear cuenta nueva" + +#: FBConnectAuth.php:187 +msgid "Create a new user with this nickname." +msgstr "Crear un nuevo usuario con este nombre de usuario." + +#. TRANS: Field label. +#: FBConnectAuth.php:191 +msgid "New nickname" +msgstr "Nuevo nombre de usuario" + +#: FBConnectAuth.php:193 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" +"1-64 letras en minúscula o números, sin signos de puntuación o espacios" + +#. TRANS: Submit button. +#: FBConnectAuth.php:197 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crear" + +#: FBConnectAuth.php:203 +msgid "Connect existing account" +msgstr "Conectar cuenta existente" + +#: FBConnectAuth.php:205 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Facebook." +msgstr "" +"Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " +"conectarte a tu Facebook." + +#. TRANS: Field label. +#: FBConnectAuth.php:209 +msgid "Existing nickname" +msgstr "El nombre de usuario ya existe" + +#: FBConnectAuth.php:212 facebookaction.php:277 +msgid "Password" +msgstr "Contraseña" + +#. TRANS: Submit button. +#: FBConnectAuth.php:216 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Conectar" + +#. TRANS: Client error trying to register with registrations not allowed. +#. TRANS: Client error trying to register with registrations 'invite only'. +#: FBConnectAuth.php:233 FBConnectAuth.php:243 +msgid "Registration not allowed." +msgstr "Registro de usuario no permitido." + +#. TRANS: Client error trying to register with an invalid invitation code. +#: FBConnectAuth.php:251 +msgid "Not a valid invitation code." +msgstr "No es un código de invitación válido." + +#: FBConnectAuth.php:261 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"El nombre de usuario debe tener sólo letras minúsculas y números, sin " +"espacios." + +#: FBConnectAuth.php:266 +msgid "Nickname not allowed." +msgstr "Nombre de usuario no autorizado." + +#: FBConnectAuth.php:271 +msgid "Nickname already in use. Try another one." +msgstr "El nombre de usuario ya existe. Prueba con otro." + +#: FBConnectAuth.php:289 FBConnectAuth.php:323 FBConnectAuth.php:343 +msgid "Error connecting user to Facebook." +msgstr "Error de conexión del usuario a Facebook." + +#: FBConnectAuth.php:309 +msgid "Invalid username or password." +msgstr "Nombre de usuario o contraseña inválidos." + +#. TRANS: Page title. +#: facebooklogin.php:90 facebookaction.php:255 +msgid "Login" +msgstr "Iniciar sesión" + +#. TRANS: Legend. +#: facebooknoticeform.php:144 +msgid "Send a notice" +msgstr "Enviar un mensaje" + +#. TRANS: Field label. +#: facebooknoticeform.php:157 +#, php-format +msgid "What's up, %s?" +msgstr "¿Qué tal, %s?" + +#: facebooknoticeform.php:169 +msgid "Available characters" +msgstr "Caracteres disponibles" + +#. TRANS: Button text. +#: facebooknoticeform.php:196 +msgctxt "BUTTON" +msgid "Send" +msgstr "Enviar" + +#: facebookhome.php:103 +msgid "Server error: Couldn't get user!" +msgstr "Error de servidor: ¡No se pudo obtener el usuario!" + +#: facebookhome.php:122 +msgid "Incorrect username or password." +msgstr "" +"Nombre de usuario o contraseña incorrectos\n" +"." + +#. TRANS: Page title. +#. TRANS: %s is a user nickname +#: facebookhome.php:157 +#, php-format +msgid "%s and friends" +msgstr "%s y sus amistades" + +#. TRANS: Instructions. %s is the application name. +#: facebookhome.php:185 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Si desesa que la aplicación %s actualice automáticamente tu estado de " +"Facebook con tu último mensaje, tienes que darle permiso." + +#: facebookhome.php:210 +msgid "Okay, do it!" +msgstr "Ok, ¡hazlo!" + +#. TRANS: Button text. Clicking the button will skip updating Facebook permissions. +#: facebookhome.php:217 +msgctxt "BUTTON" +msgid "Skip" +msgstr "Omitir" + +#: facebookhome.php:244 facebookaction.php:336 +msgid "Pagination" +msgstr "Paginación" + +#. TRANS: Pagination link. +#: facebookhome.php:254 facebookaction.php:345 +msgid "After" +msgstr "Después" + +#. TRANS: Pagination link. +#: facebookhome.php:263 facebookaction.php:353 +msgid "Before" +msgstr "Antes" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:69 +#, php-format +msgid "Thanks for inviting your friends to use %s." +msgstr "Gracias por invitar a tus amistades a usar %s." + +#. TRANS: Followed by an unordered list with invited friends. +#: facebookinvite.php:72 +msgid "Invitations have been sent to the following users:" +msgstr "Se ha enviado invitaciones a los siguientes usuarios:" + +#: facebookinvite.php:91 +#, php-format +msgid "You have been invited to %s" +msgstr "Te han invitado a %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:101 +#, php-format +msgid "Invite your friends to use %s" +msgstr "Invita a tus amistades a usar %s" + +#. TRANS: %s is the name of the site. +#: facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "Amistades que ya usan %s:" + +#. TRANS: Page title. +#: facebookinvite.php:143 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#. TRANS: Menu item. +#. TRANS: Menu item tab. +#: FacebookPlugin.php:188 FacebookPlugin.php:461 FacebookPlugin.php:485 +msgctxt "MENU" +msgid "Facebook" +msgstr "Facebook" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:190 +msgid "Facebook integration configuration" +msgstr "Configuración de integración de Facebook" + +#: FacebookPlugin.php:431 +msgid "Facebook Connect User" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#: FacebookPlugin.php:463 +msgid "Login or register using Facebook" +msgstr "" + +#. TRANS: Tooltip for menu item "Facebook". +#. TRANS: Page title. +#: FacebookPlugin.php:487 FBConnectSettings.php:55 +msgid "Facebook Connect Settings" +msgstr "" + +#: FacebookPlugin.php:591 +msgid "" +"The Facebook plugin allows integrating StatusNet instances with Facebook and Facebook Connect." +msgstr "" + +#: FBConnectLogin.php:33 +msgid "Already logged in." +msgstr "" + +#. TRANS: Instructions. +#: FBConnectLogin.php:42 +msgid "Login with your Facebook Account" +msgstr "" + +#. TRANS: Page title. +#: FBConnectLogin.php:57 +msgid "Facebook Login" +msgstr "" + +#: facebookremove.php:57 +msgid "Couldn't remove Facebook user." +msgstr "" + +#. TRANS: Link description for 'Home' link that leads to a start page. +#: facebookaction.php:169 +msgctxt "MENU" +msgid "Home" +msgstr "Pagina principal" + +#. TRANS: Tooltip for 'Home' link that leads to a start page. +#: facebookaction.php:171 +msgid "Home" +msgstr "Pagina principal" + +#. TRANS: Link description for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:180 +msgctxt "MENU" +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Tooltip for 'Invite' link that leads to a page where friends can be invited. +#: facebookaction.php:182 +msgid "Invite" +msgstr "Invitar" + +#. TRANS: Link description for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:192 +msgctxt "MENU" +msgid "Settings" +msgstr "Preferencias" + +#. TRANS: Tooltip for 'Settings' link that leads to a page user preferences can be set. +#: facebookaction.php:194 +msgid "Settings" +msgstr "Preferencias" + +#: facebookaction.php:233 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet?" +msgstr "" + +#: facebookaction.php:235 +msgid " a new account." +msgstr "" + +#: facebookaction.php:242 +msgid "Register" +msgstr "Registrarse" + +#: facebookaction.php:274 +msgid "Nickname" +msgstr "Nickname" + +#. TRANS: Login button. +#: facebookaction.php:282 +msgctxt "BUTTON" +msgid "Login" +msgstr "Iniciar sesión" + +#: facebookaction.php:288 +msgid "Lost or forgotten password?" +msgstr "" + +#: facebookaction.php:370 +msgid "No notice content!" +msgstr "" + +#: facebookaction.php:377 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: facebookaction.php:431 +msgid "Notices" +msgstr "Avisos" + +#: facebookadminpanel.php:52 +msgid "Facebook" +msgstr "Facebook" + +#: facebookadminpanel.php:62 +msgid "Facebook integration settings" +msgstr "Configuración de integración de Facebook" + +#: facebookadminpanel.php:123 +msgid "Invalid Facebook API key. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:129 +msgid "Invalid Facebook API secret. Max length is 255 characters." +msgstr "" + +#: facebookadminpanel.php:178 +msgid "Facebook application settings" +msgstr "" + +#: facebookadminpanel.php:184 +msgid "API key" +msgstr "" + +#: facebookadminpanel.php:185 +msgid "API key provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:193 +msgid "Secret" +msgstr "Secreto" + +#: facebookadminpanel.php:194 +msgid "API secret provided by Facebook" +msgstr "" + +#: facebookadminpanel.php:210 +msgid "Save" +msgstr "Guardar" + +#: facebookadminpanel.php:210 +msgid "Save Facebook settings" +msgstr "" + +#. TRANS: Instructions. +#: FBConnectSettings.php:66 +msgid "Manage how your account connects to Facebook" +msgstr "" + +#: FBConnectSettings.php:90 +msgid "There is no Facebook user connected to this account." +msgstr "" + +#: FBConnectSettings.php:98 +msgid "Connected Facebook user" +msgstr "" + +#. TRANS: Legend. +#: FBConnectSettings.php:118 +msgid "Disconnect my account from Facebook" +msgstr "" + +#. TRANS: Followed by a link containing text "set a password". +#: FBConnectSettings.php:125 +msgid "" +"Disconnecting your Faceboook would make it impossible to log in! Please " +msgstr "" + +#. TRANS: Preceded by "Please " and followed by " first." +#: FBConnectSettings.php:130 +msgid "set a password" +msgstr "establecer una contraseña" + +#. TRANS: Preceded by "Please set a password". +#: FBConnectSettings.php:132 +msgid " first." +msgstr "" + +#. TRANS: Submit button. +#: FBConnectSettings.php:145 +msgctxt "BUTTON" +msgid "Disconnect" +msgstr "" + +#: FBConnectSettings.php:180 +msgid "Couldn't delete link to Facebook." +msgstr "" + +#: FBConnectSettings.php:196 +msgid "You have disconnected from Facebook." +msgstr "" + +#: FBConnectSettings.php:199 +msgid "Not sure what you're trying to do." +msgstr "" + +#: facebooksettings.php:61 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#. TRANS: Confirmation that synchronisation settings have been saved into the system. +#: facebooksettings.php:64 +msgid "Sync preferences saved." +msgstr "" + +#: facebooksettings.php:87 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: facebooksettings.php:94 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#. TRANS: Submit button to save synchronisation settings. +#: facebooksettings.php:102 +msgctxt "BUTTON" +msgid "Save" +msgstr "Guardar" + +#. TRANS: %s is the application name. +#: facebooksettings.php:111 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: facebooksettings.php:124 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#. TRANS: Page title for synchronisation settings. +#: facebooksettings.php:134 +msgid "Sync preferences" +msgstr "" diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index b2d24ec18f..d7fe794046 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index 7e0bde5011..7a4d4a11be 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:49+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index 068e0e6409..db9e43f1dc 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 1832f5bdbf..2c14c84812 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 2cb4c1ea6f..45149e2f52 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index b925791c13..40682eb931 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index fa61eaf377..0c9d38a56e 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index 5c9d28822b..2099155dae 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 41::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 0f38d3a904..7b8d8384fb 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index c96c212157..62ef78f369 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 3b27b7c4f0..056d788c6e 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..99eb31c5ce --- /dev/null +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - FirePHP to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: FirePHPPlugin.php:68 +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"La extensión FirePHP escribe la salida del registro de StatusNet en FirePHP." diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index c7bc7655af..a7bae2b5e3 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bf55055d1c..b53390d4b0 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 60224d5af0..bd26e50b7b 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index d716f8a73b..d2aea2bbb6 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 404c022965..d99a7ababa 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 9e42a3aa8f..b1c0bdd080 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4f40fe1a9c..39167e2c7f 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 720445ee6e..5ed7be0d61 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 467216c605..87008b2bd5 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 875d73de82..ded26687e8 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 389090e38a..10883a657c 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 42::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 1fc0c34261..841f0d7a7b 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..7f9c5d2454 --- /dev/null +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "No se pudo incluir al usuario %1$s en el grupo %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permite forzar inclusiones en grupos y fuerza la aparición de todos los " +"mensajes en los grupos en los que los usuarios fueron incluidos a la fuerza." diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..18a728c659 --- /dev/null +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permitte fortiar le inscription in gruppos e fortia que tote le notas appare " +"in gruppos in que usatores esseva inscribite." diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..0f1f88e7e1 --- /dev/null +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Не можев да го зачленам корисникот %1$s во групата %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Овозможува наметнати членства во групи и наметнува на сите забелешки да се " +"јавуваат во групите кајшто корисниците имаат наметнати членства" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..a2f21de447 --- /dev/null +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - ForceGroup to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Maakt het mogelijk gedwongen lid te worden van groepen en alle mededelingen " +"weer te geven in die groepen." diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..6b755c3e2d --- /dev/null +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - ForceGroup to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Hindi maisama ang tagagamit na %1$s sa pangkat na %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Nagpapahintulot ng pinilit na mga pagkakasapi sa pangkat at pumipilit sa " +"lahat ng mga pabatid na lumitaw sa loob ng mga pangkat na pinagpilitang " +"paloob ng mga tagagamit." diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..bd693e7ef2 --- /dev/null +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - ForceGroup to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\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: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#: ForceGroupPlugin.php:78 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." + +#. TRANS: Plugin description. +#: ForceGroupPlugin.php:104 +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Дозволяє примусове долучення користувачів до спільнот разом із дописами, " +"котрі відповідають темі той чи іншої спільноти, до якої було примусово " +"долучено користувача." diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 1f910e52a0..ca4aa70217 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..0ba3259f61 --- /dev/null +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Esperanto (Esperanto) +# Expored from translatewiki.net +# +# Author: LyzTyphone +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Esperanto \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: eo\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Eĥosondu GeoURL-n, kiam sciigon pri " +"plibonigo de terlokigado aperas." diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..4d2211fd0e --- /dev/null +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GeoURL to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeoURLPlugin.php:124 +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Hacer ping al GeoURL cade vez que se " +"publique nuevos mensajes de geolocalización mejorados." diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 48b42c4296..4dff863f19 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 3c8fce7cb1..bd29feced9 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 0844be8f16..0055bcfaea 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 648b9ab67c..b4cc4d4e73 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 237dde8013..da00c34497 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d527d8dba4..f0b54398f0 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 44::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 94ead0234b..10efb57ef9 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 new file mode 100644 index 0000000000..cf5fba1351 --- /dev/null +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Implijout a ra ar servij Geonames evit " +"tapout anvadurioù douaroniel lennus gant mab-den evit lec'hiadoù diazezet " +"war un daouad ledred/hedred pourchaset gant an implijer." diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..55ac440db8 --- /dev/null +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Geonames to Esperanto (Esperanto) +# Expored from translatewiki.net +# +# Author: LyzTyphone +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Esperanto \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: eo\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Uziĝas Geonames servo por akiri " +"kompreneblan nomon de lokoj baze de latituda-longituda paro donita de uzanto." diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..ad3841c949 --- /dev/null +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Geonames to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GeonamesPlugin.php:491 +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Usa el servicio Geonamespara obtener " +"nombresde ubicaciones legibles por humanos, basadas en pares longitud/" +"latitud provistos por el usuario." diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index ad8a3f6790..8deaeed650 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index d4a36f203e..a367b58227 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index fb11335213..b57e675b4e 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 69d52a0eb3..7cf63717d9 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ccaa503ad5..b8358b781a 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:05+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index b71c8b871f..1387047e64 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f24fc3a05f..269a774343 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2193d04eec..1ee4b40eb5 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:50+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 92c7c6700a..09a9784702 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:06+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 43::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b3c0bc92b2..1b037740e3 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..36ccea9c7b --- /dev/null +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GoogleAnalyticsPlugin.php:80 +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Utiliza Google Analytics " +"para hacer seguimiento de accesos al sitio web." diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index fb88afd61b..e644dc6a20 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index d4e5512f62..3cadef7b01 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:07+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 6c35eb389e..20d4cf633c 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 dd728d65d8..3362bac5bf 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 60e7b4a787..bb141be175 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 59d479900b..45422ecce0 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bbc1f90d84..6fd585c8e2 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 faa0924030..49a20f2fe9 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5510809c65..b7d5c2bba9 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:08+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 71::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b425259814..d4bc0f8163 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 7d1e5db537..ae7e29286e 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: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:53+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 new file mode 100644 index 0000000000..918475de54 --- /dev/null +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - Gravatar to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Peter17 +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: GravatarPlugin.php:60 +msgid "Set Gravatar" +msgstr "Definir un Gravatar" + +#: GravatarPlugin.php:63 +msgid "If you want to use your Gravatar image, click \"Add\"." +msgstr "Si deseas utilizar tu imagen Gravatar, haz clic en \"Agregar\"" + +#: GravatarPlugin.php:68 +msgid "Add" +msgstr "Añadir" + +#: GravatarPlugin.php:78 +msgid "Remove Gravatar" +msgstr "Eliminar el Gravatar" + +#: GravatarPlugin.php:81 +msgid "If you want to remove your Gravatar image, click \"Remove\"." +msgstr "Si desesa eliminar tu imagen de Gravatar, haz clic en \"Eliminar\"." + +#: GravatarPlugin.php:86 +msgid "Remove" +msgstr "Borrar" + +#: GravatarPlugin.php:91 +msgid "To use a Gravatar first enter in an email address." +msgstr "" +"Para utilizar un Gravatar, primero introduce una dirección de correo " +"electrónico." + +#: GravatarPlugin.php:140 +msgid "You do not have an email address set in your profile." +msgstr "" +"No tienes una dirección de correo electrónico establecida en tu perfil." + +#: GravatarPlugin.php:158 +msgid "Failed to save Gravatar to the database." +msgstr "Error al guardar Gravatar en la base de datos." + +#: GravatarPlugin.php:162 +msgid "Gravatar added." +msgstr "Gravatar agregado." + +#: GravatarPlugin.php:180 +msgid "Gravatar removed." +msgstr "Gravatar eliminado." + +#: GravatarPlugin.php:200 +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"La extensión Gravatar permite a los usuarios utilizar su Gravatar con StatusNet." diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 207fa2fc86..4db0d0157a 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 9144cbbf63..af871eba57 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6e88cfa1b4..6b8fb1bbcc 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6be92e6517..8115b736f8 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 060fe4b6f2..d76b123cf3 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0e08abe888..f8ac9f88df 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:54+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:51+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 fec92e51c6..906b171b9f 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:09+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 72::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 77cfbc84ae..7a80d5e577 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..6b57a88371 --- /dev/null +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Mensajes populares en el grupo %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Mensajes populares en el grupo %1$s, página %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Popular" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Mensajes populares en el grupo %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Esta extensión añade un elemento de menú para los mensajes populares en " +"grupos." diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..3d1b3e15fa --- /dev/null +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - GroupFavorited to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Messages popular in gruppo %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Messages popular in gruppo %1$s, pagina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Popular" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Notas popular in gruppo %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "Iste plug-in adde un option de menu pro notas popular in gruppos." diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..48dc76c7ad --- /dev/null +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - GroupFavorited to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Популарни објави во групата %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Популарни објави во групата %1$s, страница %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Популарни" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Популарни забелешки во групата %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Овој приклучок додава елемент во менито за популарни забелешки во групи." diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..85074b7aec --- /dev/null +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Populaire berichten in de groep %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Populaire berichten in de groep %1$s, pagina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Populair" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Populaire mededelingen in de groep %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Deze plug-in voegt een menukeuze toe voor populaire mededelingen in groepen." diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..deaa8b09cf --- /dev/null +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - GroupFavorited to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Tanyag na mga pagpapaskila sa loob ng pangkat na %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Tanyag na mga pagpapaskila sa loob ng pangkat na %1$s, pahina %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Tanyag" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Bantog na mga pabatid sa loob ng pangkat na %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" +"Ang pampasak na ito ay nagdaragdag ng isang bagay ng menu para sa mga bantog " +"na pabatid sa loob ng mga pangkat." diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..850263fc14 --- /dev/null +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - GroupFavorited to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:49+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:49+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\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: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "Популярні повідомлення спільноти %s" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Популярні повідомлення спільноти %1$s, сторінка %2$d" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Популярні" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Популярні дописи спільноти %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "Цей додаток долучає до меню пункт для популярних дописів у спільноті." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 5537c45bc3..aaef1d81fb 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index b2029098e2..3f48f9e97e 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:10+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 4655954336..163722b630 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index b3c140f0c5..ccf2313d73 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index c27f3ab51f..694386f660 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 76454680a5..68c0d24889 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 3ff067b28b..42032f1a10 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index a1c614f3e9..459cfaf87a 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:38+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 32::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 9d3e6cf20b..5476500770 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:11+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 94::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-28 19:23:16+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index b8e25d01a3..86aa2524fa 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..0dfb2ddfe3 --- /dev/null +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - InfiniteScroll to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: InfiniteScrollPlugin.php:54 +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Desplazamiento Infinito añade la siguiente funcionalidad a tu instalación " +"StatusNet: Cuando un usuario se desplaza hacia el final de la página, la " +"próxima página de mensajes se recupera y añade automáticamente. Esto " +"significa que no será necesario hacer clic en \"Próxima página\", con lo que " +"se aumenta dramáticamente la capacidad de retención." diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index ea339383ae..be488f73a2 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 844652bba9..613eb1e5af 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 2af480c1ff..450a69c83b 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 98ff1d3d4d..bf70e304a7 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index bf15301851..55c40e9f61 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 74d213dafd..8619644b03 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ef50d1b194..e82745a2c5 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:12+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 a02cb1d75e..8948fdba66 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:55+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 14342d59ea..23c773a9d9 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po new file mode 100644 index 0000000000..4ab4ea6190 --- /dev/null +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthentication to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthenticationPlugin.php:146 +msgid "" +"The LDAP Authentication plugin allows for StatusNet to handle authentication " +"through LDAP." +msgstr "" +"La extensión de Autenticación LDAP permite a StatusNet manejar la " +"autenticación a través de LDAP." diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index bfe15183a9..4eeb05da73 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index bcaae861c5..be4c697f3d 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 0bf2066f9a..0eff138319 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b4695e3f01..b121de304b 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 cab3284b04..dd3ceb8edc 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+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: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 fc48c98443..b31afe58bc 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index 8889acdf4e..21c6e21ae0 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 39d58e27bd..51ee5d68ac 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ddcd8796e3..7ea723b674 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 74::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index bd7adbb094..0cc414c101 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po new file mode 100644 index 0000000000..7ea15395f5 --- /dev/null +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - LdapAuthorization to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LdapAuthorization\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: LdapAuthorizationPlugin.php:124 +msgid "" +"The LDAP Authorization plugin allows for StatusNet to handle authorization " +"through LDAP." +msgstr "" +"La extensión de Autorización LDAP permite a StatusNet para manejar la " +"autorización a través de LDAP." diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 103044ab77..8ade16ce21 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 02e5660c3c..ae34871aff 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 03150ff41c..9511d5597a 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4c74b30288..3385768a49 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+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: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 51dc2db3df..034a0cee91 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index e2e4e77132..f366956e69 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2766803d85..683885f16a 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 89884b6ef2..e8ef754ddf 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:13+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 75::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:18:54+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 586b7a63f5..65f0baf68e 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index b5356f2ad4..9594e83542 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 3d260ca73a..a1a3601018 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 589fae541f..97261be9fd 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 00f0b78b64..7a09a9df6e 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 af1e8b3d47..4699be8b21 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e2cec1e665..a139c9d4f9 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 20::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 49bcacc62e..1523fd5cd5 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 dab91db1b0..f7dfe8a18f 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 34::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bdef6bc9e9..5eb5059c6a 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:57+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:56+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 5c5d63860f..1d1b0437cd 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..dec449471c --- /dev/null +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - Linkback to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-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" + +#: LinkbackPlugin.php:241 +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Notificar a los autores de blogs cunado sus publicaciones hayan sido " +"vinculadas en mensajes de microblogs mediante protocolosPingback o Trackback protocols." diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 329abc03a8..525c681dc3 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index ddfed77d25..46c10ff826 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 395003aa27..3f45b8dd96 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 061d0f2d5e..cc12672884 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 558ba0d0dd..9d923ba79a 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 447e168283..f61749d75d 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 1d1eb506d3..6a2b00d9ba 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 77::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:53+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index b7a849d1b4..3c53391009 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 new file mode 100644 index 0000000000..7a926598bf --- /dev/null +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -0,0 +1,57 @@ +# Translation of StatusNet - Mapstraction to Breton (Brezhoneg) +# Expored 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 - Mapstraction\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-mapstraction\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: MapstractionPlugin.php:178 +msgid "Map" +msgstr "Kartenn" + +#. TRANS: Clickable item to allow opening the map in full size. +#: MapstractionPlugin.php:190 +msgid "Full size" +msgstr "" + +#: MapstractionPlugin.php:202 +msgid "" +"Show maps of users' and friends' notices with Mapstraction." +msgstr "" + +#: map.php:72 +msgid "No such user." +msgstr "N'eus ket eus an implijer-se." + +#: map.php:79 +msgid "User has no profile." +msgstr "" + +#. TRANS: Page title. +#. TRANS: %s is a user nickname. +#: allmap.php:74 +#, php-format +msgid "%s friends map" +msgstr "Kartenn mignoned %s" + +#: usermap.php:73 +#, php-format +msgid "%s map, page %d" +msgstr "%s gartenn, pajenn %d" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index fc605b1fb2..8e3b8d54d7 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 7ee4a01584..a6f8b0d935 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2e59eb24b0..5de819b1b7 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index ddc5793292..340a211146 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0b7408d774..c2fcc51b64 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bd808641a0..840e337f50 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 2c515212dd..f4fade52be 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 5f1af6da9f..da8cb7aaa0 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index bc7f2e5d4b..1253cd82b1 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:16+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 78::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 11960be87d..b10928213e 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:58+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 848a39af8f..53b0536d55 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..21dc686909 --- /dev/null +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcache to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachePlugin.php:246 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utilizar Memcached para cachear " +"resultados de consulta." diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 757b929de8..b3c4d8bd3c 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 584b2d6bdf..8035bdb468 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 464b18fccf..489434f785 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 47ea1c5013..8cb0896c94 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 553588b208..2f0ddbffcd 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index a6a0c5a04b..94d0d27a75 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8ea48360f0..bd9a9417a6 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: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 79::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4dff264b4f..afaef9b2c9 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:24:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 86a57375e5..03d62b7cdf 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..e7473802d6 --- /dev/null +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Memcached to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MemcachedPlugin.php:218 +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Utilizar Memcached para cachear " +"resultados de consulta." diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 9b414d189f..7b0edf91e9 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 5022d8ff63..9f043fa4a2 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index da804c6737..5062665abd 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ef100881bd..72775e02c3 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1143bcab2a..ebd7c25cbb 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:17+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index a5451e2c72..1cc22c363c 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4171af4de7..b6be85ca91 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 00212437ca..abdb411372 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:55+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index fd0c16799f..86ddef2cb0 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 7518c7638f..438b67318b 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 1f964341ea..0344b551f3 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 03::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index ec855bad38..b5ca82b69b 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 5ea59a35d6..65f98c24ba 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:18+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 03::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 29856f207b..cd5a4f206f 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0295fd9b7e..de5c31d72a 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 96::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index fb19ccfc49..1323e4436f 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 086f1b59de..8fa40c082a 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 c4f82e3502..93d1af8b52 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 7a03c1d484..09bc7d07de 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index d5c3a0044b..e3ab34b14b 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 7d32081dc1..a46b798a17 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 3947498485..028c3dcbf3 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:19+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 80::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:56+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 34dfa8d7db..9af3c011bc 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index cde0930a56..e735e59f64 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index dddda0f37f..ce7b1a22f8 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index a7884571a3..356f522970 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 a72dfb7511..08a6c5a1d6 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 71b0af5064..772eea0f68 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index e7d9bbc906..40c4819d94 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 59b93c1f70..e427905a66 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-28 17:24+0000\n" -"PO-Revision-Date: 2010-09-28 17:26:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-95 97::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73920); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f442784fda..e76dd223f1 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:58+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 3706978cbd..123ed6a1ad 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:20+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 93::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 73b4185400..6a3ac86f27 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index e1f537b240..a2c5b823d4 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 07f6bb4886..c13b48b669 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index c0102cfd15..ae75c1f552 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4d9bd60d6a..6fe2084e63 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 87c0e17479..c7309d8472 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56: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: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 5f6828e137..6881e630ff 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:03+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 7e23a3b147..b098f20b52 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b1614838ba..fd08313022 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 de66ef8b34..ad4445d973 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:04+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:19:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index f684a138bf..a55b30f4b4 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 21:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 4d4ee37d2a..39101b8393 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 63c7def6e1..cd5eebd16a 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 53970a77f3..fc2e4b1e2e 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:39+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-62-55 00::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -69,14 +69,14 @@ msgstr "Напушти" #: OStatusPlugin.php:785 msgid "Disfavor" -msgstr "Откажи омилено" +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:788 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." -msgstr "%1$s ја означи забелешката %2$s како неомилена." +msgstr "%1$s повеќе не ја бендисува забелешката %2$s." #. TRANS: Link text for link to remote subscribe. #: OStatusPlugin.php:864 @@ -304,12 +304,12 @@ msgstr "Оваа цел не разбира прекини на следења." #. TRANS: Client exception. #: lib/salmonaction.php:145 msgid "This target doesn't understand favorites." -msgstr "Оваа цел не разбира омилени." +msgstr "Оваа цел не разбира бендисување на забелешки." #. TRANS: Client exception. #: lib/salmonaction.php:151 msgid "This target doesn't understand unfavorites." -msgstr "Оваа цел не разбира отстранувања од омилени." +msgstr "Оваа цел не разбира одбендисување на забелешки." #. TRANS: Client exception. #: lib/salmonaction.php:157 @@ -442,18 +442,18 @@ msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:163 msgid "Could not save new favorite." -msgstr "Не можам да го зачувам новото омилено." +msgstr "Не можам да го зачувам новобендисаното." #. TRANS: Client exception. #: actions/usersalmon.php:195 msgid "Can't favorite/unfavorite without an object." -msgstr "Не можам да означам како омилено или да тргнам омилено без објект." +msgstr "Не можам да означам како бендисано или да тргнам бендисано без објект." #. TRANS: Client exception. #: actions/usersalmon.php:207 msgid "Can't handle that kind of object for liking/faving." msgstr "" -"Не можам да работам со таков објект за ставање врски/означување омилени." +"Не можам да работам со таков објект за ставање врски/означување бендисани." #. TRANS: Client exception. %s is an object ID. #: actions/usersalmon.php:214 diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index baa64270b5..e0c6c4aa83 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 5e49d12526..0f49a02459 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 540b8cae53..1d4e2737b3 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..82b8be953e --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: OpenExternalLinkTargetPlugin.php:60 +msgid "Opens external links (e.g., with rel=external) on a new window or tab." +msgstr "" +"Abre vínculos externos (por ejemplo, con rel=external) en una nueva ventana " +"o pestaña." diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 93b5caeff8..91f9f5faf5 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 6b2bf2bcce..12a071148c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:21+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 87fad79928..b5e4d1386c 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 1c11f8a6cd..8d9045dc66 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: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 3f1c3dbe8d..f1a4e4c72c 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index a9aab443e4..5da6bee90c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index 00c047d9f1..d3d8816b06 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 145c06bcd4..773a641515 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:56:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-54 83::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:19:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index c2fc037b22..a6dced4e26 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 8de6d537d6..51a8d0f8d3 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 9378edf530..603cfb0cdd 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index bac4169d20..10a7380360 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index ae2b00abf6..b682038d5e 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 6fd679bf89..8a5bcc5e19 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:14+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index b7f246fe61..439c4f54c2 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 7662e8d6ee..f5550f5de7 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:15+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:23:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index ff63aacab2..f9491cc4bf 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..a809ea1b67 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - PiwikAnalytics to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PiwikAnalyticsPlugin.php:105 +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Utiliza el software de análisis de sitios Web de fuente abierta Piwik." diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 8919456781..99178db73b 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 2c60014f54..99867ca4ac 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 776af5d6aa..b7ef8467d9 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index fe9a85984f..62b7b645be 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index c9f145fb08..26f7ec4e64 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 a94150b752..e257b89c64 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 48::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 599ebd6c6e..1955825b87 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:23+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 93c9a585de..7824f950c6 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..8619cc4a44 --- /dev/null +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - PostDebug to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PostDebugPlugin.php:58 +msgid "Debugging tool to record request details on POST." +msgstr "" +"Herramienta de depuración para registrar detalles de solicitud en POST." diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index f8094da371..fc0f233f6b 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:40+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 459ce9cf17..a01587def6 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index e150f16302..d9b4ff4f6a 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b885af5b70..3892c8be2b 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index ba96e25dc8..2d592374bb 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 6a2d1fe90e..3e172cdc75 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 107558379f..0cd74c66c4 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e86e100ec3..547aaabdb3 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 49::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:02+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 dc2b85db1e..c6f4eaaafa 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 5f62dd5f34..7d6bdd6ad1 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 9c16e01e54..2d8249e255 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 317354475f..b276e0a11e 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0c285600a9..adb46bd5ba 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 60fa496286..204a473e17 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5cc5cd2768..1950bc8788 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 6a419f4196..1545ed7f5b 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 841e58644a..e8924f93eb 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:41+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 50::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 3e32b69b0c..c2eeeabb7d 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:25+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 5d75e0c85d..b2e9145b95 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..a50553d852 --- /dev/null +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PtitUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: PtitUrlPlugin.php:67 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza el servicio de acortamiento de URL %1$s." diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index b1db002d65..d6843741fb 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 97f0570624..e88328c1c7 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ea4b6bf239..ee4553f311 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 c5d3f28b51..de54b468bc 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f76a0025f0..6e833f393d 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8551fce072..e88b78a878 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index a323532bf7..107553a8c0 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 8be07a2f35..6b6f409668 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 64a4487af6..8627b17f6c 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 51::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index d4fb04df7d..0fda09212c 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 41aeca2ddd..1f8f461f7a 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 2e5d69333e..1982aecf63 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 883a703c9b..387bbe9d21 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:46+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 7a3aed62e5..ce80076587 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index d6b7aa1ca2..e17fa5b58d 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:47+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 6090e00428..6997c53740 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:28+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index c59820bfa4..1efda827ab 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 428b5989c1..fc3180cea5 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:42+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 3e7db99551..874a44656c 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4c40a22170..b5dcfaa628 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 025dc7652a..216f3c44d6 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 be02a3aa80..2943b89bed 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index d01aec27ea..b72a4d75bc 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 a7872f223a..2dbabd69d6 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 52::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 08eaadc2cd..725e64e427 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index f478fbe898..16b8e1e5a6 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 765de70df3..14053a82d2 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ade31d12a7..de54757dc1 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 af932de16b..7d1a7c593a 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 69d96cc4b3..8826451a8e 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:43+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 53::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ff84b85fd2..03ddc80e14 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:26+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:20:04+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index d6e58ea4d5..8825867760 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index 97111b2425..3925c5d4ad 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index b222f712e1..f208b8c777 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 522ac7a6ba..9347f8d447 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index c7c55e083d..64790f3365 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 13e2923b64..da63cc8b46 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 93110622a1..d1f2b85a41 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:44+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 54::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index e1b3daf762..f66b6deee6 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index a680e404e6..0f6bb2fe37 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 0f7c4dd5e3..b1f51c37ce 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index fe67287237..329607b730 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 cd9e450e9c..e12975dc7e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index c93a4ad69a..b1ca068d0d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 9263ff1f1a..bcf1f40db0 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f8a4d90787..44aa0235bc 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 55::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:25+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 4f1bf587f9..60234e3c4f 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 06852f91cd..1686bf174e 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index b25b3bf9f2..8b4728c47c 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f37dfe0faa..fbaf98a790 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 17c907df2d..58f09fc8fe 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 fcf42e1955..0d265acb31 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index cabaad5500..076c09ba00 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 365adb6aba..1ada83ad27 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:30+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:26+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f41f00c18b..e0a3f97b96 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 56::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 1062d382d0..ed180fa444 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..0f6c4afe86 --- /dev/null +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Condivider in Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Condivider in %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Condivider in Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Iste plug-in permitte condivider notas in Twitter, Facebook e altere " +"platteformas." diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..ea98906c20 --- /dev/null +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "„%s“" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Сподели на Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Сподели на %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Сподели на Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Приклучокот Ви овозможува да споделувате забелешки на Twitter, Facebook и " +"други подлоги." diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..cbf057a151 --- /dev/null +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - ShareNotice to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: SPQRobin +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Delen op Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Delen op %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Delen op Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Deze plug-in maakt het mogelijk mededelingen te delen op Twitter, Facebook " +"en andere platformen." diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..6bd6594937 --- /dev/null +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,55 @@ +# Translation of StatusNet - ShareNotice to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "\"%s\"" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Ibahagi sa Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Ibahagi sa %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Ibahagi sa Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Ang pampasak na ito ay nagpapahintulot na pagpapamahagi ng mga pabatid sa " +"Twitter, Facebook at ibang mga plataporma." diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po new file mode 100644 index 0000000000..ed3105facc --- /dev/null +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - ShareNotice to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ShareNotice\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:45:00+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-sharenotice\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: Leave this message unchanged. +#. TRANS: %s is notice content that is shared on Twitter, Facebook or another platform. +#: ShareNoticePlugin.php:106 ShareNoticePlugin.php:194 +#, php-format +msgid "\"%s\"" +msgstr "«%s»" + +#. TRANS: Tooltip for image to share a notice on Twitter. +#: ShareNoticePlugin.php:130 +msgid "Share on Twitter" +msgstr "Розмістити в Twitter" + +#. TRANS: Tooltip for image to share a notice on another platform (other than Twitter or Facebook). +#. TRANS: %s is a host name. +#: ShareNoticePlugin.php:163 +#, php-format +msgid "Share on %s" +msgstr "Розмістити в %s" + +#. TRANS: Tooltip for image to share a notice on Facebook. +#: ShareNoticePlugin.php:186 +msgid "Share on Facebook" +msgstr "Розмістити в Facebook" + +#. TRANS: Plugin description. +#: ShareNoticePlugin.php:219 +msgid "" +"This plugin allows sharing of notices to Twitter, Facebook and other " +"platforms." +msgstr "" +"Цей додаток дозволяє ділитися дописами в Twitter, Facebook та інших " +"сервісах, розміщуючи їх там." diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index f1e0abf0c2..27eda38ff9 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po new file mode 100644 index 0000000000..d7ec27779b --- /dev/null +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SimpleUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SimpleUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-simpleurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SimpleUrlPlugin.php:58 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Usa el servicio de acortamiento de URL %1$s." diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index a6a449623a..73b1562247 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index a31e000c3e..b3c155c924 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index c076b2a799..a01b000937 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d214a34e7a..84e6115271 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 07ac2507fd..28c9815c33 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 c905f0b95c..78f44feb0a 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 15ee8bf48c..3546df97eb 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 7058596ef8..91ac07ab7b 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 e28996f5c2..ddf67c36c2 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:48+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 57::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index f0bdb1aa6b..7d4a541c63 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..625a678003 --- /dev/null +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - SlicedFavorites to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "Monstra chronologias de notas popular pro certe gruppos de usatores." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Section de favorites incognite." diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..a8406a452f --- /dev/null +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Прикажува хронологии на популарни забелешки за определени подмножества " +"корисници." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Непознато парче од бендисаните." diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..1b9ee5bdf3 --- /dev/null +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Geeft de tijdlijnen van populaire mededelingen weer voor ingestelde groepen " +"gebruikers." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Onbekende favorietengebruikersgroep." diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..9b8905f211 --- /dev/null +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - SlicedFavorites to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Nagpapakita ng mga guhit ng panahon ng tanyag na mga pabatid para sa " +"inilarawang mga kabahaging pangkat ng mga tagagamit." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Hindi nalalamang hiwa ng mga paborito." diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..5c5f0d0039 --- /dev/null +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - SlicedFavorites to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:24+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:44:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Plugin description. +#: SlicedFavoritesPlugin.php:129 +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "Показує стрічки популярних дописів для певних підмножин користувачів." + +#. TRANS: Client exception. +#: favoritedsliceaction.php:56 +msgid "Unknown favorites slice." +msgstr "Невідома вибірка обраних повідомлень." diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index a2953b9076..b42a77cd9c 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 1e20384240..ba379ea32e 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index cfbe1016f9..4da2c0da66 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index f1a2f21b71..69da696115 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 136bfb7874..baa10a197b 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 6de5184b12..e99f07b194 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 58::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 8644e65845..857cc68a52 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:32+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 98b8073850..25c48db771 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..50cb448a5f --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - SubscriptionThrottle to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# 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: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SubscriptionThrottlePlugin.php:171 +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 bc7d2dcb8d..83ad537b0d 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 255fe5d333..8f6336b818 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index 4846c89327..6d0505cfa9 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po index c7ff451488..e8072e61f2 100644 --- a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index dbdd70f662..e64341a3e7 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po index 47820e81bd..25efbab795 100644 --- a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index e781441259..eb2dfef888 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 0826e2df74..88e330a72d 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:27+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:38+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 582daf2530..90666a1d24 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po new file mode 100644 index 0000000000..16aed8a9fe --- /dev/null +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - TabFocus to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TabFocus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-tabfocus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TabFocusPlugin.php:54 +msgid "" +"TabFocus changes the notice form behavior so that, while in the text area, " +"pressing the tab key focuses the \"Send\" button, matching the behavior of " +"Twitter." +msgstr "" +"TabFocus Cambia el comportamiento del formulario del aviso de modo que, al " +"estar en el área de texto, pulsar la tecla de tabulación se enfoque en el " +"botón \"Enviar\", al igual que en el comportamiento de Twitter." diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index b58a14075f..7d9e1da650 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 21c44198f3..eedf5cb8b0 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 9da2c4a548..ff4fa75cef 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:51+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 93d20f2378..244dc38091 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 775dc2a466..9e499b6e66 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 346e0e9ae5..7bab99a24e 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 2c46ebe609..b7b6fb7a16 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:19+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 59::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 eb31b1b248..3c3521ce3f 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:33+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:28+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:39+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index dae56b6a48..f0a036968d 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..e8a5d5471c --- /dev/null +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TightUrl to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TightUrlPlugin.php:68 +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utiliza el servicio de acortamiento de URL %1$s." diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 3938f14fe5..d55583323c 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 8fdf167ce0..f312a94185 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index d09633b90b..b689a37fc6 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 9961c4aa4b..9a59c7c848 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index f3b93e8c44..c426de9fa6 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 81365bb4a4..338a7f3b6e 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 2d74a172ec..42f1795e5d 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 50c8fe782b..24adab5a43 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:52+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 60::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 87a6203a12..90ad55197d 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:22:08+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 25fccb705a..4160a42a84 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..164b4f6ed9 --- /dev/null +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - TinyMCE to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# 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: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: TinyMCEPlugin.php:83 +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Utiliza la biblioteca TinyMCE para permitir la edición de texto enriquecido " +"en el navegador." diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 635781feb3..cf23c1c4b2 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 66f66184ba..9dd59764c0 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 37738df828..03b043d6e7 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 4792f715a0..6c349f71e3 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 58221c4ee1..1185e7c54b 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index a2f86006e7..608eede335 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 d5c5f3da4c..271497f956 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 0d27f3b27b..9b2856f94b 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 bc358c2b01..f8665c2c73 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:29+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:41+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 48c0a7a987..702793c877 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index fa5154facf..9c03dc101a 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index a209f9c10a..d5be8c0f18 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 4530a58956..03e7720f83 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index f6def52901..ed29e9895e 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 0a9569e7f0..a4e716c7ec 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index e855ed3fcb..46de2797d1 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:45+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 2860fe66c0..fe65d4397d 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:42:59+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 62::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:42+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot new file mode 100644 index 0000000000..7e0bc3114b --- /dev/null +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -0,0 +1,108 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +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 +#, 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. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "" + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "" + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "" + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "" + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 54952712e9..3991568f83 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..1699a81740 --- /dev/null +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to German (Deutsch) +# Expored from translatewiki.net +# +# Author: The Evil IP address +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-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" + +#: UserLimitPlugin.php:89 +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 new file mode 100644 index 0000000000..e64ec8954f --- /dev/null +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - UserLimit to Spanish (Español) +# Expored from translatewiki.net +# +# Author: Translationista +# -- +# 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: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" +"Language-Team: Spanish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: UserLimitPlugin.php:89 +msgid "Limit the number of users who can register." +msgstr "Limitarla cantidad de usuarios que pueden registrarse." diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index a52002a904..5c68f2dcfd 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 7c9cc948c1..760cebc676 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 59481404a2..d685e8ca9d 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 3c2901f931..f3d54f6f4c 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 11a1422815..e099949349 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index dec02d8b0b..216a8e6c31 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 052204fbe1..ed402a3974 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 3ab6bcaa26..71ff8a65fb 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 9391333cce..538505e48e 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 098d7e41f4..6564c78976 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:00+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:30+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 10f3945d62..c9282d1747 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index b6f2c25a00..971db31133 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 37fcd0fe61..d879d2a1d9 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index aef6e9e398..5be14522db 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po index c908f32f7c..8741ffb994 100644 --- a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57: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: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 6a9a367639..369c3650eb 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po index 58fc9d6a35..8f1d8b7f64 100644 --- a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po index 2ef1103b56..75e44a2682 100644 --- a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index daaf88e423..8488f2843e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po index d3e3704104..7810080654 100644 --- a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 3d642d4bc9..8b62c5be93 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 63::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index e1a5e10f11..fffb3ac243 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 206d7d6c14..f6df675c8f 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 58a5c154ea..3ca5438b19 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 4be4c18717..7f43004cb2 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index de7218e31a..e8e4374166 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 b7a7ea6e86..bf3861a9e7 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 15347e108f..ed6d70a8c4 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 01106bbc5b..5b4df1d675 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f482635812..53944d0c40 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:01+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 66::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:21:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 856ca28059..e38f5c845e 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-22 22:34+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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 new file mode 100644 index 0000000000..c5025c52af --- /dev/null +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - XCache to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Fulup +# -- +# 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: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: XCachePlugin.php:120 +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Ober gant ar grubuilh hegemm XCache da grubuilhañ disoc'hoù ar rekedoù." diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 482ef25ff5..d24ff11898 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 2aca3bbc6a..5513c25f0b 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index e846df3129..4f8e5a1e91 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index fee680dbf7..cb6e5c4199 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index a01aaefea5..c8812aaa8b 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 101f70b627..22d5a87ceb 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index 194f9741e4..16df3c2d96 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 f4b76f386d..83abdf0af1 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 71783f1626..d9550d72fb 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-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 ae4e4d4003..1c56db2fe1 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-09-27 22:20+0000\n" -"PO-Revision-Date: 2010-09-27 22:43:02+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 1285-19-55 68::+0000\n" -"X-Generator: MediaWiki 1.17alpha (r73828); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-09-27 23:22:09+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 159fdb2de8..053834cde2 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+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/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 30bbf90519..d26c5128a8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,14 +240,12 @@ msgid "Waiting..." msgstr "Attente..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "État de l’import" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Import Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format @@ -259,9 +257,8 @@ msgid "Paused" msgstr "" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Import Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 79406f4ec0..0de756d587 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,28 +240,25 @@ msgid "Waiting..." msgstr "Attende..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Stato de importation" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Importation de Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Incontrava error \"%s\"" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Pausate" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Importation de Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -282,4 +279,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Pausate ab le pannello admin." diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index ab0ec3c6ce..db906ea828 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,28 +240,25 @@ msgid "Waiting..." msgstr "Чекам..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Увези статус" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Увоз од Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Наидов на грешка „%s“" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Паузирано" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Увоз од Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -281,4 +278,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Паузирано од администраторската табла." diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 64d2a27f1b..1d849fb6bc 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -1,6 +1,7 @@ # Translation of StatusNet - YammerImport to Dutch (Nederlands) # Expored from translatewiki.net # +# Author: SPQRobin # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -240,28 +241,25 @@ msgid "Waiting..." msgstr "Even geduld alstublieft..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Importstatus" +msgstr "Importstatus herstellen" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Yammerimport" +msgstr "Import pauzeren" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Er is een fout opgetreden: \"%s\"" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Gepauzeerd" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Yammerimport" +msgstr "Import afbreken" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -282,4 +280,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Gepauzeerd vanuit het beheerpaneel." diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..f61add2f82 --- /dev/null +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -0,0 +1,260 @@ +# Translation of StatusNet - YammerImport to Turkish (Türkçe) +# Expored from translatewiki.net +# +# Author: Maidis +# -- +# 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: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"Language-Team: Turkish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: YammerImportPlugin.php:98 +msgid "Yammer" +msgstr "Yammer" + +#: YammerImportPlugin.php:99 actions/yammeradminpanel.php:135 +msgid "Yammer import" +msgstr "Yammer içeri aktarma" + +#: lib/yammerauthinitform.php:48 lib/yammerauthverifyform.php:56 +#: lib/yammerprogressform.php:68 actions/yammerauth.php:71 +msgid "Connect to Yammer" +msgstr "Yammer'a Bağlan" + +#: lib/yammerauthinitform.php:62 +msgid "Start authentication" +msgstr "Kimlik doğrulamaya başla" + +#: lib/yammerauthinitform.php:62 +msgid "Request authorization to connect to Yammer account" +msgstr "" + +#: lib/yammerauthinitform.php:63 +msgid "Change API key" +msgstr "" + +#: lib/yammerimporter.php:230 +msgid "Expertise:" +msgstr "" + +#: lib/yammerimporter.php:433 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Geçersiz kullanıcı resmi bağlantısı %s." + +#: lib/yammerimporter.php:440 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#: lib/yammerapikeyform.php:56 +msgid "Yammer API registration" +msgstr "" + +#: lib/yammerapikeyform.php:72 +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 "" + +#: lib/yammerapikeyform.php:84 +msgid "Open Yammer application registration form" +msgstr "" + +#: lib/yammerapikeyform.php:87 +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +#: lib/yammerapikeyform.php:91 +msgid "Consumer key:" +msgstr "" + +#: lib/yammerapikeyform.php:94 +msgid "Consumer secret:" +msgstr "" + +#: lib/yammerapikeyform.php:98 +msgid "Save" +msgstr "Kaydet" + +#: lib/yammerapikeyform.php:98 +msgid "Save these consumer keys" +msgstr "" + +#: lib/yammerauthverifyform.php:72 +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +#: lib/yammerauthverifyform.php:87 +msgid "Open Yammer authentication window" +msgstr "Open Yammer kimlik doğrulama penceresi" + +#: lib/yammerauthverifyform.php:90 +msgid "Copy the verification code you are given below:" +msgstr "Aşağıda verilen doğrulama kodunu kopyalayın:" + +#: lib/yammerauthverifyform.php:94 +msgid "Verification code:" +msgstr "Doğrulama kodu:" + +#: lib/yammerauthverifyform.php:98 lib/yammerprogressform.php:164 +msgid "Continue" +msgstr "Devam et" + +#: lib/yammerauthverifyform.php:98 +msgid "Save code and begin import" +msgstr "Kodu kaydet ve içeri aktarmaya başla" + +#: lib/yammerprogressform.php:63 +msgid "Initialize" +msgstr "İlk kullanıma hazırla" + +#: lib/yammerprogressform.php:64 +msgid "No import running" +msgstr "Çalışan içeri aktarma yok" + +#: lib/yammerprogressform.php:65 +msgid "Initiated Yammer server connection..." +msgstr "Başlatılan Yammer sunucu bağlantısı..." + +#: lib/yammerprogressform.php:69 +msgid "Awaiting authorization..." +msgstr "Yetkilendirme bekleniyor..." + +#: lib/yammerprogressform.php:70 +msgid "Connected." +msgstr "Bağlandı." + +#: lib/yammerprogressform.php:73 +msgid "Import user accounts" +msgstr "Kullanıcı hesaplarını içeri aktar" + +#: lib/yammerprogressform.php:74 +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" + +#: lib/yammerprogressform.php:75 +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" + +#: lib/yammerprogressform.php:78 +msgid "Import user groups" +msgstr "Kullanıcı gruplarını içeri aktar" + +#: lib/yammerprogressform.php:79 +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" + +#: lib/yammerprogressform.php:80 +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" + +#: lib/yammerprogressform.php:83 +msgid "Prepare public notices for import" +msgstr "Genel durum mesajlarını içeri aktarmak için hazırla" + +#: lib/yammerprogressform.php:84 +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" + +#: lib/yammerprogressform.php:85 +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" + +#: lib/yammerprogressform.php:88 +msgid "Import public notices" +msgstr "Genel durum mesajlarını içeri aktar" + +#: lib/yammerprogressform.php:89 +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" + +#: lib/yammerprogressform.php:90 +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" + +#: lib/yammerprogressform.php:93 +msgid "Done" +msgstr "Tamamlandı" + +#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +msgid "Import is complete!" +msgstr "İçeri aktarma tamamlandı!" + +#: lib/yammerprogressform.php:108 +msgid "Import status" +msgstr "İçeri aktarma durumu" + +#: lib/yammerprogressform.php:132 +msgid "Waiting..." +msgstr "Bekleniyor..." + +#: lib/yammerprogressform.php:146 +msgid "Reset import state" +msgstr "İçeri aktarma durumunu sıfırla" + +#: lib/yammerprogressform.php:151 +msgid "Pause import" +msgstr "İçeri aktarmayı duraklat" + +#: lib/yammerprogressform.php:160 +#, php-format +msgid "Encountered error \"%s\"" +msgstr "Karşılaşılan hata \"%s\"" + +#: lib/yammerprogressform.php:162 +msgid "Paused" +msgstr "Duraklatıldı" + +#: lib/yammerprogressform.php:165 +msgid "Abort import" +msgstr "İçeri aktarmayı iptal et" + +#: actions/yammeradminpanel.php:45 +msgid "Yammer Import" +msgstr "Yammer İçeri Aktar" + +#: actions/yammeradminpanel.php:55 +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 "" + +#: actions/yammeradminpanel.php:102 +msgid "Paused from admin panel." +msgstr "Yönetim panelinden durduruldu." diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 21189e7173..0d4ba086d1 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-01 20:22+0000\n" -"PO-Revision-Date: 2010-10-01 20:25:50+0000\n" +"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-28 19:33:11+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74095); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -249,28 +249,25 @@ msgid "Waiting..." msgstr "Очікування..." #: lib/yammerprogressform.php:146 -#, fuzzy msgid "Reset import state" -msgstr "Статус процесу імпорту" +msgstr "" #: lib/yammerprogressform.php:151 -#, fuzzy msgid "Pause import" -msgstr "Імпорт з Yammer" +msgstr "" #: lib/yammerprogressform.php:160 #, php-format msgid "Encountered error \"%s\"" -msgstr "" +msgstr "Виявлено помилку «%s»" #: lib/yammerprogressform.php:162 msgid "Paused" -msgstr "" +msgstr "Призупинено" #: lib/yammerprogressform.php:165 -#, fuzzy msgid "Abort import" -msgstr "Імпорт з Yammer" +msgstr "" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" @@ -291,4 +288,4 @@ msgstr "" #: actions/yammeradminpanel.php:102 msgid "Paused from admin panel." -msgstr "" +msgstr "Призупинено з адміністраторської панелі." From 67f97194e446e81e0bc57ef60ae75ba0579170b7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 23:54:57 +0200 Subject: [PATCH 308/310] i18n/L10n review, plugin credits added. --- plugins/Sitemap/SitemapPlugin.php | 34 +++++++++++++----- plugins/Sitemap/Sitemap_notice_count.php | 9 ++--- plugins/Sitemap/Sitemap_user_count.php | 7 ++-- plugins/Sitemap/noticesitemap.php | 1 - plugins/Sitemap/sitemapaction.php | 2 -- plugins/Sitemap/sitemapadminpanel.php | 44 +++++++++++++----------- plugins/Sitemap/sitemapindex.php | 2 -- plugins/Sitemap/usersitemap.php | 1 - 8 files changed, 53 insertions(+), 47 deletions(-) diff --git a/plugins/Sitemap/SitemapPlugin.php b/plugins/Sitemap/SitemapPlugin.php index b6d3b1ad33..6a77f81231 100644 --- a/plugins/Sitemap/SitemapPlugin.php +++ b/plugins/Sitemap/SitemapPlugin.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 SitemapPlugin extends Plugin { const USERS_PER_MAP = 50000; @@ -57,7 +56,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onAutoload($cls) { $dir = dirname(__FILE__); @@ -89,7 +87,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value. */ - function onEndRobotsTxt($action) { $url = common_local_url('sitemapindex'); @@ -106,7 +103,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onRouterInitialized($m) { $m->connect('sitemapindex.xml', @@ -142,7 +138,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value. */ - function onStartShowHeadElements($action) { $actionName = $action->trimmed('action'); @@ -181,7 +176,6 @@ class SitemapPlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onCheckSchema() { $schema = Schema::get(); @@ -214,11 +208,35 @@ class SitemapPlugin extends Plugin function onEndAdminPanelNav($menu) { if (AdminPanelAction::canAdmin('sitemap')) { // TRANS: Menu item title/tooltip - $menu_title = _('Sitemap configuration'); + $menu_title = _m('Sitemap configuration'); // TRANS: Menu item for site administration - $menu->out->menuItem(common_local_url('sitemapadminpanel'), _('Sitemap'), + $menu->out->menuItem(common_local_url('sitemapadminpanel'), _m('MENU','Sitemap'), $menu_title, $action_name == 'sitemapadminpanel', 'nav_sitemap_admin_panel'); } return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:Sitemap'; + + $versions[] = array('name' => 'Sitemap', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('This plugin allows creation of sitemaps for Bing, Yahoo! and Google.')); + + return true; + } } diff --git a/plugins/Sitemap/Sitemap_notice_count.php b/plugins/Sitemap/Sitemap_notice_count.php index 6e0061e97b..2238ff5218 100644 --- a/plugins/Sitemap/Sitemap_notice_count.php +++ b/plugins/Sitemap/Sitemap_notice_count.php @@ -51,7 +51,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Sitemap_notice_count extends Memcached_DataObject { public $__table = 'sitemap_notice_count'; // table name @@ -72,7 +71,6 @@ class Sitemap_notice_count extends Memcached_DataObject * @return Sitemap_notice_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Sitemap_notice_count', $k, $v); @@ -86,7 +84,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('notice_date' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_NOTNULL, @@ -103,7 +100,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array key definitions */ - function keys() { return array('notice_date' => 'K'); @@ -117,7 +113,6 @@ class Sitemap_notice_count extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -128,7 +123,6 @@ class Sitemap_notice_count extends Memcached_DataObject $noticeCounts = self::cacheGet('sitemap:notice:counts'); if ($noticeCounts === false) { - $snc = new Sitemap_notice_count(); $snc->orderBy('notice_date DESC'); @@ -236,7 +230,8 @@ class Sitemap_notice_count extends Memcached_DataObject $snc = Sitemap_notice_count::staticGet('notice_date', DB_DataObject_Cast::date($d)); if (empty($snc)) { - throw new Exception("No such registration date: $d"); + // TRANS: Exception + throw new Exception(_m("No such registration date: $d.")); } $orig = clone($snc); diff --git a/plugins/Sitemap/Sitemap_user_count.php b/plugins/Sitemap/Sitemap_user_count.php index 98dd05bfed..0b45021bf5 100644 --- a/plugins/Sitemap/Sitemap_user_count.php +++ b/plugins/Sitemap/Sitemap_user_count.php @@ -47,7 +47,6 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; * * @see DB_DataObject */ - class Sitemap_user_count extends Memcached_DataObject { public $__table = 'sitemap_user_count'; // table name @@ -68,7 +67,6 @@ class Sitemap_user_count extends Memcached_DataObject * @return Sitemap_user_count object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Sitemap_user_count', $k, $v); @@ -82,7 +80,6 @@ class Sitemap_user_count extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('registration_date' => DB_DATAOBJECT_DATE + DB_DATAOBJECT_NOTNULL, @@ -118,7 +115,6 @@ class Sitemap_user_count extends Memcached_DataObject * * @return array key definitions */ - function keyTypes() { return $this->keys(); @@ -235,7 +231,8 @@ class Sitemap_user_count extends Memcached_DataObject $suc = Sitemap_user_count::staticGet('registration_date', DB_DataObject_Cast::date($d)); if (empty($suc)) { - throw new Exception("No such registration date: $d"); + // TRANS: Exception thrown when a registration date cannot be found. + throw new Exception(_m("No such registration date: $d.")); } $orig = clone($suc); diff --git a/plugins/Sitemap/noticesitemap.php b/plugins/Sitemap/noticesitemap.php index 7d9d2e5d68..efa23b9401 100644 --- a/plugins/Sitemap/noticesitemap.php +++ b/plugins/Sitemap/noticesitemap.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class NoticesitemapAction extends SitemapAction { var $notices = null; diff --git a/plugins/Sitemap/sitemapaction.php b/plugins/Sitemap/sitemapaction.php index 73b9248a38..ef77645c31 100644 --- a/plugins/Sitemap/sitemapaction.php +++ b/plugins/Sitemap/sitemapaction.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SitemapAction extends Action { /** @@ -50,7 +49,6 @@ class SitemapAction extends Action * * @return void */ - function handle($args) { parent::handle($args); diff --git a/plugins/Sitemap/sitemapadminpanel.php b/plugins/Sitemap/sitemapadminpanel.php index 3372723b02..3304cfd011 100644 --- a/plugins/Sitemap/sitemapadminpanel.php +++ b/plugins/Sitemap/sitemapadminpanel.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SitemapadminpanelAction extends AdminPanelAction { /** @@ -48,10 +47,10 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return string page title */ - function title() { - return _('Sitemap'); + // TRANS: Title for sitemap. + return _m('Sitemap'); } /** @@ -59,10 +58,10 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return string instructions */ - function getInstructions() { - return _('Sitemap settings for this StatusNet site'); + // TRANS: Instructions for sitemap. + return _m('Sitemap settings for this StatusNet site'); } /** @@ -70,7 +69,6 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return void */ - function showForm() { $form = new SitemapAdminPanelForm($this); @@ -83,7 +81,6 @@ class SitemapadminpanelAction extends AdminPanelAction * * @return void */ - function saveSettings() { static $settings = array('sitemap' => array('googlekey', 'yahookey', 'bingkey')); @@ -97,7 +94,6 @@ class SitemapadminpanelAction extends AdminPanelAction } // This throws an exception on validation errors - $this->validate($values); // assert(all values are valid); @@ -125,7 +121,6 @@ class SitemapadminpanelAction extends AdminPanelAction /** * Form for the sitemap admin panel */ - class SitemapAdminPanelForm extends AdminForm { /** @@ -133,7 +128,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return int ID of the form */ - function id() { return 'form_sitemap_admin_panel'; @@ -144,7 +138,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return string class of the form */ - function formClass() { return 'form_sitemap'; @@ -155,7 +148,6 @@ class SitemapAdminPanelForm extends AdminForm * * @return string URL of the action */ - function action() { return common_local_url('sitemapadminpanel'); @@ -166,26 +158,31 @@ class SitemapAdminPanelForm extends AdminForm * * @return void */ - function formData() { $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('googlekey', - _('Google key'), - _('Google Webmaster Tools verification key'), + // TRANS: Field label. + _m('Google key'), + // TRANS: Title for field label. + _m('Google Webmaster Tools verification key.'), 'sitemap'); $this->unli(); $this->li(); $this->input('yahookey', - _('Yahoo key'), - _('Yahoo! Site Explorer verification key'), + // TRANS: Field label. + _m('Yahoo key'), + // TRANS: Title for field label. + _m('Yahoo! Site Explorer verification key.'), 'sitemap'); $this->unli(); $this->li(); $this->input('bingkey', - _('Bing key'), - _('Bing Webmaster Tools verification key'), + // TRANS: Field label. + _m('Bing key'), + // TRANS: Title for field label. + _m('Bing Webmaster Tools verification key.'), 'sitemap'); $this->unli(); $this->out->elementEnd('ul'); @@ -196,9 +193,14 @@ class SitemapAdminPanelForm extends AdminForm * * @return void */ - function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save sitemap settings')); + $this->out->submit('submit', + // TRANS: Submit button text to save sitemap settings. + _m('BUTTON','Save'), + 'submit', + null, + // TRANS: Submit button title to save sitemap settings. + _m('Save sitemap settings.')); } } diff --git a/plugins/Sitemap/sitemapindex.php b/plugins/Sitemap/sitemapindex.php index 169e3031ce..ab89c2156c 100644 --- a/plugins/Sitemap/sitemapindex.php +++ b/plugins/Sitemap/sitemapindex.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SitemapindexAction extends Action { /** @@ -50,7 +49,6 @@ class SitemapindexAction extends Action * * @return void */ - function handle($args) { header('Content-Type: text/xml; charset=UTF-8'); diff --git a/plugins/Sitemap/usersitemap.php b/plugins/Sitemap/usersitemap.php index de12007157..c39165d0ed 100644 --- a/plugins/Sitemap/usersitemap.php +++ b/plugins/Sitemap/usersitemap.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class UsersitemapAction extends SitemapAction { var $users = null; From 362f395e035682cd8d2437cfca904654687be867 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Oct 2010 23:56:13 +0200 Subject: [PATCH 309/310] Add documentation URL. --- plugins/DirectionDetector/DirectionDetectorPlugin.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index ac6b43c1f3..1473c386fa 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -1,5 +1,4 @@ 'Direction detector', 'version' => DIRECTIONDETECTORPLUGIN_VERSION, 'author' => 'Behrooz Shabani', + 'homepage' => $url, 'rawdescription' => _m('Shows notices with right-to-left content in correct direction.') ); return true; From 1652ded48c9c62c40157a5142e5231adbc574ddb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Oct 2010 00:02:24 +0200 Subject: [PATCH 310/310] i18n/L10n review, extension credits added. --- plugins/SphinxSearch/SphinxSearchPlugin.php | 30 ++++++++++++++++--- plugins/SphinxSearch/scripts/gen_config.php | 2 -- plugins/SphinxSearch/scripts/index_update.php | 8 ++--- plugins/SphinxSearch/scripts/sphinx-utils.php | 1 - plugins/SphinxSearch/sphinxsearch.php | 4 ++- 5 files changed, 33 insertions(+), 12 deletions(-) diff --git a/plugins/SphinxSearch/SphinxSearchPlugin.php b/plugins/SphinxSearch/SphinxSearchPlugin.php index 7a27a4c042..ad34a7cc15 100644 --- a/plugins/SphinxSearch/SphinxSearchPlugin.php +++ b/plugins/SphinxSearch/SphinxSearchPlugin.php @@ -41,8 +41,6 @@ foreach($sphinxDefaults as $key => $val) { } } - - /** * Plugin for Sphinx search backend. * @@ -53,7 +51,6 @@ foreach($sphinxDefaults as $key => $val) { * @link http://laconi.ca/ * @link http://twitter.com/ */ - class SphinxSearchPlugin extends Plugin { /** @@ -86,7 +83,8 @@ class SphinxSearchPlugin extends Plugin { if (common_config('sphinx', 'enabled')) { if (!class_exists('SphinxClient')) { - throw new ServerException('Sphinx PHP extension must be installed.'); + // TRANS: Server exception. + throw new ServerException(_m('Sphinx PHP extension must be installed.')); } $engine = new SphinxSearch($target, $table); if ($engine->is_connected()) { @@ -97,4 +95,28 @@ class SphinxSearchPlugin extends Plugin // Sphinx disabled or disconnected return true; } + + /** + * Provide plugin version information. + * + * This data is used when showing the version page. + * + * @param array &$versions array of version data arrays; see EVENTS.txt + * + * @return boolean hook value + */ + function onPluginVersion(&$versions) + { + $url = 'http://status.net/wiki/Plugin:SphinxSearch'; + + $versions[] = array('name' => 'SphinxSearch', + 'version' => STATUSNET_VERSION, + 'author' => 'Brion Vibber', + 'homepage' => $url, + 'rawdescription' => + // TRANS: Plugin description. + _m('Plugin for Sphinx search backend.')); + + return true; + } } diff --git a/plugins/SphinxSearch/scripts/gen_config.php b/plugins/SphinxSearch/scripts/gen_config.php index d5a00b6b6b..e7f3977478 100755 --- a/plugins/SphinxSearch/scripts/gen_config.php +++ b/plugins/SphinxSearch/scripts/gen_config.php @@ -70,8 +70,6 @@ searchd END; - - /** * Build config entries for a single site * @fixme we only seem to have master DB currently available... diff --git a/plugins/SphinxSearch/scripts/index_update.php b/plugins/SphinxSearch/scripts/index_update.php index 23c60ced76..abac5434f7 100755 --- a/plugins/SphinxSearch/scripts/index_update.php +++ b/plugins/SphinxSearch/scripts/index_update.php @@ -42,20 +42,20 @@ sphinx_iterate_sites('sphinx_index_update'); function sphinx_index_update($sn) { $base = sphinx_base(); - + $baseIndexes = array('notice', 'profile'); $params = array(); - + if (have_option('rotate')) { $params[] = '--rotate'; } foreach ($baseIndexes as $index) { $params[] = "{$sn->dbname}_{$index}"; } - + $params = implode(' ', $params); $cmd = "$base/bin/indexer --config $base/etc/sphinx.conf $params"; - + print "$cmd\n"; system($cmd); } diff --git a/plugins/SphinxSearch/scripts/sphinx-utils.php b/plugins/SphinxSearch/scripts/sphinx-utils.php index 7bbc252702..22d70fb8d1 100644 --- a/plugins/SphinxSearch/scripts/sphinx-utils.php +++ b/plugins/SphinxSearch/scripts/sphinx-utils.php @@ -60,4 +60,3 @@ function sphinx_iterate_sites($callback) } } } - diff --git a/plugins/SphinxSearch/sphinxsearch.php b/plugins/SphinxSearch/sphinxsearch.php index 654b9c9d5b..1ce9bfd72d 100644 --- a/plugins/SphinxSearch/sphinxsearch.php +++ b/plugins/SphinxSearch/sphinxsearch.php @@ -91,6 +91,8 @@ class SphinxSearch extends SearchEngine if (preg_match('!^.*?://.*?:.*?@.*?/(.*?)$!', common_config('db', 'database'), $matches)) { return $matches[1]; } - throw new ServerException("Sphinx search could not identify database name"); + + // TRANS: Server exception thrown when a database name cannot be identified. + throw new ServerException(_m("Sphinx search could not identify database name.")); } }